/* 1-0 General Layout (container backgrounds, dimensions, positioning) */

	/* 1-1 Header Layout */	
	
	/* 1-2 Container Layout */

		/* 1-2-1 Main-Column Layout */
		
		/* 1-2-2 Side-Columns Layout */
	
	/* 1-3 Footer Layout */	


	
/* 2-0 General Styling (text color, typeface, whitespace) */

	/* 2-1 Header-Nav Styling */
	
		/* 2-2-1 Main-Column Styling */
	
		/* 2-2-2 Side-Columns Styling */
		
	/* 2-3 Footer Styling */



/* 3-0 Specific Styling */

	/* 3-1 Directory and Listing Pages */


/* ================================================== */
/* 1-0 General Layout (container backgrounds, dimensions, positioning) */

/* in order of appearance in HTML code */

html {
	background: url(../images/bg_wood.jpg) left top repeat;
}
body {
	background: url(../images/bg_shadow.png) center top repeat-y;
}
div, div dl, div ol, div ul {
	overflow: hidden;		/* ensures elements contain any floated child elements */
}
div#header-banner, 
div#header-nav, 
div#ad-leaderboard,
div#gutter-top, 
div#gutter-bottom, 
div#footer-nav, 
div#footer-banner {
	margin: 0 auto;
	width: 996px;
	font-size: inherit;
}

a {
	color: #2a456a;
}
a:hover {
	color: #b35300;
}
.inline { display: inline-block !important; }

	/* ================================================== */
	/* 1-1 Header Layout */

div#header-banner {
	background: url(../images/bg_header_banner.jpg) left top repeat-x;
	height: 180px;
}
div#header-nav {
	background: #3c3f36;
	/*height: 30px;*/
	line-height: 30px;
	z-index: 900;
}
div#ad-leaderboard {
	background: url(../images/bg_ad_leaderboard.jpg);
	border: 1px solid #fff;
	border-width: 1px 0;
	height: 100px;
	z-index: 500;
	text-align: center;
}
div#ad-leaderboard p {
	margin: 5px 0;
	text-align: center;
}
div#gutter-top {
	background: url(../images/bg_gutter_top.png) left top repeat-x;
	height: 20px;
}

	/* ================================================== */
	/* 1-2 Container Layout */
	
div#container-top, div#container-middle, div#container-bottom {
	margin: 0 auto;
	width: 1000px;
}
div#container-top {
	background: url(../images/bg_container_content_top.jpg) left top no-repeat;
	height: 15px;
}

		/* ================================================== */
		/* 1-2-1 Main-Column Layout */
	
div#container-middle {
	background: url(../images/bg_container_content_middle.jpg) left top repeat-y;
}

		/* ================================================== */
		/* 1-2-2 Side-Columns Layout */
	
div#container-middle div#col-left-content, 
div#container-middle div#col-middle-content, 
div#container-middle div#col-right-content {
	display: inline;		/* IE6 Double-Margin Bug fix */
	float: left;
}
div#container-middle div#col-left-content {
	margin-left: 10px;
	margin-right: 8px;
	width: 182px;
}
div#container-middle div#col-middle-content {
	border: solid 0px #f00;
	border-width: 0 0px;
	margin-left: 12px;			/* 4px is magic number to make column (without borders) align with embedded in background image */
	margin-right: 8px;			/* 1px is magic number to make column (without borders) align with borders embedded in background image */
	width: 580px;
	overflow-x: hidden;
}
div#container-middle div#col-right-content {
	margin-left: 8px;
	margin-right: 10px;
	width: 182px;
}
div#container-middle div#col-right-content div#rss {
	background: url(../images/bg_feed_rss.png);
	height: 60px;
	margin: 150px auto 0 auto;
	width: 160px;
}
div#container-middle div#col-right-content div#rss a {
	background: url(../images/bg_feed_rss.png) 0 -60px;
	display: block;
	height: 60px;
	width: 160px;
}
div#container-middle div#col-right-content div#rss a:hover {
	background-position: 0 0;
}
div#container-bottom {
	background: url(../images/bg_container_content_bottom.jpg) left bottom no-repeat;
	height: 15px;
}

	/* ================================================== */
	/* 1-3 Footer Layout */

