@charset "utf-8";
/* This is the base.css file. It defines the positional CSS rules for all global elements */

/* container definitions */
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333333;
	font-size: x-small;
}

/* table definitions */
table {
	border: 1px solid #CCCCCC;
	padding: 0px;
}

.table_no_format { /* use to nest a table with no border, padding etc */
	border: 0px;
	padding: 0px;
}

th {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-right-width: 1px;
	border-right-style: solid;
	border-color: #CCCCCC;
}

td.row_odd {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-right-width: 1px;
	border-right-style: solid;
	border-color: #CCCCCC;
	background-color: #F6F6F6;
}

td.row_even {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-right-width: 1px;
	border-right-style: solid;
	border-color: #CCCCCC;
	background-color: #EAEAEA;
}

td.row3 {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-right-width: 1px;
	border-right-style: solid;
	border-color: #CCCCCC;
	background-color: #F3F3F3;
}

td.menu	{
	padding-bottom:8px;
	padding-left:10px;
	padding-top:8px;
	padding-right:10px;
	border-bottom:1px solid #CCCCCC;
}


/* form definitions */
form {
	padding:0;
	margin:0;
}

textarea {
	color:#333333;
	font-size:1.0em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

input.text_field {
	color:#333333;
	font-size:1.0em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

input.button {
	color:#333333;
	font-size:1.0em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

select {
	color:#555555;
	font-size:1.0em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}


/* misc definitions */
hr {
	padding:0px;
}

.helpbox {
	background-color: #EAEAEA;
	border:0;
	color:#333333;
}