/* Table of Contents

	- Global Reset
	- Basic Structural Rules
	- Specific Structural 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%;
	color : #666;
	font-size : 62.5%;
	font-family: Tahoma, Arial, Geneva, Helvetica, sans-serif;
	text-align : center;
}

body {
	margin : 0 auto 0 auto;
	width : 600px;
	text-align : center;
}

body.large #content { font-size : 125%; line-height : 125%; }
body.xlarge #content { font-size : 150%; line-height : 150%; }

#wrapper {
	width : 600px;
	font-size : 1.1em;
	line-height : 1.1em;
	display : block;
}

#header { display : none; }

#printHeader {
	margin : 0 auto 0 auto;
	padding : 0;
	width : 100%;
	text-align : center;
	border-bottom : 2px #930 solid;
	display : block;
	clear : both;
}

/* NOTE! navigationBar is a class, this is so that you can have more than one on a page. */

.navigation { display : none; }

#graphicBanner { display : none; }

.content {
	margin : 0 auto 0 auto;
	padding : 10px 0 10px 0;
	width : 600px;
	text-align : left;
	display : block;
}

#footer {
	margin : 0 auto 0 auto;
	width : 600px;
	text-align : left;
	border-top : 2px #930 solid;
	display : block;
	clear : both;
}

/* Specific Structural Rules

	Use this area to define rules for specific content/pages/design elements.
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _*/

#footer ul { padding : 15px 0 0 0; width : 760px; }
#footer li { padding : 0 10px 0 10px; border-right : 1px #666 solid; display : inline; }
#footer li.last { border : none; }
#footer p { padding : 10px 10px 14px 10px; width : 740px; }
#footer a { color: #666; }
#footer a:hover { color: #930; }

/* Rules for creating text "Call Out" sections */

.callout {
	margin : 5px 10px 5px 10px;
	padding : 5px;
	width : 210px;
	border-top : 3px #930 solid;
	border-bottom : 3px #930 solid;
	background : url(/images/template/calloutBackground.gif) top center repeat #bababa;
	display : block;
}

.callout img {
	margin : 0 auto 0 auto;
	padding : 5px;
	height : auto;
	width : 200px;
	display : block;
}

.callout p { padding : 5px; }

.callout strong { padding : 0 0 2px 0; display : block; }

/* Common Rules
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _*/

a { color : #930; text-decoration : none; outline : none; }
a:hover { color : #663; }

.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 : 5px 10px 5px 10px;
	width : auto;
	color : #930;
	font-size : 2em;
	line-height : 100%;
	letter-spacing : 1px;
	display : block;
}

h1.graphic { padding : 0 0 5px 0; height : 48px; width : 760px; line-height : 200px; overflow : hidden; clear : both; }

h2 {
	padding : 5px 10px 0 10px;
	width : auto;
	color : #369;
	font-size : 1.2em;
	letter-spacing : 1px;
	display : block;
}

h3 {
	padding : 5px 10px 0 10px;
	width : auto;
	color : #930;
	font-weight : bold;
	display : block;
}

h4 {
	padding : 5px 10px 0 10px;
	width : auto;
	font-weight : bold;
	display : block;
}

p {
	padding : 5px 10px 5px 10px;
	width : auto;
	display : block;
}

ul {
	padding : 5px 10px 0 35px;
	width : auto;
	list-style : none;
	display : block;
}

ol {
	padding : 5px 10px 0 35px;
	width : auto;
	display : block;
}

ul li, ol li {
	padding : 0 0 5px 0;
	width : inherit;
}

table {
	width : auto;
	display : block;
}

tr.titles td { padding : 10px; font-weight : bold; color : #fff; background : #333; }
tr.info td { padding : 10px; color : #fff; background : #222; }
td { padding : 10px; color : #fff; }

hr {
	margin : 5px 10px 5px 10px;
	display : block;
}

object, embed, img { display : block; }

/* rules for quote tag */

q { padding : 0 .7em 0 0; color : #036; font-weight : bold; font-style : italic; }
q:before { content : open-quote; }
q:after { content : close-quote; }

sup { font-size : 55%; }

/* apply this class to ad a divider between content sections */

.divider { border-bottom : 2px #cc9 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;
}