div#gutter-bottom {
	background: #eeece0;
	height: 10px;
}	
div#footer-nav {
	background: #3c3f36 url(../images/bg_footer_nav.jpg) left top no-repeat;
	border-bottom: 5px solid #98978f;
	padding: 20px 0;
}
div#footer-nav div#col-left-footer,
div#footer-nav div#col-middle-footer,
div#footer-nav div#col-right-footer {
	display: inline;			/* IE6 Double-Margin Bug fix */
	float: left;
	width: 262px;
}
div#footer-nav div#col-left-footer {
	margin-left: 60px;
}
div#footer-nav div#col-middle-footer {
	margin-left: 45px;
	margin-right: 45px;
}
div#footer-nav div#col-right-footer {
	margin-right: 60px;
}
div#footer-banner {
	background: url(../images/bg_footer_banner.jpg) left top no-repeat;
	height: 166px;
}

/* Forms */
form input, form textarea, form select {
	display: block;
	border: solid 2px #9d9b9b;
	color: #3c3f36;
	font-family: Arial, sans-serif;
	font-size: 1.1em;
	padding: 3px 5px;
	margin-bottom: 10px; 
	margin-top: 3px;
}

form input[type=checkbox] {
	display: inline-block;
	width: 1.5em;
}

form input[type=text], form textarea {
	width: 95%;
}
form input[type=submit] {
	cursor: pointer;
}
form input[type=hidden] {
	display: none;
}

form input.medium-input { width: 50%; }
form input.small-input { width: 33%; }

p.small { font-size: 11px !important; }

/* ================================================== */
/* 2-0 General Styling (text color, typeface, whitespace) */

/* in alphabetical order sorted by parent HTML element */

body {
	font-size: 62.5%;
}
body div {
	font-size: 1.1em;
}
a {
	text-decoration: none;
}
a strong {
	color: #b35300;
}

	/* ================================================== */
	/* 2-1 Header-Nav Styling */

div#header-nav {
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 1.55em;		/* 18px */
}
div#header-nav ul {
	text-align: center;
	width: auto;
	overflow: visible;
}
div#header-nav ul li {
	display: inline;
	position: relative;
}
div#header-nav ul li a {
	color: #fff;
	padding: 0 0.25em;
}
div#header-nav ul li a:hover {
	color: #d8710b;
}

/* Second Tier links */
div#header-nav ul li ul {
	display: none;
	position: absolute;
	top: 18px;
	left: -5px;
	overflow: hidden;
	z-index: 10000;
	background-color: #3C3F36;
	padding: 0 5px;
	min-width: 100px;
}

div#header-nav ul li:hover ul {
	display: inline;
}

	/* ================================================== */
	/* 2-2-1 Main-Column Styling */

/* in alphabetical order sorted by parent HTML element */
	
