/*
Company:	Tim Callanan
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:20px 0; }

blockquote { margin-left: 40px; }

fieldset { padding:10px; }

img { border: 0px; }
/* @end */

/* @group HTML, Body */
body {
	background-color: #c5ad8e;
	text-align: center;
}
/* @end */

/* @group Layout */
div#outer-wrapper {
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 908px;
	margin-top: 20px;
	font-size: 12px;
	font-family: Arial, sans-serif;
}
div#header {
	width: 908px;
	height: 179px;
	background: url(../images/header.jpg) no-repeat;
}
div#content {
	width: 908px;
	background: url(../images/bkg.gif) repeat-y;
	padding: 1px 0;
}
div#wide-col {
	width: 878px;
	margin: 10px 0 10px 15px;
}
div#left-col {
	width: 587px;
	padding-right: 10px;
	border-right: 1px solid #000;
	float: left;
	margin: 10px 10px 10px 15px;
	display: inline;
}
div#right-col {
	width: 270px;
	float: right;
	margin: 10px 15px 10px 0;
	display: inline;
}
div#footer {
	width: 908px;
	height: 72px;
	background: url(../images/footer.jpg) no-repeat;
}
/* @end */

/* @group Nav */
div#outer-wrapper ul.nav {
	margin: -1px 0 0 15px;
	padding: 5px 0;
	width: 878px;
	text-align: center;
	background-color: #000;
	font-size: 116%;
	text-transform: uppercase;
}
ul.nav li {
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0 10px;
}

ul.nav li.selectedPage a {
	color: #CC1D22 !important;
	}

#right-col ul.nav {
	margin: 1em 0 !important;
	padding: 0 0 1em 0 !important;
	border-bottom: 1px solid #CCC;
	width: auto !important;
	text-align: left !important;
	background: none !important;
	}

#right-col ul.nav li{
	list-style: none;
	margin: 0;
	padding: 0 0 .5em 0;
	display: block;
	background: none;
	}

#right-col ul.nav li.selectedPage a {
	text-decoration: underline;
	}
/* @end */

/* @group Headings */
h1 {
	color: #000;
	font-size: 175%;
	font-weight: bold;
}
h2 {
	color: #555;
	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;
}
/* @end */

/* @group Text Styles */
	
/* @end */

/* @group Lists */
div#outer-wrapper ul {
	margin-left: 20px;
}
div#outer-wrapper ol {
	margin-left: 27px;
}
/* @end */

/* @group Forms */
	
/* @end */

/* @group Links - link visited hover active */
ul.nav a:link, ul.nav a:visited {
	color: #fff;
	text-decoration: none;
}

#right-col ul.nav a, #right-col ul.nav a:link, #right-col ul.nav a:visited {
	color: #CC1D22;
	}

a:link, a:visited {
	color: #CC1D22;
}
a:hover, a:active {
	text-decoration: none;
}
/* @end */

/* @group Misc */
.clear {
	clear: both;
}
/* @end */
