/* CSS Framework Import */
@import url("framework/core.css");
@import url("framework/plugins/helpers.css");

/*Site specific styles and structure begin here*/

body {
	background: #FFF url(../images/bg.jpg) top left repeat-x;
	margin: 0;
	color: #777;
	font-size: .85em;
}
h3, h4 {
	color: #666;
}
h1, h2 {
	margin-left: -9000px;
	display: none;
}
h3 {
	font-size: 1.35em;
}
h4 {
	font-size: 1.15em;
	margin-top: 2em;
	margin-bottom: .75em;
}
a {
	color: #444;
}
.container {
	background: transparent url(../images/home-bg.jpg) top center no-repeat;
	padding-top: 325px;
}
.content {
	font-size: 1em;
}
.content, .footer {
	margin: 0 150px;
}
.nav {
	margin: 0 0 25px 0;
	text-align: right;
}
.nav li {
	padding-left: .5em;
	display: inline;
}
.nav a {
	text-decoration: none;
	color: #AAA;
}
.nav li.current a {
	color: #888;
}
.nav a:hover {
	text-decoration: underline;
}
.footer {
	color: #AAA;
	margin-top: 3em;
	margin-bottom: 5em;
	text-align: right;
	font-size: .85em;
}
.footer a {
	color: #888;
}

/** ------------------------------
    FORMS
    ------------------------------ */

	form {
		background-color: #FAF9DD;
		padding: 1em;
	}

	fieldset {
		border: 1px solid #CCC;
		padding: .5em;
	}

	legend {
		margin-left: 2em;
		position: relative;
	}

	textarea {
		vertical-align: top;
		width: 450px;
		height: 75px;
	}
	textarea.big {
		height: 30em;
	}
	select {
		vertical-align: top;
	}

	label {
		display: inline-block;
		margin-right: .25em;
		width: 7em;
		text-align: right;
		color: #444;
	}

	.action {
		margin-left: 6em;
	}
	.action label {
		text-align: left;
	}

	.submit {
		margin-top: .5em;
	}

	.submit, .indent {
		padding-left: 6.25em;
	}

	.wide {
		width: 27em;
	}
	.wider {
		width: 45em;
	}

	.narrow {
		width: 4em;
	}

	.errorSummary {
		background-color: #FBE3E4;
		text-align: center;
		border: 1px solid #FBC2C4;
		color: #8A1F11;
		padding: .5em;
		margin-bottom: 1em;
	}
	.errorSummary ul {
		margin-right: 0;
	}
	.errorSummary li {
		list-style: none;
	}
	.errorSummary p {
		font-weight: bold;
	}
	span.required {
		color: #D94243;
	}

	label.error {
		padding: 0;
		background-color: transparent;
		border: 0;
	}
	input.error {
		padding: 1px;
		border-width: 1px;
	}
	
/** ------------------------------
    MISCELLANEOUS
    ------------------------------ */

	.clearer {
		clear: both;
	}
	.left {
		float: left;
	}
	.right {
		float: right;
	}

	.message, .success {
		padding: .5em;
		text-align: center;
		margin-bottom: 1em;
	}

	.message {
		background-color: #E1FFE1;
		border: 1px solid green;
		color: green;
	}

	.success {
		background-color: #E1E1FF;
		border: 1px solid blue;
		color: blue;
	}
	.warning {
		color: red;
	}

	.inline {
		display: inline;
	}

	div.captcha {
		text-align: center;
		margin-right: .35em;
	}
	div.captcha img {
		border: 1px solid #BBB;
	}

	.instructions {
		font-size: .85em;
	}
	.alt {
		color: #555;
	}
	.label {
		font-weight: bold;
	}