body{background:url('../images/webBG.png') repeat top left; }

/*Layout*/
.headerOuter,.footerOuter{width:100%; overflow: hidden;}
.wrapper,.footerInner,.headerInner{width:900px; margin:0 auto;}
.contentArea{width:860px;}
.headerOuter{background:#663300 url('../images/largerheadbg.png') repeat-x bottom left;}
.headerInner{}
.banner{padding:7px; width:886px; background-color:#946126; position:relative;}
.banner .bannertexthidden{position:absolute; top:10px; left:10px; display:none;}
.banner .bannertext{position:absolute; top:10px; left:10px;}
.contentArea{min-height:300px; background-color:#FFF;}
.footerOuter{background:url('../images/footerBG.png') top right repeat;}
.footerInner{overflow: hidden;}

.navigation{}


ul.navigation{float:right;}
ul.navigation li{float:left; padding: 10px 10px;}
ul.navigation li:hover{background-color:#512800;}
ul.navigation li a{color:#D6B67B;}
/*end layout*/

/*Page styles*/
.headerInner h1 a{width: 200px;font-size: 24px; color: #fff; text-decoration: none;}
.headerInner h1{padding-top:10px}
.contentArea{padding:20px 20px;}
.contentArea p{line-height:20px;}
.footer a{display: inline; color: #000000; text-decoration:none; font-size: 12px;}
.footer{color:black;}
.footer address{color:#000000; font-size: 12px;}
.footer a:hover,.footer address a{text-decoration:underline; color: blue;}
.footer{color: #F1D2A3; font-size:13px; text-align: center;}
.man{width:100px; height:100px; margin-right:100px;}

/*Common styles*/
.floatL{float:left}
.floatR{float: right}
.left{text-align: left}
.right{text-align: right}
.center{text-align: center}
.error{color:red;}
.hide { display: none; } /*Hide Class*/
a{font-size:15px;}
.clearB {clear: both;}

/*Page Specific styles*/
.contentArea a{display:block;}
.contentArea{font-family:"Times";}

/*GRID styes*/
.gridContainer{width:99%; margin:0 auto; padding-top:5px; overflow:auto;}
.grid{width:99%; margin:5px auto; border:2px solid #999999;padding:0 3px 3px 3px;}
.grid .altRow, .grid .altRow td{background-color:#D8E9F6;}
.grid td, .grid th{padding:3px; border-right:solid #999999 1px; border-bottom:solid #999999 1px;}
.grid th{font-size:1.0em; padding-left:0}
.grid td.numWidth{width:110px;}

.grid td.green{background-color:#C9E9D4;}
.grid td.red{background-color:#FFCECE;}
.grid td.yellow{background-color:#FFFFB9;}
/*alt shading classes*/
.grid tr.altRow td.green{background-color:#BDDCC8;}
.grid tr.altRow td.yellow{background-color:#E9E9A9;}
.grid tr.altRow td.red{background-color:#F0C1C1;}
.grid td.indent{padding-left:15px;}
.gridContainer{min-height:100px;} /*FX fix....needs a height when grid is small*/
/*end GRID styes*/

/*Button styles <a> will hold the Left side and <span> will hold the body>*/
.buttonL{background:url(../images/ButtonL.jpg) no-repeat left; padding:9px 0px 9px 12px; text-decoration:none; vertical-align:middle;}
.buttonBody{background:url(../images/ButtonBody.jpg) no-repeat right; padding:9px 12px 9px 0px; text-decoration:none;}
.buttonL span, .buttonL span:hover, .button{color:black; text-decoration:none;}

/*styles for demo of fonts for chris
ul.navigation li a.blue{color:#003399;}
ul.navigation li a.yellow{color:#999900;}
ul.navigation li a.tan{color:;}*/

.contentArea .twoColL,.contentArea .twoColR{width:45%;float:left;}
.contentArea .twoColL{margin-right:20px;}
.contentArea .twoColL{border-right:1px solid blue; padding-right:30px;}

/*Joes totally CSS hover menu so doug doesn't have to worry about doing this ever again
	so when clients ask for it we already have it*/

ul.makeMenu, ul.makeMenu ul {
  width: auto;                 /* sets the size of the menu blocks */
  /*border: 1px solid #000;       puts a black border around the menu blocks */
  /*background-color: #8aa;       makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  float:right;
  position:absolute;
  top:0;
  left : 52%;
}
ul.makeMenu li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #fff;                 /* sets the default font colour to white */
  float:left;
  padding: 10px;
}
ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 14px;                    /* position slightly lower than the parent menu item */
  left: 0px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
  width:108px;

}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #512800;      /* gives the active menu items a yellow background */
  /*color: #000;                  makes the active menu item text black */

}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */

}
ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
  margin-top: 20px;
  z-index: 100;
}
/* and some link styles */
ul.makeMenu li a { color: #D6B67B; display: block; width: 100%; text-decoration: underline;}
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #000;}
ul.makeMenu li ul li{background-color:#946126;}
ul.makeMenu li:hover > a { color: #D6B67B;} /* supports links in branch headings - should not be display: block; */
