/* =====================HTML tags */
body {
	background: #dcdcdc url(../images/holder.gif) top center repeat-y;
	color: #333;
	margin: 0;
	padding: 0;
	border: 0;
	text-align: center;
	font-family: Verdana, Lucida, Arial, sans-serif;
	font-size: x-small;
	voice-family: "\"}\""; 
	voice-family:inherit;
	font-size: small;
	}

html>body	{
	font-size: small;
	} 
	
img {
	display: inline;
	margin: auto;
	}

dt, dt a:link, dt a:visited, dt a:hover {
	font-weight: bold; 
	}

dd {
	margin-top: 0;
	margin-bottom: 1em;
	}

li {
	margin-top: 0;
	margin-bottom: 0.5em;
	}

a:link, a:visited {
	font-weight : normal; 
	text-decoration : none;
	color: #0000ff;
	background: transparent; 
	}

a:hover {
	font-weight : normal; 
	text-decoration : underline;
	color: #8b0000;
	background: transparent; 
	}

a:active {
	font-weight : normal; 
	text-decoration : none;
	color: #1e90ff;
	background: transparent;  
	}

h1, h2, h3, h4, h5, h6	{
	font-weight: bold;
	font-family: Verdana, Lucida, Arial, sans-serif;
	}

h1	{
	font-size: x-large;
	margin-top: 0;
	margin-bottom: 0;
	}
h2	{
	font-size: large;
	color: #CC3366;
	}
h3	{
	font-size: medium;
	}
h4	{
	margin-bottom: 0;
	font-size: small;
	}
h4 a:link, h4 a:visited, h4 a:hoover, h4 a:active {
	font-weight: bold;
	font-size: small;
}

h5	{
	margin: 0;
	text-decoration : underline;
	font-size: x-small;
	}
h6	{
	margin: 0;
	font-style: italic;
	font-size: x-small;
	}

address	{
	margin-top: 10px;
	}

pre	{
 	font: 12px/1.5 Verdana, Lucida, Arial, sans-serif;
	}

br {
	clear: left;
}


/* =========================forms
<form>
	<label for="name">Name</label>
	<input id="name" name="name" /><br />
</form>
Note that you must use both id and name
*/

/*

form	{
	display: block;
	position: relative;
	text-align: center;
	margin-left : auto;
	margin-right : auto;
	padding: 0;
}

label, input#text, input#select, input#radio {
	display: inline;
	float: left;
	margin-bottom: 10px;
}

input, textarea {
	background-color: #F5F5F5;
}

input:focus, textarea:focus {
	background: #F5FAFA;
}

label {
	text-align: right;
}

label:after {
	content: ": ";
}

input#submit, input#reset {
	display: inline;
	text-align: center;
}
*/