/* menu triggers */
#menu li {
	float:left; /* tiles menu triggers horizontally, aligns dropdown menus to the left margin of their trigger */
	padding:0;
	}
/* the whole menu system */
#menu ul {
	padding:0;
	margin:0;
	background-color:#FFF;
	list-style:none;
	line-height:1px;
	}
/* dropdown menus, initially hidden */
#menu li ul {
	position:absolute;
	left:-999px;
	height:auto; /* adjusts height to contents */
	width:148px; /* width of dropdown menus */
	margin:0;
	background-color:#F5DB87;
	border:1px solid #CCC;
	font-weight:500; /* font weight for dropdown menu links */
	}
/* Styles on menu triggers and dropdown menu links */
#menu a {
	display:block; /* allows the whole li to be clickable, not just the link text */
	padding-left:4px;
	color:#FFF; /* default color for text */
	text-align:left;
	font:14px/14px Arial, Helvetica, sans-serif;
	font-weight:900;
	text-decoration:none;
	width:100%; /* hack to simulate display: block for IE */
	}
/* menu triggers */
#menu .li1, #menu .li11 {
	display:block;
	width:148px;
	height:22px;
	margin:1px; /* white space between tabs */
	background:#D15821 none;
	}
/* menu triggers (position of text) */
.li1 h2, .li11 h2 {
	margin:0;
	padding-top:4px;
	padding-bottom:4px;
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	}
/* positioning for Opera */
li>ul {
	top:auto;
	left:auto;
	}
#menu li li {
	width:148px;
	}
#menu li:hover ul, #menu li.sfhover ul {
	top:auto;
	left:auto;
	}
/* drop down menu item links */
#menu li ul a {
	padding:4px 2px; /* space around links */
	color:#333;
	text-align:left;
	font:10px/14px Arial, Helvetica, sans-serif;
	font-weight:900;
	width:100%; /* sets the width for IE <6 browsers */
	}
/* hover color for menu triggers */
#menu li:hover, #menu li.sfhover {
	width:148px;
	background-color:#DC8258;
	text-decoration:none;
	} 
/* hover color for menu items */
#menu li li:hover, #menu li li.sfhover {
	display:block; /* allows the whole li to be clickable, not just the link text */
	width:148px;
	height:auto;
	border:none;
	background-color:#CCC;
	text-decoration:none;
	}
#staticlink {
	z-index:1;
	float:right;
	width:160px;
	height:22px;
	padding:5px 5px 0 0;
	margin:0;
	background-color:transparent;
	text-align:right;
	}
#staticlink a {
	display:inline;
	margin:0;
	padding:0;
	color:#D15821;
	text-align:right;
	font:14px/14px Arial, Helvetica, sans-serif;
	font-weight:900;
	text-decoration:none;
	}
#staticlink a.lefttext {
	margin-right:55px;
	}