@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:		6;
	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/
*/

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

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 87%;
	padding-left: 1.5%;
	padding-right: 1.5%;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
body{
	background-color: #949494;
	background-image: url(../Images/backgroundFlowersl2400.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	height: 100%;
	width: 100%;
	position: fixed;
}
#pageWrapper{
	width: 100%;
	height: auto;
	background-color: #759F3D;
	float: left;
	box-shadow: 0em 0em 0.5em 0.5em #57645A;
}
#pageHeaderP {
	margin-left: auto;
	margin-right: auto;
	/*background-color: #C5E6B3;*/
	height: auto;
	width: 50%;
	font-family: "Times New Roman", Times, serif;
	color: #060;
	text-align: center;
	/*background-image: url(../Images/titleEsteroGlassP.png);*/
	background-repeat: no-repeat;
	background-position: center top;
}
.serviceLink {
	float: left;
	height: 7em;
	width: 40%;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 5%;
	margin-right: 5%;
	color: #6B5C00;
	text-align: center;
	vertical-align: middle;
	text-shadow: 1px 1px 2px #FFF;
}
.serviceLinkC {
	float: none;
	height: 7em;
	width: 40%;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: auto;
	margin-right: auto;
	color: #6B5C00;
	text-align: center;
	vertical-align: middle;
}
/*Page Navigation Link Styling - START*/
.serviceLink a, .serviceLinkC a {
	color: #514500;
	text-shadow: 1px 1px 1px #fff;
	text-decoration: none;
}

.serviceLink a:link, .serviceLinkC a:link {
	color: #514500;
    text-decoration: none;
}

.serviceLink a:visited, .serviceLinkC a:visited {
	color: #0F470F;
	text-decoration: none;
}

.serviceLink a:hover, .serviceLinkC a:hover {
	color: #253C66;
	text-decoration: none;
	text-shadow: 2px 2px 4px #978100;
}

.serviceLink a:active, .serviceLinkC a:active {
	color: #253C66;
	text-decoration: none;
}
/*Page Navigation Link Styling - END*/

#pageFooter {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	height: 10em;
	display: block;
	background-color: #6B5C00;
	color: #FFF;
}
#footerInfoA {
	margin-left: auto;
	margin-right: auto;
	width: 80%;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #FFF;
	text-align: center;
}
#copyright{
	margin-left: auto;
	margin-right: auto;
	width: 80%;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	color: #FFF;
	text-align: center;
	margin-bottom: 0.1em;
	margin-top: 0.1em;
}
/*#copyright{
	width: 50%;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	color: #FFF;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0.3em;
	margin-top: 6em;
}*/
#author{
	width: 80%;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	color: #FFF;
	text-align: center;
	font-style: italic;
	margin-left: auto;
	margin-right: auto;
}
/*---------------------------------------------------------------------*/
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 87.75%;
	padding-left: 1.125%;
	padding-right: 1.125%;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#pageHeader {
	margin-left: auto;
	margin-right: auto;
	/*background-color: #C5E6B3;*/
	height: 250px;
	width: 90%;
	font-family: "Times New Roman", Times, serif;
	color: #060;
	text-align: center;
	background-image: url(../Images/titleEsteroGlass.png);
	background-repeat: no-repeat;
	background-position: center top;
}
#pageFooter {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#copyright{
	margin-left: auto;
	margin-right: auto;
	margin-top: .1em;
	width: 35%;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	color: #FFF;
	text-align: center;
}
#author{
	float: left;
	/*margin-top: 6em;*/
	width: 26%;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	color: #FFF;
	text-align: left;
	font-style: italic;
	padding-left: 1em;
}
}
/*---------------------------------------------------------------------------------------------------*/
/* 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.5%;
	max-width: 1232px;
	padding-left: 0.75%;
	padding-right: 0.75%;
	margin: auto;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#pageFooter {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	height: auto;
	display: block;
}
}
.clr {
	clear: both;
}
