/*******************************************************************************
* Reset stylesheet and basic sitewide css (Mainly HTML tags)
*******************************************************************************/

* {
	margin: 0;
	padding: 0;
}

html {
	font-family: "Century Gothic", Helvetica, sans-serif;
	font-size: 70%;
	background: #546B6D;
}

body {
	font-size: 1.2em;
}

a:link, a:visited {
	color: orange;
	text-decoration: none;
	outline: none;
}

a:hover, a:active, a:focus {
	text-decoration: none;
}

img {
	display: block;
	border: 0;
}

p {
	padding: 0 0 1em 0;
	color: #DDF5FF;
}

ul {
	margin: 0 0 0 2em;
}

h1 {
	font-size: 2.1em;
	color: #DDF5FF;
	/*border-bottom: 1px dotted #DFF5FF;*/
	background: transparent url(../images/dotted-bg.png) repeat-x 0 bottom;
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	font-weight: normal;
}

h2 {
	font-size: 1.4em;
	margin: 0 0 10px 0;
	font-weight: normal;
}

h3 {
	font-size: 1.2em;
}

h4 {
	font-size: 1em;
}

ol {
	list-style: disc;
	color: #DDF5FF;
	background: transparent url(../images/dotted-bg.png) repeat-x 0 bottom;

}
 
	
/*******************************************************************************
* Forms
*******************************************************************************/

.field {
	margin: 0 0 20px 0;
}

label span {
	color: #B5D856;
}

#main #content .field.inline {
	float: left;
	width: 260px;
}

	#main #content .field.inline label {
		width: 150px;
	}

textarea {
	overflow: auto;
}

