/* ----------------------------------- */
/* CSS Reset
/* ----------------------------------- */

html,body
{
	margin: 0;
	padding: 0;
	color: black;
	background: white;
	/* fonts were out of order here until January 2011, now Opera renders pages properly */
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 11px;
}

div,pre,code,form,fieldset,blockquote,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
legend,abbr,acronym,input,textarea,p,td{
	margin: 0;
	padding: 0;
	color: inherit;
	background: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	font-size: inherit;
	font-family: inherit;
}

table{
	border-collapse: collapse;
	border-spacing: 0;
}

thead td{
	font-weight: bold;
	text-align: center;
}

h1 {
	font-size: 18px;  
}
h2 {
	font-size: 16px; 
}
h3 {
	font-size: 14px;
}
h4 {
	font-size: 13px;
}
h5 {
	font-size: 12px;
}
h6 {
	font-size: 12px;
	font-weight: normal;
}

fieldset{
	border: 1px solid black;
}

img{
	border: 0;
}

em{
	font-style: italic;
}

strong{
	font-weight: bold;
}

sup{
	vertical-align: text-top;
}

sub{
	vertical-align: text-bottom;
}

input, textarea, select{
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	padding: 2px;
}

abbr, acronym{
	border-bottom: 1px dotted black;
	cursor: help;
} 

ol li {
	list-style: decimal outside;
	margin-left: 16px;
}

ul li {
	margin-left: 16px;
	list-style-type: disc;
	list-style-position: outside;
}


h1,h2,h3,h4,h5,h6,
p, ul, ol, blockquote{
	margin-bottom: 0.8em;
}

blockquote{
	margin-left: 15px;
	margin-right: 15px;
}


/* ----------------------------------- */
/* Commonly used classes
/* ----------------------------------- */

/* For use with inline images */
img.left{
	float: left;
	display: inline;
	margin: 5px 10px 5px 0;
}

img.right{
	float: right;
	display: inline;
	margin: 5px 0 5px 10px;
}

form.standard p{
	text-align: left;
}

form.standard p label{
	float: left;
	width: 150px;
}

form.tight p{
	margin-bottom: 0;
}

div.brace{
	height: 0px;
	line-height: 0px;
	font-size: 0px;
	float: none;
	clear: both;
}

div.vbrace{
	width: 0px;
	height: 100px;
	line-height: 0px;
	font-size: 0px;
	float: right;
	clear: none;
}


