/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/

/* Color Pallete

Header bg			#702e2f
Column bg			#eee4cc
Widget bg			#a67d52
Content				#111111
Links				#702e2f
Headings			#702e2f

*/

/*get rid of dotted link box in FireFox*/
:-moz-any-link:focus {
  outline: none;
}

body.home {
	background: url(images/home_bg.png) repeat-x;
}

/* HEADER */

#header_area {
	background: url(images/header_bg.png) repeat-x;
	height: 111px;
}

#header_area .page {
	padding-top: 0;
}

#header {
	padding: 5px 0;
	border: none;
}

p#logo, h1#logo {
	background: url(images/logo.png) no-repeat;
	text-indent: -9999px;
	overflow: hidden;
}

p#logo a, h1#logo a {
	display: block;
	width: 555px;
	height: 71px;
}

#tagline {
	display: none;
}

/* NAVIGATION */


ul.menu {
	background: #702e2f;
	border: none;
}

ul.menu li a {
	padding-top: 7px;
	padding-bottom: 6px;
	letter-spacing: 1px;
	font-weight:bold;
}

ul.menu li a.hover {
}

ul.menu li a.current {
}

ul.submenu-1 li a {
	font-weight: normal;
	text-transform: none;
	letter-spacing: 0px;
}

/* FEATURE BOX ON HOME PAGE */

#feature_box {
	width: 100%;
	background: #eee4cc;
	padding-top: 9px;
	padding-bottom: 0px;
	border-bottom: 6px solid #702e2f;
	height: 341px;
}

#feature_box .feature {
	float: left;
	width: 205px;
	margin-right: 25px;
	position: relative;
}

.clr {clear:both}

/* HOME PAGE CONTACT FORM WIDGET */

#feature_box .sidebar_list {
	padding-top: 0;
}

#feature_box .contact {
	float: left;
	width: 204px;
	position: relative;
}
	



/* CONTACT FORM */

#custom_cf7-6 {
	background: url(images/contact_bg.jpg) no-repeat;
	color: #ffffff;
	padding: 10px 0px 41px 15px;
	height: 272px;
	min-height: 290px;
	margin-bottom: 0px;
}

#custom_cf7-5 {
	background: url(images/page_contact_bg.jpg) no-repeat;
	color: #ffffff;
	padding: 10px 0px 5px 15px;
	min-height: 298px;
}

#custom_cf7-6 h3 {
	display: none;
}

#custom_cf7-5 h3 {
	display: none;
}

#cf7_form_box {
	width: 165px;
}

#cf7_form_box p {
	margin-bottom: 7px;
}

#cf7_form_box input, #cf7_form_box textarea {
	width: 165px;
	padding: 3px 0;
	border: 1px solid #b08f6c;
	background: #fff;
}

#cf7_form_box textarea {
	height: 85px;
}

#cf7_form_box #button input {
	width: 70px;
}

#home_contact_button {
	background: url(images/contact_button.jpg) no-repeat;
	width: 156px;
	height: 51px;
	text-indent: -9999px;
	position: absolute;
	top: 271px;
	left: 20px;
}

#home_contact_button a {
	display: block;
	width: 156px;
	height: 51px;
}


/* HOME PAGE CONTENT */

.home .headline_area {
	display: none;
}

#home_content {
	float: left;
	width: 46%;
	margin-right: 8%;
}

#home_map {
	float: right;
	width: 46%;
	text-align: center;
}

#home_content h2, #home_map h2 {
	margin-top: 0;
	padding-top: 0;
	color: #702e2f;
	font-size: 24px;
	font-weight: normal;
}

#home_content #home_call {
	text-align: center;
}

#home_content #home_call a {
	color: #702e2f;
	text-decoration: none;
}

#home_content #home_call a:hover {
	text-decoration: underline;
}

/* SIDEBARS */

#content_box {
	background: #fff url(images/sidebar_bg.png) right top repeat-y;
}

#sidebar_1 {
	border: none;
}

.sidebar h3 {
	font-size: 1.3em;
	letter-spacing: 0px;
	text-transform: none;
	font-variant: normal;
	color: #6f2d2f;
	font-weight:bold;
}

.sidebar a {
	color: #000000;
	text-decoration: none;
}

.sidebar a:hover {
	text-decoration: underline;
}



#text-4 {
	color: #ffffff;
	background: url(images/sidebar_contactus_block.jpg) no-repeat;
	width: 207px;
	min-height: 127px;
	padding-top: 15px;
	font-size: 17px;
	text-align: center;
}

/*interior page contact form*/
.sidebar li#text-3 {
	padding-bottom: 0;
	margin-bottom: 0;
}

.sidebar li#text-3 h3 {
	margin-bottom: 5px;
}

/* FOOTER */

#footer_area {
	background: #702e2f;
	height: 75px;
}

#footer {
	background: #702e2f;
	border-top: none;
	padding: 5px 5px 0 0;
	font-weight: normal;
}

#footer a {
	font-weight: bold;
	border: none;
}

#footer a:hover {
	color: #cdad62;
}