/* 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 */
	{	
	position:relative;	
	top:0px;
	left:0px;
	z-index: 10;
	width: 150px;
        text-align: left;
	padding-right: 0px
	}

#menuv a
	{
	width: 100%;
	display:block;						
	padding-top: 0.2em;
	padding-bottom: 0.2em;
	}

#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-image: url(nav_white.gif); 
	background-position: right center;
	background-repeat: no-repeat; */
	}

#menuv a:hover				
/* all menus on mouse-over */
	{
	color: #ff0000;
	}
		
#menuv li
	{
	list-style-type:none;
	}
	
#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
        border: 2px solid #141414;
        background:#000000 url('http://ep.yimg.com/ca/I/yhst-49666507782127_2118_32739720');
	position: absolute;
	top: 0;
	left: 137px;				/* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	display: none;
	}
	
#menuv li ul li a
	{
         border-bottom:0;
	}

#menuv li ul li a:hover
	{
         background:transparent;
         color:black;
	}

div#menuv ul, #menuv ul ul, div#menuv ul ul ul
	{
	margin:0;				
        /* keeps the menu parts together */
	padding:0;
	width: 137px;			/* 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;
	}
