/*
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/
*/

#multimedia_box {

  background:url("images/bg-posts.png") repeat-x scroll center top 
#FFFFFF;

  border: 1px solid #D7D8DF;

  margin-bottom:0;

  margin-top:2em;

}




/* Rounded Corners on Nav Bar */
/* Remove the border from the far left. */
ul.menu{border-left:0;}

/* Add the left border back in. If you change the color of the nav border in the WordPress admin panel, you will also have to manually change the left border color below. */
ul.menu li.tab-home a{
	border-left:1px solid #CCC;
	-moz-border-radius-topleft:.5em;
	-webkit-border-top-left-radius:.5em;}

/* This creates the rounded borders. */
ul.menu li.tab a{
	-moz-border-radius-topleft:.5em;
	-webkit-border-top-left-radius:.5em;
	-moz-border-radius-topright:.5em;
	-webkit-border-top-right-radius:.5em;}








/* colour background */
body.custom {
&amp;background: #efeeee;
}

.custom #container {
margin-top: 3.5em;
margin-bottom: 3em;
padding: 0.3em;
background: #fac3e8;
;border: 0.4em solid #efeeee;
}

.custom #page {
background: #fff;
}



/*---:[ multimedia box ]:---*/
.image_box, .custom_box { border-style: solid; border-color: #ddd; }
	#image_box img { background: #fff; border-style: solid; border-color: #fff; }



/*---:[ headlines and bylines ]:---*/
h1,h2,h3,h4,h5,h6 { 
	font-weight:bold;
	clear:both;
	letter-spacing:-0.02em;

}


.format_text h2.top, .format_text h3.top { margin-top: 0 !important; }


.sidebar h3 {font-size: 18px; font-style: normal; text-transform: uppercase; line-height:22px; font-weight:bold; letter-spacing:-0.01em;}


h1{font-size: 26px; margin: 5px 0px 10px; text-transform: uppercase;}
h2{font-size: 22px; margin: 10px 0 5px;}
.format_text h3{font-size: 18px; margin: 15px 0px 10px;}
.format_text h4{font-size: 16px; margin: 10px 0px 10px; color: gray; letter-spacing:-0.01em;}
.format_text h5{font-size: 14px; margin: 5px 0px 10px; text-transform: uppercase;}
.format_text h6{font-size: 12px; margin: 5px 0px 10px; text-transform: uppercase;}




/*---:[ hide Comments on this entry are closed ]:---*/
.custom .comments_closed p {
  display: none;
}






/* archive thumbs */
function archive_thumbs() {
if (is_archive() || is_category()) {
  global $post; 

 $source = thesis_post_image_info('thumb');
 echo $source['output']; 

 } 

} 

add_action('thesis_hook_before_post','archive_thumbs');





/* gray box around images - static portfolio and staticportfolio2 */
img.staticportfolio {
     border: 1px gray solid;
}

img.staticportfolio2 {
     border: 1px gray solid;
}



/* style twitter and facebook to match feed and email feed subscriptions */
.thesis_widget_subscriptions .sub_twit a { padding-left: 20px; 
background: url('http://www.jenleheny.com/blog/wp-content/themes/thesis_17/custom/images/twitter.gif') 0 50% no-repeat; }
.thesis_widget_subscriptions .sub_face a { padding-left: 20px; 
background: url('http://www.jenleheny.com/blog/wp-content/themes/thesis_17/custom/images/facebook.png') 0 50% no-repeat; }



/* style forms */
.custom .format_text input, #commentform input, #commentform textarea {width:auto;}


/* style next prev post left and right */
.custom div.prev_next p {
float:right;
}

.custom div.prev_next p.previous {
float:left;
}



/* My own  sitemap and archives page */
.custom .sitemap h3 {margin-top: 0;}
.custom .sitemap ul {font-size: 1em; }
.custom .sitemapl { float: left; width: 40%;}
.custom .sitemapr { float: right; width: 60%;}



/* Add your own footer link*/
.custom .custom_footer p {text-align:center; font-size: 1em; float: center;}


/* Image as Bullet Point*/
.custom .format_text ul li {
background:transparent url(http://www.ericasoycandles.com.au/erica/wp-content/uploads/heart.gif) no-repeat 0 3px; list-style:none;margin:0 0 2px 0;padding:0 0 0 25px;}


}
