/*If it isn't commented, please don't mess with it or you'll probably bork it*/

ul.vertical, ul.vertical li {
	margin:0;
	padding:0;
	list-style-type:none;
	font-size:100%;
	}

ul.vertical {
	position:absolute;
	z-index:1000;
	cursor:default;
	width:125px; /*Width of the root menu, in pixels*/
	left:20px; /*Distance from left side of the page, in pixels*/
	top:233px; /*Distance from the top of the page, in pixels*/
	}

ul.vertical li {
	position:relative;
	text-align:left;
	cursor:pointer;
	cursor:hand;
	width:125px; /*Width of the submenus, in pixels*/
	margin:-1px 0 0 0; /*Space between submenus*/
	}

ul.vertical ul {
	z-index:1020;
	cursor:default;
	position:absolute;
	width:125px; /*Width of the submenus, in pixels*/
	margin:-1px 0 0 0px; /*Space between submenus*/
	top:-100em;
	left:125px; /*Distance from the left side of the page, in pixels.  Should be the same as ul.vertical top*/
	padding:0px 0 0 0;
	}
	
ul.vertical ul li {
	width:125px; /*Distance from the left side of the page, in pixels.  Should be the same as ul.vertical top*/
	}

ul.vertical ul ul {
	margin:-1px 0 0 0px;
	}

@media Screen, Projection { 
	ul.vertical li:hover > ul { top:0; }
	}

ul.vertical a, ul.vertical a:visited {
	display:block;
	cursor:pointer;
	cursor:hand;
	background:#004080; /*Menu background color*/
	border:1px solid #edbb85; /*Menu Border color*/
	padding:5px 7px;
	font:normal normal bold 0.7em tahoma, verdana, sans-serif; /*Menu font, please don't modify the em value here*/
	color:#fff200; /*Font color*/
	text-decoration:none;
	letter-spacing:1px;
	}
	
ul.vertical a:hover, ul.vertical a:focus, ul.vertical a.rollover, ul.vertical a.rollover:visited {
	background:#ffefcf; /*Background color of the menu when highlighted*/
	color:#806020; /*Font color when highlighted*/
	}



@media screen, projection {
	* html ul.vertical li {
		display:inline; 
		f\loat:left; 
		background:#ffffff; 
		}
	}
* html ul.vertical li { position:static; }
* html ul.vertical a { position:relative; }
ul[class^="vertical"] ul { display:none; }
ul[class^="vertical"] ul { displa\y:block; }
