/* CSS Document */

/* Be sure to uncomment the <style> tag in the template that links
	to this file to make it active */


/* Headers */
h1 {
	font-size: 24px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	line-height: 1.2em;
	text-align: center;
	color: #dddddd;
}
h2 {
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	line-height: 1.2em;
	text-align: center;
	color: #999999;
}
h3 {
	font-size: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: center;
	color: #999999;
}
h4 {
	font-size: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: left;
	color: #999999;
}
h5 {
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: right;
	color: #999999;
}
h6 {
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: center;
	color: #999999;
}
/* Applying styles to the body tag will style the page (with properties
	like 'margin') as well as it's content (because the content inherits 
	from the body as long as nothing else attempts to style it). 
*/
body {
	background-color: #ffffff;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.4em;
	color: #dddddd;
}

/* We'll apply the general text style defined in 'body' above to
	individual tags just to make sure they get it.
*/
p, div, td {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.4em;
	color: #dddddd;
}


/* These style your links in their various states */
a:link {
	font-weight: bold;
	color: #2591FF;
	text-decoration: none;
}
a:visited {
	font-weight: bold;
	color: #2591FF;
	text-decoration: none;
}
a:hover {
	font-weight: bold;
	color: #efefef;
	text-decoration: none;
}
a:active {
	font-weight: bold;
	color: #2591FF;
	text-decoration: none;
}


