/* give me a black background */
body
{
	background-color:	#000000;
	margin:			10px 40px 10px 40px;
/*	background-image:	url("images/bgbg.png"); */
}

/* and bright white headings */
h1
{
	color:			#FFFFFF;
	font:			bold 2em dragonwick, aquafont, verdana, sans-serif;
/* We don't need these because of font compiling above
	font-family:		dragonwick, aquafont, verdana, sans-serif;
	font-weight:		bold;
	font-size:		150%; */

	/* center aligned */
	text-align:		center;

/* the following can be used to draw lines above/below text
	text-decoration: 	overline underline; */

}
/* temporary spot for a center tag until i figure out something more useful */
center
{
	text-align:		center;
}
/* make some nice grey text */
p
{
	color:			#808080;
	font:			1em "times new roman", serif;
	text-align:		justify;
}
/* have a nice address area */
address
{
	color:			#808080;
	font:			.8em "times new roman", serif;
	font-style:		italic;
	text-align:		left;
}
/* -----------------------------------------------------------------------
 * LINKS:
 * a:hover	MUST come after a:link and a:visited in the CSS definition
 * a:active	MUST come after a:hover in the CSS definition
 ----------------------------------------------------------------------- */
a, a:link, a:visited, a:active
{
	text-decoration:	underline;
}

a:link
{
	color:			#0000FF;
}

a:visited
{
	color:			#6495ED;
}

a:hover
{
	text-decoration:	none;
}

a:active
{
	color:			#FFFFFF;
}
/* -----------------------------------------------------------------------
 * DIV
 ----------------------------------------------------------------------- */
div.box
{
	float:			left;
	width:			90%;
	margin:			0 auto;
	color:			#FFFFFF;
	padding-left:		3em;
	padding-right:		3em;
	padding-top:		.25em;
	padding-bottom:		.25em;
	font:		    	100% dragonwick, aquafont, verdana, sans-serif;
	text-align:		left;
	border-color:		#A9A9A9
}
fieldset.box
{
	border:			2px dotted #FFFFFF;
	background-color:	#242424;
/*	background-image:	url("images/blah.png");*/
	padding:		.2em;
	width:			100%;
}
legend.box
{
	font-family:		dragonwick, aquafont, verdana, sans-serif;
	font-size:		1.2em;
	padding:		.2em .5em;
	margin-left:		0%;
	border:			thin dashed #00008B;
}
