body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #fde9f4;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #777777;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
#container {
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header { 
	height:225px;
	background-image:url(../img/header.png);
	background-repeat:no-repeat;
	 
} 
#mainContent {
	margin:0;
}
#footer { 
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	height:163px;;
	clear:both;
}

img {
	border:none;
}

p {
	font-size:12px;
	font-weight:normal;
	padding-top:15px;
}

a {
	color:#a949b4;
}


h1 {
	font-family:Geneva, Arial, Helvetica, sans-serif, "Trebuchet MS";
	font-size:16px;
	font-weight:normal;
	color:#a949b4;
	padding-top: 15px;
}

ul {
	margin:0 0 0 0px;
	margin-left: 0;
	padding-left: 0;
	padding-top: 15px;
	line-height:30px;
}

li {
	list-style:none;
	background-image: url(../pics/bullet.gif);
	background-repeat: no-repeat;
	padding-left: 30px;
	background-position: 0px;
}

#nav {
	top:120px;
	left:158px;
	position:relative;
}
#nav a {
	font-size:14px;
	color:#666666;
}
#nav a:hover {
	text-decoration:none;
}

div#strip {
	width:960px;
}
	.paddingTop {
		padding-top:30px;
	}
	div.gallery {
		width:260px;
		height:230px;
		margin-left:30px;
		padding:10px;
		float:left;
	}
	div.gallery H1 {
		font-family:Georgia, "Times New Roman", Times, serif;
		font-size:16px;
		color:#872b7b;
		margin:0px;
		padding-left:10px;
	}
	div.gallery p {
		margin:0px;
		padding-left:10px;
		width:150px;
		float:left;
	}
	div.gallery img {
		float:right;
	}
	div.galleryImg {
		height:150px;
	}
	div.button {
		padding-right:10px;
	}
	div.galleryTxt {
		height:90px;
		width:280px;
		background-image:url(../pics/galleryBG.jpg);
		background-repeat:no-repeat;
		
	}
	.title {
		margin-left:30px;
		margin-top:30px;
	}
	.galleryButton {
		padding-top:10px;
		padding-right:5px;
	}

#leftCol {
	margin-left:60px;
	width: 420px;
	float: left;
}
#rightCol {
	margin-right:60px;
	width: 420px;
	float: right;
}
.formBG {
	height:479px;
	background-image:url(../pics/formBG.jpg);
	background-repeat:no-repeat;
	padding-top:10px;
	padding-left:30px;
}
.niceForm {
	font-family:Geneva, Arial, Helvetica, sans-serif, "Trebuchet MS";
	font-size:12px;
	padding:10px;
	color: #666666;
	border:#dadada 1px solid;
	background-image:url(../pics/formInputBG.gif);
	background-repeat:repeat;
}
#rightColRight {
	margin-left:30px;
	width: 180px;
	float: right;
}
#rightColLeft {
	margin-right:30px;
	width: 180px;
	float: left;
}

 #footer p {
 	color:#88ba15;
	margin-top: 50px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0 0 0 60px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
 #footer a {
 	font-size:12px;
 	margin: 0px;
 	color:#7c0b6d;
}

.padding {
	padding-top:30px;
}


/*##########################################
form css
##########################################*/


#formLeft {
	color: #666666;
	float:left;
	width:300px;
}
#formRight {
	color: #666666;
	float:left;
	width:300px;
}


.textBox {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight:normal;
	color: #666666;
	font-size:13px;
	border:1px solid #c3c3c3;
	padding:5px;
	height:30px;
	width:300px;
}
.inputBox {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight:normal;
	color: #666666;
	font-size:13px;
	border:1px solid #c3c3c3;
	padding:5px;
	height:210px;
	width:304px;
	-moz-outline: none;
	
	}
.formText {
	font-size:12px;
}
.floatLeft {
	float:left;
}
.floatRight {
	float:right;
}

input:hover, input:focus  {
	border-color:#c5c5c5;
	background:#eadde8;
} 
textarea:hover, textarea:focus  {
	border-color:#c5c5c5;
	background:#eadde8;
} 

/* These are the classes applied on the error messages
 * which prevent them from being displayed by default.
 */ 
.textfieldRequiredMsg, 
.textfieldInvalidFormatMsg, 
.textfieldMinValueMsg,
.textfieldMaxValueMsg,
.textfieldMinCharsMsg,
.textfieldMaxCharsMsg,
.textfieldValidMsg {
	display: none;
}

/* These selectors change the way messages look when the widget is in one of the error states.
 * These classes set a default red border and color for the error text.
 * The state class (e.g. .textfieldRequiredState) is applied on the top-level container for the widget,
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.textfieldRequiredState .textfieldRequiredMsg, 
.textfieldInvalidFormatState .textfieldInvalidFormatMsg, 
.textfieldMinValueState .textfieldMinValueMsg,
.textfieldMaxValueState .textfieldMaxValueMsg,
.textfieldMinCharsState .textfieldMinCharsMsg,
.textfieldMaxCharsState .textfieldMaxCharsMsg
{
	display: inline;
	border: none;
}


