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

.custom .comments_closed p  {
  display: none;
}

.custom .comments  {
  display: none;
}

.custom #header { border-bottom:none;
height:188px;
padding-top:0;
padding-bottom:0;
background:url(http://clintonpower.com.au/wp-content/themes/thesis_16/custom/images/header.jpg)
center left no-repeat; }

.custom p {margin:0; padding-top: 0x; padding-bottom:10px;}

.custom h3 {color:#706559; font-size:22px; padding-top:opx;}
.custom h1 { color:#706559; font-size:48px; font-weight:lighter; padding-bottom:0px;}
.custom h5 {color:#333333; font-size:28px; padding-top:opx; padding-bottom:17px; text-transform:none;}
.custom h4 {color: #333333; font-size:18px; padding-top:5px; padding-bottom:12px;}
.custom h6 {color: #333333; font-weight:bold; font-size:20px; padding-top:5px; padding-bottom:12px; text-transform:none;}
.custom h2 {color:#ffffff; font-size:36px; padding-top:opx;}

.custom headline_meta { padding-top:0 0 0 0;}


#footer { background:#6f6559; color:#FFFFFF;}
.custom #footer h2{ text-align:center;}
.custom #footer h3{ color:#CCCC99; padding-bottom:10px}
.custom footer style2 {font-size:30px;}
.custom #footer a {color:#FFFFFF;}


.custom #header #logo { display:none; }
.custom #header #tagline { display:none; }

.format_text {
padding: 10px 35px 20px 125px; }

.headline_area {
margin: 0px 0px 0px 0px;
padding: 50px 35px 0px 125px;
font-size:16px;
color:#333333; 
}
.headline_area h2{
font-size:16px;
color:#333333;
font-weight:bold; 
}

.input {
padding: 5px 0px 20px 0px; }

.custom .post_box {
padding-top:0;
padding-bottom:0;
margin-top:-1.2em;
}

.custom blockquote {
padding: 20px 100px 20px 100px;}



ul#cat_tabs { list-style: none; border: 1px solid #ddd; border-width: 0 0 1px 1px; }
	ul#cat_tabs li { margin-bottom: -0.1em; background: #efefef; border: 1px solid #ddd; border-left: 0; float: left; }
	ul#cat_tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0.1em; background: #fff; border-bottom: 0; }
		ul#cat_tabs li a { display: block; line-height: 1em; color: #111; text-transform: uppercase; letter-spacing: 2px; padding:0.545em 0.818em; }
		ul#cat_tabs li a:hover { color: #111; text-decoration: underline; }
		
		ul#cat_tabs li ul {position:absolute; display:none; list-style:none;}
		ul#cat_tabs li:hover ul {display:block;}
			ul#cat_tabs li ul li {float:none;}

ul#cat_tabs:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }