/* 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 ---*/
	height:30px;
	width:1000px;
	margin:0px;
	padding:0px;
	background-color:#254c71;
	
}

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;
	padding:0px;
	margin:0px;
}

div#listmenu ul 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;
	margin:0px;
	padding:0px 0px 0px 0px;
}

div#listmenu ul li.space1
{
	width:80px;
	height:30px;
}

div#listmenu ul li.home
{
	background-image:url(../images/home.jpg);
	background-position:left;
	width:78px;
	height:30px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.home:hover  {
	background-image:url(../images/homeRoll.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.att
{
	background-image:url(../images/attInfo.jpg);
	background-position:left;
	width:170px;
	height:30px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.att:hover  {
	background-image:url(../images/attInfoRoll.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.auto
{
	background-image:url(../images/auto.jpg);
	background-position:left;
	width:191px;
	height:30px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.auto:hover  {
	background-image:url(../images/autoRoll.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.info
{
	background-image:url(../images/faq.jpg);
	background-position:left;
	width:138px;
	height:30px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.info:hover  {
	background-image:url(../images/faqRoll.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.bio
{
	background-image:url(../images/cv.jpg);
	background-position:left;
	width:49px;
	height:30px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.bio:hover  {
	background-image:url(../images/cvRoll.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.fees
{
	background-image:url(../images/fee.jpg);
	background-position:left;
	width:69px;
	height:30px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.fees:hover  {
	background-image:url(../images/feeRoll.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}


div#listmenu ul li.contact
{
	background-image:url(../images/contact.jpg);
	background-position:left;
	width:139px;
	height:30px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.contact:hover  {
	background-image:url(../images/contactRoll.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.space2
{
	background-image:url(../images/nav_09.jpg);
	background-position:left;
	width:84px;
	height:40px;
	background-repeat:no-repeat;
	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:#cade7a;
	text-decoration:none;
	display:block;
	margin:0px;
	padding:3px;
	font-weight:normal;
}
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 ---*/
	top:28px;
	padding:0px;
	border-left:1px solid #517597;
	border-right:1px solid #517597;
	border-bottom:1px solid #517597;
	background-color:#2a567f;
	z-index:99;
}


div#listmenu ul li ul.info
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:160px;
	padding:0px;
	margin-top:0px;
}

div#listmenu ul li ul.auto
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:150px;
	padding:0px;
	margin-top:0px;
}

div#listmenu ul li ul.att
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:150px;
	padding:0px;
	margin-top: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 ---*/
	padding:0px;
	margin:0px;
	background:none;
	background-image:none;
	background-color:#2a567f;
	border-top:1px solid #517597;
}


div#listmenu ul li ul li:hover {
	background-color:#102f4d;
}

