@charset "UTF-8";
/* CSS Document */

body  {
	font: 75% Verdana, Arial, Helvetica, sans-serif;  /* 75% = 12px, 68.5% = 11px, 62.5% = 10px */
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333333;
}
/* This group of rules pertains to the body id which sets page background color and sidebar background color */
/* home blue page colors */ #blue {	background-color:#3b4f8e; } /*  #blue #sidebar1 { background-color:#C7D7F7;} */
/* classes green page colors */ #green { background-color:#2e6b36; }/* #green #sidebar1 { background-color:#dbeedb; } */
/* coaching purple page colors */ #purple { background-color:#484791; }/* #purple #sidebar1 {	background-color:#B6BEE9;} */
/* horses plum page colors */ #plum { background-color:#5b2e5b; }/* #plum #sidebar1 { background-color:#cc99cc; } */
/* newsletter & products goldenrod page colors */ #goldenrod { background-color:#bd7e00; } /* #goldenrod #sidebar1 { background-color:#E9DE89;} */
/* training yellow page colors */ #yellow { background-color:#e6e665; }/* #yellow #sidebar1 {	background-color:#F8FAB2; }  */
/* resources maroon page colors */ #maroon { background-color:#762d23; } /* #maroon #sidebar1 { background-color:#DAA599; }  */
/* about us royalblue page colors */ #royalblue { background-color:#007ebd; } /* #royalblue #sidebar1 { background-color:#e1f0ff; }  */
/* contact us seablue page colors */ #seablue { background-color:#008f8f; }/* #seablue #sidebar1 { background-color:#dcffff; } */

.twoColFixLtHdr #container {
	width: 860px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
/*  HEADER  */
.twoColFixLtHdr #header {
	background: #1F3394;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColFixLtHdr  #header  p {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
/*  SIDEBAR  */
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 152px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
.twoColFixLtHdr #container #sidebar1 p {
	line-height: 1.25em;
	margin: 0 0 10px 0;
	padding: 0px;
	font-size: 0.95em;
}
#sidebar1 h1, #sidebar1 h2, #sidebar1 h3, #sidebar1 h4, #sidebar1 h5, #sidebar1 h6 {
	font-weight: bold;
	padding: 0px;
	margin: 0px 0px 4px;
	text-transform: capitalize;
	font-size: 1em;
}
.twoColFixLtHdr #container #sidebar1 a {
	color: #1F3394;
	text-decoration: underline;
	font-weight: bold;
}
.twoColFixLtHdr #container #sidebar1 a:hover {
	color: #FFFFFF;
	background: #1F3394;
}
.twoColFixLtHdr #container #sidebar1 .quote_brown {
	color: #333333;
	font-style:italic;
}
.twoColFixLtHdr #container #sidebar1 .quoter {
	font-weight: bold;
}
/* NAVIGATION  */
.twoColFixLtHdr #container #sidebar1 #navigation {
	margin-top: 20px;
}
.twoColFixLtHdr #container #sidebar1 #navigation ul {
}
.twoColFixLtHdr #container #sidebar1 #navigation li {
	margin-bottom: 10px;
}
.twoColFixLtHdr #container #sidebar1 #navigation a {
	display: block;
	text-decoration: none;
	color: #1f3394;
	padding: .25em .15em .35em .5em;
	font-weight: bold;
	width: 8.5em;
	font-size: 1.125em;
}
.twoColFixLtHdr #container #sidebar1 #navigation a:hover {
	color: #ffffff;
	background: #1f3394;
}
/*  MAIN CONTENT  */
.twoColFixLtHdr #mainContent {
	margin: 0 0 0 182px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 7px 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left: solid 2px #1f3394;
} 
.twoColFixLtHdr #container #mainContent h1 {
	font-size: 1.5em;
	font-weight: bold;
	padding: 4px 0px 4px 0px;
	margin-bottom: 10px;
	text-transform: uppercase;
	margin-top: 16px;
	font-family: Skia, Tahoma, Verdana, Arial, Helvetica, sans-serif;
	color: #5555ab;
}
.twoColFixLtHdr #container #mainContent .purple {	color: #5555ab; }
.twoColFixLtHdr #container #mainContent .green { color: #2e6b36; }
.twoColFixLtHdr #container #mainContent .seablue { color: #009999; }
.twoColFixLtHdr #container #mainContent .goldenrod { color: #a1603a; }
.twoColFixLtHdr #container #mainContent .plum { color: #5b2e5b; }
.twoColFixLtHdr #container #mainContent .royalblue { color: #006699; }
.twoColFixLtHdr #container #mainContent .maroon { color: #660000; }
.twoColFixLtHdr #container #mainContent .yellow { color: #c5c531; }

.twoColFixLtHdr #container #mainContent h2 {
	font-size: 1.3em;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	text-transform: capitalize;
}
.twoColFixLtHdr #container #mainContent h3 {
	font-size: 1.2em;
	font-style: italic;
	font-weight: bold;
	padding: 0px;
	margin: 0px;
	text-transform: capitalize;
}
.twoColFixLtHdr #container #mainContent h4, .twoColFixLtHdr #container #mainContent h5 {
	font-weight: bold;
	padding: 0px;
	margin: 0px;
	text-transform: capitalize;
	font-size: 1em;
}
.twoColFixLtHdr #container #mainContent h6 {
	text-transform:none;
	font-size: 1em;
	font-weight: normal;
}
.twoColFixLtHdr #container #mainContent p {
	margin: 0px 0px 10px 0px;
	padding: 0px;
}
.twoColFixLtHdr  #container  #mainContent ul li  {
	margin: 0px;
	padding: 0px;
}
.twoColFixHdr #container #mainContent ul {
	margin: 0px;
	padding: 0px;
}
.twoColFixLtHdr #container #mainContent a {
	color: #1F3394;
	text-decoration: underline;
	font-weight: bold;
}
.twoColFixLtHdr #container #mainContent a:hover {
	color: #FFFFFF;
	background: #1F3394;
}
#mainContent .top-of-list {
	margin-top: 0px;
}
#mainContent   .above-list {
	margin-bottom: 0px;
}
.float-right { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
	margin-bottom: 8px;
}
.float-left { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	margin-bottom: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#mainContent  a  img {
	text-decoration: none;
	border-width: 0px;
}
#home-rightside {
	margin: 0px 0px 6px 10px;
	padding: 0px;
	width: 230px;
	border: 1px solid #fff;
	color: #484791;
	float: right;
	background-color: #f5e3c5;
}
.whitespacer {
	background: #FFFFFF;
	border: 1px solid #FFFFFF;
	padding: 0px;
	margin: 0px;
}
#container  #mainContent  #home-rightside blockquote  {
	margin: 0;
	padding: 0 0 0 6px;
}
#container #mainContent #home-rightside p {
	padding: 0px 6px;
}
#container #mainContent #home-rightside p.privacy {
	font-size: 0.95em;
}
#container #mainContent #home-rightside ul {
	margin: 0px 0px 10px;
	padding: 0px 10px 0px 26px;
}
#home-subscribe {
	margin: 10px -20px 6px 10px;
	padding: 6px;
	float: right;
	width: 240px;
	background: #C9C2D3;
	border: 1px solid #484791;
	color: #484791;
}
#blog-rightside {
	margin: 10px 0px 10px 10px;
	padding: 6px;
	float: right;
	width: 166px;
	border: 1px solid #484791;
	color: #7A5100;
	background-color: #D6C687;
}