div.col-main {
	font-family: Tahoma, sans-serif;
}
div.ad {										/* ad containers */
	clear: both;
	margin: 1.5em auto;
	text-align: center;	/* centers image within regardless of size */
}
div.col-main div.container-feature {							/* feature containers */
	display: inline;
	float: left;
	margin: 1em 0;
	width: 176px;
}
div.col-main div.container-feature.left {
	margin-left: 13px;
}
div.col-main div.container-feature.middle {
	margin-left: 13px;
	margin-right: 13px;
}
div.col-main div.container-feature.right {
	margin-right: 13px;
}
div.col-main div.container-feature div.container-feature-bottom {
	background: url(../images/bg_container_feature_bottom.jpg);
	height: 10px;
}
div.col-main div.container-feature div.container-feature-middle {
	background: url(../images/bg_container_feature_middle.jpg) repeat-y;
}
div.col-main div.container-feature.left div.container-feature-middle h3 {			/* left feature-container heading */
	background: url(../images/bg_heading_feature_bullet1.png) 8px center no-repeat;
}
div.col-main div.container-feature.middle div.container-feature-middle h3 {			/* middle feature-container heading */
	background: url(../images/bg_heading_feature_bullet2.png) 8px center no-repeat;
}
div.col-main div.container-feature.right div.container-feature-middle h3 {			/* right feature-container heading */
	background: url(../images/bg_heading_feature_bullet3.png) 8px center no-repeat;
}
div.col-main div.container-feature div.container-feature-middle h3 {
	border-bottom: #5e6057 solid 1px;
	margin: 0 8px;		/* for IE6, otherwise gaps appear within container */
	padding-bottom: 8px;
	padding-left: 30px;
}
div.col-main div.container-feature div.container-feature-middle p {
	margin: 0 8px;		/* for IE6, otherwise gaps appear within container */
	padding: 0 0 1em;		/* for IE6, otherwise gaps appear within container */
	
}
div.col-main div.container-feature div.container-feature-top {
	background: url(../images/bg_container_feature_top.jpg);
	height: 10px;
}
div.col-main div#heading-main {								/* main top-headings */
	float: left;		/* for IE6 */
	margin-bottom: 1.5em;	
}
div.col-main div#heading-main div.col-left, 
div.col-main div#heading-main div.col-right {	
	display: inline;
	float: left;
}
div.col-main div#heading-main div.col-left {
	width: 320px;
}
div.col-main div#heading-main h1 {
	color: #52371a;
	font-size: 2.6em;
	font-weight: bold;
}
div.col-main div#heading-main h2 {
	color: #3c3f36;
	font-size: 1.4em;
	font-weight: bold;
	margin-top: 0.5em;
}
div.col-main div.photo {									/* photo containers */
	float: left;
	margin-bottom: 8px;
	margin-right: 8px;
}
div.col-main h2, div.col-main h3, div.col-main h4 {
	clear: both;
	font-weight: bold;
	margin: 0.5em 0;
}
div.col-main h2 {
	color: #52371a;
	font-size: 2.4em;
}
div.col-main h3 {
	color: #52371a;
	font-size: 2.0em;
}
div.col-main h4 {
	color: #52371a;
	font-size: 1.6em;
}
div.col-main hr {
	background: #898781;
	border: 0;
	clear: both;
	height: 1px;
	margin: 1.5em 0;
}
div.col-main p {											/* standard paragraphs */
	font-size: 1.2em;
	line-height: 1.5em;
	margin: 0 0 1em;
}
div.col-main ul {											/* standar unordered-lists */
	clear: both;
	font-size: 1.2em;
	line-height: 1.5em;
	margin: 1.5em 2em;
}
div.col-main ul li {
	background: url(../images/bg_listitem_bullet.png) left center no-repeat;
	padding-left: 15px;
}
div.col-main ul li strong {
	color: #264066;
	font-weight: bold;
}

	/* ================================================== */
	/* 2-2-2 Side-Columns Styling */
	
/* in alphabetical order sorted by parent HTML element */

