/*
// OVERALL LAYOUT STYLES
*/

body, td, a, div {
	font-size: 9px;
	color: #000000;
	;
	font-family: Georgia;
	text-align: left;
	line-height: 16px;	
}

body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	background: none;
}

table {
	border-spacing: 0px 0px;
	border-collapse: collapse;
	margin: 0px;
	padding: 0px;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	color: #000;
}

hr {
	border: none;
	border-bottom: 4px solid #000000;
	height: 1px;
}

h1 {
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
}

img {
	display: block;
	padding: 0px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #666;
	border-right-color: #666;
	border-bottom-color: #000;
	border-left-color: #666;
}

ul, ol {
	margin: 0px;
	padding: 0px;
}

li {
	margin: 0px;
	padding: 0px;
}

p {
	margin: 0px;
	padding: 0px;
	font-family: Georgia;
}

form {
	padding: 0px;
	margin: 0px;
}

input {
	width: 200px;
	font-size: 10px;
}

/*
// 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: 0px;
	margin-right: auto;
}

.right { /* Align image to the right in a Div or Td */
	margin-left: auto;
	margin-right: 0px;
}

.clear {
	clear: both;
}

.error { color: red; }

/*
// Sizes
*/

.small { font-size: 10px; }
.normal { font-size: 12px; }
.medium { font-size: 14px; }
.large { font-size: 16px; }
