/* CSS Document */

body div#listmenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}

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;
	width:666px;
	margin:0px 0px 0px 0px;
	height:83px;
	font-family:"Times New Roman", Times, serif;
}

div#listmenu ul
{
	margin:0px;
	padding:0px 0px 0px 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;
	margin:0px;
	padding:8px 4px 0px 4px;
	margin-top:53px;
}

div#listmenu ul li a  {
	text-decoration:none;
	display:block;
	font-size:12px;
	text-align:center;
	color:#103468;
	letter-spacing:1px;
	font-weight:bold;
	padding:0px 5px 0px 5px;
	border:1px solid white;
}
div#listmenu ul li a:hover {
	display:block;
	color:gray;
	font-weight:bold;
	border:1px solid silver;
}
/* DROPDOWNS */
div#listmenu ul li:hover ul  {
	background-color:#103468;
	display:block; /*--- Displays appropriate drop down menu ---*/
	padding:3px;
}
div#listmenu ul li ul li
{
	color:silver;
	font-size:10px;
	font-weight:normal;
	text-decoration:none;
	font-family:Arial, Helvetica, sans-serif;
	padding:2px 5px;
}

div#listmenu ul li ul li a.dropDown {
	color:white;
	text-decoration:none;
	display:block;
	font-size:10px;
	padding:2px 5px;
	text-align:left;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
	border:none;
}
div#listmenu ul li ul li a.dropDown:hover {
	color:#103468;
	text-decoration:none;
	display:block;
	font-weight:bold;
	border:none;
}
div#listmenu ul li ul.services {
	width:130px; /*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	margin-left:4px;
	margin-top:0px;
}
div#listmenu ul li ul.directory {
	width:280px; /*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	margin-left:4px;
	margin-top:0px;
}
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;
	margin-top:2px;
	z-index:99;
	border-left:1px solid silver;
	border-right:1px solid silver;
	border-bottom:1px solid silver;
}
div#listmenu ul li ul li
{
	width:100%; /*--- Makes the list items fill the list containers (ul) ---*/
	padding:0px;
	margin:0px;
	background:none;
	background-image:none;
	background-color:#103468;
}
div#listmenu ul li ul li a:hover
{
	background-color:white;
}
div#listmenu ul li ul li:hover {
	background-color:#103468;
}

