/* CSS Document */

body {
	margin: 0;
	padding: 0;
	font-family: Arial, Tahoma, sans-serif;
	font-size: 65%;
	background-color: #2A465A;
}

#wrapper {
	width: 1000px;
	margin: 0 auto;
	margin-top: 10px;
	background-color: #fff;
	margin-bottom: 10px;
}

#branding {
	margin-bottom: 15px;
}

#leftcontent {
	float: left;
	width: 950px;
	padding-left: 20px;
}

#rightcontent {
	float: right;
	width: 450px;
	padding-right: 20px;
}

#footer {
	clear: both;
	height: 10px;
	background-color: #597B94;
}

p {
	font-size: 1.2em;
	line-height: 19px;
}

h1 {
	font-size: 1.5em;
}

h2 {
	font-size: 1.3em;
}

.picright {
	float: right;
	width: 200px;
	margin: 10px;
}

.picright img {
	border: 1px solid #597B94;
}

.smalltext {
	font-size: 1.0em;
}

/* Form Styling */
.clear {
  clear: both;
}

#leftcontent form {
  font-size: 1.4em;
}


/* fieldset styling */
#leftcontent fieldset {
	margin: 0.5em 0; /*  space out the fieldsets a little*/
	padding: 0.5em;
	border : 1px solid #ccc;
}

/* legend styling */
#leftcontent legend {
	font-weight: bold;
	color: #000000;
}

#leftcontent form p {
  	position: relative;
	width: 100%;
	font-size: 0.85em;
}

/* style for  labels */
#leftcontent label {
	float: left;
	width: 8em;
	margin-bottom: 3px;
}

/* :KLUDGE: Explicitly set the width for IE6- */
* html .feedback{
  width: 10em;
}

#leftcontent input {
  width: 200px;
}

#leftcontent  input[type="text"], textarea {
	border-top: 2px solid #999;
	border-left: 2px solid #999;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

#leftcontent  input.radio, input.checkbox, input.submit {
  width: auto;
}

/* style form elements on focus */
#leftcontent  input:focus, textarea:focus {
	background: #ffc;
}

#leftcontent  input.radio {
    float: left;
	margin-right: 1em;
}

#leftcontent  textarea {
	width: 300px;
	height: 100px;
}