/*

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/

*/

/* Style the First (or Only) Post */

.custom .post.top {

   background:#FFFFFF none repeat scroll 0 0;

   border:5px single #666666 !important;

   margin:1em;

   padding:2em;

}
/* Style Remaining Posts (in a Multi-Post Listing) */

.custom .post.post_box {

   background:#FFFFFF none repeat scroll 0 0;

   border:5px single #666666;

   margin:1em;

   padding:2em;

}
/* Style the First (or Only) Post */

.custom .top {

   background:#FFFFFF none repeat scroll 0 0;

   border:5px single #666666 !important;

   margin:1em;

   padding:2em;

}
/* Style Remaining Posts (in a Multi-Post Listing) */

.custom .post_box {

   background:#FFFFFF none repeat scroll 0 0;

   border:5px single #000000;

   margin:1em;

   padding:2em;

}

.custom a, .custom a:visited { color: #000000; }

.custom a:hover { color: #9d0507; }

/* START of Stylized Widgets */

/*Default Sidebar Widget*/
.custom li.widget {
margin-top: 15px;
margin-bottom: 15px;
margin-right: auto;
margin-left: auto;
padding: 8px;
width: 260px;
background: #ffffff;
border: 1px solid #898175;
}

/* Widget Heading - Colored Background Only */
.custom .widget h3 {
background: #8d2506;
text-transform: uppercase;
text-align: center;
}
/* END of Stylized Widgets */


/*Background - Repeating*/
body.custom {
background: #ffffff url('images/xxxx.jpg') top left repeat;
}

/*Simple footer - black and white*/
.custom #footer {
background:#606157;
border:none;
color:#FFFFFF;
padding:1.5em 1em 1.5em 2.5em;
text-align:left;
}

.custom #footer a{
color: #888888;
text-decoration:none;
border:none;
}

.custom #footer a:hover{
color: #888888;
text-decoration:underline;
}

.custom #comment_list { background: #898175; padding: 1em; }
      .custom #comment_list dd { margin-bottom: 1em; }
      .custom #comment_list .comment { background: #FFF; }
.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div { background: #E3FFE8; }
.custom .comment-reply-link { background: #E3FFE8; padding: 0.4em; -moz-border-radius: 5px; -webkit-border-radius: 5px; }