@charset "utf-8";

/* DIV positioning and formatting */

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: 1px solid #CCCCCC;
	text-align: left;
}

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

#nav {
	background-color: #EBEBEB;
	padding: 1px 1px 1px 20px;
	height: auto;
}

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

#footer {
	padding: 10px 20px 0 20px;
	height: 30px;
	border-top: 1px solid #CCCCCC;
}

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

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


/* text formatting */

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

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

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

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

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


/* link formatting */

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

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

#header a {
	border: none;
}


/* nav link formatting */

ul.nav {
	margin-left: 0px;
	padding-left: 0px;
	padding-top: 0px;
	list-style: none;
}

ul.nav li {
	display: inline;
}

ul.nav a {
	padding: 10px 10px 10px 10px;
	background-color:#EBEBEB;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	color: #333333;
}

ul.nav a:active {
	color: #FFFFFF;
}

ul.nav a:hover {
	color: #999999;
}


/* Form and warning message formatting */

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

label {
	margin-right: 10px;
	display: block;
	font-weight: bold;
}

.textInput { 
	width: 250px;
}

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

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

