@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;        
}

/* Mobile Layout: 480px and below. */
  
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
	clear: none;
	float: none;
}
#bannerArea {
}
#divFull {
}
#divHalf {
	
}
#footerArea {
	background-color:#333;
}
#divThird {
}
#divTwoThirds {
}
#divThumbnail {
	width:45%;
	clear:none;
	padding:0;
	margin:1.5%;
	border:1px solid #fff;
	border-radius: 0 0 20px 0;
}
#divThumbnailArea {
}
#divSixth {
	text-align:center;
	margin-top:5px;
	margin-bottom:5px;
}
#navArea {
	border:solid #fff 1px;
	border-radius:5px;
	width:80%;
	margin-left:10%;
	margin-right:10%;
}
#contactForm {
	width:90%;
	margin-left:5%;
	margin-right:5%;
}
.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;
}
#bannerArea {
}
#divFull {
}
#divHalf {
		width:50%;
	clear:none;

}
#footerArea {
	background-color:#333;
}
#divThird {
	width:33.333%;
	clear:none;
}
#divTwoThirds {
	width:66.666%;
	clear:none;
}
#divThumbnail {
}
#divThumbnailArea {
}
#divSixth {
}
#navArea {
}
#contactForm {
	width:60%;
	margin-left:20%;
	margin-right:20%;
	margin-bottom:30px;
}
.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: 1440px;
	padding-left: 0;
	padding-right: 0;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
#bannerArea {
}
#divFull {
}
#divHalf {
	width:50%;
	clear:none;
}
#footerArea {
	margin-bottom:20px;
}
#divThird {
}
#divTwoThirds {
}
#divThumbnail {
	width:13%;
	padding:0;
	margin:0.5%;
	clear:none;
	border:1px solid #fff;
	border-radius: 0 0 20px 0;
	}
#divThumbnailArea {
	width:90%;
	margin-left:5%;
	margin-right:5%;
	margin-bottom:30px;
	text-align:center;
}
#divSixth {
	width:16%;
	margin-left:0.3%;
	margin-right:0.3%;
	clear:none;
	text-align:center;
	margin-top:20px;
	margin-bottom:20px;
}
#navArea {
	border:solid #fff 1px;
	border-radius:5px;
	width:60%;
	margin-left:20%;
	margin-right:20%;
}

#searchBox {
	text-align:left;
	

}
#contactForm {
	width:50%;
	margin-left:25%;
	margin-right:25%;
	margin-bottom:30px;
}
.zeroMargin_desktop {
margin-left: 0;
}
.hide_desktop {
display: none;
}
}