/* taken from http://www.webdesignerwall.com/tutorials/css3-dropdown-menu/ */
/* body {
	font: normal .8em/1.5em Arial, Helvetica, sans-serif;
	background: #ebebeb;
	width: 900px;
	margin: 100px auto;
	color: #666;
}
 */

 /*
 a {
	color: #333;
}
*/

#nav {
	margin: 0;
	padding: 0px 0px 0px 0px;
	line-height: 100%;
	font-size:1.2em;
	border-radius: 2em;

	-webkit-border-radius: 0em;
	-moz-border-radius: 0em;
	
	-webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.0);
	-moz-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.0);

	background: transparent; /* for non-css3 browsers */
	/*filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#a9a9a9', endColorstr='#7a7a7a');*/ /* for IE */
	/*background: -webkit-gradient(linear, left top, left bottom, from(#a9a9a9), to(#7a7a7a));*/ /* for webkit browsers */
	/*background: -moz-linear-gradient(top,  #a9a9a9,  #7a7a7a);*/ /* for firefox 3.6+ */

	border: solid 0px #6d6d6d;
}
#nav li {
	margin: 0px;
	padding: 5px;
	float: left;
	position: relative;
	list-style: none;
}
/* main level link */
#nav a {
	font-weight: bold;
	color: #663300;
	text-decoration: none;
	background-color:#FCBE81;
	display: block;
	padding:  8px 20px;
	margin: 0;
	-webkit-border-radius: 0.4em;
	-moz-border-radius: 0.4em;
	text-shadow: 0 0px 0px rgba(0, 0, 0, 0.0);
}
/* main level link hover */
#nav .current_page_item a, #nav .current_page_item a:hover, #nav li:hover > a {
	background: #F29E35; /* for non-css3 browsers */
	/*filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb', endColorstr='#a1a1a1');*/ /* for IE */
	/*background: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#a1a1a1));*/ /* for webkit browsers */
	/*background: -moz-linear-gradient(top,  #ebebeb,  #a1a1a1);*/ /* for firefox 3.6+ */

	color: #663300;
	font-weight:bold;
	border-top: solid 0px #f8f8f8;
	-webkit-box-shadow: 0 0px 0px rgba(0, 0, 0,0.0);
	-moz-box-shadow: 0 0px 0px rgba(0, 0, 0,0.0);
	box-shadow: 0 0px 0px rgba(0, 0, 0, 0.0);
	text-shadow: 0 0px 0 rgba(0, 0,0, 0.0);
}
#nav .current_page_ancestor a{ /*gwr - "highlight" top level menu button when displaying child menu page */
	background: #F29E35;
	}
	
/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	background: none;
	border: none;
	color: #663300;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}
#nav ul a:hover {
	background: #663300 !important; /* for non-css3 browsers */
	/*filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#04acec', endColorstr='#0186ba');*/ /* for IE */
	/*background: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba)) !important;*/ /* for webkit browsers */
	/*background: -moz-linear-gradient(top,  #04acec,  #0186ba) !important;*/ /* for firefox 3.6+ */

	color: #FA8189 !important;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	text-shadow: 0 0px 0px rgba(0, 0, 0, 0.0);
}
/* level 2 list */
#nav ul {
	background: #FFBE84 ; /* for non-css3 browsers */
	/*filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cfcfcf');*/ /* for IE */
	/*background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cfcfcf));*/ /* for webkit browsers */
	/*background: -moz-linear-gradient(top,  #fff,  #cfcfcf);*/ /* for firefox 3.6+ */

	display: none;
	margin: 0;
	padding: 0px;
	/*gwr make the menu box narrower width: 185px; */
	width: 185px;
	position: absolute;
	top: 35px;
	left: 0;
	border: solid 1px #663300;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.0);
	-moz-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.0);
	box-shadow: 0 0px 0px rgba(0, 0, 0, 0.0);
}
/* dropdown */
#nav li:hover > ul {
	display: block;
}
#nav ul li {
	float: none;
	margin: 0;
	padding: 0;
}
#nav ul a {
	font-weight: normal;
	text-shadow: 0 0px 0px rgba(0, 0, 0, 0.0);
}
/* level 3+ list */
#nav ul ul {
	/*gwr make the menu box narrower  left: 181px; */
	left: 181px;
	top: 3px;
}
/* rounded corners for first and last child */
#nav ul li:first-child > a {
	-webkit-border-top-left-radius: 6px;
	-moz-border-radius-topleft: 6px;
	-webkit-border-top-right-radius: 6px;
	-moz-border-radius-topright: 6px;
}
#nav ul li:last-child > a {
	-webkit-border-bottom-left-radius: 6px;
	-moz-border-radius-bottomleft: 6px;
	-webkit-border-bottom-right-radius: 6px;
	-moz-border-radius-bottomright: 6px;
}
/* clearfix */
#nav:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#nav {
	display: inline-block;
}
html[xmlns] #nav {
	display: block;
}
* html #nav {
	height: 1%;
}
