@charset "UTF-8";
/* CSS Document */
/*** Nav bar styles ***/

html>body #menu {
	position: relative;
	background-color: #441d00;
	width: 100%;
	z-index: 99;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: .9em;
	font-weight: bold;
	background-image: url(images/bkgd-menu.gif);
	background-repeat: repeat-x;
	vertical-align: middle;
	display: block;
	height: 25px;
	padding-top: 5px;
}
html> body ul.nav,
.nav ul{
	/*Remove all spacings from the list items*/
	margin: 0;
	padding: .2em 0;
	cursor: default;
	list-style-type: none;
	display: inline;
}

html>body ul.nav{
	position: relative;
	width: 75%;
}


html>body ul.nav>li{
	display: inline;
	padding: 2%;
	margin: 0 auto;
}

html>body ul.nav li>ul{
/*Make the sub list items invisible*/
	display: none;
	position: absolute;
	max-width: 40ex;
	min-width: 25ex;
	margin-left: -6px;
	margin-top: 2px;
	z-index: 100;
}

html>body ul.nav li:hover>ul{
	/*When hovered, make them appear*/
	display : block;
	z-index: 100;
	padding: 1%;
	border: .2em double #441d00;
	color: #f1d7d3;
	text-align: left;
	background-image: url(images/shim-brown_transparent.png);
	background-repeat: repeat;
}

html>body .nav ul li a{
/*Make the hyperlinks as a block element, sort of a hover effect*/
	display: block;
	padding: 2px 10px;
}

/*** Menu colors (customizable) ***/

html>body ul.nav,
.nav ul,
.nav ul li a{
	color: #f1d7d3;
}

html>body ul.nav li:link
.nav ul a:link {
	color: #65c8c6;
}
html>body ul.nav li:visited
.nav ul a:visited {
	color: #fff;
}
html>body ul.nav li:hover,
.nav ul li a:hover{
	color: #65c8c6;	
}

html>body ul.nav li:active,
.nav ul li a:active{
	color: #fff;
}

html>body ul.nav,
.nav ul{
	color: #FFF;
	display: inline;
	z-index: 150;
	margin: 0 auto;
	padding: .2em 0;
	float: right;
}
html>body .nav a{
	text-decoration: none;
	color: #f1d7d3;
	font-size: .9em;
}
html>body .nav a:link {
	color:#FFF;
}
html>body .nav a:visited {
	color: #f1d7d3;
}
html>body .nav a:hover {
	color:#65c8c6;
}
html>body .nav a:active {
	color: #f1d7d3;
}
html>body .sub_menu_header {
	font-size: 1.2em;
	background-color: #f1d7d3;
	border: thick solid #441d00;
	color: #441d00;
}
