/* CSS Document */


/* STANDARD CLASSES */


html, body {
	height:100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color:#222;
}

p, ul, ol {
	font-size: 11px;
	line-height: 16px;
	font-weight: normal;
	font-style: normal;
	color: #CCC;
	
	margin-bottom: 5px;
}

ul, ol {
	margin-left: 30px;	
}

h1 {
	font-weight: normal;
	font-size: 18px;
	color:#00aeee;
	
	margin-top: 10px;
	margin-bottom: 10px;
}

h2 {
	font-weight: normal;
	color:#00aeee;
	font-size: 14px;
	
	margin-top: 10px;
	margin-bottom: 5px;
}

h3 {
	font-weight: bold;
	color:#FFF;
	font-size: 13px;
	
	margin-top: 5px;
	margin-bottom: 5px;
}

hr {
	width: 100%;
	height:0px;
	border:0px;
	border-top: 1px solid #333;
	
	margin-top: 10px;
	margin-bottom: 10px;
}

td {
	vertical-align:top;
}


/* CUSTOM CLASSES */
.alternate {
	color:#999;
	font-size: 9px;
	line-height: 13px;
}


.input {
	border: 1px solid #333;
	font-size: 14px;
	width: 300px;
	height: 25px;
	color:#333;
}

.input:focus {
	border:1px solid #00aeee;
	color:#000;
}

.select {
	border: 1px solid #333;
	font-size: 14px;
	width: 300px;
	height: 25px;
	color:#333;
}

.select:focus {
	border:1px solid #00aeee;
	color:#000;
}

.submit {
	border: 1px solid #333;
	font-size: 14px;
	height: 25px;
	width: 200px;
	background-color:#FFF;
	color:#333;
}

.submit:hover {
	border:1px solid #FFF;
	background-color:#00aeee;
	color:#FFF;
	cursor:pointer;
}

.textarea {
	border: 1px solid #333;
	font-size: 14px;
	width: 300px;
	height: 150px;
	color:#333;
}

.textarea:focus {
	border:1px solid #00aeee;
	color:#000;
}

label{display:block; width:245px; float:left;}

/* STANDARD IDS */
#alert {
	background-image:url(../images/alert.jpg);
	border: 1px solid #a50000;
	background-color:#a50000;
	padding: 5px 10px 5px 10px;
}

#alert p {
	color:#FFF;
	font-size: 14px;
	
	margin: 0px;
	padding: 0px;
}

#success {
	background-image:url(../images/success.jpg);
	border: 1px solid #00a504;
	background-color:#00a504;
	padding: 5px 10px 5px 10px;
}

#success p {
	color:#FFF;
	font-size: 14px;
	
	margin: 0px;
	padding: 0px;
}

/* LINKS */
a {
	color:#00aeee;
	text-decoration:underline;
}

a:hover {
	color: #AAA;
	text-decoration:none;
}