/* ################# */
/* ###### MENU ##### */
/* ################# */

/* Adapted from http://www.grc.com/menu2/cssmenu.css */


/* ##### MENU TOP LEVEL ##### */

.menu {
	position:relative;        		/* establish a menu-relative positioning context */
	float:left;                     /* play nicely with others */
	margin:0;
	padding:0;
	border:0;
	height:28px;                    /* the menu's overall height */
	width:100%;         			/* we always want our menu to fill the available space */
	min-width:772px;
	background:#80561B;
	font-family: Georgia, Verdana, Helvetica, Arial, sans-serif;
	font-size:12px;         		/* this (and also below) sets the menu's font size */
	z-index: 10;
}

.menu img {
	vertical-align: top;      		/* prevent images from being pushed down by text */
	border: 0;
}

.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;          	/* we don't want to view the list as a list */
	line-height:1.5em;           	/* globally set the menu's item spacing. note */
}                               	/* this must be 1.0 or 1.5 or 2.0 for Mozilla */

.menu ul li {
	float:left;    					/* this creates the side-by-side array of top-level buttons */
	position:relative;    			/* create local positioning contexts for each button */
	margin:0;
}

.menu ul li table {
	margin:-1px 0;              	/* IE5 needs -1px top and bottom table margins */
	m\argin:0;               		/* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      	/* IE5 needs this for the sub-menus to work */
	border: 0;						/* this makes the skinny rectangles in IE6 collapse into lines */
	font-size:12px;        			/* this sets the base font size for our entire menu */
}

.menu ul li table tr td {			/* this erases the lines below each menu item in IE6 */
	border: 0;
}

.menu ul li img {								
	border:0;
	margin:-2px 0 0 0;				/* line up images in Safari and Mac FF; */
	padding:0;									
}

.menu ul li a,
.menu ul li a:visited {        		/* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	text-transform:uppercase;
	height:28px;
}

.menu ul li:hover a,
.menu ul li a:hover {               /* selected top-level menu items */
	border: 0;
}


/* ##### MENU DROP-DOWNS ##### */

.menu ul li ul {
	display:none;          			/* initially hide the drop-down list */
	padding:0;                     	/* this is our box border width */
}

.menu ul li:hover ul,
.menu ul li a:hover ul {            /* show drop-down box on hover */
	display:block;
	position:absolute;
	margin:0;
	top:28px;              			/* place us just up underneath the top-level images */
	*top:28px;              		/* tweak for IE7 and below; sacrifices flushness to elminate disappearing menu */
	left:-1px;       				/* left-align our drop-down to the previous button border */
	height:auto;      				/* the drop-down height will be determined by line count */
	width:10em;						/* sets the width of the drop-down box */
	color:#000;                 	/* this sets the unselected-text color */
	background:#000;        		/* this sets our menu's effective "border" color */
}

.menu ul li:hover ul.leftbutton,
.menu ul li a:hover ul.leftbutton {	/* our first dropdown should not be skewed */
	left:0px;
}

.menu ul li:hover ul li,
.menu ul li a:hover ul li {
	margin:0;
	padding:0;
	border-top:0;
	border-right:1px #92B36B solid;
	border-bottom:1px #92B36B solid;
	border-left:1px #92B36B solid;
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {     	/* 2nd level unselected items */
	padding:6px;
	height:auto;
	color:#FFF;               		/* this sets the unselected drop-down text color */
	background:#92B36B;       		/* this sets the drop-down menu background color */
	width:10em;						/* sets the width of the drop-down text */
	text-transform:none;
	font-weight: bold;
}

.menu ul li:hover ul li:hover a,
.menu ul li a:hover ul li a:hover { /* 2nd level selected item */
	color:#5C8727;
	padding:6px;
	background:#FFF;
}