	body {
    	background-color: #003366;
	margin: 0px 0px 0px 0px;
}

.Content {
	position:absolute;
	left:50%;
	width:750px;
	height:628px;
	margin-left:-375px;
	background-color:white;
}

.header {
	z-index: 100;
	width: 750px;
	height: 200px;
	background-image: url('../images/constants/topBanner.jpg');
	border: 1px solid;
}

.navigation {
	width: 742px;
	height: 20px;
	padding: 4px 4px 4px 4px;
	background-color: black;
	color: #ffffff;
	text-align: right;
	font-family: arial;
	font-size: 12px;
	font-weight: bold;
}

.navigation a{
	color: #ffffff;
	font-family: arial;
	font-size: 12px;
	font-weight: bold;
	font-decoration: none;
}

.contentBody {
	width:750px;
	height:492px;
	background-color: white;
}

.address {
	position:absolute;
	width:750px;
	left:50%;
	margin-left:-400px;
	top: 629px;
	text-align: center;
	color: #ffffff;
	font-family: arial;
	font-size: 10px;
	font-weight: bold;
}

.middleLeft {
	z-index: 2;
	height: 480px;
	width:157px;
	background-color:#ffffff;
	position:absolute;
	top:230px;
	left:0px;
	color: #000000;
	text-align: center;
	font-family: arial;
	font-size: 14px;
	font-weight: bold;
}

.middleMiddle {
	z-index: 1;
	width:436px;
	height:480px;
	background-color:#ffffff;
	position:absolute;
	top:230px;
	left:156px;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

.middleRight {
	width:157px;
	height:480px;
	background-color:#ffffff;
	position:absolute;
	top:230px;
	left:593px;
	text-align: center;
	font-family: arial;
	font-size: 14px;
	font-weight: bold;
}

.middleMiddleHeader {
	width:432px;
	height:18px;
	padding: 2px 2px 2px 2px;
	background-color:#003366;
	color: #CC9966;
	text-align: center;
	font-family: arial;
	font-size: 14px;
	font-weight: bold;
}

.middleMiddleBody {
 	overflow: auto;
	height: 450px;
	width:416px;
	padding: 10px 10px 10px 10px;
	background-color:#ffffff;
	color: #660000;
	text-align: left;
	font-family: arial;
	font-size: 12px;
}

.middleMiddleInfo {
	background-color:#ffffff;
	color: #660000;
	text-align: left;
	font-family: arial;
	font-size: 14px;
}


.middleFlankerHeads {
	width: 153px;
	height: 18px;
	padding: 2px 2px 2px 2px;
	background-color:#ffffff;
	color: #000000;
	text-align: center;
	font-family: arial;
	font-size: 14px;
	font-weight: bold;
}

.middleFlankerBody {
	width:157px;
	height:470px;
	padding: 0px 0px 0px 0px;
	background-color:#ffffff;
	color: #660000;
	text-align: left;
	font-family: arial;
	font-size: 14px;
	font-weight: bold;
}

.middleFlankerBodyRight {
	width:127px;
	height:470px;
	padding: 0px 15px 0px 15px;
	background-color:#ffffff;
	color: #660000;
	text-align: left;
	font-family: arial;
	font-size: 14px;
	font-weight: bold;
}

.productList {
    	width:157px;
	color:#000000;
	font-family:arial;
	font-size:12px;
	background-color:#ffffff;
	text-align: left;
}

.flankerHeadFont {
	text-align: left;
	font-family: arial;
	font-size: 12px;
}

.searchForm {
        position: absolute;
        left: 515px;
        top: 10px;
	font-family: arial;
	font-size: 12px;
	font-weight: bold;
}

form div {
	position: relative;
        /* we need relative positioning of the containing element, 
        so IE knows what to do with the "absolute" below */
        margin-bottom: 10px; /* a bit of space below, irrelevant */
}

div.sometext,
form div input,
form div textarea {
	margin-left: 120px;
        /* we make some space to the left, so our label has a place to be */
        border: 1px solid green; /* just for illustration of this demo */
}

form div label {
        position: absolute;
        left: 0px;
        top: 0px;
        /* we are moving the label to the left/upper corner 
        of the surrounding element, this even works for multiline-labels, 
        as long as the label isn't higher than the
        element it "labels", otherwise we may get overlap */
        /* border: 1px solid red; just for illustration of this demo */
        /* optional:
        if we are afraid that our labels will exceed the space allocated
        by the margin-left above, we can give it a 
        width: 110px;
        together with that we may even do a
        text-align: right;
        */
}

div.sometext p {
        margin-top: 0px;
        /* this is just so that the vertical alignment 
        to the top of the label comes right */
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 157px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	}

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 156px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #000;
	background: #ffffff;
	padding: 1px 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

ul li a:hover { color: #E2144A; background: #f9f9f9; } /* Hover Styles */
		
li ul li a {
	padding: 1px 5px;
	background: #000000; 
	color: #ffffff;
} /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block;
                           left:156px;
                            background:#ffffff;} /* The magic */

