/* Body Positive menu */

/*
.menu { font-size:1em; font-weight:normal; text-align:left; padding:0px; line-height:normal; width:850px; margin:0px; color:white; margin-top:-20px; height:auto; background-color:rgb(190,2,38); }
.menu #nav { list-style:none; padding:0; margin:0px; text-align:left; position:relative; background-color:rgb(190,2,38); height:2.5em; }
.menu #nav li { float:left; line-height:2.5em; margin:0; /*margin:0 8px 0 4px;*/ /*color:white; text-decoration:none; padding:0 12px 0 12px; /*padding:0 8px 0 4px;*/ /*border-right:1px solid white; }
.menu #nav li.first_item { padding-left:15px; margin-left:0; }
.menu #nav li.last_item { border-right:0; }
.menu #nav li.special_item { background-color:rgb(8,124,159); color:white; margin: 0; font-weight:normal; position:absolute; top:0; right:0; padding-left:37px; padding-right:37px; border-left:2px solid white; border-right:0; text-transform:uppercase; }
.menu #nav li.last_item a { color:white; }
.menu #nav li.last_item a:hover { color:white; }
.menu #nav li.selected { background-color:rgb(223,129,147); }
.menu a { display:block; color:white; text-decoration:none; cursor:pointer; }
.menu a:hover { color:white; text-decoration:underline; }
.menu #nav ul { font-size:1em; position:absolute; width:10em; left:-999em; z-index:100; top:27px; background-color:rgb(190,2,38); padding:0; }
.menu #nav ul li { display:block; float:none; border-right:0; border-top:1px solid white; margin:0 0 0 0; padding:5px 5px 5px 12px; line-height:normal; }
.menu #nav li:hover ul , ul#nav li.sfhover ul { left:auto; }
*/

/* setup the basics */
.menu {
		font-size: 1em; 
		font-weight: normal; 
		text-align: left; 
		padding: 0; 
		line-height: normal; 
		width: 850px; 
		margin: 0; 
		color: #FFF; 
		margin-top: 20px; 
		margin-bottom: 20px; 
		height: 27px; 
		background-color: rgb(190,174,141); 
		position: relative; 
		z-index: 100;}
		
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;}
.menu ul ul {
	width: 149px;}
	
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float: left;
	position: relative; 
	border-right: 1px solid #FFF;
	text-align: center;
	background-color:rgb(138,125,97);}
		
/* style the links for the top level */
.menu a, .menu a:visited {
	display: block; 
	text-decoration: none; 
	color: #FFF; 
	height: 27px; 
	background: rgb(190,174,141);
	line-height: 27px;
	width: 100%;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility: hidden;
	position: absolute;
	height: 0;
	top: 27px;
	left: 0; 
	width: 149px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
	position: absolute; 
	top:0; 
	left:0; 
	border-collapse:collapse;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	height: auto; 
	line-height: 1.4em; 
	padding: 5px 10px; 
	width: 100px; 
	border-width: 1px 0 0 0; 
	border-top: 1px #FFF solid;
	text-align: left;}
.menu ul ul li {
	border: none;}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul{ 
	visibility: visible;
	font-size: 1em;}

.menu a.notActive { 
	cursor: text; 
	text-decoration: none;}
.menu ul li a.active { 
	background-color: white; 
	color: #432d1a;
	cursor: text; 
	text-decoration: none;
	background-color:rgb(138,125,97);
	color:white; }

.menu a.special_item { 
	background-color:rgb(8,124,159);}

/* yet another hack for IE */
* html .menu ul ul a, * html .menu ul ul a:visited {
	width:150px;
	w\idth:128px;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover {
	color:white; 
	text-decoration: none;
	background-color:rgb(138,125,97); }
.menu :hover > a, .menu ul ul :hover > a {
	color:white; 
	text-decoration: none;
	background-color:rgb(138,125,97); }
	
	.menu ul ul li.menuHeading a { background-color:rgb(166,152,124); }
	.menu ul ul li.menuHeading a:hover { background-color:rgb(166,152,124); }