div.col-side {
	font-family: Tahoma, sans-serif;
}
div.col-side div.ad {
	margin: 1.5em 0;
}
div.col-side div.heading-single {
	background: url(../images/bg_heading_single.jpg);
	height: 50px;
	width: 184px;
}
div.col-side div.heading-single h2 {							/* section-heading backgrounds */
	color: #d7d5c1;
	font-family: "Myriad Pro", Tahoma, sans-serif;
	font-size: 1.5em;		/* 18px */
	font-weight: bold;
	line-height: 1em;
	margin: 8px;
}
div.col-side div.heading-lure1 {			
	background: url(../images/bg_heading_lure1.jpg);
	height: 60px;
	width: 184px;
}
div.col-side div.heading-lure2 {
	background: url(../images/bg_heading_lure2.jpg);
	height: 60px;
	width: 184px;
}
div.col-side div.heading-lure1 h2, 
div.col-side div.heading-lure2 h2 {
	color: #d7d5c1;
	font-family: "Myriad Pro", Tahoma, sans-serif;
	font-size: 1.45em;		/* 18px */
	font-weight: bold;
	line-height: 1em;
	margin: 10px 15px 0 65px;
}
div.col-side div.heading-search {			/* search form */
	background: url(../images/bg_heading_search.jpg) no-repeat;
	height: 50px;
}
div.col-side form#search-form {
	margin: 12px auto 0;
	overflow: hidden;
	width: 160px;
}
div.col-side form#search-form input#search-field {
	border: solid 2px #9d9b9b;
	color: #3c3f36;
	font-family: Arial, sans-serif;
	font-size: 1em;
	padding: 3px 5px;
	width: 130px;
}
div.col-side form#signin-form {								/* signin form */
	margin: 0 auto;
	width: 168px;
}
div.col-side form#signin-form div {
	margin: 1em 0 0;
}
div.col-side form#signin-form div input {
	border: solid 2px #9d9b9b;
	color: #3c3f36;
	font-family: Arial, sans-serif;
	font-size: 1.1em;
	padding: 3px 5px;
	width: 154px;						
}
div.col-side h3, 											/* common side-margins */
div.col-side h4, 
div.col-side p, 
div.col-side ul {
	margin-left: 8px;
	margin-right: 8px;
}
div.col-side h3 {
	color: #52371a;
	
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1.5em;
}
div.col-side h4 {
	color: #3c3f36;
	font-size: 1.2em;
	font-style: italic;
	font-weight: bold;
	margin-top: 0.5em;	
}
div.col-side p {
	font-size: 1em;
	line-height: 1.5em;
	margin-bottom: 1em;
}
div.col-side p.read-more {
	border-bottom: #000 dotted 1px;
	padding-bottom: 1em;
	text-align: right;
}
div.col-side p.read-more a {
	color: #b35300;
	font-weight: bold;
}
div.col-side ul {
	color: #3c3f36;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5em;
	margin-bottom: 1.5em;
	margin-top: 0.5em;
}
div.col-side ul li {
	border-bottom: dotted 1px #000;
}
div.col-side ul li.first-item, div.col-side ul li:first-child {
	border-top: dotted 1px #000;			/* apply "first-item" class value to first list-item in list of links */
}
div.col-side ul li a {
	color: #3c3f36;
}
div.col-side ul li a:hover {
	color: #b35300;
}

/* ================================================== */
/* 2-3 Footer Styling */

/* in alphabetical order sorted by parent HTML element */

	/* ================================================== */
	/* 2-3-1 Footer-Nav Styling */

div#footer-nav h2 {
	background: url(../images/bg_footer_nav_heading.png) left center repeat-x;
	color: #eeeecf;
	font-family: "Myriad Pro", Tahoma, sans-serif;
	font-size: 2em;	
}
div#footer-nav h2 span {
	background: #3c3f36;
	margin: 5px 20px;
	padding: 5px;
}
div#footer-nav ul {
	color: #eeece0;
	font-family: Tahoma, sans-serif;
	font-size: 1.3em;
	line-height: 1.5em;
	margin-top: 1em;
}
div#footer-nav ul li {
	border-bottom: #eeece0 solid 1px;
}
div#footer-nav ul li.first-item, div#footer-nav ul li:first-child {
	border-top: #eeece0 solid 1px;
}
div#footer-nav ul li a {
	color: #eeece0;
	display: block;
	padding: 0.5em 0;
}
div#footer-nav ul li a:hover {
	background: #b35300;
}
div#footer-nav ul li a strong {
	color: #eeece0; 
}

	/* ================================================== */
	/* 2-3-2 Footer-Banner Styling */

div#footer-banner p {
	margin: 100px 0 0 8px;
}	
div#footer-banner p a {
	color: #b35300;
	font-family: Tahoma, sans-serif;
	font-size: 1.2em;
	line-height: 1.5em;
}

/* ================================================== */
/* 3-0 Specific Styling */

	/* ================================================== */
	/* 3-1 Directory and Listing Pages */
	
/* in alphabetical order sorted by parent HTML element */	

