/* Basic CSS file containing text formating */
/* Martin Firus 2007 */

/* -- Modifiers -- */
.right { text-align: right; }
.left { text-align: left; }
.center { text-align: center; }
.justify { text-align: justify; }

.bold { font-weight: bold; }
.italics { font-style: italic; }
.underline { text-decoration: underline; }
.noUnderline { text-decoration: none; }

.small { font-size: 8pt; }
.large { font-size: 14pt; }
.vsmall { font-size: 0em; } /* invisible font */
/* -- Text Styles-- */
.page_heading { font-family: Arial, sans-serif; text-align: left; font-size: 2.5em; font-weight: bold; }

.content { 
	font-family: Arial, sans-serif; 
	padding:10px; 
	text-align: justify; 
	font-size: 1.7em;
}

/* following are children of content div */
.sub_heading { font-family: Arial, sans-serif; text-align: left; font-size: 1.2em; font-weight: bold; }
.sub_sub_heading { font-family: Arial, sans-serif; text-align: left; font-size: 1em; font-weight: bold; }
.caption { font-family: Arial, sans-serif; text-align: center; font-size: 0.5em; }


.navBar {
	margin-top:15px;
	font-size:1.7em; 
	font-weight:bold; 
	width:150px;
}

.navLink {
	margin: 5px 0;
	padding-bottom: 8px;
}

.navSeperator {
	background: url(images/linkSeperator.gif) no-repeat bottom;
}


tr.odd {	background-color: #C5C7C9; }

tr.evan { }

/* -- Normal Link Styles -- */
a:link { color: black; } /* normal */
a:visited { color: grey; } /* visited */
a:hover { color: #006F97; } /* mouse over */
a:active { color: #FF0000; } /* mouse down */

/* -- Navbar Link Styles -- */
.navLink a:link { color: white; text-decoration: none;} /* normal */
.navLink a:visited { color: white; text-decoration: none;} /* visited */
.navLink a:hover { color: #006F97; } /* mouse over */
.navLink a:active { color: #FF0000; } /* mouse down */

/* -- navbar: active page Link Styles, note these styles extend .navLink class stlyes -- */
.active a:link { color: black; } /* normal */
.active a:visited { color: black; } /* visited */
.active a:hover { color: #006F97; } /* mouse over */
.active a:active { color: #FF0000; } /* mouse down */