/*

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 {

	font-family: Verdana, Arial, Helvetica, sans-serif;

	font-size: 10px;

	background-color: #00703c;

	background-image: url('images/header-img.jpg');

	background-repeat: no-repeat;

	background-position: top center;

}



/* TEXT */

h2 a {

	font-family: Georgia, "Times New Roman", Times, serif;

	font-size: 24px;	

	color: #00703c;

	text-decoration: none;

}

h2 a:hover {

	color: #00703c;

	text-decoration: underline;

}



.widget h3 {

	color: #c88b11;

	font-size: 14px;

	font-weight: bold;

	text-transform: uppercase;

	letter-spacing: normal;

}



/* CONTAINER */

#container {

	margin: 23px auto;

	width: 959px;

	background: #ffffff;

}



/* PAGE */

#page {

 padding: 0;

}



/* TABS (TOP) */

#tabs {

	margin: 0;

	list-style: none;

	border: 0px;

}

#tabs li {

	margin: 0 10px 0 0;

	background: #ffffff;

	border: 0px;

	float: left;

}

#tabs .current_page_item, #tabs .current-cat {

	padding: 0;

	background: #fff;

	border: 0;

}

#tabs a {

	display: block;

	line-height: normal;

	color: #00703c;

	font-weight: bold;

	text-transform: capitalize;

	letter-spacing: 0px;

}

#tabs a:hover {

	color: #c88b11;

	text-decoration: none;

}

#tabs .current_page_item a, #tabs .current-cat a {

	cursor: auto;

}

#tabs .current_page_item a:hover, #tabs .current-cat a:hover {

	text-decoration: none;

}



/* OTHER NAVIGATION */

#nav-break {

	margin: 0 0 0 160px;

	width: 65%;

	border-top: 2px solid #c88b11;

}

#nav2 {

	margin: 5px 10px 0 0;

	list-style: none;

}

#nav2 li.cat-item {

	margin: 0 0 0 30px;

	background: #ffffff;

	border: 0px;

	float: right;

}

#nav2 li.cat-item a {

	display: block;

	line-height: normal;

	color: #00703c;

	font-size: 11px;

	font-weight: bold;

	text-transform: capitalize;

	letter-spacing: 0px;

}

#nav2 li.cat-item a:hover {

	color: #c88b11;

	text-decoration: none;

}



/* HEADER */

#header {

	height: 261px;

	border: 0;

	background-image: url('images/header-img-front.jpg');

	background-repeat: no-repeat;

}



#header #header-img {

	margin: 0 0 0 15px;

}



#header #tagline {

	margin: 100px 110px 0 0;

	color: #00703c;

	font-family: Georgia, "Times New Roman", Times, serif;

	font-size: 32px;

	line-height: 25px;

	text-align: right;

}

#icons {

	float: right;

}



/* CONTENT */

#content_box {

	margin: 50px 0 0 0;

}



/* POSTS */

#content_box .hfeed .post {

	padding: 30px 0 0 60px;

	background-color: #ffffff;

	background-image: url('images/post-house.png');

	background-repeat: no-repeat;

	background-position: top left;

}

.post_box, .teasers_box {

	border: 0;

}



/* SIDEBAR */

#sidebars {

	margin: 0 25px 0 0;

}



#sidebars #multimedia_box #custom_box,

#sidebars #multimedia_box #custom_box a {

	color: #c88b11;

	font-size: 14px;

	font-weight: bold;

	border: 0;

	background-color: #ffffff;

}



.sidebar_list .widget .cat-item a {

	padding: 0 0 0 15px;

	color: #c88b11;

	text-decoration: none;

	background-image: url('images/arrow-bullet.png');

	background-repeat: no-repeat;

	background-position: left;

}



.sidebar_list .widget .cat-item a:hover {

	color: #c88b11;

	text-decoration: underline;

}



/* FOOTER */

#footer {

	color: #d9a757;

	line-height: 20px;

	text-align: center;

	border: 0;

}



#footer a {

	padding: 0 15px;

	color: #00703c;

	line-height: 20px;

	text-decoration: none;

	border: 0;

}



#footer a:hover {

	color: #00703c;

	text-decoration: underline;

	border: 0;

}



/* PAGES IN FOOTER */

#footer1 {

	margin: 5px 10px 0 0;

	list-style: none;

}

#footer1 li.page_item {

	margin: 0;

	float: left;

}

#footer1 li.page_item a {

	display: block;

	color: #00703c;

	font-size: 10px;

	text-transform: capitalize;

}

#footer1 li.page_item a:hover {

	color: #00703c;

	text-decoration: underline;

}



/* CATEGORIES IN FOOTER */

#footer2 {

	margin: 5px 10px 0 0;

	list-style: none;

}

#footer2 li.cat-item {

	margin: 0;

	float: left;

}

#footer2 li.cat-item a {

	display: block;

	color: #00703c;

	font-size: 10px;

	text-transform: capitalize;

}

#footer2 li.cat-item a:hover {

	color: #00703c;

	text-decoration: underline;

}



/* LINKS IN FOOTER */

#footer3 {

	margin: 0;

	float: right;

	text-align: left;

}



/* COPYRIGHT */

#copyright, #copyright a {

	width: 100%;

	color: #ffffff;

	text-align: center;

}

#copyright a:hover {

	text-decoration: underline;

}



/* CALENDAR */

#calendar_wrap {

	padding: 0 0 0 3px;

	border: 5px solid #c88b11;

	background-color: #f7cf94;

}



#calendar_wrap #wp-calendar caption {

	font-weight: bold;

	background-color: #f7cf94;

}



#calendar_wrap #wp-calendar thead tr th {

	border: 0;

	font-size: 9px;

	font-weight: normal;

	background-color: #f7cf94;

}



#calendar_wrap #wp-calendar tbody tr td {

	height: 25px;

	width: 40px;

	color: #000000;

	font-size: 9px;

	border: 1px solid #ffffff;

}



#calendar_wrap #wp-calendar tbody tr td a {

	padding: 6px;

	color: #000000;

	font-weight: normal;

	background-color: #f7e4c5;

}



#calendar_wrap #wp-calendar tfoot tr td a {

	color: #000000;

}



#calendar_wrap #wp-calendar tfoot tr td a:hover {

	background-color: #f7e4c5;

}



/* WIDGETS */

.widget .search_form .text_input {

	border: 1px solid #c88b11;

	background-image: url('images/magnifying-glass.png');

	background-repeat: no-repeat;

	background-position: right;

}



.widget div {

	text-align: center;

}



.widget div a {

	padding: 0 10px 0 0;

	color: #c88b11;

	text-decoration: none;

}