/*
-----------------------------------------------
Client: 
Function: Global CSS definitions.
Author:   
Modified:  
Copyright: Copyright (C) 2005 E-dreamz, Inc. 
----------------------------------------------- */
/* Imported Styles
----------------------------------------------- */
@import url("styleForms.css");
@import url("styleDHTML.css");

/* Global
----------------------------------------------- */
/*rewrote "triplet colors", example: #333333 is R 33 G 33 B 33, we can shorthand this as 333 
or we could write #ffffff as #fff, etc... HEX code has to be in 3 groups of two or else it won't work
FFAABC can't be rewritten as FABC, it also has to be a single character. There is no shorthand (at least to my knowledge)
for something like E1E1E1, even though it would be cool if there was...
*/

@media print {
  .print_hide { display: none; }
}

body, td, p, div {
	color : #333;
	font : normal normal normal 11px/normal Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/*removed the .global class definition. You can simply redeclare a style for the body tag & the cascade will handle it*/
body { /*this also gets the color & font that were set above, since we didn't REdeclare them they are inherited*/
	margin : 0;
	padding : 0;
}

td.justify {
	text-align : justify
}

p {
	margin-bottom : 15px;
	margin-top : 5px
}
.header {
	color: #0077A4;
	font: bold 17px Verdana, Geneva, Arial, Helvetica, sans-serif;
	margin-top: 0;
	padding-top: 0;
	margin-bottom: 7px;
	padding-bottom: 7px;
}

.subheader {
	color: #333333;
	font: bold 13px/normal Verdana, Geneva, Arial, Helvetica, sans-serif;
	margin-top: 0;
	padding-top: 0;
}

.subheaderLine {
	color: #333333;
	font: bold 13px/normal Verdana, Geneva, Arial, Helvetica, sans-serif;
	border-bottom: 1px solid #333333;
	margin-top: 0;
	padding-top: 0;
}


.small {
	color : #333;
	font : normal normal normal 9px/normal Verdana, Geneva, Arial, Helvetica, sans-serif;
}

em.small {
	color : #333;
	font : italic normal normal 9px/normal Verdana, Geneva, Arial, Helvetica, sans-serif;
}

.title {
	color : #280D0C;
	font : bold 11px Arial, Helvetica, sans-serif;
	margin : 0 0 7px 0;
	text-transform : uppercase
}

.smallwhite {
	color : #FFF;
	font : 9px Geneva, Verdana, Arial, Helvetica, sans-serif
}

.medium {
	color : #333;
	font :  10px Geneva, Verdana, Arial, Helvetica, sans-serif
}

.fineprint {
	color : #808080;
	font :  9px Geneva, Verdana, Arial, Helvetica, sans-serif
}

.red {
	color : #C00;
}

/* Links
----------------------------------------------- */
/*we can get rid of :link & :visited here as styling a will cover all cases
:hover & :active below will take care of there respective states*/

a {
	color : #0668A5;
	text-decoration : underline
}

a:hover, a:active {
	color : #C00;
	text-decoration : underline
}

a.leftNav {
	font : 11px Arial, Helvetica, sans-serif;
	color : #000;
	text-decoration : none
}

a.leftNav:hover, a.leftNav:active {
	color : #000;
	text-decoration : underline
}
/*same deal, however since .footer could be used to style text, we'll keep it.*/
.footer, a.footer{
	color : #FFF;
	font : 9px Geneva, Verdana, Arial, Helvetica, sans-serif;
	text-decoration : none
}

a.footer:hover, a.footer:active {
	text-decoration : underline
}

/* Tables
----------------------------------------------- */
.tableOuterBG {
	background : #382E23
}

.trDark {
	background : #E1E1E1;
}

.trLight {
	background : #EAF4F6
}

.tdTitle {
	color : #FEFEFE;
	font :  bold 10px Geneva, Verdana, Arial, Helvetica, sans-serif;
	padding-left : 4px;
	background : #348795;
	text-transform : uppercase;
}

.tdSubTitle {
	color : #0668A5;
	font : bold 11px Geneva, Verdana, Arial, Helvetica, sans-serif;
	height : 18px;
	padding-left : 4px;
	background : #A5DBEF;
}

.tdName {
	color : #382E23;
	font : bold 9px Geneva, Verdana, Arial, Helvetica, sans-serif;
	background : #E1DEC9;
}

.tdContent {
	font : 11px Geneva, Verdana, Arial, Helvetica, sans-serif;
	background : #FFF
}


li {
	margin : 0 0 7px 0
}

ul, ol {
	padding-left : 2em;
	margin-left : 2em;
	padding-bottom : 1px;
	margin-bottom : 1px;
	padding-top : 0;
	margin-top : 0;
}

blockquote {
	margin : 0 0 35px 15px
}

