﻿/* 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 */
	{	
       z-index: 10; 
	}

#menuv a
	{
width: 100%;
display:block; 

	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
	text-decoration:none;				       /* removes underlines from links */
	}

#menuv a.parent, #menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
background:url(images/orangearrows.gif) no-repeat 160px 6px;
	}

#menuv a:hover				             /* all menus on mouse-over */
	{
    background:url(images/menubulletover.gif) no-repeat left 4px; text-decoration:none;
	}
	
#menuv li
	{
	list-style-type:none;		            /* removes bullets */
	}

#menuv ul li
	{
	position:relative;
 cursor:pointer;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 180px;				                 /* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	display: none;

	}
#menuv li ul li ul{left:180px;}

div#menuv ul, #menuv ul ul, div#menuv ul ul ul
	{
	margin:0;				               /* keeps the menu parts together */
	padding:0;
	width: 180px;			              /* 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;
	}
div#menuv ul ul li:hover{background:#196CC8; color:#fff;}
div#menuv ul ul li:hover a{color:#fff;}
.child
{
background:url(images/menubullet.gif) no-repeat 0px 4px;
display:block; 
font-size:1.4em; 
line-height:1.8em;
color:#fff;
width:178px;

}
div#menuv ul li ul li a{padding-left:3px;color:#006db5;}
div#menuv ul li ul{border:1px solid #196CC8; background:url(images/overgrad.gif) repeat-x #d9e3f5;}

div#menuv ul li ul li ul{margin-top:-1px;}