@charset "UTF-8";
/* CSS Document */

/*Universal style rule to cancel margins and padding*/
*{margin:0;
  padding:0;
}
	
/*page background*/
body{
	background-color:#495C2B;
	
	
	}

/*header or branding bar*/
#header{
width:860px;
margin:auto;
}

/*bar beneath header*/
#topbar{
width:860px;
height:20px;
margin:2px auto 2px;
}

/*Navigation bar styles---------------------------*/
#navbar{
width:860px;
height:40px;
margin:auto;
}

#navbar ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#navbar ul li {
	display: inline;
}
#navbar ul li a {
	text-decoration: none;
	margin: 5px;
	padding: 5px;
	float: left;
	border: 1px solid #FFFFFF;
}
#navbar ul li a:link, #navigation ul li a:visited {
	color: #666633;
}
#navbar ul li a:hover {
	background-color: #669933;
}

#navbar ul li a.present {
	background-color: #669933;
}

/*End Navigation bar styles---------------------------*/

/*Main text area*/
#content{
	width: 832px;
	height: auto;
	background-image:url(images/textbox_large.gif);
	background-repeat:no-repeat;
	background-position:center;
	text-align:left;
	font-family:"Gill Sans", Arial, Helvetica, sans-serif;
	font-size:12pt;
	color:#663;
	margin:2px auto 2px;
	padding:14px;
	}
	
/*Main text area for INDEX PG ONLY*/
#content_index{
	width: 832px;
	height: auto;
	background-image:url(images/textbox_index.gif);
	background-attachment:fixed;
	background-repeat:no-repeat;
	background-position:center;
	text-align:left;
	font-family:"Gill Sans", Arial, Helvetica, sans-serif;
	font-size:12pt;
	color:#663;
	margin:2px auto 2px;
	padding:14px;
	}	
	
/*Text area for long pages - Resources and Services*/
#content_no_img{
	width: 832px;
	height: auto;
	background-color:#96A383;
	text-align:left;
	font-family:"Gill Sans", Arial, Helvetica, sans-serif;
	font-size:12pt;
	color:#663;
	margin:2px auto 2px;
	padding:14px;
	}
	
/*Services text box*/
#servicesbox{
width: 14em;
height:auto;
float:right;
position:relative;
}

/*Resources links*/
.resources{
	text-decoration:none;
	text-align:left;
}

/*Footer*/
#footer{
width:860px;
height:20px;
margin:auto;
color:#999;
}

/*testimonial text*/
p.testimonial {
text-align:left;
font-family:Georgia, Verdana, Arial, serif;
font-style:italic;
color:#663;
font-size:14px;
}

/*book titles*/
.booktitle {
text-align:left;
font-size:12pt;
font-family:"Gill Sans", Arial, Helvetica, sans-serif;
color:#663;
text-decoration:underline;
}

/*copyright text*/
p.copyright {
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	color:#999;
	font-size:11px;
}


/* Float image to left of paragraph */
img.floatLeft{
   float: left;
   margin-right: 5px;
}
#content #map {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}

.clearfix:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
     }
	 .clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */

 .gradientV{
/* thanks to http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/ */
/* and http://www.puremango.co.uk/2010/04/css-gradient/ */
    /* fallback (Opera) */
    background: #FDFDFD;
    /* Mozilla: */
    background: -moz-linear-gradient(top, #FDFDFD, #495C2B);
    /* Chrome, Safari:*/
    background: -webkit-gradient(linear,
                left top, left bottom, from(#FDFDFD), to(#495C2B));
    /* MSIE */
    filter: progid:DXImageTransform.Microsoft.Gradient(
                StartColorStr='#FDFDFD', EndColorStr='#495C2B', GradientType=0);
  }
