@charset "UTF-8";
/* CSS Document */

html, body {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#wrapper {
	width: 800px;
	margin: 0 auto;
}

/***** Common Formatting *****/

img {
	border: 0;
}

form {
	margin: 0;
	padding: 0;
}

input, select, textarea {	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

th, td {
	vertical-align: top;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:focus {
	outline: none;
}

div.error, div.success {
	-moz-border-radius: 10px; 
	-webkit-border-radius: 10px;
	color: #ffffff;
	padding: 15px;
	margin: 10px 0;
}

div.error {
	background: #cd0a0a;
}

div.success {
	background: #39b54a;
}

/***** Font/Heading Styling *****/

h1, h2, h3, h4, h5, h6 {
	font-family: Arial, Helvetica, sans-serif;
}

h1 {
	font-size: 22px;
}

h2 {
	font-size: 20px;
}

h3 {
	font-size: 18px;
}

h4 {
	font-size: 16px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 12px;
}

/***** Global Classes *****/

.wrapper {
	width: 800px;
	margin: 0 auto;
}

.clear {
	clear: both;
}

.small {
	font-size: 0.85em;
}

.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.underline {
	border-bottom: 1px solid;
}

.highlight {
	background: #ffc;
}

.ulNoFormat {
	padding: 0;
	margin: 0;
	list-style: none;
}

.noPadding {
	padding: 0;
}

.noMargin {
	margin: 0;
}

.noIndent {
	padding-left: 0;
	margin-left: 0;
}

.noBullet {
	list-style: none;
	list-style-image: none;
}

.left {
	float: left;
}

.right {
	float: right;
}

.gray {
	color: #555555;
}