﻿/* CSS Popout menuv */

/* Fix IE. Hide from IE Mac \*/
* html #menuv ul li{float:left;height:1%;}
* html #menuv ul li a{height:1%;}
/* End */

#menuv		                                 /* position, size, and font of  menu */
	{	
    padding-top:15px;
    padding-bottom:15px;
	}

#menuv a
	{
margin-left:16px;
padding-left:18px; 
background:url(images/menubullet.gif) no-repeat 0px 4px;
display:block; 
font-size:1.2em; 
line-height:1.2em;
color:#fff;
font-weight:bold;
width:142px;
	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
	color: white;
    background-color:#010098;
	text-decoration:none;				       /* removes underlines from links */
	}

#menuv a.parent, #menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
background:url(images/yellowarrow.gif) no-repeat 0px 4px #010098;
	}

#menuv a:hover				             /* all menus on mouse-over */
	{
    background:url(images/menubulletover.gif) no-repeat left 4px; color:#ffcd3b;text-decoration:none;
	}
	
#menuv li
	{
	list-style-type:none;		            /* removes bullets */
	}

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 178px;				                 /* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	display: none;
	width:160px;
	}
#menuv li ul li ul{left:178px;}

div#menuv ul, #menuv ul ul, div#menuv ul ul ul
	{
	margin:0;				               /* keeps the menu parts together */
	padding:0;
	width: 178px;			              /* width of sub menus  (this should be the same as width value in #menuv [1]) above */
	}

div#menuv ul ul, div#menuv ul ul ul, div#menuv ul li:hover ul ul, div#menuv ul li:hover ul ul ul
	{
	display: none;
	}

div#menuv ul li:hover ul, div#menuv ul ul li:hover ul, div#menuv ul ul ul li:hover ul
	{
	display: block;
	}
.child
{
background:url(images/menubullet.gif) no-repeat 0px 4px #000;
display:block; 
font-size:1.4em; 
line-height:2em;
color:#fff;
font-weight:bold;
width:142px;}
div#menuv ul li ul{border:1px solid #000;background-color:#010098}

div#menuv ul li ul li ul{margin-top:-1px;}