/* Table of Contents

	- Global Reset
	- Basic Structures
	- Header & Footer
	- Content Structures
	- Navigation Rules
	- Flash Rules
	- Common Rules
	- Form Rules
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _*/


/* Global Reset

	This is an easy way to make sure that all browsers will default all element rules to the same settings.
	
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _*/


body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin : 0;
	padding : 0;
	border : none;
	font-size : inherit;
	line-height : inherit;
}
fieldset,img { border : 0; }
address,caption,cite,code,dfn,em,strong,th,var { font-style : normal; font-weight : normal; }
ol,ul { list-style : none; }
h1,h2,h3,h4,h5,h6 { font-size:100%; font-weight : normal; }
q:before,q:after { content:''; }
abbr,acronym { border : 0; }

/* Basic Structural Rules

	These ids and classes create the most basic building blocks for the website.
	(html) sets the default font type, color and size for the entire site.
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _*/

html {
	width : 100%;
	min-width : 1000px;
	color : #000;
	font-size : 62.5%;
	font-family : "Times New Roman", Times, serif;
	background : url(../images/template/pageBackground.jpg) top center repeat;
}

body {
	width : 100%;
	min-width : 1000px;
	background : url(../images/template/pageBodyBackground.png) top center repeat-x;
}

/* Header & Footer
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _*/

/* Disables display of Header */

#header { display : none; }

/* Enables display of printHeader */

#printHeader { margin : 0 0 20px 0; display : block; }

/* Rules for footer */

#footer { display : none; }

/* Content Structures
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _*/

#wrapper {
	margin : 0;
	padding : 0;
	width : 100%;
	font-size : 1.3em;
	display : block;
	clear : both;
}

#content {
	margin : 0;
	padding : 0;
	width : 100%;
	text-align : left;
	display : block;
	clear : both;
}

/* Navigation Rules
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _*/

#navigation { display : none; }

/* Common Rules
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _*/

a { color : #c60; text-decoration : none; outline : none; }
a:hover { color : #369; }

#content div { display : block; }

/* COLUMNS
	You can use this class to make a div into a column
	The width here defaults to 50% but can be controlled through the class name in the html which is applied by the autowidth.js file
	
	To set a div column width by percent you would specify the class like this ( class="column percent_#" ) where # is the desired value.
	
	To set a div column width to a specific pixel size you would specify the class like this ( class="column pixels_#" ) where # is the desired value.
*/

.column { margin : 0; padding : 0; width : 50%; float : left; }

h1 {
	padding : 15px 80px .5em 70px;
	width : auto;
	font-size : 2.45em;
	font-family : Garamond, "Times New Roman", Times, serif;
	font-weight : bold;
	line-height : 105%;
	letter-spacing : -.5px;
	background : url(../images/template/quotesLeft.gif) top left no-repeat;
	display : block;
	clear : both;
}

h1 img { display : inline; }

h1 em {
	font-size : 60%;
	font-style : italic;
	text-align : right;
	display : block;
}

h2 {
	padding : 1em 60px .4em 50px;
	width : auto;
	color : #4e1716;
	font-size : 1.8em;
	font-family : Garamond, "Times New Roman", Times, serif;
	font-weight : bold;
	line-height : 100%;
	letter-spacing : -.5px;
	background : url(../images/template/subTitleBackground.gif) bottom left no-repeat;
	display : block;
	clear : both;
}

h2.topBar { padding : 1.5em 60px .4em 50px; background : url(../images/template/subTitleBackground.gif) top left no-repeat; }
h2 strong { font-size : 80%; }

h3 {
	padding : 1em 60px 0 50px;
	width : auto;
	color : #6c5c2b;
	font-size : 1.4em;
	font-family : Garamond, "Times New Roman", Times, serif;
	font-weight : bold;
	line-height : 100%;
	letter-spacing : -.5px;
	display : block;
	clear : both;
}

h4 {
	padding : .5em 60px .5em 50px;
	width : auto;
	font-weight : bold;
	display : block;
	clear : both;
}

p {
	padding : 0 60px .5em 50px;
	line-height : 1.4em;
	width : auto;
	display : block;
}

ul {
	padding : .5em 60px 0 50px;
	width : auto;
	list-style : none;
	display : block;
}

ol {
	padding : .5em 1em 0 3em;
	width : auto;
	display : block;
}

ul li, ol li {
	padding : 0 0 .5em 0;
	width : inherit;
}

hr {
	margin : .5em 1.4em .5em 1.4em;
	display : block;
}

object, embed, img { display : block; }


sup { font-size : 55%; }
b { font-weight : bold; }
em { font-style : italic; }

/* apply this class to ad a divider between content sections */

.divider { border-bottom : 1px #d9d9d9 solid; }

/* apply this class to properly format images within content */

.photo {
	margin : 5px 10px 5px 10px;
	display : block;
}

/* Apply these classes to float stuff left or right */

.left { float : left; }

.right { float : right; }

.clear { clear : both; float : none; }

/* Apply this to hide anything */

.hide { display : none; }

/* Form Rules
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _*/

.form { margin : 5px 0 10px 0; padding : 5px 0 10px 0; }

fieldset {
	margin : 0;
	padding : 5px 10px 5px 10px;
	font-size : inherit;
	line-height : inherit;
	border : none;
	display : block;
	clear : both;
}

label { margin : 0; padding : 0 1em 0 0; text-align : left; width : auto; display : block; float : left; }

input { margin : .2em 0 0 0; height : 1.4em; border : 1px #333 solid; display : block; outline : none; }

textarea { border : 1px #333 solid; display : block; }

input.radio { margin : 0 .5em 0 0; border : none; display : block; float : left; }
input.checkbox { margin : 0 .5em 0 0; border : none; display : block; float : left; }

select { border : 1px #333 solid; display : block; outline : none; }

option { height : 1.3em; }

input.button {
	margin : 0 1em 0 0;
	padding : .2em 1em .2em 1em;
	height : auto;
	border : 1px #333 solid;
	background : url(../images/template/footerBackground.jpg) top left no-repeat;
	float : left;
}


