/*
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



/* Custom Header using image. */

 #header { 
                
                border:5px solid #dddddd;
                height:265px;
                
                width:908px;
               
                margin-bottom:15px;
                margin-top:20px; 
                padding-bottom:0px;
                padding-top:0px;
		background: url("http://www.cookandbemerry.com/wp-content/gallery/header/cbmfinal.jpg"); 
	}



.custom #sidebars {float:left;margin-left:-5px;background:white; border-left: 5px solid #dddddd;width:300px;}

.custom #fbr {margin-left:10px;}

.custom #content {
	background: #fff;       
        width:580px;
        border-right:5px solid #dddddd;
        
        
        

        
        margin-left:5px;
        margin-right:0px;
      

 
} 
.statcounter { margin-left:18px;}


.custom #content_box {
width:930px;	

border: 5px solid #dddddd;


        background: url (http://www.cookandbemerry.com.previewdns.com/wp-content/gallery/header/fauxcollumn.jpg) float-right #fff;


margin-top: 15px;
}

img {border:solid 0px #b7d162}




.post_box {border-top:1px solid #ddd;}



/* Customized Background Trial */
body.custom {
    background:#fff;
	}

.custom #container {
    width:920px; margin: 0 auto; 
    margin-top: 0px;
    margin-bottom: 1em;
    border: 0px #e6e7ef; /* #ADEE73 for live page and #C31029 for test */
    padding: 0px;
	}

.custom #page {
     margin-top: 5px;
     padding:0px;
     width:920px;
          
     color: inherit !important; 
  background: transparent !important;
     
}



.custom #footer {

border: 0px double #b7d162;

margin-top:10px;
width:920px;
background:#dddddd;	
}



/* Customize Teasers on home page */
.custom .teaser {
		width: 100%;
		margin-top: 2em;
		padding-top: 2em;
		border-top: 1px dotted #bbb;
		text-align: justify;
	}

.custom .teasers_box {
width:480px;		
padding-top: 0;
		border-top: 0;
	}

.teasers_box .sociable {display:none;}

 html>body #photodiv { background-repeat: no-repeat;
            float:right;
            height:265px;
            width:398px;
            margin-top:0px;
            margin-right:-11px;
            overflow-x:hidden;
            overflow-y:hidden;
            }
#photodiv { background-repeat: no-repeat;
            float:right;
            height:265px;
            width:398px;
            margin-top:0px;
            margin-right:-6px;
            overflow-x:hidden;
            overflow-y:hidden;
            }




/*---:[ multimedia box ]:---*/
#multimedia_box { width: 300px; margin-right:0px; margin-top:0px; background:#fff;border:none;  }

	
		
	
	#custom_box { background: #fff; border-bottom: 0px solid #fff;}

#portrait  {
		
              
		
		padding-top: 0px;
		
		
                background:#fff;
                 
                
                
	}
#portrait img  {padding-right: 0px;padding-top:0px;border:solid 3px #dddddd;margin-right:5px;}
#portrait.portrait #portrait p {font-size:14pt; font-family:Georgia, Verdana, Verdana, Times, serif; color:#766676; margin-bottom:5px;}

#portrait.portrait p {font:.85em  Verdana, Verdana, Times, serif; color:#666666; text-align:left;}
#portrait.portrait a {color: #a23366;}

.custom #customnav { width: 930px; }

#recipe a {float:right; }

#sidebars a {color:#666666;}

.statcounter img {display:none;}
img#wpstats {display:none;}


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/
*/