﻿/* DEFAULT TAGS AND CLASSES */

body, html, table
{
	font-family: Verdana, Arial, Tahoma, sans-serif;
	font-size: .9em;
	color: #000000;
}

body
{
	min-width: 760px;
	margin: 0;
}

#page
{
	min-height: 300px;
	height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}

table
{
	border-collapse: collapse;
}

td, th
{
	vertical-align: top;
	text-align: left;
}

p
{
	padding: 0;
}

a, a:visited
{
	color: #009E92;
}

a:hover
{
	color: #D7862A;
}


h1, h2, h3
{
	font-weight: bold;
	padding: 0;
	margin: 0;
}

h1
{
	font-size: 18pt; /*1.6em*/
	color: #47728B;
}

h2
{
	font-size: 12pt; /*1.3em*/
	font-weight: normal;
	color: #009E92;
	padding-top: 10px;
}

h3
{
	font-size: 1.2em;
	color: #FCB814;
}

img
{
	border: 1px #51565E solid;
}

img.left
{
	float: left;
	margin-right: 15px;
	margin-bottom: 10px;
}

img.right
{
	float: right;
	margin-left: 15px;
	margin-bottom: 10px;
}

.clear
{
	clear: both;
}



/* HEADER TAGS */

#header
{
	width: 100%; /*** Required for correct display in IE ***/
	background-color: #B76F27;
	background-image: url('../../media/images/layout/banner_bg.gif');
	background-repeat: repeat-x;
}


#site_name
{
	height: 100px;
	background-image: url('../../media/images/layout/banner.gif');
	background-repeat: no-repeat;
}

#site_name span
{
	display: none;
}


/* MAIN & CONTENT TAGS */

.main
{
	border-left: 0px solid #FFFFFF; /*** This is the width and the color for our left column ***/
	border-right: 300px solid #FFFFFF; /*** This is the width and the color for our right column ***/
}

/***
	div.inner is wider than its container, div.main, and so overlaps to the right, pushing
	div.right into the proper position.
***/

.inner
{
	width: 100%; /*** Required for correct display in IE ***/
	border-right: 0px #000000 solid; /*** Left border of right div ***/
	margin-right: -0px;
}

.left-content-wrap
{
	float: left;
	width: 100%;
	margin-left: -165px; /*** Same length as .main border-left but with negative value ***/
}

#content
{
	float: right;
	margin-right: -165px;  /*** Same length as .main border-left but with negative value ***/
	width: 100%;
}

* html #content
{
	position: relative;
}

.content-wrap
{
	padding: 15px 15px 15px 15px;
}

#breadcrumbs
{
	margin-bottom: 12px;
	font-size:.8em;
	color: #51565E;
}

#breadcrumbs a
{
	text-decoration: underline;
	color: #51565E;
}

#breadcrumbs a:hover
{
	color: #D7862A;
}

#content li
{
	margin-left: 0px;
	margin-bottom: 10px;
}



/* LEFT TAGS */

/***
	div.left is in div.left-content-wrap, and when div.left-content-wrap is neg margined to the left, 
	div.left is carried over into the proper position. 
***/

#left
{
	display: none;
	float: left;
	width: 155px;
	padding: 10px 5px 5px 5px;
}

* html #left
{
	position: relative;  /*** Required for correct display in IE ***/
}


/* RIGHT TAGS */

#right
{
	float: right;
	width: 300px;
	padding: 0px 0px 0px 0px;
	margin-right: -300px; /** This negative margin-right value is the width of the right column + the padding (left and right). ***/
}

* html #right
{
	position: relative;  /*** Required for correct display in IE ***/	
}

#right ul.faq
{
	margin: 0;
	padding: 0;
	margin-top: 20px;
	padding-top: 40px;
	padding-left: 20px;
	padding-bottom: 40px;
	list-style: none;
	border-left: 1px #51565E solid;
	font-size: 14px;
}

#right ul.faq a
{
	text-decoration: none;
}

#right ul.faq li
{
	margin-bottom: 15px;
}


/* FOOTER TAGS */

#footer
{
	padding-top: 5px;
	padding-bottom: 10px;
	text-align: center;
	font-size:.9em;
	color: #51565E;
}