/* 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: #fff1d5;/*ffcc66*/
  color: #663300;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12pt;
  line-height: 14pt;
  font-weight: bold;
  margin: 0 auto; /* 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. */
  width:766px;
}
/* Commonly used to style page titles. */
h1 {
  color: #663300;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 24px;
}
/* Commonly used to style section titles. */

h2, h3, h4, h5, h6 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	line-height: normal;
	} 
	  
h2 {
  color: #663300;
  font-size: 14pt;
}
/* Sets the style for the h3 header. */
h3 {
  color: #663300;
  font-size: 12pt;
}
/* Sets the style for the h4 header. */
h4 {
  color: #333333;
  font-size: 12pt;
}
/* Sets the style for the h5 header. */
h5 {
  color: #334d55;
  font-size: 12pt;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #663300;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #77420d;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #09760d;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #09760d;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #663300;
}

ul {
  line-height:1.3em;
  }
  
ul.pricing {
  font-size: 10pt;
  }
  
ul.nodot {
  list-style-type:none;
  }
  /* Sets lline break properties */
hr {
border: 0;
color: #4d2d0e;
background-color:#4d2d0e;
height: 1px;
/*width: 100%;*/
text-align: center;
}

/* 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: #fff;
  margin: 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: 750px;/
}
#outerWrapper #header {
  background-color: #8ab573;
  /*border-bottom: solid 1px #628152;  Sets the bottom border properties for an element using shorthand notation */
  font-size: 14px;
  font-weight: bold;
  line-height: 15px;
  padding: 0px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper {
  background-color: #ffe3ac;
  margin: 10px 0 0 0;
}
/* 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: 10px 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
 }
 
/*shadow classes*/
.top_left_shadow { background:url(../images/top-left-shadow.png) bottom left no-repeat; }
.top_right_shadow { background:url(../images/top-right-shadow.png) bottom right no-repeat; }
.top_shadow { background:url(../images/top-shadow.png) bottom repeat-x; margin:0 8px; }
.shadow_left { background:url(../images/left-shadow.png) repeat-y;}
.shadow_right {	background:url(../images/right-shadow.png) top right repeat-y; }
.btm_left_shadow { background:url(../images/btm-left-shadow.png) top left no-repeat; }
.btm_right_shadow { background:url(../images/btm-right-shadow.png) top right no-repeat; }
.btm_shadow { background:url(../images/btm-shadow.png) top repeat-x; margin:0 8px; }

 /************** .feature styles ***************/

.feature{
	/*padding: 5px 5px 5px 5px;*/
	margin: 10px 0 5px 0;
	font-size: 175%;
	color:#663300;
	font-weight:bold;
}

.feature h3{
	padding: 30px 0px 5px 0px;
	text-align: center;
}

.feature img{
	padding: 0px 0px 0px 2px;
	margin: 0 0 5px 5px;
}
/* adjust margins to change separation between the feature image and text flowing around it */


/************** .story styles *****************/

.story{
	color:#663300;
	font-size: 100%;
}

.story p{
	padding: 0px 10px 5px 0px;
}
.story2 p{
	padding: 0px 10px 5px 10px;
}
.story img{
	padding: 0px 2px 0px 2px;
	margin: 0 3px 0 0;
}
/*************.contact styles *******************/

.contact{
	font-size: 100%;
	color: #663300;
	line-height: 1.25em;
}
.contact img{
	padding: 0px 2px 0px 2px;
	margin: 0 5px 2px 5px;
}


.contact2{
	font-size: 100%;
	color: #663300;
	line-height: 1.25em;
}
.contact2 img{
	padding: 0px 2px 0px 2px;
	margin: 0 5px 2px 5px;
}
/*************** for Captions************/

div.figure {
	/*border: thin #663300 solid;*/
  margin: 0.5em;
  padding: 0 5px 0 10px;
  }

#outerWrapper #footer {
  background-color: #efbf61;
  border-top: solid 1px #663300;
  font-weight:normal;
  font-size: 10pt;
  color: #663300;
  padding: 3px 10px 3px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #footer a {
  font-weight:normal;
  }

