/*
-----------------------------------------------
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 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;
	background-image:url(images/background-sub.gif);
	background-repeat: repeat;
}

td.justify {
	text-align : justify
}

p {
	margin-bottom : 15px;
	margin-top : 5px
}
/*we can get rid of the normals now, since we've already set our defaults above. 
Any child of one of those elements will inherit its "normal" defaults */

.blue{
	color:#003B70
}

.firstPara {
	color: #186CAA;
	font-size:15px;
	margin-top:14px;
}

.header {
	color : #C00;
	font : bold 15px Arial, Helvetica, sans-serif;
	margin-top : 0;
	margin-bottom : 0;
	border-bottom: 1px dashed #666;
}

.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;
}

.pageheader {
	background-color:#003b70;
	font-family:Garamond,"Times New Roman", Times, serif;
	font-size:22px;
	font-weight:bold;
	color:#FFFFFE;
	padding-left: 12px}

.subnav{
	border-bottom-width:1px
	border-bottom:solid;
	border-bottom-color:#fcaa39;
	margin-left:22px;}
	
.leftNav{font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; width: 170px; font-size: 11px; margin: 0px 0 0 0;}
	#leftMain {width:149px; margin-top:-2px}
	#leftMain a{display: block; font-weight: bold; color: #00653c; 0 3px; padding: 2px 0 2px 20px; border-bottom: 1px solid #fcaa39; text-decoration:none}
		/* hack for IE, requires a height on items with display:block */
		* html #leftMain a{height: 17px;}
		/* end hack */
	#leftMain a:hover{text-decoration: none; color: #fcaa39; background: url(../images/left-nav-dot.gif) no-repeat 0 1px}
	#leftMain li, .leftNav ul {margin: 0; padding: 0; list-style:none;}

/*For partners subsection*/
.partnersHeader {
	background-color:#003b70;
	color:#FFFFFE;
	font-weight:bold;
}
.partnersHeader a, .partnersHeader a:visited, .partnersHeader a:active {color:#FFFFFE; text-decoration:none}
.partnersHeader a:hover {color:#fcaa39; text-decoration:underline}

.partnersCell {
background-color:#FFFFFF;
color:#003b70;
border: 1px solid #003b70;
}
.partnersCell a, .partnersCell a:visited, .partnersCell a:active {color:#00653c; text-decoration:none}
.partnersCell a:hover {color:#fcaa39; text-decoration:underline}

/* 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 : #fcaa39;
	text-decoration : underline
}

.factsLarge {
	font-family:"Times New Roman", Times, serif;
	font-size:18px;
	line-height:13px;
	font-weight:bold;
	color : #FFFFFF;
	text-decoration : none
}

.facts {
	font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:13px;
	color : #FFFFFF;
	text-decoration : none;
}

/*same deal, however since .footer could be used to style text, we'll keep it.*/
.footer, a.footer{
	font : 10px Arial, Helvetica, sans-serif;
	color : #656565;
	text-decoration : none
}

a.footer:hover, a.footer:active {
	color : #656565;
	text-decoration : underline
}

.byEdreamz, a.byEdreamz{
	font : 9px Arial, Helvetica, sans-serif;
	color : #999;
	text-decoration : none
}

a.byEdreamz:hover, a.byEdreamz:active {
	color : #333;
	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
}

blockquote {
	margin : 0 0 35px 15px
}

