/*
// OVERALL STYLES
*/

body, td, div {
	font-size: 12px;
	color: #161616;
	font-family: trebuchet MS;
	text-align: left;
	line-height: 20px;
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0px;
	background-color: #666666;
}

table {
	border-spacing: 0px 0px;
	border-collapse: collapse;
	margin: 0px;
	padding: 0px;
}

a {
	color: #161616;
	line-height: 20px;
	text-decoration: none;
}

a:hover {
	color: #161616;
	text-decoration: underline;
}

hr, hr.default {
	border: none;
	border-bottom: 1px solid grey;
	height: 1px;
	margin: 0;
	clear: both;
}

h1 {
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 20px;
	padding: 0;
	margin: 0;
	color: white;
}

h2 {
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 22px;
	padding: 0;
	margin: 0;
	color: white;
}

img {
	display: block;
	border: 0px;
}

ul, ol {
	margin: 0px;
	padding:0px;
}

li {
	padding: 0px;
}

p {
	margin: 0px;
	padding: 0px;
}

form {
	margin: 0px;
}

/*
// Alignment
*/

.center { /* Center an image in a Div or Td */
	margin-left: auto;
	margin-right: auto;
}

.left { /* Align image to the left in a Div or Td */
	margin-left: 0;
	margin-right: auto;
}

.float_left {
	float: left;
}

.right { /* Align image to the right in a Div or Td */
	margin-left: auto;
	margin-right: 0;
}

/*
// Colors
*/

.aqua { color: aqua; }
.black { color: black; }
.blue { color: #0784b3; }
.fuchsia { color: fuchsia; }
.gray { color: gray; }
.green { color: #00fe00; }
.lime { color: lime; }
.maroon { color: maroon; }
.navy { color: navy; }
.olive { color: olive; }
.purple { color: purple; }
.red { color: red; }
.silver { color: silver; }
.teal { color: teal; }
.white { color: white; }
.yellow { color: yellow; }
.orange { color: #e27e2b; }

/*
// Styles
*/

.b { font-weight: bold; }
.u { text-decoration: underline; }
.i { font-style: italic; }

.error { color: red; }

/*
// Sizes
*/

.small { font-size: 9px; }
.standard { font-size: 12px; }
.medium { font-size: 14px; }
.large { font-size: 16px; }

.clear {
	clear: both;
}