@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:		12;
	dw-num-cols-tablet:		18;
	dw-num-cols-desktop:	24;
	dw-gutter-percentage:	5;
	
	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/
*/

/* Mobile Layout: 480px and below. */

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 99.6031%;
	padding-left: 0.1984%;
	padding-right: 0.1984%;
}

#logo {
	clear: both;
	float: left;
	margin-left: 0;
	width: 49.8007%;
	display: block;
	text-align: left;
}

#menu {
	font-family: 'Oswald', sans-serif;
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	font-size: 1.125em;
}

nav {
	display: block;
	width: 100%;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
    }
nav ul {
	display: none;
	list-style: none;
	width: 100%;
    }
nav li {
	display: inline-block;
	width: 18%;
	padding-top: 1em;
	padding-bottom: 1em;
    }
nav select { display: inline-block; }
#header {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	margin-top: 0.5em;
	margin-bottom: 3em;
}
#breadcrumbs {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#content {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	font-size: 1em;
	margin-bottom: 3em;
}

.footerl{
	width: 100%;
	display: none;
	text-align: left;
}
.footerm{
	width: 100%;
	text-align: center;
}
.footerr{
	width: 100%;
	text-align: right;
}

.cl3{
	text-align: center;
	width: 70%;
	margin-right: auto;
	margin-left: auto;
}
.cl2{
	text-align: center;
	width: 70%;
	margin-right: auto;
	margin-left: auto;
}
.cl2l{
	text-align: left;
	width: 70%;
	margin-right: auto;
	margin-left: auto;
}
.cl1{
	text-align: left;
	float: left;
	width: 70%;
}
.cl1-2{
	text-align: left;
	float: left;
	width: 70%;
}
#phone{
	clear: none;
	float: left;
	margin-left: 0.3984%;
	width: 7.9681%;
	display: none;
	text-align: right;
}
#phonenumber{
	font-family: 'Oswald', sans-serif;
	font-size: 1.25em;
	clear: none;
	float: left;
	margin-left: 0.3984%;
	width: 41.4342%;
	display: block;
	margin-top: 2em;
	text-align: left;
	color: #FFF;
}

.registerpage{
	width: 80%;
	margin-bottom: 2em;
	color: #333;
	background-repeat: repeat;
	padding: 1em;
	border-radius: 0.3em;
	box-shadow: 0px 1px 4px 2px #999;
	background-image: url(../images/iconbkg.jpg);
	float: left;
	margin-right: 2%;
	margin-left: 2%;
}
.mobile{
	display: block;
}
.desktop{
	display: none;
}
.tablet{
		display: none;
}

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

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 99.7354%;
	padding-left: 0.1322%;
	padding-right: 0.1322%;
}
#logo {
	clear: both;
	float: left;
	margin-left: 0;
	width: 44.297%;
	display: block;
}
#menu {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}

nav ul     { display: none; }
nav select { display: inline-block; }
#header { clear: both;  float: left;  margin-left: 0;  width: 100%;  display: block; }
#breadcrumbs { clear: both;  float: left;  margin-left: 0;  width: 100%;  display: block; }
#content { clear: both;  float: left;  margin-left: 0;  width: 100%;  display: block; }


.footerl{
	float: left;
	width: 15%;
	display: block;
}
.footerm{
	float: left;
	width: 70%;
}
.footerr{
	float: left;
	width: 15%;
}
.cl3{
	text-align: center;
	float: left;
	width: 33%;
}
.cl2{
	text-align: center;
	float: left;
	width: 50%;
}
.cl2l{
	text-align: left;
	float: left;
	width: 50%;
}
.cl1{
	text-align: left;
	float: left;
	width: 45%;
}
.cl1-2{
	text-align: left;
	float: left;
	width: 55%;
}
#phone{
	clear: none;
	float: left;
	margin-left: 11.4058%;
	width: 16.4456%;
	display: block;
}
#phonenumber{
	clear: none;
	float: left;
	margin-left: 0.2652%;
	width: 27.5862%;
	display: block;
}
.registerpage{
	width: 30%;
	
}
.mobile{
	display: none;
}
.desktop{
	display: none;
}
.tablet{
		display: block;
}
}

/* 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: 99.8015%;
	max-width: 1232px;
	padding-left: 0.0992%;
	padding-right: 0.0992%;
	margin: auto;
}
#logo {
	clear: both;
	float: left;
	margin-left: 0;
	width: 45.7256%;
	display: block;
}
#menu {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
nav ul     { display: inline-block; }
nav select { display: none; }
#header { clear: both;  float: left;  margin-left: 0;  width: 100%;  display: block; }
#breadcrumbs { clear: both;  float: left;  margin-left: 0;  width: 100%;  display: block; }
#content { clear: both;  float: left;  margin-left: 0;  width: 100%;  display: block; }
.footerl{
	float: left;
	width: 15%;
	display: block;
}
.footerm{
	float: left;
	width: 70%;
	color: #32a0d9;
}
.footerr{
	float: left;
	width: 15%;
}
.cl3{
	text-align: center;
	float: left;
	width: 33%;
}
.cl2{
	text-align: center;
	float: left;
	width: 50%;
}
.cl2l{
	text-align: left;
	float: left;
	width: 50%;
}
.cl1{
	text-align: left;
	float: left;
	width: 35%;
}
.cl1-2{
	text-align: left;
	float: left;
	width: 65%;
}
#phone{
	clear: none;
	float: left;
	margin-left: 29.4234%;
	width: 12.326%;
	display: block;
}
#phonenumber{
	clear: none;
	float: left;
	margin-left: 0.1988%;
	width: 12.326%;
	display: block;
}

.registerpage{
	width: 26%;
	padding: 1em;
	margin-right: 2%;
	margin-left: 2%;
	float: left;
}
.mobile{
	display: none;
}
.desktop{
	display: block;
}
.tablet{
		display: none;
}
}