div.col-main div#map {
	margin: 0 auto;
	text-align: center;
	display: none;
}
div.col-main div.summary-company {								/* company summaries */
	border-bottom: #898781 solid 1px;
	padding: 10px 0;
	width: 100%;
}
div.col-main div.summary-company.featured {
	background-color: #eeeed1;
}
div.col-main div.summary-company div.col-left, 
div.col-main div.summary-company div.col-right {
	display: inline;
	float: left;
	overflow: hidden;
}
div.col-main div.summary-company div.col-left {
	margin-bottom: 8px;		/* x1 */
	margin-right: 8px;
	width: 80px				/* x2 */
}
div.col-main div.summary-company div.col-right {
	margin-right: -3px;		/* IE6 Duplicate Characters Bug fix */
	width: 490px;			/* x3; sum of x1, x2, and x3 should be less than 580px, which is available width of content middle-column */
}
div.col-main div.summary-company div.col-right h4 {
	font-size: 16px;
	font-weight: bold;
	margin-top: 0;
}
div.col-main div.summary-company div.col-right p {
	font-size: 12px;
}
div.col-main div.summary-company p.to-dir-top {
	width: 100%;
	font-size: 10px;
	margin: 0;
	text-align: right;
}
div.col-main div.summary-company ul {
	clear: both;
	font-size: 12px;
	margin: 0;
}
div.col-main div.summary-company ul li {
	background: none;			/* offsets general unordered-list styling */			
	float: left;
	padding-left: 0;			/* offsets general unordered-list styling */

}
div.col-main div.summary-company ul li a, 
div.col-main div.summary-company ul li span {
	padding: 0 5px;
}
div.col-main p#dir-alphabet {									/* directory alphabet */
	text-align: center;
}
div.col-main p#dir-alphabet a {
	text-decoration: underline;
}
div.col-main table {										/* tables */
	border: #72918c solid 1px;
	border-collapse: collapse;
	font-size: 1.2em;
	margin: 0 auto;
	width: 98%;
}
div.col-main table th {
	background: #72918c;
	border-left: #eeece0 solid 1px;
	color: #eeece0;
	padding: 10px;
	text-align: left;
	width: 123px;
}
div.col-main table th.first-heading {
	border-left: none;
}
div.col-main table td {
	border: #cac8be solid 1px;
	padding: 10px;
	width: 92px;
}
div.col-main table td.hilight {
	background-color: #304c6e;
	position: relative;
}
div.col-main table td.hilight a {
	font-weight: bolder;
	color: #fff;
}
div.col-main table td.hilight a:hover {
	text-decoration: underline;
}
div.col-main ul#tabs-nav {									/* nav tabs */
	font-family: Tahoma, sans-serif;
	font-size: 1em;
	font-weight: bold;
	margin: 1em 0;
	
}
div.col-main ul#tabs-nav li {
	background: none;			/* offsets general unordered-list styling */
	float: left;
	padding-left: 0;			/* offsets general unordered-list styling */
	margin: 0 0 1em;	
}
div.col-main ul#tabs-nav li a {
	/*background: url(../images/bg_tabs.png) top left no-repeat;	*/
	background-color: #2a456a;
	border: 1px solid #000;
	color: #eeece0;
	display: block;
	height: 40px;
	width: 112px;
	margin-right: 1px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-top-left-radius: 5px;
}
div.col-main ul#tabs-nav li a span {
	display: block;
	padding: 3px 5px;
}
div.col-main ul#tabs-nav li a:hover, div.col-main ul#tabs-nav li a.current {							/* rollover effect */
	/*background-position: -96px 0;					*/
	background-color: #b35300;
}



/* Login */ 
div#login {
	width: 60%;
	margin: 40px auto;
	font-size: 12px;
}

address { 
	font-size: 12px;
	line-height: 15px;
	font-style: normal;
}

/* Forums */
#forums {
	font-size: 12px;
}
#forums h2 {
	font-size: 24px;
	margin: 0 0 10px 0;
}
#forums .category {
	font-size: 10px;
	border: 1px solid #eeeece;
	border-bottom: 1px dotted black;
}
#forums .category h3 {
	font-size: 15px;
}



/* Grids */
.line:after,.lastUnit:after {
	content: " . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ";
	visibility:hidden; 
	clear:both;
	height:0 !important;
	display:block;
	line-height:0;
	overflow: hidden;
}

