/* ------------------------------ 
// BEGIN CSS RESET
------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
h1, h2, h3, h4, h5, h6{
	font-weight: bold;
	color: #333;
}
blockquote, q {
	quotes: none;
}
strong{
	font-weight: bold;
}
em{
	font-style: italic;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
table a{
	text-decoration: none;
	font-weight: bold;
	line-height: 18px;
}
table a:hover{
	color: #1a1a1a;
	text-decoration: underline
}
html {
	overflow: -moz-scrollbars-vertical;
	margin: 0;
	padding: 0;
	/*background: #f9f9f9 url(../ui/html-bg.png) repeat;*/
	background: #f9f9f9;
}
body {
	line-height: 1;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
	padding: 0px;
	font-size: 13px;
	background: url(../ui/body-bg.png) 0 -25px repeat-x;
}
body,
td,
th,
input,
textarea,
select,
a {
	outline: none;
	color: #333;
	font-size: 13px;
	text-decoration: none;
}
th, td{
	line-height: 20px;
}
/* Make definition lists display on the same line */
dl{
	width:100%;
	overflow:hidden;
}
dt{
	float:left;
	width:20%; /* adjust the width; make sure the total of both is 100% */
	font-weight: bold;
	color: #333;
}
dd{
	float:left;
	width:80%; /* adjust the width; make sure the total of both is 100% */
}