/* background color for the article headline on home page only*/
.custom h2.entry-title { background:#FFFFFF none repeat scroll 0 0; color:#FFFFFF; padding:0.1em 0; text-align:left; }

/* background color for the article headline - on single post pages only */
.custom h1.entry-title { background:#FFFFFF none repeat scroll 0 0; padding:0.1em 0; text-align:left; }

/* width and height of default comment box */
.custom #commentform textarea {
width: 590px;
height:5em;
}

/*
clickable header
*/
.custom #logo {background-image: url('images/header.jpg'); background-repeat: no-repeat; width: 956px; height: 68px; text-indent: -9999px; }
.custom #logo a {width: 956px; height: 68px; display: block; outline: none;}
.custom #tagline { text-indent:-9999px; }

/*
removes stupid smiley from footer
*/
img#wpstats{display:none !important;}

/*
dotted line with padding
*/
.custom div.dotted-line { 
width: 100%;
border: dashed #ddd; 
border-width:0 0 1px 0;
padding-top:0px;
padding-bottom:30px;
margin-top: 0px;
}

/*
dotted line witout padding
*/
.custom div.dotted-line-plain { 
width: 100%;
border: dashed #ddd; 
border-width:0 0 1px 0;
padding-top:0px;
padding-bottom:0px;
margin-top: 0px;
}

/*
rubber banner color temp 
*/
#shareOpts {
background:none repeat scroll 0 0 #efeee4;
color:#999999;
height:30px;
margin:auto;
width:300px;
}


/*
Text align
*/
.custom .format_text 
{
   text-align:justify;
} 

/*
Header bg color
*/
.custom #header {background-color:#ffffff}  


/*
I’ve changed color of sidebar and content area
*/

/* earlier setting - do not use
.custom #content_box {background: #ffffff url('http://www.buzzhunt.co.uk/images/sidebar-stripe.png') repeat-y top center;}
.custom #content {background-color:#ffffff;}  
*/

/* last used setting
.custom #content_box {background: #FFF url('/images/sidebar-stripe.gif') repeat-y right top;}   
*/

/*
I’ve changed&nbsp;the look of the menu line 
*/
.custom ul#tabs {border-bottom:none; border-left:none; background:#EEEEEE;}
.custom ul#tabs li {margin-bottom:0; border:none; background:none}
.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat 
{padding-bottom:0; background:#FFFFFF}
.custom ul#tabs li.rss {}
.custom ul#tabs li a {}
.custom ul#tabs li a:hover {text-decoration:none; background:#FFFFFF}
.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a
 {}
.custom ul#tabs li.current_page_item a:hover {text-decoration:none; 
background:#FFFFFF;}, .custom ul#tabs li.current-cat 
a:hover {text-decoration:none; background:#FFFFFF}

/*
below added to fix images overflowing the layout of post column
*/
p img {
    padding: 0;
    max-width: 100%;
}
#header, #content, #footer, .widget {
    overflow: hidden;
}

/*
below header ad position
*/

.custom #header_ad {
float:right;
position:absolute;
width:468px;
height:60px;
top:30px;
margin-left: 35.5em;
}

/* Page Navigation styling*/
.custom .full_width #content_box .wp-pagenavi .page {
  margin: 2px;
  padding: 2px 4px;
}


/*
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/
*/


/*
Removes border from multimedia box
*/
.custom #image_box img {
border: 0;
}