@charset "utf-8";
/* CSS Document */
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color: #000;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background: #FFFFCC url(images/pattern_blue.gif) repeat;
	font: normal .8em/1.42em  'Lucida Grande', Verdana, Arial, sans-serif;	
}
/* Commonly used to style page titles. */
h1 {
	color: #000;
	font-size: 18px;
	font-weight: bold;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #000;
	font-size: 16px;
	font-weight: bold;
	line-height: 14px;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #FFFFCC;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 760px;  
  position:relative;
}

#contentWrapper {
	background-color:#FFFFCC;
	margin: 0px;
	padding: 0px;
	position:relative;
}

#HeaderImg1 {
	float: left;
	background: #BD3D09;
	width: 448px;
}
#outerWrapper #header {
	border-bottom: solid 1px #666; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background: #BD3D09;
	height: 200px;
}
#HeaderImg2 {
	float: right;
	width: 312px;
}

#navBar {
	background: #FFFFCC url(images/menu_back.jpg) repeat-x;
	height: 38px;
}

#navBar ul{
	list-style: none;
	margin: 0px 0px 0px 27px;
	padding: 8px 0px 0px;
}

#navBar ul li {
	font: bold 14px Georgia, "Times New Roman", Times, serif;
	display: inline;
	padding-right: 33px;
}

#navBar ul a{
	text-decoration: none;
	color: #004168;
}

#navBar ul a:hover{
	color: #790000;
}


/*set up content links*/
a, a:link {color:#2a4d6c;
text-decoration:none;
font-weight: bold;
}

a:visited {color:green;
text-decoration:none;
}

a:hover {color:#c70009;
text-decoration:underline;
}

a:active {color:#c70009;
text-decoration:none;
}

#outerWrapper #contentWrapper #leftContent {
	float: left;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 450px;
	background: #FFFFCC no-repeat;
	/*height: 456px;*/
	margin: 0px;
	position: absolute;
	z-index: 10;
}

#outerWrapper #contentWrapper #leftContent h2,
#outerWrapper #contentWrapper #leftContent h1 {
	padding:10px 0 0 15px;
	font: bold 1.5em "Trebuchet MS", Georgia, "Times New Roman", Times, serif;
	color: #325d78; 
	margin-bottom: 0;
}
#outerWrapper #contentWrapper #leftContent p {
	padding: 0 20px 0 15px;	
										      }

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0px 0 0 450px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0;
}

/* abm */
#outerWrapper #contentWrapper #content img { float:right;}
#outerWrapper #contentWrapper #content #rightContentBox #rightContentImg { float:none;}

#outerWrapper #contentWrapper #content h2,
#outerWrapper #contentWrapper #content h1 {
	padding:10px 10px 2px 10px;
	font: bold 1.5em "Trebuchet MS", Georgia, "Times New Roman", Times, serif;
	color: #325d78;
	line-height: normal;
	margin-top: 0px;
}
#outerWrapper #contentWrapper #content p {
	padding: 0 20px 0 15px;
	margin-top: 0.8em;
	margin-bottom: 0.8em;
}
										  

#outerWrapper #contentWrapper .clearFloat {
	clear: left;
	display: block;
}
#outerWrapper #footer {
	/* abm */
	clear:both;
	border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
	padding: 15px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background: #FFFFCC url(images/footerBack.gif) repeat-x;
	font: bold 10px 'Lucida Grande', Verdana, Arial, sans-serif;
	color: #000000;
	text-align: right;
	margin-top: 0em;
	position:relative;
	z-index: 20;
}

/* Resource Navigation */
#resourceBar ul{
	list-style: none;
	margin: 15px 60px 0px 60px;
	padding: 0px;
}

#resourceBar ul li {
	font: bold 12px Georgia, "Times New Roman", Times, serif;
	display: block;
	background: #662E31;
	padding: 3px 3px 5px 15px;
	margin: 0px;
	border-bottom: thin solid #FFFFCC;
}

.current {color:white;
background: black;
}

#resourceBar ul a{
	text-decoration: none;
	color: #F4E4AD;
}

#resourceBar ul a:hover{
	color: #FFC51F;
}


/* Content Box */
#rightContentBox {
	margin: 1px 40px 0 40px;
	padding: 0px 0px 0px;
}

#widget {
margin: 10px 0 20px 15px;
	padding: 0;

}

#rightContentImg {display:block;
   margin:auto;   
}


#quote {
margin-top: 4em;
 margin-left:11%;
 margin-right:11%;
 padding: 1%;
}

#homeQuote {
	margin-top:2em;
	margin-bottom:-1%;
	padding: 0;
}

blockquote {margin-left: 4%;
margin-right: 4%;
margin-top: 0;
margin-bottom: -1em;
}

blockquote.withquote {background:url(images/quote.gif) no-repeat;
background-position:top left;
text-align: left;
padding-left:3%;
font: italic 1em/1.3em 'Lucida Grande', Verdana, Arial, sans-serif;
} 

p.withunquote {background: url(images/unquote.gif) no-repeat;
background-position:bottom right;
padding-right:3%;}

p.author {font: normal .8em/3.5em 'Lucida Grande', Verdana, Arial, sans-serif;
		  text-align:center;
		 }

.emphasis {font-style:italic;
}

#bookImg {
float: left;
padding: 5px 15px 0 15px;
width: 135px;
} 

/*.floatLeft {float: left;
padding: 5px 15px 0 15px;
} 

.floatRight {float: right;
padding: 5px 10px 0 10px;
}*/ 

#ebook {font-size:.9em;}

img {
border: 0px none;
}

#products {margin-top:15px;
margin: 15px;
}

#products ul li { list-style:none;
margin-bottom: 15px;}

#products ul li a {font-style:italic;
}

#products ul li a.recommend {font-size:14px;
font-style:normal;
font-weight:bold;
}

#widget2 {position:absolute;
left: 525px;
top:420px;
}

/*subscribe button*/
.Button {text-align:center;}
.Button a:link, .Button a:visited, .Button a:hover {border: black solid; border-width: 1px; padding: 3px 10px; width: 130px;}
.Button a.ButtonLink, .Button a.ButtonLink:link, .Button a.ButtonLink:visited {background: #11387D; color: white; text-decoration: none}
.Button a.ButtonLink:hover {background: #FF9900; color: #FFFFCC; text-decoration: none}

			
#signUpForm {background:#D0EFF7;
margin: 1em; 
padding:5px;
border: solid 1px #FF9900;
}

#mission {
	background:#FFFFFF;
	background: #FFFFCC url(images/gradient.gif) repeat-y;
	margin: 1em;
	border: solid 1px #FF9900;
	padding: 0 8px 0 0;
	
}

#blog {background:#FFFFFF;
margin: 1em; 
padding:5px;
border: solid 1px #FF9900;}

#store {
	background:#D0EFF7;
	margin: 1em;
	padding:5px;
	border: solid 1px #FF9900;
}

.readMore {
display:block;
font-size: .8em;
text-align: center;
padding: 0;
margin-top:.25em;
}

/*#signUpForm img {
float:none;
display:block;
margin-left:auto;
margin-right:auto;}*/
