/*

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/

*/

#header { background-color:#FFFFCE; }

body.custom { background: #44443f; }

	

	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #3e3e3a; }



		.custom #page { background: #fff; }

		

/*---:[ end background ]:---*/





/* Sidebars   */



#sidebars {

border-style:solid; background-color: rgb(247, 247, 255);

}



#sidebar_1 {

 background-color: rgb(247, 247, 255);

}





/* Boxes */



.yellow_background {

	background-color:#FFFFBD;     

     }

.blue_background {

	background-color:#F4F5FF;     

     }

.bluebox   {

      padding:4px; 

	  border:solid #267ABF 2px;

}

/*********************************************
		Borders 
*********************************************/

.thinborderfloat {
  float:left;
  border:solid 1px silver;
  padding:5px;
  margin-right:10px;
  } 
  
/*********************************************
		Image styling, box styling 
*********************************************/
/* Method one - ok for text paragraph 
   May want to put it in a third container to regulate width */

.contain .incontent, .shadow {
  position: relative;
  bottom: 3px;
  right: 3px;
}
.shadow { background-color: #ccc; }
.incontent {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 0.5em;
}

/* Example:
<div class="shadow">
<div class="incontent">
<p>This is the div element that will have the shadow on it. You can also shadow images instead of a div with content in it.</p>
</div>
</div>

*/

/* Method 2 - for images */


div.shade img {
background: url(http://www.leserglede.com/pics/shadow2.gif) no-repeat right bottom;
padding: 4px 10px 10px 4px;
border-top: #eee 1px solid;
border-left: #eee 1px solid;
}

/* One more - not work so well - needs testing */
/*
div.shadow {
background:transparent url(/pics/shadow.png) no-repeat scroll right bottom;
float:left;
margin:9px 0 0 9px;
}
/* Img without frame 
div.shadow > * {
display:block;
left:-9px;
margin:0;
position:relative;
top:-9px;
}  */
.shadow img.framed {
background:white none repeat scroll 0 0;
border:1px solid black;
padding:12px;
}



/*********************************************
		Borders 
*********************************************/

.thinborderfloat {
  float:left;
  border:solid 1px silver;
  padding:5px;
  margin-right:10px;
  } 
  
  
/*   Font styles    */



.style12 {

	font-size: 9pt;

	font-weight: 200;

	line-height: 130%;

	color: #454545;

}



.style13 {

	font-size: 10pt;

	font-weight: 200;

	line-height: 130%;

	color: #454545;

}



.style14 {

	font-size: 11pt;

	line-height: 134%;

	color: #454545;

	font-family:Garamond, "Garamond Premr Pro", "Adobe Garamond Pro", Garamond, Palatino, "Times New Roman", Times, serif ;

}

.style14-box {

	font-size: 9pt;

	line-height: 115%;

	color: #454545;

	font-family:Garamond, "Garamond Premr Pro", "Adobe Garamond Pro", Garamond, Palatino, "Times New Roman", Times, serif ;

}



.custom #head_right { float: right; text-align: right; }



