/*
// OVERALL LAYOUT STYLES
*/

body, td, a, div {
	font-family: "Trebuchet MS";
	font-size: 12px;
	line-height: 24px;
	color: #666666;
	text-align: left;
}

body {
	width: 100%;
	margin: 0px;
	padding: 0px;
	background: #ffffff;
}

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

a {
	text-decoration: none;
}

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

hr {
	border: none;
	border-bottom: 1px solid #aaaaaa;
	height: 1px;
}

h1 {
	font-style: normal;
	font-weight: normal;
	font-size: 30px;
}

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

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

li {
	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;
}

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

/*
// Colors
*/

.black { color: black; }
.red { color: red; }
.white { color: white; }
.green { color: green; }

/*
// 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;
}