/*
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/
*/

body.custom {
	background: url('images/bg_body.jpg') left top repeat-x #FFFFFF;
	font-family: Tahoma,Arial,helvetica,sans-serif;
	color: #696969;
}

.custom h1, .custom h2 {
	color: #666;
	font-family: "Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua", Georgia, serif;
	font-style: italic;
}

.custom h1 {
	font-size: 36px;
	line-height: 36px;
}

.custom #container {
	width: 734px;
	border-top: 4px solid #D6D6D6;
}

.custom .page {
	width: 734px;
	margin: auto;
	padding: 0;
}

.custom .page h1#logo a {
	color: #FFF;
}

/* needs to be wider than .page */
.custom .header_graphic {
	height: 250px;
	background: url('images/bg_header.jpg') left top no-repeat transparent;
	width: 748px;
}

.custom .header_graphic h1 {
	color: #FFF;
	padding-left: 325px;
	padding-top: 68px;
}

.custom .nav_menu img, .custom .nav_menu a {
	border: 0;
	padding: 0;
}

/* needs to be wider than .page */
.custom .nav_menu {
	width: 748px;
}

.custom .eyebrow {
	float: right;
	margin-top: 20px;
	margin-right: 20px;
}

.custom .eyebrow a {
	margin-right: 20px;
	color: #B1B1B1;
	font-size: 12px;
}

.custom .eyebrow a:hover {
	text-decoration: underline;
}

.custom #header {
  display: none;
}

.custom #content_box {
  background-image: none;
}

.custom #page {
  padding: 10px;
}

.custom .no_sidebars #content {
  width: 100%;
}

.custom #content {
  width: 456px;
}

.custom #sidebars {
  width: 234px;
}

.custom .post_box, .custom .teasers_box, .custom .full_width #content_box .page {
  margin: 0 1.1em;
}

.custom table.table td {
  padding: 0;
  font-size: 0.75em;
}

/*---:[ comments ]:---*/
.custom.is_page .comments_closed {
	display: none;
}

.custom.is_page .headline_area h1,
.custom.is_page .headline_area h2 {
  display: none;
}

/*=======block_1===========*/
.block_1{background:url(images/block_1_top.jpg) left top repeat-x #424342; width:100%; color:#B6B6B6; line-height:1.6em;}
.block_1 .right{background:url(images/block_1_right.jpg) right top repeat-y;}
.block_1 .left_top{background:url(images/block_1_left_top.jpg) left top no-repeat;}
.block_1 .right_top{background:url(images/block_1_right_top.jpg) right top no-repeat; padding:25px 26px 19px 22px;}

.block_1 .list_1 {margin-top:1em;}
.block_1 .list_1 li { margin-left:16px;}
.block_1 .list_1 li a{color:#B6B6B6; text-decoration:none; line-height:1.58em;}
.block_1 .list_1 li a:hover{text-decoration:underline;}

.block_1 a{color:#FFFFFF; text-decoration:none;}
.block_1 a:hover{text-decoration:underline;}
/*=====//block_1===========*/

.block_1 h2, .block_2 h2{color:#FFFFFF; font-size:1.16em; padding:0; margin:0 0 15px 0;}

/*=======block_2===========*/
.block_2{background:url(images/block_2_bot.jpg) left bottom repeat-x #727472; width:100%; color:#FCFCFC; line-height:1.6em;}
.block_2 .right{background:url(images/block_2_right.jpg) right top repeat-y;}
.block_2 .left_bot{background:url(images/block_2_left_bot.jpg) left bottom no-repeat;}
.block_2 .right_bot{background:url(images/block_2_right_bot.jpg) right bottom no-repeat; padding:18px 20px 20px 23px;}

.block_2 .list_1 {margin-top:1em;}
.block_2 .list_1 li { margin-left:16px;}
.block_2 .list_1 li a{color:#FCFCFC; text-decoration:none; line-height:1.58em;}
.block_2 .list_1 li a:hover{text-decoration:underline;}

.block_2 .list_2 li a{color:#FCFCFC; text-decoration:underline; line-height:1.75em;}
.block_2 .list_2 li a:hover{text-decoration:none;}

.block_2 a{color:#FCFCFC; text-decoration:none;}
.block_2 a:hover{text-decoration:underline;}
/*=====//block_2===========*/

.form-message-error {
	background-color: #FDE8E7;
	color: #52565B;
	border: 2px solid #DFB9B7;
	padding: 10px;
}

.form-message-success {
	background-color: #FDF6D4;
	color: #52565B;
	border: 2px solid #EAE3C1;
	padding: 10px;
}

.form-error {
	color: #ff0000;
	font-weight: bold;
}

div.form-item {
    margin-top: 1em;
    margin-bottom: 1em;
}