/*
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/
*/

@font-face {font-family:museosans; src:url{'fonts/museo_sans.otf'} format {"opentype"}; font-wight:bold;}

/* MAIN */
.custom h2, .custom h3 {text-transform:lowercase;}

/* HEADER */
.custom  #header {border-bottom:0; margin:0 0 22px; padding:0;}
.custom #headerimage {width:750px; margin:0px auto;}

/* SIDEBARS */
.custom #multimedia_box {background:#fff;border:0;}
.custom #sidebars h3 {color:#CB3B37; font-variant:normal;letter-spacing:-1px;}
.custom #sidebars h3 {padding-bottom:0;border-bottom:1px solid #E3D7A8;}


/* SEARCH */
.custom input, .custom textarea {background:#fff;} 
.custom #sidebarsearch {width:200px;float:right;display:inline;padding-right:16px;}
.custom #sidebarsearch input {width:200px;height:15px;padding:7px;margin-top:5px; margin-bottom:20px;}

/* CONTENT */
.custom #content_box {background:none;}

/* SUB ICONS */
.custom #subscribeicons {width:225px;float:right;display:inline;margin-top:5px;}

/* SIFR */
/*.sIFR-active .headline_area h1, .sIFR-active .headline_area h2 {margin-bottom:-38px;padding-left:95px;}
.custom .teasers_box .sIFR-active h2 {padding-left:0px;}*/

/* DATE */
.custom .date {height:57px;padding-top:28px;width:83px;background:url('images/date.jpg') no-repeat;float:left;display:inline;margin-top:-68px;}
.custom .month {color:#fff;font-size:13px;width:60px; margin:0px auto; text-align:center;}
.custom .day {color:#fff;font-size:13px;width:60px; margin:0px auto; text-align:center;}

.custom .format_teaser img {padding:0px 10px 6px 0px;}
.format_teaser .sociable {display:none;}
.format_text .to_comments span {font-size:1.3em;}

/* FOOOTER */
.custom #footer p {text-align:center;}



