/* 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 */

/* position, size, and font of  menu */
#menuv {
	font-family             :       Century Gothic, Arial, Verdana;
	font-size               :       12px;
	text-align              :       left;
}

#menuv a {
	display                 :       block;						
	white-space             :       nowrap;
	width                   :       100%;
}

/* all menus at rest */
#menuv a, #menuv a:visited {
	color                   :       #C5C5C5;
	text-decoration         :       none;               /* removes underlines from links */
}

/* attaches parent-arrow on all parents */
#menuv a.parent, #menuv a.parent:hover {
    background-color        :       Transparent;
	background-position     :       right center;
	background-repeat       :       no-repeat;
}

/* all menus on mouse-over */
#menuv a:hover {
	color                   :       #FDB7BC;
}

/* removes bullets */
#menuv li {
	list-style-type         :       none;
}

#menuv ul li {
	position                :       relative;
}

#menuv li ul {
	background-color        :       #131313;
	display                 :       none;
	left                    :       5em;				/* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	position                :       absolute;
	top                     :       0;
	width                   :       180px;
}

div#menuv ul, #menuv ul ul, div#menuv ul ul ul {
	height                  :       20px;
	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;
}

