/*
styles.css

SECTION ONE: colors, fonts, misc.
---------------------------------
body: sets background color, font, any misc. global attributes
*/
body {
	font-family: Verdana,Lucida,Helvetica,Arial;
	font-size: 12pt;
	text-decoration: none;
	background-color: #99cc99;
}

/*
SECTION TWO: text sizes and weights
*/
.text_large {
	font-size: 14pt;
	font-weight: bold;
}

.text_normal {
	font-size: 12pt;
}

.text_small {
	font-size: 10pt;
}

.text_tiny {
	font-size: 7pt;
}

/*
SECTION THREE: colors for tables found in the application
*/
.table_header {
	background-color: #808000;
	color: #f0f0f0;
}

.table_row1 {
	background-color: #e4e4e4;
}

.table_row2 {
	background-color: #e0d060;
}

/*
SECTION FOUR: link attributes
*/
a:link {
	color: #003300;
}

a:active {
	color: #003300;
}

a:visited {
	color: #003300;
}

a:hover {
	color: #003300;
}
