/*
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{margin: 40px 0 20px 0;}
body.custom{background-image:url('http://www.thecareerist.com/images/bg.jpg');background-repeat:repeat-x;}

/* HEADER */
.custom #header-date{color:#fff;font-size:12px;font-weight:bold;text-align:right;margin:15px 0 0 30px;padding:0 26px 0 0;position:relative;}

/* CONTENT */
/* .custom #content a{text-decoration:none;} */
.custom #content a:hover{background-color:#FFFFB9;text-decoration:underline;}
.custom #content a.more-link{float:right;margin:-10px 14px 0 0;font-weight:bold;}
.custom #content h2 a:hover{color:#000;}
.custom #content h3{margin-top:5px;}
.custom #content h6{margin-bottom:12px;margin-top:-2px;text-transform:capitalize;}
.custom #content .entry-content ul li{margin:0 0 10px 0;}
.custom #content ol li{margin:0 0 10px 0;}

/* MULTIMEDIA BOX */
.custom #feedburner{border:2px dashed #FFC671;background-color:#FFF7EA;padding:6px;}

/* SIDEBARS */
.custom #sidebar_1 a:hover, .custom #sidebar_2 a:hover{background-color:#FFFFB9;}
.custom #sidebar_1 h3, .custom #sidebar_2 h3, .custom #sidebar_2 h2{background-color:#353E43;color:#fff;font-family:'Times New Roman', Arial !important;font-weight:bold !important;font-size:16px !important;letter-spacing:1px !important;margin:0 0 8px 0 !important;padding:4px 4px 4px 10px !important;}

.custom #sidebar_1 li.widget_recent_entries ul li{list-style-type:square;padding:0 0 0 0;margin:0 0 8px 20px;}

.custom #sidebar_2 li.widget_popular_posts ul li{list-style-type:square;padding:0 0 0 0;margin:0 0 8px 20px;font-size:14px;}
.custom #sidebar_2 .wpp-comments, .custom #sidebar_2 .wpp-views{color:#666;font-size:10px;font-weight:normal;}

.custom #sidebar_1 ul.sidebar_list li, .custom #sidebar_2 ul.sidebar_list li{margin:0 0 16px 0;padding:0;}
.custom #sidebar_2 ul.sidebar_list li.cat-item{margin:0;padding:0 0 2px 10px;}
.custom .widget_recent_comments td:nth-child(even){padding-bottom:10px;}

/* FOOTER */
.custom #my_footer{width:1000px;margin:0 auto;color:#fff;font-size:12px;}
.custom #my_footer a{color:#FFFFFF;text-decoration:underline;}
.custom #my_footer a:hover{color:#FFF;text-decoration:underline;}