/* CSS :: TEXTSTYLE */ 

* {
	margin: 0;
	padding: 0;
}

html, body {
	font-size: 62.5%;
}

body {
	text-align: left;
	font: 12px/18px Arial, Helvetica, Verdana, sans-serif; 
	color: #fff;
}

img {
	border: 0px;
}	
	
/* LINKS */

a, a:link, a:visited, a:active,
ul a, ul a:link, ul a:visited, ul a:active,
p a, p a:link, p a:visited, p a:active  {
	color: #fff;
	background-color: transparent;
	text-decoration: underline;
}

a:hover, ul a:hover, p a:hover {
	color: #fff;
	text-decoration: none;
}	
	
/* HEADINGS */

h1 {
	font-size: 16px;
	line-height: 24px;
	margin: 0px 0px 16px 0px;
	padding: 0px;
	color: #fff;
}
	h1.title {
		font-size: 20px;
		line-height: 24px;
		margin: 0 0 1px 0;
		padding: 0px;
		color: #fff;
	}
	h1.subtitle {
		height: 35px;
		font-size: 18px;
		line-height: 20px;
		margin: 0 0 1px 0;
		padding: 0px;
		color: #fff;
		font-weight: normal;
	}

h2 {
	font-size: 15px;
	line-height: 22px;
	margin: 0px 0px 15px 0px;
	padding: 0px;
	color: #fff;
}

h3 {
	font-size: 14px;
	line-height: 20px;
	margin: 0px 0px 14px 0px;
	padding: 0px;
	color: #fff;
}

h4 {
	font-size: 13px;
	line-height: 18px;
	margin: 0px 0px 13px 0px;
	padding: 0px;
	color: #fff;
}

h5 {
	font-size: 12px;
	line-height: 16px;
	margin: 0px 0px 15px 0px;
	padding: 0px;
	color: #fff;
}
	
h6 {
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 14px 0;
	padding: 0;
	color: #fff;
}

	.line {
		border-bottom: 1px solid #fff;
	}


/* TEXT */

p {
	font-size: 12px;
	line-height: 18px;
	padding: 0;
	margin: 0;
	margin-bottom: 18px;
}

p.intro {
	font-size: 16px;
	line-height: 20px;
}

blockquote {
	border-width: 0px 0px 0px 5px;
	border-style: solid;
	border-color: #DDD;
	padding: 0px 0px 0px 10px;
	margin: 0px 0px 0px 10px;
}

pre {
	font-family: monospace;
	font-size: 1.0em;
}

strong, b {
	font-weight: bold;
}

em, i {
	font-style: italic;
}

code {
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
	white-space: pre;
}
	
	
/* LISTS */

ul,
ol {
	line-height: 16px;
	padding: 0px;
	margin: 16px 0px 16px 0px;
}

	ul li,
	ol li {
		padding: 0px 0 2px 0;
		margin: 0px 0px 0px 32px;
	}
	
	
/* RULERS */	

div.hr {
	position: relative;
	float: left;
	clear: both;
	display:block;
	height: 1px;
	width: 100%;
	padding: 10px 0px 0px 0px;
	margin: 0px 0px 5px 0px;
	border-width: 0px 0px 1px 0px;
	border-style: solid;
	border-color: #666;
}


/* ================================ */

/* GENERAL */	

.caption {
	font: 9px/12px Arial, Helvetica, Verdana, sans-serif;
	color: #978080;
}

	.caption a,
	.caption a:link,
	.caption a:visited,
	.caption a:active {
		color: #978080;
		text-decoration: underline;
		background: transparent !important;
	}
	.caption a:hover {
		color: #978080;
		text-decoration: none;
	}


.link {
	color: #333;
}

	.link a,
	.link a:link,
	.link a:visited,
	.link a:active {
		color: #333;
		text-decoration: underline;
	}
	
	.link a:hover {
		color: #000;
		text-decoration: none;
	}
	

fieldset {
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #826b6c;
}
	fieldset legend {
		color: #826b6c;
		padding: 0 5px 0 5px;
	}
	
.alert {
	clear: left;
	color: #FF0000;
	font-weight: bold;
	padding: 5px;
	margin: 0px 0px 15px 0px;
	border: 1px solid #FF0000;
}

	.alert p {
		color: #FF0000;
		padding: 0px;
		margin: 0px;
	}
	
	.alert a,
	.alert a:link,
	.alert a:visited ,
	.alert a:active {
		color: #FF0000;
		font-weight: bold;
		text-decoration: underline;
	}
	
	.alert a:hover {
		color: #FF0000;
		font-weight: bold;
		text-decoration: none;
	}


.required {
	color: #FF0000;
	border-color: #FF0000;
}

.text {
	width: 250px;
	border: 1px solid #CCC;
}
	.text:focus {
		border-color: #666;
	}

	.text.required {
		border-color: #FF0000;
	}

.textsmall {
	width: 100px;
	border: 1px solid #CCC;
}
	.textsmall:focus {
		border-color: #666;
	}
	.textsmall.required {
		border-color: #FF0000;
	}
	
.textbox {
	width: 250px;
	border: 1px solid #CCC;
}
	.textbox:focus {
		border-color: #666;
	}
	
	.textbox.required {
		border-color: #FF0000;
	}

.select {
	width: 255px;
	border: 1px solid #CCC;
}
	.select:focus {
		border-color: #666;
	}
	.select.required {
		border-color: #FF0000;
	}

	
/* end GENERAL */