/* CSS stylesheet */

/**********************************/
/* Universal style rule           */
/**********************************/
* {
	margin: 0;
	padding: 0;
	border: 0;
	/* temporary borders */
/*	border: dashed 1px #ff0000;*/
}

body {
	margin: 5px 15px;
	background-color: #CCCC99;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000000;
	font-weight: bold;
}	
 

/**********************************/
/* content                        */
/**********************************/
#content {
	margin: 0 auto;
	text-align: left;
	
}

#content h1 {
	font-size: 16px;
	padding-bottom: 15px;
}

#content p {
	padding-bottom: 10px;
}

#content div.label {
	font-size: 14px;
}

#content ul, #content ol {
	padding: 10px 0 0 40px;
}

#content li {
	margin-bottom: 10px;
}

#content a {
	color: #003399;
	text-decoration: underline;
}
#content a:link, #content a:visited {
	color: #003399;
	text-decoration: underline;
}
#content a:hover {
	color: #003399;
	text-decoration: none;
	background-color: #EEF2FB;
}
#content a:active {
	color: #003399;
	text-decoration: underline;
}


/**********************************/
/* misc                           */
/**********************************/
p.center {
	text-align: center;
}
div.center {
	text-align: center;
}

-->