@charset "utf-8";

body {
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	overflow: auto;
}

#wrapper {
	width: 960px;
	background-color: #FFFFFF;
	margin: 5px auto 5px auto;
	border: 2px solid #CCCCCC;
	text-align: left;
}

#header { 
	background-color: #FFFFFF; 
	padding: 10px 20px 0 20px; 
}

#nav {
	display: none;
}

#graphic {
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

#sidebar {
	float: right;
	width: 200px;
	margin-top: 20px;
	padding: 0 20px 0 20px;
	border-left-style: solid;
	border-left-width: thin;
	border-left-color: #CCCCCC;
}

#maincontent {
	margin-top: 20px;
	margin-right: 240px;
	margin-bottom: 0;
	margin-left: 0;
	padding: 0 20px 0 20px;
}

.photo {
	width: auto;
	margin-left: 10px;
	float: right;
}

#footer { 
	padding: 10px 20px 0 20px;
	background: #EBEBEB; 
	height: 30px;
}

/* text and link formatting */

h1 {
	font-size: 18px;
	font-weight: bold;
	color: #000000;
	margin-top: 0;
	margin-bottom: 5px;
}

h2 {
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	margin-top: 0;
	margin-bottom: 5px;
}

p {
	margin-top: 0;
	color: #000000;
}

#sidebar p:hover {
	background-color: #EBEBEB;
}

#footer p {
    margin: 0; 
	font-size: 9px;
}

a:link, a:visited {
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
}

a:hover {
	color: #999999;
	font-weight: bold;
}

#header a {
	border: none;
}

/* Form formatting and warning messages */

form {
	width: 600px;
	margin: 10px auto 10px 20px;
}

label {
	float: left;
	width: 10em;
	margin-right: 10px;	
	text-align: right;
	clear: left;
}

.warning {
	font-weight: bold;
	color:#FF0000;
}

.textfieldRequiredMsg {
	display: inline;
	font-weight: bold;
	color: #FF0000;
}

.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;
}

.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;
}

