/* CSS Document */
body{ margin:0px;
	  background-image:url(images/bg.jpg);
	  background-repeat:repeat-x;
	  font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	  font-size:18px;}

#textbar{ width:100%;
		  float:left;
		  background-image:url(images/ribbon.png);
		  background-repeat: no-repeat;
		  height:75px;
		  text-align:center;}				
#home{ float:left;
		width:100%;}
h1{ font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:34px;
	color:#efeef3;
	
	font-weight: lighter;}		
h2{ font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:24px;
	color:#282828;
	font-weight: lighter;}			
.form{ font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#282828;
	font-weight: lighter;}
h3{ font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:24px;
	color:#efeef3;
	font-weight: lighter;}	
.notice{font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
		font-size:16px;
		text-decoration:none;
		color:#efeef3;}
.footermenu{ font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:15px;
	color:#282828;
	text-decoration:none;}
.footermenu:link{ font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:15px;
	color:#282828;
	text-decoration:none;}	
.footermenu:visited{ font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:15px;
	color:#282828;
	text-decoration:none;}	
.footermenu:hover{ font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:15px;
	color:#282828;
	text-decoration: underline;}	
.footermenu:active{ font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:15px;
	color:#282828;
	text-decoration:none;}	
.bltext{font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
		font-size:15px;
		color:#000;}
.wh-text{font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
		font-size:14px;
		color:#fdf6e4;}		
.form-bg{ background-color:#000;
		  color:#FFFFFF;
		  font-size:14px;}	
.wh-link{font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
		font-size:14px;
		color:#fdf6e4;
		text-decoration:none;}			  
.wh-link:link{font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
		font-size:14px;
		color:#fdf6e4;
		text-decoration:none;}	
.wh-link:visited{font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
		font-size:14px;
		color:#fdf6e4;
		text-decoration:none;}		
.wh-link:hover{font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
		font-size:14px;
		color:#fdf6e4;
		text-decoration:none;}		
.wh-link:active{font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
		font-size:14px;
		color:#fdf6e4;
		text-decoration:none;}			
		
/***********************drop down menu ***********************************************/  		

ul {
  text-align: left;
  display: inline;
  margin: 0;
  padding: 0px 4px 17px 0;
  list-style: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  z-index:99;
}
ul li {
  font: bold 12px/18px sans-serif;
  display: inline-block;
  margin-right: -4px;
  margin-top:3px;
  position: relative;
  padding: 12px 21px;
  background: #b89b42;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
ul li:hover {
  background: #473a1f;
  color: #b89b42;
}

.active{   background: #473a1f;
  color: #b89b42; }
  
ul li ul {
  padding: 0;
  position: absolute;
  top: 40px;
  left: 0;
  width: 150px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -transition: opacity 0.2s;
}
ul li ul li { 
  background: #473a1f; 
  display: block; 
  color: #fff;
  text-shadow: 0 -1px 0 #000;
}
ul li ul li:hover { background: #b89b42; color: #fff;}
ul li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
}