/*
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/

*/

body.custom {
    background: #C3C0AB;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    background: #C3C0AB;
    border: 1.0em solid #F8F6EC;
}

.custom #page {
    background: #fff;
}

/*---:[ header ]:---*/
.custom #header {
		border-color: #0367C7;
		border-style: solid;
}

.custom #crp_related {
    background: #f0f0f0;
	  border-top: 0.5em solid #999999;
		margin-bottom: 2em;
    padding: 1em 1em 0.4em 1em;
}

.custom #crp_related p {
    margin-bottom: 0.5em;
}

.custom #disqus_thread { padding-left: 25px; padding-right: 25px; }

.custom #sidebar_1 {
		background: #f4f6f5;
}

.custom .sidebar a {
		color: #333333;	
}

.custom #sidebar_2 {
		background: #f4f6f5;
}

.custom #adsense-style {
	  width: 428px;
		margin-bottom: 25px;
		padding: 15px;
    border: .05em solid #DEDEDE;
}

.custom .widget_categories ul {
	  border-top: 1px dotted #BBBBBB;
		list-style-image: none;
		list-style-position: outside;
		list-style-type: none;
}

.custom .widget_categories ul li {
	  border-bottom: 1px dotted #BBBBBB;
		margin: 0px;
}

.custom .widget_categories ul li a, .custom #wpp-3 ul li a:visited {
    display: block;
		margin: 0px;
		padding: 3px 0 4px;
		textdecoration: none;
}

.custom .widget_categories ul li a:hover {
    background: #eeeeee none repeat scroll 0 0;
		color: #25579b;
		margin: 0;
		padding: 3px 0 4px;
		text-decoration: none;
}

.custom #wpp-3 ul {
	  border-top: 1px dotted #BBBBBB;
		list-style-image: none;
		list-style-position: outside;
		list-style-type: none;
}

.custom #wpp-3 ul li {
	  border-bottom: 1px dotted #BBBBBB;
		margin: 0px;
}

.custom #wpp-3 ul li a, .custom #wpp-3 ul li a:visited {
    display: block;
		margin: 0px;
		padding: 3px 0 4px;
		textdecoration: none;
}

.custom #wpp-3 ul li a:hover {
    background: #eeeeee none repeat scroll 0 0;
		color: #25579b;
		margin: 0;
		padding: 3px 0 4px;
		text-decoration: none;
}

.custom .post_box .format_text input { width: auto; }

.custom .more-link {
				text-decoration: none;
}

.custom .entry-title a:hover {
				color: #000000;
}

.custom .monthtitle a {
				text-decoration: none;
}

.custom .postspermonth a {
				text-decoration: none;
}

.custom .share-post {
				height:26px;
				border-top:solid 1px #DFDFDF;
				color:#323232;
				font-size:11px;
				margin-bottom:20px;
				margin-left:0px;
}

.custom .share-post li{
				float:left;
				margin:4px 0;
				margin-right:10px;
				display:block;
				border-right:solid 1px #DFDFDF;
				padding-right:10px;
}
.custom .share-post a:link, 
.custom .share-post a:visited{
				height:16px;
				line-height:16px;
				line-height:16px;
				color:#555;
				text-decoration:none;
}
.custom .share-post a:hover{
				color:#888;
				text-decoration:underline;
}
.custom .share-delicious{
				background:url(images/delicious.gif) no-repeat;
				padding-left:20px;
}
.custom .share-facebook{
				background:url(images/facebook.gif) no-repeat;
				padding-left:20px;
}

.custom .share-digg{
				background:url(images/digg.gif) no-repeat;
				padding-left:20px;
}
.custom .share-stumbleupon{
				background:url(images/stumbleupon.gif) no-repeat;
				padding-left:20px;
}
.custom .share-reddit{
				background:url(images/reddit.gif) no-repeat;
				padding-left:20px;
}