@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:		3;
	dw-num-cols-tablet:		6;
	dw-num-cols-desktop:	9;
	dw-gutter-percentage:	20;
	
	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/
*/

body {
	background-image: url(siteGFX/backgrounderX.jpg);
	background-repeat: repeat-x;
}
.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}

/* Mobile Layout: 480px and below. */
  
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
	clear: none;
	float: none;
	background-color: #FFF;
}
#header {
}
#mainContent {
	width: 96%;
	margin-left: 2%;
	margin-right: 2%;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #193669;
	border-bottom-color: #193669;
	border-left-color: #193669;
}
#mainContent h2 {
	font-family: Georgia, serif;
	font-size: 18px;
	font-style: italic;
	line-height: 24px;
	color: #193669;
	font-weight: normal;
	margin-left: 32px;
	margin-right: 40px;
}
#mainContent h1 {
	font-family: "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: #1A3669;
	margin: 6px 40px 0px 32px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #A2CF6E;
	padding-bottom: 2px;
	padding-top: 0px;
	display: block;
	line-height: 22px;
}
#mainContent p {
	font-family: "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	margin: 10px 40px 0px 32px;
	color: #424242;
}
#mainContent h4 {
	color: #1A3669;
	margin: 0px 40px 0px 32px;
	font-size: 18px;
	line-height: 20px;
	font-family: "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}
#mainContent p a:link {
	color: #7FAC51;
	text-decoration: none;
}
#mainContent p a:visited {
	color: #7FAC51;
	text-decoration: none;
}
#mainContent p a:hover {
	color: #A6B6C2;
	text-decoration: underline;
}
#mainContent p .itemHead {
	font-size: 18px;
}
#mainContent p.contactus {
	font-size: 14px;
	color: #666;
	padding-top: 5px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #B0D567;
}
#mainContent .photo {
	margin-right: 12px;
	border: 1px solid #A5B4C1;
	float: left;
	margin-bottom: 10px;
}
#mainContent #instruct {
	height: 55px;
	width: 100%;
	background-image: url(siteGFX/instructionsBar.png);
	background-repeat: no-repeat;
}
.zeroMargin_mobile {
margin-left: 0;
}
.hide_mobile {
display: none;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

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

.gridContainer {
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
	clear: none;
	float: none;
	margin-left: auto;
}
#header {
}
#mainContent {
}
#mainContent #instruct {
}
.hide_tablet {
display: none;
}
.zeroMargin_tablet {
margin-left: 0;
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

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

.gridContainer {
	width: 100%;
	max-width: 820px;
	padding-left: 0%;
	padding-right: 0%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
#header {
}
#mainContent {
}
#mainContent #instruct {
}
#mainContent .photo {
	margin-right: 12px;
	border: 1px solid #A5B4C1;
	float: left;
	margin-bottom: 40px;
}
.zeroMargin_desktop {
margin-left: 0;
}
.hide_desktop {
display: none;
}
}
