/* 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;
	font-size: 100%;
}
/* 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 {
  background-color: #930000;
  background-image: url("../SavvyInternal_images/bodyBG.jpg");
  background-position: top left;
  background-repeat: repeat-x;
  color: #000;
  font-family: Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans serif;
  font-size: 0.8em;
  line-height: 1.3em;
  margin: 15px 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. */
}
/* Commonly used to style page titles. */
h1 {
	color: #930000;
	font-size: 2.4em;
	font-weight: normal;
	line-height: 2.0em;
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", sans serif;
	text-align: center;
}
/* Commonly used to style section titles. */
h2 {
	color: #000;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 1.8em;
}
h3 {
	color: #000;
	font-size: 1.2em;
	font-weight: normal;
	font-style:oblique;
	line-height: 1.4em;
	margin: 5px 0;
}
h4 {
  color: #930000;
  font-size: 1.0em;
  font-weight: bold;
  line-height: 1.4em;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #930000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #930000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  text-decoration: underline;
}
a img {
	border: 0;
}
/* 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 {
  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: 940px;
}
#outerWrapper #header {
  background-image: url("../SavvyHome_images/header.jpg");
  font-size: 1.7em;
  height: 131px;
  line-height: 1em;
  position: relative;
}
#box-link { 
		position: absolute; 
		top: 0px; 
		left: 0px; 
		width: 940px; 
		height: 130px; 
		background-color: transparent; 
}
#outerWrapper #topNavigation {
  background-image: url("../SavvyHome_images/navBG.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  height: 41px;
  padding: 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper {
  margin-top: 5px;
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-image: url("../SavvyInternal_images/leftSideBG.jpg");
  background-position: top left;
  background-repeat: repeat-y;
  float: left;
  margin-top: 2px;
  /*padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 200px;
}
#outerWrapper #contentWrapper #leftContent {
  background-image: url("../SavvyInternal_images/leftSideTop.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  color: #FFFFFF;
  font-size: 1.3em;
  line-height: 1.5em;
  min-height: 200px;
}
.leftADbox {
  background-image: url("../SavvyInternal_images/leftSideTop.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  padding-top: 16px;
}
#outerWrapper #contentWrapper #leftContent2 {
  background-image: url("../SavvyInternal_images/leftSideTop.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  color: #FFFFFF;
  font-size: 1.1em;
  line-height: 1.3em;
}

#outerWrapper #contentWrapper #leftContent a {
	color: #FFFFFF;
}
#outerWrapper #contentWrapper #leftContent p {
	margin: 0;
	padding: 0;
}
#outerWrapper #contentWrapper #leftColumn1 p.end {
  background-image: url("../SavvyInternal_images/leftSideBottom.jpg");
  background-position: bottom left;
  background-repeat: no-repeat;
  height: 16px;
  margin: 0;
  padding: 0;
  /*padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

/* 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 {
  background-image: url("../SavvyInternal_images/contentBG2.jpg");
  background-position: top left;
  background-repeat: repeat-y;
  margin: 0 0 5px 205px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #content2 {
  background-color: #FFFFFF;
  background-image: url("../SavvyInternal_images/contentBOTTOM2.jpg");
  background-position: bottom left;
  background-repeat: no-repeat;
  height: 19px;
  /*margin: 0 0 25px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  /*padding: 10px 10px 25px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #content1 {
	background-image: url("../SavvyInternal_images/contentTOP2.jpg");
	background-position: top left;
	background-repeat: no-repeat;
	min-height: 375px;
	/*margin: 0 0 0px 210px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 15px 20px 15px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-size: 1.1em;
	line-height: 1.4em;
	font-family: Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, "sans serif";
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
  /*background-image: url("../SavvyHome_images/footer.jpg");
  background-position: top left;
  background-repeat: no-repeat;*/
  font-size: 0.8em;
  color:#FFFFFF;
  line-height: 1.3em;
  /*padding: 10px 10px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #botMenu {
	color:#FFFFFF;
}
#outerWrapper #botMenu a, #botMenu a:link {
  color: #FFFFFF;
  font-weight: normal;
  text-decoration: none;
}
#badge {
	float:right;
	padding-top: 5px;
}
.quoteCredit {
	font-weight:bold;
	float:right;
	padding-right: 25px;
	font-style:normal;
}
#tweet {
	background-image:url(../SavvyHome_images/tweetBG.jpg);
	background-repeat:no-repeat;
	background-position:top left;
	height: 75px;
}
#tweet a:link {
	color:#FFFFFF;
}
#tweet ul {
	list-style:none;
	font-size:1.4em;
	line-height: 1.4em;
	width: 555px;
	padding:7px;
	margin:0;
}
.grayHeaderBox {
	background-color:#999999;
	margin: 10px;
	padding: 10px;
	color: #FFFFFF;
	font-size:1.3em;
	display: block;
	font-weight:bold;
	text-align: center;
}
ul.grayHeaderBox  {
	margin: 10px;
	padding: 10px 50px;
	color: #FFFFFF;
	font-size:1.0em;
	text-align: left;
}
ol.grayHeaderBox  {
	margin: 10px;
	padding: 10px 50px;
	color: #FFFFFF;
	font-size:1.0em;
	text-align: left;
}
.Left {
	float: left;
	padding: 10px;
}
.testimonialPicLeft {
	float: left;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	font-weight: bold;
	text-align: center;
}
.testimonialPicRight {
	font-weight: bold;
	text-align: center;
	float: right;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
}
.testimonialText {
	font-size: 1.2em;
	line-height: 1.2em;
	font-style:italic;
	padding: 0px 125px 10px 140px;
}
.testimonialTextnoPic {
	font-size: 1.2em;
	line-height: 1.2em;
	font-style:italic;
	padding: 0px 20px 20px 20px;
}
.Right {
	float: right;
}
hr {
	margin: 10px 0;
	padding: 0;
}
hr.topline {
	margin:0;
	padding:0;
}
.aboutPicLeft {
	float: left;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	font-weight: bold;
	text-align: center;
}
div.books {
	padding:5px 0px;
}
.book {
	padding-right: 7px;
}
img.sponsor {
	padding:10px 25px;
	border: none;
}
img.sponsorBig {
	padding:10px 13px;
	border: none;
}
#products tr.headrow {
	background-color:#930000;
	color:#FFF;
}
#products h2 {
	color:#FFF;
}
#products {
	background-color:#CCC;
	font-weight:bold;
}
h1 span.savvy {
	color:#666;
}
ul.schedule {
	margin:0;
	padding:0;
}
ul.schedule li {
	list-style:none;
	float: left;
	width: 100px;
}
ul.schedule li a:hover {
	text-decoration:none;
}
div.CTA {
	color:#FFF;
	background: #930000;
	padding:15px;
}
div.CTA h2, div.CTA h4 {
	color:#FFF;
}
div.CTA a, div.CTA a:hover {
	color:#FFF;
}
div.CTA a.seminarButton {
	background-image: url("../SavvyHome_images/Seminar_Button.png");
	background-position: top left;
	height: 23px;
	width: 140px;
	margin: 0 20px;
	color:#930000;
	display:inline-block;
	padding-top: 3px;
	font-weight:bold;
	font-size: 1.3em;
}
div.CTA a.seminarButton:hover {
	background-position: bottom left;
	text-decoration:none;
}
.blackimpact {
	color: #000;
}

