/*
	CSS Styles Document
	----------------------
	
	Please note:
	------------
	This is a STYLES document ONLY.
	Any STRUCTURAL markup/ styles be found within structure.css
	
*/

* {
	margin: 0;
	padding: 0;
}

html {
	
}

body {
	font-family: "Lucida Sans", Arial, verdana;
	font-size: 70%;
}

a {
	color: #000;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

a img {
	border: none;
}

input, textarea, select, option {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}

h1 {
	font-weight: normal;
	font-size: 140%;
}
h2 {
	font-weight: normal;
	font-size: 120%;
	margin-bottom: 5px;
}
h3 {
	font-weight: normal;
	font-size: 110%;
}
table {
	border-collapse: collapse;
}
th, td {
	padding: 5px;
	border: solid 1px #CCC;
}
th {
	background-color: #FFFFFF;
}
td {
	background-color: #FFFFFF;
}
tr:hover td {
	cursor: pointer;
	background-color: #E9E9DA;
}



/* CLASSES */

.br {
	display: block;
}
.clearfix {
	clear: both;
}
.hide {
	position: absolute;
	left: -3000px;
}
.left {
	float: left;
}