@charset "UTF-8";
/* CSS Document */

#nav, #navi ul { /* all lists */
	font-size:14px;
	padding: 15px 0 0 15px;
	margin: 0;
	list-style: none;
	line-height: 1;
	color:#eb0549;
}
#nav a {
	color:#eb0549;
	display: block;
	width: 100px;
	text-decoration:none;
}
#nav a:hover {
	display: block;
	width: 100px;
	font-weight:bold;
	color:#eb0549;
}
#nav li { /* all list items */
	float: left;
	width: 100px; /* width needed or else Opera goes nuts */
	padding:10px 0 0 0;
}
#nav li ul { /* second-level lists */
	position: absolute;
	font-size:12px;
	padding:0;
	/*	background: orange; */
	width: 100px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	font-weight:normal;
}
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
/* startnav */

#startnav, #startnav ul { /* all lists */
	font-size:14px;
	padding: 15px 0 0 15px;
	margin: 0;
	list-style: none;
	line-height: 1;
	/* font-weight:bold;
color:#FFFFFF; */
	color:#f6c4c4;
}
#startnav a {
	/* color:#FFFFFF; */
	color:#f6c4c4;
	display: block;
	width: 100px;
	text-decoration:none;
}
#startnav a:hover {
	display: block;
	width: 100px;
	font-weight:bold;
	color:#FFFFFF;
}
#startnav li { /* all list items */
	float: left;
	width: 100px;
	padding:10px 0 0 0;
}
#startnav li ul { /* second-level lists */
	position: absolute;
	font-size:12px;
	padding:0;
	/*	background: orange; */
	width: 100px;
	left: -999px; 
	font-weight:normal;
}
#startnav li:hover ul, #startnav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

