/* SWIM2.0 :: Simple website menu
****************************************************************
* DOM scripting by brothercake -- http://www.brothercake.com/
* Licensed under GPL -- http://www.gnu.org/copyleft/gpl.html
****************************************************************
* For professional menu solutions visit -- http://www.udm4.com/ 
****************************************************************
*/

/* tame the lists */
ul.vertical, ul.vertical li {
	margin:0;
	padding:0;
	list-style-type:none;
	font-size:100%;
	}
/* navbar list */
ul.vertical {
    position:absolute;
    z-index:1000;
    cursor:default;
    width:128px;
    left:0px;
    top:190px;
    } 
/* navbar list-items */
ul.vertical li {
	position:relative;
	text-align:left;
	cursor:pointer;
	cursor:hand;
	width:128px;
	margin:-1px 0 0 0;
	}
/* menu lists */
ul.vertical ul {
	z-index:1020;
	cursor:default;
	position:absolute;
	width:135px;
	margin:-0.5em 0 0 7.5em;
	top:-100em;
	left:-1px;
	padding:1px 0 0 0;
	}
/* menu list-items */
ul.vertical ul li {
	width:135px;
	}
/* further child-menu offset */
ul.vertical ul ul {
	/* this already includes 1px compensation 
	   for list-item border collapse */
	margin:-0.5em 0 0 7.7em;
	/* overlapping the menus improves usability */
	}
/* menu triggers -- position menus back on the screen to show 
   hide these from safari < 1.2 because of it's "sticky hover" bug 
   that would make it difficult or impossible to close the menus 
   we're hiding it using the "@media with Media Type in Mixed Case" hack
   http://www.dithered.com/css_filters/css_only/media_mixed_case.html */
@media Screen, Projection { 
	ul.vertical li:hover > ul { top:0; }
	}

ul.vertical a, ul.vertical a:visited {
	display:block;
	cursor:pointer;
	cursor:hand;
	background:#94a6bc;
	/*border:1px solid #edbb85;*/
	padding:5px 5px;
	font:normal normal bold 10px Verdana, Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	text-decoration:none;
	letter-spacing:0px;
	}
	
ul.vertical a:hover, ul.vertical a:focus, ul.vertical a.rollover, ul.vertical a.rollover:visited {
	background:#efefef;
	color:#333333;
	}
	
/* level 2 variation styles used for the flyouts differ from main nav buttons */

ul.level2 a, ul.level2 a:visited {
	display:block;
	cursor:pointer;
	cursor:hand;
	background:#efefef;
	border:1px solid #333333;
	padding:5px 5px;
	font:normal normal bold 10px Verdana, Arial, Helvetica, sans-serif;
	color:#333333;
	text-decoration:none;
	letter-spacing:0px;
	}
	
ul.level2 a:hover, ul.level2 a:focus, ul.level2 a.rollover, ul.level2 a.rollover:visited {
	background:#FFFFFF;
	color:#333333;
	}
/* hacks for win/ie to cure 'excess hidden margins' bug */
@media screen, projection {
	* html ul.vertical li {
		/* for ie5.0 */
		display:inline; 
		/* for ie5.5+ */
		f\loat:left; 
		/* this cures 'events fall through the menu' bug in ie6 */
		background:#ffffff; 
		}
	}
/* use different comparative positioning for ie, 
   to avoid problems with virtual z-ordering */
* html ul.vertical li { position:static; }
* html ul.vertical a { position:relative; }
/* hide menus from konqueror < 3.2 */
ul[class^="vertical"] ul { display:none; }
ul[class^="vertical"] ul { displa\y:block; }