.line {
	padding: 10px 0;
	*zoom:1;
}

.unit {
	float:left;
	padding: 0 10px;
}

.size1of1 { float:none; }
.size1of2 { width:50%; }
.size1of3 { width:33.33333%; }
.size2of3 { width:66.66666%; }
.size1of4 { width:25%; }
.size3of4 { width:75%;}
.size1of5 { width:20%; }
.size2of5 { width:40%;}
.size3of5 { width:60%;}
.size4of5 { width:80%;}
.lastUnit { 
	display: table-cell;
	*display:block;
	*zoom:1;
	float:none;
	_position:relative;
	_left:-3px; 
	_margin-right: -3px;
	width:auto;
}


/* Forums */
.forum-comment {
	font-size: 9px;
	border-bottom: 1px solid #CAC8BE;
}

div#comments_wrapper {
	background-color: #eeeece;
	border: 1px solid #cecece;
}
#comments {
	padding: 10px;
	font-size: 11px;
}


body#clean div#container-middle {
	background-image: none;
	width: 996px;
	font-size: 10px;
}
body#clean div.col-main {
	font-size: 10px;
}


.notification {
	padding: 8px 15px;
	background-color: #95a79e;
	font-weight: bolder;
	font-size: 12px;
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
}

.success {
	background-color: #6a8479;
}

div.box {
	padding: 10px 15px;
	background-color: #eeedda;
	border-top: 1px solid #CAC8BE;
	border-bottom: 1px solid #CAC8BE;
	margin-bottom: 20px;
}


img.left {
	float: left;
	margin: 0 15px 5px 0;
	border: 4px solid #3C3F36;
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
}

img.right {
	float: right;
	margin: 0 0 5px 15px;
	border: 4px solid #3C3F36;
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
}

/* Weather */
td.forecast {
	font-size: 10px;
	color:#FFFFFF;
	padding: 0px 10px 10px 5px !important;
	background-image:url(/public/images/weather-bkg.gif);
}
td.forecast p {
	line-height: 14px;
	color:#FFFFFF;
	text-align:justify;
	margin: 3px 0;
}
td.small {
	font-size: 9px;

}
td.foreacast a {
	float: left; 
	margin: 0 7px 7px 0;
}

td.forecast strong {
	font-size: 13px;
	font-weight: bolder;
	color:#FFFFFF;
}

td#level {
	text-align: center;
	font-size: 26px;
	color:#FFFFFF;
	background-image:url(/public/images/lake-bkg.gif);
}
td.level strong {
	font-size: 13px;
	font-weight: bolder;
}

td#moon {
text-align:center;
	font-size: 13px;
	background-color:#000000;
}
td.moon h4 {
font-size:13px;
text-align:center;
color:#FFFFFF;
}

.legal {
	font-size: 11px !important;
	text-transform: uppercase;
}


/* Articles */
img.avatar {
	border: 1px solid #10387D;
	padding: 3px; 
	float: left;
	margin: 0 10px 10px 0;
}

div.article > h2 {
	display: inline-block;
	margin: 0 0 5px 0;
}

div.article .article-body {
	padding-bottom: 20px;
	display: inline;
}

div.article div.comments {
	margin-top: 20px;
	display: block;
}

div.comments div.comment {
	border-top: none;
	margin: 0;
}

/* Profile Friends */
ul.clean li { 
	list-style: none !important;
	background-image: none !important;
	padding: 5px 0;
	border-bottom: 1px solid #CAC8BE;
	font-weight: bolder;
}
ul.clean li span {
	font-weight: normal;
	margin-left: 50px;
}
ul.clean li img.avatar {
	width: 1.5em;
	height: 1.5em;
	padding: 0;
	border: none;
	padding-top: 0px;
}

/* Calendar */
div.cal-details {
	display:none;
}
div.cal-details ul {
	margin: 0;
	font-family: sans-serif;
}
div.cal-details ul li {
	list-style-type: square;
	list-style-image: none;
	font-size: 12px;
	font-weight: normal;
	line-height: 1.5;
	z-index: 100;
	list-style-position: inside;
}
