@charset "utf-8";
/* CSS Document */
body {

	background-color:#def7d6;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333333;
}
#wrap {
margin: 0 auto;
padding: 0;
width: 900px;
background-color:#63ba73;
}
#header {
height: 200px;
}
#header img{
margin-top:0px;
}
#nav {
	color: #FFFFFF;
}
#nav p{
margin:0;
}
#nav a:link, #nav a:visited{
	color:#333333;
	text-decoration: none;
	padding:2px;
	font-weight: bold;
}
#nav a:hover {
	background-color:#c6d7e7;
	color:#333333;
}
#content {
	background-image:url(images/leaves.jpg);
	background-color:#63ba73;
	background-repeat: no-repeat;
}
#leftpanel {
	padding-top:10px;
	float:left;
	width:600px;
}
#sidebar {
	float:right;
	width:300px;
}
.cpanel {
	width: 540px;
	margin-top: 20px;
	margin-left: 20px;
	margin-bottom: 20px;
	background-color: #FFFFFF;
	border: 6px solid #c6d7e7;
}
.cpanel p{
padding-left:5px;
padding-right:5px;
}
h1 {
	margin-left: 20px;
	padding:0;
	font-size: 16px;
	color: #c6d7e7;
}
h2 {
margin-left: 6px;
margin-bottom: 2px;
margin-top:10px;
font-size: 14px;
}
.clearall {
clear:both;
}
#footer {
	height: 70px;
	font-size: 12px;
	background-color:#63ba73;
	padding-top:5px;
}
#footer a:link,  #footer a:visited{
color: #333333;
text-decoration: none;
}
#footer a:hover{
	color:#000097;
	text-decoration: underline;
}

#consultation {
	margin-top: 100px;
	margin-left: 30px;
	height: 122px;
	width: 246px;
	position:relative;
}
li {
	list-style-type: square;
	padding:5px;
	list-style-position: outside;
}
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	margin: 0;
	padding: 0;
	min-width: 500px;
	max-width: 540px;
	width: 540px;
	clear: left;
	float: left;
}

form fieldset {
    border-color: #000;
	border-width: 1px;
	border-style: solid;
	padding: 10px;        /* padding in fieldset support spotty in IE */
	margin: 10px; 
}

form label {
	display: block;  /* block float the labels to left column, set a width */
	float: left;
	width: 150px;
	padding: 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}


form fieldset legend {
	font-size:14px; /* bump up legend font size, not too large or it'll overwrite border on left */
    color:#000000;
	font-weight: bold; 
}

form input, form textarea, form select{
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form input#submit {
	margin-left:100px; /* set margin-left back to zero on submit button (set above) */
	margin-bottom: 15px;
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
