@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%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width: 100%;
	text-align: center;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		3;
	dw-num-cols-tablet:		9;
	dw-num-cols-desktop:	13;
	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: 93.3333%;
	padding-left: 3.3333%;
	padding-right: 3.3333%;
	clear: none;
	float: none;
}
#div1 {
}
.logo {
	margin-left: auto;
	margin-right: auto;
	display: block;
	background-color: hsla(194,57%,43%,1.00);
}
.photo {
	z-index: -3;

}
.foot {
	text-align: center;
	opacity: 1;
	color: hsla(194,57%,90%,1.00);
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
	background-color: hsla(194,57%,43%,1.00);
	margin-bottom: 0em;
	bottom: 0em;
	font-size: small;
	padding-bottom: 0.5em;
}
.contacts {
	text-align: center;
	background-color: hsla(194,57%,43%,1.00);
	padding-top: 1em;
	padding-bottom: 0.5em;
	font-size: large;
}
.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: 90.9333%;
	padding-left: 1.0333%;
	padding-right: 1.0333%;
	clear: none;
	float: none;
	margin-left: auto;
}
#div1 {
}
.logo {
}
.photo {
}
.foot {
}
.contacts {
}
.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: 88.6153%;
	max-width: 1232px;
	padding-left: 0.6923%;
	padding-right: 0.6923%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
#div1 {
}
.logo {
}
.photo {
}
.foot {
}
.contacts {
}
.zeroMargin_desktop {
margin-left: 0;
}
.hide_desktop {
display: none;
}
}
