/*
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/
*/

/*----------DISQUS----------*/

.custom #disqus_thread {
}

.custom #disqus_thread .dsq-comment-header {
background:#FF9933 !important;
}

/*----------General----------*/

/*body.custom {
    background: #1481c4 url('http://thoughtleadersstudio.com/images/banner.jpg') 0 repeat;
background-position:top center;
} */

/* 'http://thoughtleadersstudio.com/wp-content/themes/thesis_16/custom/images/background.jpg' */
.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
}

.custom #page {
    background: #fff;
}

.custom #header, .custom .post, .custom .teasers_box, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #sidebar_1, .custom #sidebar_2, .custom #comment_list dt.comment, .custom #comment_list dd.comment {
        border-bottom: 0px;
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
}
.custom #content_box, .custom #column_wrap {
        background: none;
}

.custom .teaser {
width: 100%;
border-bottom:1px dotted #BBBBBB;
margin-bottom:2em;
}

.custom .teaser h2 a {
/* color:#1481c4; */
}

.custom .teasers_box {
padding-top:0;
padding-bottom:0;
}

.custom .format_text p {
margin-bottom:1em;
}

/*----------Headline Area----------*/
/*
.custom .headline_area { 
color: #1481c4;
margin-bottom:1.5em;
border-bottom:1px dotted #BBBBBB;
}

.custom .headline_area h1, .custom .headline_area h2 a { 
color: #1481c4;
}

.custom .headline_area h1, .custom .headline_area h2 {
background: transparent url('http://thoughtleadersstudio.com/wp-content/themes/thesis_16/custom/images/clipboard.jpg') no-repeat scroll 0 0;
padding: 35px 0 0 185px;
height: 141px;
}
*/



.custom #header {
padding-top: 0;
padding-bottom: 0;
}

.custom .post_box {
padding-top: 0;
}

/*----------Comment Bubble----------*/
/* .custom .commentbub {
background:transparent url('http://thoughtleadersstudio.com/wp-content/themes/thesis_16/custom/images/comments2.jpg') no-repeat scroll 0 0;
float:right;
}

.custom .commentbub span {
display:block;
width:60px;
font-size:1.5em;
line-height:1.6em;
text-align:center;
padding: 0 15px 10px 0;
color:#fff;
}

.custom .commentbub p {
padding: 0 0 0 0;
margin: 0 0 0 0;
}

.custom .commentbub p a {
color:#fff;
}

.custom .commentbub a:hover {
text-decoration:underline;
}
*/
/*----------Navigation----------*/
.custom ul#list-nav {
list-style:none;
margin:0;
padding:0;
}

.custom ul#list-nav li {
display:inline
}

.custom ul#list-nav li a {
text-decoration:none;
padding:0px;
color: #1481c4;
text-align:center;
}

.custom ul#list-nav li a:hover {
background: #1481c4; 
color: #fff;
}

/*----------Video Buttons----------*/
.custom #social-buttons {
margin:0 auto 1px;
padding: 0px;
}

.custom #social-buttons a {
/* -moz-border-radius-bottomleft:3px !important;
-moz-border-radius-bottomright:3px !important;
-moz-border-radius-topleft:3px !important;
-moz-border-radius-topright:3px !important;
background:#1481c4 url(images/nav_bg3.jpg) repeat-x scroll 0 0; */
color:#656565;
display:inline;
font-size:11px;
margin-right:5px;
width:145px;
padding:0px 5px;
text-align:center;
text-decoration:none;
}

.custom #social-buttons a:hover {
text-decoration:underline;
}

/*----------Sidebar----------*/

.custom ul.sidebar_list {
padding-top:0.4em;
}

.custom .sidebar  h3 {
/* color: #1481c4; */

width: 100%;
font-variant: normal;
/* font-weight: bold; */
padding: 3px 0px;
}

.custom li.widget {
margin-bottom: 0.692em;
}

input, textarea { font-size: 1em; color: #808080; background: #fff; border: 0px solid #aaa; border-right-color: #ddd; border-bottom-color: #ddd; }

/* added to remove the previous and next text which was not working well with the page numbering */
.prev_next { font-size: 0em; text-transform: uppercase; letter-spacing: 2px; color: #666; border-style: solid; border-color: #ddd; clear: both; }
	.prev_next .next { text-align: right; }
	.prev_next .floated { float: left; }
	.prev_next a { text-decoration: none; }
	.prev_next a:hover { text-decoration: underline; }
	.post_nav a { text-transform: none; letter-spacing: normal; }


