/*
-----------------------------------------------
Client: 
Function: Global CSS definitions.
Author:   
Modified:  
Copyright: Copyright (C) 2005 E-dreamz, Inc. 
----------------------------------------------- */
/* Imported Styles
----------------------------------------------- */
@import url("styleForms.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...
*/

body, td, p, div {
	color : #333;
	font : normal normal normal 12px/18px 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 : #4397d0;
	font : bold 18px Arial, Helvetica, sans-serif;
	margin-top : 0;
	margin-bottom : 0;
}

.subheader {
	color : #0668A5;
	font : 12px Arial, Helvetica, sans-serif;
	margin : 0 0 7px 0;
}

.title {
	color : #280D0C;
	font : bold 11px Arial, Helvetica, sans-serif;
	margin : 0 0 7px 0;
	text-transform : uppercase
}

.small {
	color : #333;
	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;
}
.enewsTitle {
	color : #15243f;
	font : bold 16px Geneva, Verdana, Arial, Helvetica, sans-serif;
}
.enewsSub {
	color : BAD03E;
	font : bold 12px Arial, Helvetica, sans-serif;
	line-height: 16px;
}
.enewsBody {
	color : #333;
	font : 11px Arial, Helvetica, sans-serif;
	line-height: 14px;
}
.enewsIntro {
	color : #15243f;
	font : bold 11px Arial, Helvetica, sans-serif;
	line-height: 14px;
	font-stretch: wider;
}
.enewsSources {
	color : #3333;
	font : 9px Arial, Helvetica, sans-serif;
	line-height: 12px;
}

.fac {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-style: normal;
	line-height: 10px;
	color: #333333;
}
.formTitle {
color : #15243f;
font : bold 12px Arial, Helvetica, sans-serif;
line-height: 14px;
text-align:left;
}
.formTitleAlert {
background-color:#FF0000; padding:8px; font-size:16px; font-weight:bold; color:#FFFFFF; text-align:left;
}
.formTitleSuccess {
background-color:#33CC00; padding:8px; font-size:16px; font-weight:bold; color:#FFFFFF; text-align:left;
}
.formLabel {
color : #333;
font : bold 11px Arial, Helvetica, sans-serif;
line-height: 12px;
}
.error {
color: #FF0000; font-weight:bold; font-size:11px;
}
.small {
font-size:11px;
}
.interestgroup_row {
color : #333;
font : 11px Arial, Helvetica, sans-serif;
line-height: 12px;
}


/* Links
----------------------------------------------- */
a {
	color : #94c160;
	text-decoration : none;
	border-bottom: 1px dashed #94c160;
}

a:hover, a:active {
	color : #4397d0;
	text-decoration : none;
	border-bottom: 1px dashed #4397d0;
}

a.mainNav {
	color : #94c160;
	text-decoration : none;
	border-bottom: 0;
}
a.enewsLink {
	color : #15243f;
	font : 11px Arial, Helvetica, sans-serif;
	line-height: 20px;
	text-decoration : none;
	border-bottom: 1px dashed #15243f;
}
a.greenLink {
	color : #94c160;
	text-decoration : none;
	border-bottom: 1px dashed #94c160;
}

a.greenLink:hover, a.greenLink:active {
	color : #4397d0;
	text-decoration : none;
	border-bottom: 1px dashed #4397d0;
}

a.blueLink {
	color : #70bbe8;
	text-decoration : none;
	border-bottom: 1px dashed #70bbe8;
}

a.blueLink:hover, a.blueLink:active {
	color : #94c160;
	text-decoration : none;
	border-bottom: 1px dashed #70bbe8;
}

a.blackLink {
	color : #333;
	text-decoration : none;
	border-bottom: 1px dashed #333;
}

a.blackLink:hover, a.blackLink:active {
	color : #94c160;
	text-decoration : none;
	border-bottom: 1px dashed #333;
}

.thirdLevelNav {
	font : 11px Arial, Helvetica, sans-serif;
	color : #555555;
}

a.thirdLevelNav{
	font : 11px Arial, Helvetica, sans-serif;
	color : #555555;
	text-decoration : none;
	border-bottom: 1px dashed #555555;
}

a.thirdLevelNav:hover, a.thirdLevelNav:active {
	color : #94c160;
	text-decoration : none;
	border-bottom: 1px dashed #555555;
}

/*same deal, however since .footer could be used to style text, we'll keep it.*/
.footer{
	font : 10px Arial, Helvetica, sans-serif;
	color : #555555;
}

a.footer{
	font : 10px Arial, Helvetica, sans-serif;
	color : #555555;
	text-decoration : none;
	border-bottom: 1px dashed #555555;
}

a.footer:hover, a.footer:active {
	color : #94c160;
	text-decoration : none;
	border-bottom: 1px dashed #555555;
}

.breadcrumbs{
	font : 10px Arial, Helvetica, sans-serif;
	color : #ffffff;
}

a.breadcrumbs{
	font : 10px Arial, Helvetica, sans-serif;
	color : #ffffff;
	text-decoration : none;
}

a.breadcrumbs:hover, a.breadcrumbs:active {
	color : #ffffff;
	text-decoration : underline;
}

a.clientLogin {
	color : #94c160;
	font : normal normal normal 13px/normal Arial, Helvetica, sans-serif;
	text-decoration : none;
	border-bottom: 1px dashed #94c160;
}

a.clientLogin:hover, a.clientLogin:active {
	color : #4397d0;
	text-decoration : none;
	border-bottom: 1px dashed #4397d0;
}

.subnavTD {
	font : bold 9px Arial, sans-serif;
	background-color: #dfe9cf;
	color : #000000;
	text-decoration : none;
	padding-left: 3px;
	cursor : pointer;
	cursor : hand;
}

.subnavTDx {
	font : bold 9px Arial, sans-serif;
	background-color: #adcd83;
	color : #000000;
	text-decoration : none;
	padding-left: 3px;
	cursor : pointer;
	cursor : hand;
}

.subnavTDye {
	font : bold 9px Arial, sans-serif;
	background-color: #c7d9ec;
	color : #000000;
	text-decoration : none;
	padding-left: 3px;
	cursor : pointer;
	cursor : hand;
}

.subnavTDxye {
	font : bold 9px Arial, sans-serif;
	background-color: #4397d0;
	color : #000000;
	text-decoration : none;
	padding-left: 3px;
	cursor : pointer;
	cursor : hand;
}

.subnavTDpnm {
	font : bold 9px Arial, sans-serif;
	background-color: #d1d3e3;
	color : #000000;
	text-decoration : none;
	padding-left: 3px;
	cursor : pointer;
	cursor : hand;
}

.subnavTDxpnm {
	font : bold 9px Arial, sans-serif;
	background-color: #a8add2;
	color : #000000;
	text-decoration : none;
	padding-left: 3px;
	cursor : pointer;
	cursor : hand;
}



/* 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
}


