@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%;
}

h1, h2, p {
	margin: 0;
	padding: 0;	
}

/*
	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: 95%;
	padding-left: 2.5%;
	padding-right: 2.5%;
	clear: none;
	float: none;
}
#div1 {
}
.zeroMargin_mobile {
    margin-left: 0;
}
.hide_mobile {
    display: none;
}

body, html{ 
    height: 100%;
    width: 100%;
	font-family: "PT Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
}

#mapbkgd{
    height: 100%;
    left: 0;
    position: fixed !important;  /* Has to be !important only if you're using the Google Maps API. */
    top: 0;
    width: 100%;
    z-index: 1;
}

#box{
	border-radius: 20px;
	border: 3px solid #E2E4CC;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.38);
	margin: 13% auto;
	overflow: visible !important;
	padding: 5px 20px 15px 20px;
	position: relative;
	width: 8  0%;
	max-width: 300px;
	z-index: 2;
	background-color: rgba(0,51,51,0.75);
}
#iconwrap {
	margin: 0 -10px 0 auto;
	text-align: center;
}
	
h1 {
	font-size:1.5em;
	font-weight:700;
	color: #FFF;
	padding-bottom: 10px;
}

h2 {
	font-size:1.3em;
	font-weight:400;
	color: #DDD;
	padding-bottom: 10px;
}

p {
	font-size:1.1em;
	font-weight:400;
	color: #BBB;
	padding-bottom: 10px;
}

img {
	padding: 10px 10px 0px 0px;
}


@media only screen and (min-width: 321px) {
h1 {
	font-size:1.8em;
}
h2 {
	font-size:1.4em;
}
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {

.gridContainer {
	width: 97.5%;
	padding-left: 1.25%;
	padding-right: 1.25%;
	clear: none;
	float: none;
	margin-left: auto;
}
#div1 {
}
.zeroMargin_tablet {
    margin-left: 0;
}
.hide_tablet {
    display: none;
}
h1 {
	font-size:2em;
}
h2 {
	font-size:1.6em;
}
p {
	font-size:1.2em;
}
#box{
	width: 63%;
	max-width: 470px;
}

}

/* 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: 98.3333%;
	max-width: 1232px;
	padding-left: 0.8333%;
	padding-right: 0.8333%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
#div1 {
}
.zeroMargin_desktop {
    margin-left: 0;
}
.hide_desktop {
    display: none;
}
}