/* CSS Document */

body div#listmenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}

div#listmenu /*--- Menu List Container ---*/
{
	float:left; /*--- Makes the div enclose the list ---*/
	padding:0px 0px;
	height:26px;
	width:517px;
	margin:0px 0px;
	padding-left:264px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	background-color:white;
}

div#listmenu ul
{
	margin:0px;
	padding:0px;
	list-style-type: none;
}

div#listmenu li
{
	float:left; /*--- Causes the list to align horizontally instead of stack ---*/
	position:relative; /*--- Positioning context for the absolutely positioned drop-down ---*/
	list-style-type: none; /*--- Removes the bullet off list items ---*/	
	display:block;
}


div#listmenu ul li.home{
	background-image:url(images/layout_08.jpg);
	background-position:left;
	width:85px;
	height:26px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.home:hover  {
	background-image:url(images/rollover_08.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.company{
	background-image:url(images/layout_09.jpg);
	background-position:left;
	width:76px;
	height:26px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.company:hover  {
	background-image:url(images/rollover_09.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.op{
	background-image:url(images/layout_10.jpg);
	background-position:left;
	width:116px;
	height:26px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.op:hover  {
	background-image:url(images/rollover_10.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.serve{
	background-image:url(images/layout_11.jpg);
	background-position:left;
	width:90px;
	height:26px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.serve:hover  {
	background-image:url(images/rollover_11.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.prop{
	background-image:url(images/layout_12.jpg);
	background-position:left;
	width:150px;
	height:26px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.prop:hover  {
	background-image:url(images/rollover_12.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}


/* DROPDOWNS */
div#listmenu ul li:hover ul  {
	display:block; /*--- Displays appropriate drop down menu ---*/
}
div#listmenu ul li ul li a.dropDown {
	color:#ffffff;
	text-decoration:none;
	display:block;
	margin:0px;
	padding-left:15px;
	padding-bottom:6px;
	padding-right:6px;
	padding-top:3px;
	font-weight:normal;
	border-bottom:1px solid white;
}
div#listmenu ul li ul li a.dropDown:hover {
	color:white;
}

div#listmenu ul li ul
{
	margin:0px; /*--- Prevents the temp margin on the ul from inheriting here ---*/
	position:absolute; /*--- Positions the drop-down ul in relation to its relatively positioned li parent ---*/
	left:0px; /*--- Aligns the drop-down exactly under the menu ---*/
	padding:0px;
	z-index:99;
}


div#listmenu ul li ul.company{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:120px;
	margin-top:26px;
	padding:0px;
}

div#listmenu ul li ul.op{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:135px;
	margin-top:26px;
	padding:0px;
}


div#listmenu ul li ul li
{
	width:100%; /*--- Makes the list items fill the list containers (ul) ---*/
	border:0px; /*--- Three sides of each drop-down item ---*/
	border-top:0px;
	padding:0px;
	margin:0px;
	background:none;
	background-image:none;
	background-color:#0050c8;
}

div#listmenu ul li ul li:hover {
	background-color:#3B61A0;
}

