@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}
a:link {
	color: #769A3E;
	text-decoration: none;
}
a:visited {
	color: #020606;
	text-decoration: none;
}
a:hover {
	color: #AACF38;
	text-decoration: underline;
}

/* Mobile Layout: 480px and below. */
  
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 95%;
	padding-left: 2.5%;
	padding-right: 2.5%;
	clear: none;
	float: none;
}
#headerMobi {
	width: 100%;
}
#header {
	display: none;
}
#leftContent {
width: 92%;
}
#leftContent p {
	margin: 0px;
}
#leftContent p.contact {
	font-family: "futura-pt",sans-serif;
	font-size: 18px;
	line-height: 20px;
	font-weight: bold;
	text-align: right;
	margin-top: 0px;
	margin-bottom: 4px;
	color: #779942;
}
#leftContent p.contactInfo {
	font-family: "futura-pt",sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #8B8B8C;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	text-align: right;
}
#leftContent p.contactInfo2 {
	font-family: "futura-pt",sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #8B8B8C;
	margin-top: 6px;
	margin-bottom: 12px;
	text-align: right;
}
#rightContent {
width: 100%;
clear: both;
margin-left: 0;
}
#rightContent h1 {
	font-family: "droid-serif", Georgia, serif;
	font-size: 26px;
	line-height: 27px;
	color: #ABCF38;
	font-weight: normal;
	margin-right: 8%;
	margin-left: 10px;
	margin-top: 0px;
	margin-bottom: 0px;
}
#rightContent p {
	font-family: "droid-serif", Georgia, serif;
	font-size: 16px;
	line-height: 24px;
	color: #666;
	margin-right: 8%;
	margin-left: 10px;
}
#rightContent p .more {
	font-size: 14px;
	line-height: 15px;
	color: #666;
}
#rightContent ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
#rightContent ul li {
	font-family: "futura-pt",sans-serif;
	font-size: 18px;
	line-height: 18px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	margin-right: 8%;
	padding-left: 9%;
	padding-top: 8px;
	padding-bottom: 8px;
}
#rightContent ul li.listbar {
	padding: 0px;
	margin-top: 0px;
}
#rightContent ul li.lastone {
	margin-top: 0px;
	margin-bottom: 30px;
}
.zeroMargin_mobile {
margin-left: 0;
}
.hide_mobile {
display: none;
}

/* Tablet Layout: Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 600px) {

.gridContainer {
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
	clear: none;
	float: none;
	margin-left: 0px;
}
#headerMobi {
	display: none;
}
#header {
	display: block;
	background-image: url(../images/siteGFX/home-tablet-header.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 194px;	
}
#header h6 {
	font-family: "futura-pt",sans-serif;
	font-size: 14px;
	color: #999;
	position: absolute;
	font-weight: normal;
	margin-top: 165px;
	margin-left: 200px;
}
#header h6 a:link {
	color: #999;
	text-decoration: none;
}
#header h6 a:visited {
	color: #999;
	text-decoration: none;
}
#header h6 a:hover {
	color: #AACF38;
	text-decoration: underline;
}
#leftContent {
	width: 58%;
}
#rightContent {
	width: 40%;
	margin-left: 0px;
	float: left;
	clear: none;
}
#rightContent h1 {
	font-size: 28px;
	line-height: 29px;
	margin-right: 8%;
	margin-left: 20px;
}
#rightContent p {
	margin-left: 20px;
	margin-top: 5px;
	margin-bottom: 0px;
}
#rightContent ul li {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	margin-right: 10px;
	padding-left: 20px;
	padding-top: 4px;
	padding-bottom: 4px;
}
#rightContent ul li.listbar {
	padding: 0px;
	margin-top: 21px;
}
#rightContent ul li.lastone {
	margin-top: 0px;
	margin-bottom: 30px;
}
#rightContent ul li a:hover {
	color: #AACF38;
	background-image: url(../images/siteGFX/britegrn-arrow.png);
	background-repeat: no-repeat;
	background-position: left center;
	font-weight: bold;
	text-decoration: none;
	padding-left: 25px;
}
.hide_tablet {
display: none;
}
.zeroMargin_tablet {
margin-left: 0;
}
}

/* Desktop Layout: Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1000px) {

.gridContainer {
	width: 100%;
	max-width: 1600px;
	padding-left: 0%;
	padding-right: 0%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: 0px;
}
#header {
	display: block;
	background-image: url(../images/siteGFX/home-header.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 311px;
}
#header h6 {
	font-size: 14px;
	color: #999;
	position: absolute;
	font-weight: normal;
	margin-top: 112px;
	margin-left: 360px;
}
#header h6 a:link {
	color: #486B32;
}
#header h6 a:visited {
	color: #769A3E;
}
#header h6 a:hover {
	color: #AACF38;
}
#leftContent {
width: 588px;
}
#rightContent {
width: 360px;
}
#rightContent h1 {
	font-size: 30px;
	line-height: 31px;
	margin-right: 8%;
	margin-left: 30px;
}
#rightContent p {
	margin-left: 30px;
}
#rightContent ul li {
	padding-left: 30px;
}
.zeroMargin_desktop {
margin-left: 0;
}
.hide_desktop {
display: none;
}
}
