/* CSS Document */

/* CSS Document */

body div#listmenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}

body 
{
	behavior:url(csshover.htc);
}



div#listmenu /*--- Menu List Container ---*/
{
	float:left; /*--- Makes the div enclose the list ---*/
	padding:0px;
	width:950;
	margin-top:0px;
	height:22px;
	font-family: "Verdana", sans-serif;
	font-size:12px;
	font-weight:bold;
	background-color:#000000;
}

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-top:1px;
}

div#listmenu li.customVehicles1 {
	border-right:#FFFFFF solid 1px;
}

div#listmenu li.exhibitsDisplays1 {
	border-right:#FFFFFF solid 1px;

}

div#listmenu li.graphics1 {
	border-right:#FFFFFF solid 1px;
}

div#listmenu li.capabilities1 {
	border-right:#FFFFFF solid 1px;
}

div#listmenu li.company1 {
	border-right:#FFFFFF solid 1px;
}

div#listmenu li.downloads1 {
	border-right:#FFFFFF solid 1px;
}

div#listmenu li a.contact1 {
	
}
div#listmenu li a.contact:hover1 {
	border-right:#668f8b solid 3px;
	
}


div#listmenu ul li a  {
	text-decoration:none;
	display:block;
	color:#ffffff;
	padding:4px 23px 4px 24px;
}


div#listmenu ul li:hover a  {
	text-decoration:none;
	display:block;
	background-color:#668f8b;
	color:#ffffff;
	padding:4px 23px 4px 24px;
}


div#listmenu ul li a:hover {
	display:block;
	background-color:#668f8b;
	color:#ffffff;
	padding:4px 23px 4px 24px;

}

/* DROPDOWNS */
div#listmenu ul li:hover ul  {
	display:block; /*--- Displays appropriate drop down menu ---*/
	padding:0px;
	margin:0px;
	border-left:#FFFFFF 1px solid;
	border-right:#FFFFFF 1px solid;
	border-bottom:#FFFFFF 1px solid;

}

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:#015246;
	border-top:#FFFFFF 1px solid;
	color:#ffffff;
	font-size:12px;
	font-weight:normal;
	text-decoration:none;
	font-family: "Verdana", sans-serif;
	display:block;

}



div#listmenu ul li ul li.customVehicles2 a:hover
{
	background-color:#c79d15;
	border-right:0px;
}
div#listmenu ul li ul li.exhibitsDisplays2 a:hover
{
	background-color:#223280;
}
div#listmenu ul li ul li.graphics2 a:hover
{
	background-color:#7bb455;
}
div#listmenu ul li ul li.capabilities2 a:hover
{
	background-color:#de7607;
}
div#listmenu ul li ul li.company2 a:hover
{
	background-color:#55387a;
}
div#listmenu ul li ul li.downloads2 a:hover
{
	background-color:#8b0e16;
}
div#listmenu ul li ul li.contact2 a:hover
{
	background-color:#09a3d7;
}


div#listmenu ul li ul.customVehicles {
	width:165px; /*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	margin-left:10px;
	margin-top:0px;
}
 

div#listmenu ul li ul.exhibitsDisplays {
	width:150px; /*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	margin-left:10px;
	margin-top:0px;
}

div#listmenu ul li ul.graphics {
	width:200px; /*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	margin-left:10px;
	margin-top:0px;
}

div#listmenu ul li ul.capabilities {
	width:200px; /*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	margin-left:10px;
	margin-top:0px;
}

div#listmenu ul li ul.company {
	width:150px; /*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	margin-left:10px;
	margin-top:0px;
}

div#listmenu ul li ul.downloads {
	width:150px; /*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	margin-left:10px;
	margin-top:0px;
}

div#listmenu ul li ul.contact {
	width:150px; /*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	margin-left:10px;
	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;

}


