/*
Company:	Sprout	
File:		main.css - This contains all the main styles for the website.

All the styles are separted into the following groups:
Global Browser Reset - they make sure that all browsers start with the same default settings
HTML, Body - for the html and body tags
Layout - any style that defines how the site is laid out (position and size of objects)
Nav - navigation bar
Headings - headings like h1, h2, etc
Text Styles - Styles for text
Lists - unordered and ordered lists
Forms - html forms
Links - links
Misc - anything that doesn't fit elsewhere
*/

/* @group Global Browser Reset */
* {

padding:0;

margin:0;

}

h1, h2, h3, h4, h5, h6, p, pre, blockquote, label, fieldset, address { margin:10px 0; }

blockquote { margin-left: 40px; }

fieldset { padding:10px; }

img { border: 0px; }
/* @end */

/* @group HTML, Body */
body {
	background: url(../images/bkg.gif);
}
/* @end */

/* @group Layout */
div#outer-wrapper {
	 font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}
body#index div#inner {
	width: 818px;
	margin-left: auto;
	margin-right: auto;
	background: url(../images/body-bkg.png) repeat-y;
}
body#inside div#inner {
	width: 563px;
	margin-left: auto;
	margin-right: auto;
	background: url(../images/inside-bkg.png) repeat-y;
}
body#index div#ft {
	width: 818px;
	margin-left: auto;
	margin-right: auto;
	background: url(../images/body-bkg-ft.png) no-repeat bottom center;
}
body#inside div#ft {
	width: 563px;
	margin-left: auto;
	margin-right: auto;
	background: url(../images/inside-bkg-ft.png) no-repeat bottom center;
}
body#index div#hd {
	background: url(../images/index-head.jpg) no-repeat;
	width: 800px;
	height: 137px;
	margin-left: 9px;
}
body#inside div#hd {
	background: url(../images/inside-header.jpg) no-repeat;
	width: 545px;
	height: 137px;
	margin-left: 9px;
	overflow: hidden;
}
body#index img#logo {
	margin: 50px 34px 0 0;
	float: right;
	display: inline;
}
body#inside img#logo {
	margin: 5px 15px 0 0;
	float: right;
	display: inline;
}
div#index-feature {
	margin-left: 9px;
	padding-bottom: 100px;
}
div#ft {
	text-align: center;
	padding: 10px 0 20px 0;
	color: #482c21;
}

div#content-hd {
	width: 545px;
	margin-left: 9px;
	background: url(../images/inside-title-bkg.jpg) no-repeat;
	height: 69px;
	margin-top: -5px;
	padding: 1px 0;
	overflow: hidden;
}
div#content-bd {
	width: 485px;
	margin-left: 9px;
	background: url(../images/inside-bkg.jpg) repeat-y;
	padding: 10px 30px 1px 30px;
	color: #262523;
	font-size: 107%;
}
div#content-ft {
	width: 545px;
	margin-left: 9px;
	background: url(../images/ft-bkg.jpg) no-repeat;
	height: 24px;
	padding: 1px 0;
}
/* @end */

/* @group Nav */
	
/* @end */

/* @group Headings */
h1 {
	color: #4a931f;
	font-size: 184%;
	font-weight: bold;
}
div#content-hd h1 {
	margin: 0;
	padding: 0;
	line-height: 85px;
	text-indent: 30px;
}
h2 {
	color: #000;
	font-size: 133%;
	font-weight: bold;
}
h3 {
	color: #000;
	font-size: 116%;
	font-weight: bold;
}
h4 {
	color: #000;
	font-size: 108%;
	font-weight: bold;
}
h5 {
	color: #000;
	font-size: 100%;
	font-weight: bold;
}
h6 {
	font-size: 100%;
	color: #000;
	font-weight: normal;
}

h7 {
	font-size: 14pt;
	color: #993300;
	font-weight: bolder;
	font-family: Arial, Helvetica, sans-serif;
}




/* @end */

/* @group Text Styles */
	
/* @end */

/* @group Lists */
div#outer-wrapper ul {
	margin-left: 20px;
}
div#outer-wrapper ol {
	margin-left: 27px;
}

body#index div#hd ul, body#inside div#hd ul {
	list-style-type: none;
	margin-top: 97px;
	float: left;
	display: inline;
}
body#inside div#hd ul {
	margin-top: 35px;
}
body#index div#hd ul li, body#inside div#hd ul li {
	width: 100px;
	margin-right: 5px;
	text-align: center;
	float: left;
	display: inline;
}
body#inside div#hd ul {
	margin-left: 15px;
}
body#inside div#hd ul li {
	margin-right: 5px;
}
div#hd ul a {
	font-weight: bold;
	font-size: 107%;
}
div#hd ul a:link, div#hd ul a:visited {
	color: #4a931f;
	text-decoration: none;
}
/* @end */

/* @group Forms */
	
/* @end */

/* @group Links - link visited hover active */
a:link, a:visited {
	color: #482c21;
	text-decoration: none;
}
a:hover, a:active {
	text-decoration: underline;
}
/* @end */

/* @group Misc */
.clear {
	clear: both;
}
/* @end */