@charset "utf-8";
/* CSS Document */

html {min-height: 101%;
	height:100%;} /* prevents the page from appearing to jump */
	
body{
	background-color: #dae7f3;
	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 */
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
}

#container{
	width:772px;
	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{
	background-color: #FFFFFF;
}

#sidebar{
	width:27%;
}

#sidebar, #content{
	float:left;
	padding:20px 20px 0px 20px;
}

#menu {
	margin: 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float:right;
} 

#content{
	width:62%;
	min-height:600px;
}

#footer{
	text-align:center;
	color:#09C;
	font-size:x-small;
	background-color: #dae7f3;
	padding-top:10px;
	padding-bottom:10px;
}
.clearfloat { 
/* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}


#pics{
	padding-top:20px;
}

.contact{
	background-image:url(../graphics/contact.gif);
	background-repeat:no-repeat;
	background-position:top right;
	text-align:right;
	font-size:small;
	padding:3px 10px;
	height: 130px;
}

.contact2{
	background-image:url(../graphics/contact.png);
	background-repeat:no-repeat;
	background-position:top right;
	text-align:right;
	font-size:small;
	padding:10px 10px 0px 10px;
	height: 240px;
}

input.textfield {
background-color:#FFFFFF;
border:none;
width:164px;
height:17px;
vertical-align:top;
margin-bottom:2px;
}


input.textfield2 {
background-color:#FFFFFF;
border:none;
width:164px;
height:17px;
vertical-align:top;
margin-bottom:5px;
}

#message {
background-color:#FFFFFF;
border:none;
width:164px;
height:63px;
background-repeat: repeat;
vertical-align:top;
margin-bottom:12px;
}

input.submit{
	background:transparent url(../graphics/submit.png);
	height:25px;
	border:none;
	width:86px;
	background-repeat:no-repeat;
	
	
}

input:hover.submit{
	background:transparent url(../graphics/submit_over.png);
	height:25px;
	border:none;
	width:86px;
	background-repeat:no-repeat;
	background-position:top;

}


form{
	border:none;
	float:right;
}

#topbg{
	background-image:url(../graphics/topbg.gif);
	background-repeat:repeat-y;
	height:95%;
}

#contentwrapper{
	background-repeat:no-repeat;
	background-position: bottom center;
	background-image:url(../graphics/bg.jpg);
	float:left;
}

