/* layoutstyles.css */
/* Universal style rule */
*{
  /* Block all browser default margins and padding */
  margin:0;
  padding:0;
  /* Temporary borders */
 /* border:dashed 1px #f00;*/
}
#wrapper{
	width: 40em;
	background-color: #996633;
	/* Put 20px margin above the wrapper */
/* Set right and left to auto for centering */
   margin: 5px auto 0 auto;
}
/* Applies to id="righty" */
#rightcolumn{
   width:2em;
   float:right;
   padding-left:10px;
}
#leftcolumn{
	/* Remember, content left margin must match this width */
   width:5em;
	float:left;
	/* Temporary border 
   border:dashed 1px #f00; */
}
body{
	background-image:url(images/woodsample3.jpg);
	font-family: Arial, Helvetica, sans-serif;
}
#footer{
	text-align:right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
}
#content{
	/* Left margin must match leftcolumn width */
    margin-left:1em;
	background-color:#fff;
	color:#000;
	padding:10px 20px;
	margin-right: 1em;
}
/* Applies to h1 elements in the content division */
/* Styles h1, h2, and h3 style rules in the content division */
#content h1, #content h2, #content h3{
  font-family: Charcoal, Impact, sans-serif;
  color:#806659;
  font-weight:normal;
  font-style:italic;
  font-variant:small-caps;
  letter-spacing:0.08em;
}
/* Size h1 headings in the content division */
#content h1{
  font-size:2em;
}

/* Size h2 headings in the content division */
#content h2{
  font-size:1.5em;
}
/* Size h3 headings in the content division */
#content h3{
  font-size:1.25em;
  font-style:normal;
}
/* Applies to unordered lists in the content division */
#content ul, #content ol{
  padding:10px 0 10px 40px;
  
}
#content p{
  line-height:1.5em;
}
#image {
	float: right;
	padding: 0.45em;
}
#image img {
	width: 80px;
	height: 79px;
	padding: 0.25em;
}




#branding{
	position:relative;
	height:13em;
	background-color:#553c35;
	color:#CC9933;
	text-align:center;
} 
#branding h1{
  font-family:'Arial Black', Charcoal, Impact, Sans-serif;
  font-size:2em;
  padding-top:0.25em;
}
/* Absolutely position links in the branding division */
#branding a{
	position:absolute;
	text-decoration:none;
	color:#CC9933;
	font-size:0.8em;
}
#branding p{
	color:#CC9933;
	font-size:0.8em;
}
/* Unvisited and visited links in branding bar */
#branding a:link, #branding a:visited {
  color:#000;
}

/* Hover links in branding bar */
#branding a:hover{
	color:#CC6600;
}

/* Active link in branding bar */
#branding a:active{
  color:#1bb498;
}

#branding img{
	display:block;
	padding:0.55em;
	margin-top:.5em;
}
#navbar{
	/*background-color:#aaa;*/
  /* Left margin must match leftcolumn width */
  margin-left:12em;
	background:#aaa url(images/navbak.jpg) repeat-x center;
	height:1.6em;
	background-color: #996633;
}
 
/* Fixes the mysterious image gap */

/* Remove bullets from ul in the navbar */
#navbar ul{
	list-style-type:none;
	background-color: #996633;
}
/* List items in the navbar */
#navbar li{
	float:left;
	/* Required for drop-down menus */
  position:relative;
	background-color: #996633;
}
/* Applies to navbar links, unvisited and visited */
#navbar a,
#navbar a:link,
#navbar a:visited{
	text-decoration:none;
	font-family:Verdana, Geneva, Arial, Sans-Serif;
	font-size:80%;
	color:#000;
	background:#aaa url(images/navbak.jpg) repeat-x center;
	display:block;
	height:2em;
	width:6em;
	border-right:solid 1px #ddd;
	border-left:solid 1px #ddd;
	text-align:center;
	line-height:2em;
	outline-style:none;
	background-color: #996633;

}
/* Navbar hover and active links */
#navbar a:hover,
#navbar a:active
#navbar li.selected a:link,
#navbar li.selected a:visited{
	background:#ddd url(images/navhover.jpg) repeat-x center;
	color:#000;
	background-color: #CC9933;
}
/* Drop-down menu styles */
#navbar li ul{
	position:absolute;
	z-index:100;
	visibility:hidden;
	background-color: #996633;
}
#navbar li:hover ul{
	visibility:visible;
	background-color: #CC9933;
	color: #CCCC99;
}
/* Applies to links on the drop-down menu */
#navbar li:hover ul li a{
	background:#ccc; /* Removes background image */
	color:#000;
	text-align:left;
	display:block;
	width:10em;
	padding:0 0 0 1em;
	height:auto;
	background-color: #CC9933;
}
/* Hover on drop-down menu links */
/* Hover on drop-down menu links */
#navbar li:hover ul li a:hover,
#navbar li a:hover ul li a:hover{ /* IE6 hack */
	background: #aaa;
	color:#000;
}
/* Applies to images in the leftcolumn div */
#leftcolumn img{
  width:80%;
}
/* Applies to paragraphs in the leftcolumn division */
#leftcolumn p{
  border:solid 2px #117b6f;
  padding:0.5em;
  width:80%;
  font-size:0.8em;
  margin:1em auto;
  text-align:left;
} 

