/*-----------------------------------------------------------------------------
Vertical Navigation Style Sheet

version:   1.0
author:    John Labriola
email:     johnlabriola@yahoo.com
website:   http://www.flopidesign.com/
-----------------------------------------------------------------------------*/

/* =Vertical Pop Out Navigation with images using the Pixie Rollover technique
-----------------------------------------------------------------------------*/
ul.verticalNavPopOut {
 width: 140px;
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 0px solid #000; /* Puts in missing top black border */
}

ul.verticalNavPopOut a {
	display: block;
	width: 140px;
	height: 22px;
	color: #ffff99;
	line-height: 22px;
	text-indent: 30px;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
}

ul.verticalNavPopOut a:hover {
	color: #ffff99;
	text-decoration: underline;
}

ul.verticalNavPopOut li {
	display: inline; /* Removes gaps in IE/WIN */
}

ul.verticalNavPopOut ul, ul.verticalNavPopOut ul ul {
	left: -999em;
	position: absolute;
	margin: -25px 0 0 140px;
	padding: 0;
	border-top: 0px solid #000; /* Puts in missing top black border */
	background-color: #1b1464;
}
	
ul.verticalNavPopOut li:hover ul, ul.verticalNavPopOut li:hover ul ul,
ul.verticalNavPopOut li.iehover ul, ul.verticalNavPopOut li.iehover ul ul { /* 2nd, 3rd level hide */
	left: -999em;
}
	
ul.verticalNavPopOut li:hover ul, ul.verticalNavPopOut li li:hover ul,
ul.verticalNavPopOut li.iehover ul, ul.verticalNavPopOut li li.iehover ul { /* 2nd, 3rd level show */
	left: auto;
}