/*
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/
*/
/* Recommended from Thesis video*/
/*.custom .menu {padding: 0 1.1em; font-weight: bold;}*/
.custom .header {	padding-top: 0;}
.custom .footer{	padding-bottom: 0;}
X

/*Recommended from http://www.howtomakemyblog.com/thesis/8-thesis-theme-design-tips-to-make-your-blog-better/ */
#archive_info {display:none;}

/*From http://www.howtomakemyblog.com/thesis/8-thesis-theme-design-tips-to-make-your-blog-better*/
.custom div.welcome_box {
width: 90%;
padding: 0.571em 0.786em;
margin-left: 1em;
margin-right: 1em;
margin-bottom: 1em;
margin-top: 1em;
margin-bottom: 0em;
padding-bottom: 0em;
}

.custom h1.entry-title { background:#2361A1 none repeat scroll 0 0; color:#FFFFFF; padding:0.3em 0; text-align:center; }
.custom h2.entry-title { background:#2361A1 none repeat scroll 0 0; color:#FFFFFF; padding:0.3em 0; text-align:center; }
.custom he.entry-title { background:#2361A1 none repeat scroll 0 0; color:#FFFFFF; padding:0.3em 0; text-align:center; }


.custom #content_box {background-color:#EEEEEE;}
/*Background Color for Sidebar*/

.custom #content {background-color:#FFFFFF;}/*Background Color for Body*/

/* For photodropper */
.custom .photo_left, .custom .photo_right {
	background: #eee;
	border: 0.071em solid #ccc;
	color: #888;
	margin-bottom: 1.571em;
	padding: 0.714em;
}

.custom .photo_center {
	clear: both;
	color: #888;
	float: none;
	margin-bottom: 1.571em;
	text-align: center;
}

.custom .photo_left {
	clear: left;
	float: left;
	margin-right: 1.571em;
	text-align: left;
}

.custom .photo_right {
	clear: right;
	float: right;
	margin-left: 1.571em;
	text-align: right;
}

.custom .photo_center img {
	background: #eee;
	border: 0.071em solid #ccc;
	margin-bottom: -2.714em;
	padding: 0.714em 0.714em 2.714em 0.714em;
}

.custom .photo_center small a img {
	background: transparent;
	border: none;
	margin: 0;
	padding: 0;
}

.custom .photo_center small a, .custom .photo_left small a, .custom .photo_right small a {
	color: inherit;
	text-decoration: none;
}

