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

.custom #header_area {
  border-bottom: 1px solid #DBD4B7; 
}

.custom #header_area .page {
  padding-top: 0;
}

.custom #header {
  padding: 0;
  border: none;
}

.custom #header #headerlogo a {
  display: block;
}

.custom #header #headerlogo img {
  vertical-align: bottom;
}

.custom #header #logo,
.custom #header #tagline {
  display: none;
}

.custom #nav_area {
  background:#F0ECDB; 
  border-bottom:1px solid #DBD4B7; 
}

.custom #nav_area .page {
  background: transparent url('images/logo_bot.gif') no-repeat 20px -1px;
  padding-top: 10px;
}

.custom ul#tabs {
  border-bottom:0; 
  border-color:#DBD4B7;
	padding: 0;
	list-style: none;
	position: relative;
}

.custom ul#tabs li {
  border-color:#DBD4B7; 
  background-color:#E6DEC0;
}

.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {
  background-color:#fff;
}

.custom ul#tabs li ul {
  display:block; 
  list-style:none;
  position: absolute;
  left: -999em;
  z-index: 10;
  background-color: #F0ECDB;
}

.custom ul#tabs li:hover ul, .custom ul#tabs li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

.custom ul#tabs li ul li {
  float:none;
  width: auto;
  display: block;
}

.custom ul#tabs li a:hover,
.custom ul#tabs li ul li a:hover {
  background-color: #F0ECDB;
  text-decoration: none;
  display: block;
}

.custom ul#tabs li.current_page_item a:hover, .custom ul#tabs li.current-cat a:hover {
  background-color:#fff;
}

.custom ul#tabs li ul li.current_page_item, .custom ul#tabs li ul li.current-cat,
.custom ul#tabs li ul li.current_page_item a:hover, .custom ul#tabs li ul li.current-cat a:hover {
  background-color:#F0ECDB;
}

.custom ul#tabs li.rss {
  background: none;
}

.custom #content_box {
  background: transparent url('images/content_bg.gif') repeat-y 52.2em 0;
  width:100%;
}

.custom #sidebars {
  background: transparent url('images/bg_sidebars.gif') repeat-x top left;
  padding-bottom: 200px;  
}

.custom #sidebars #image_box {
  background: transparent;
}

.custom #sidebars li.widget h3 {
  border-top: 2px solid #0e157d;
  border-bottom: 1px solid #0e157d;
  color: #0e157d;
  padding: 2px 0;
}

.custom #footer_area {
  border-top:1px solid #DBD4B7; 
  background:#F0ECDB; 
}

.custom #footer {
  border: none;
  text-align: left;
}

.custom #footer .footer1,
.custom #footer .footer2 {
  float: left;
  margin: 10px 30px 10px 0;
}

.custom #footer ul {
  list-style-type: none;
}

.custom a {
  color: #0e157d;
}


.custom .to_comments {
  border-top: 1px solid #DBD4B7;
  padding-top:5px;
  text-align:right;
}

.post_box, .teasers_box {
  border-top: none;
}

.custom #content h2.entry-title {
  background: transparent url(images/bg_text_h2.gif) no-repeat scroll 0 3px;
  border-bottom: 1px solid #DBD4B7;
  padding: 0 0 2px 25px;
}

.custom .clear {
  clear: both;
}

.custom ul#recentcomments li.recentcomments {
  background: url(images/bubble.gif) no-repeat 0 3px;
  padding-left: 20px;
}

.custom ul.blogroll li {
  margin-bottom: 0;
}

.custom ul.blogroll li a {
  display: block;
  background: url(images/arrow.gif) no-repeat 95% 50%;
  padding: 0.346em 0;
}

.custom ul.blogroll li a:hover {
  background-color: #fff;
}

.custom form dl dt {
  clear: both;
  float: left;
  width: 100px;
  margin-bottom: 5px;
}

.custom form dl dd {
  margin-bottom: 5px;
}

.custom form dl dd textarea {
  width: 350px;
}

.custom form dl dd input[type="submit"] {
  margin-left: 100px;
  background-color: #DDDDDD;
  border-color: #DDDDDD #AAAAAA #AAAAAA #DDDDDD ;
  border-style: solid;
  width: auto;  
  padding:0.25em 0.5em;
}

.custom ul.imglinks li a {
  display: block;
  width: 100px;
  height: 45px;
}

.custom ul.imglinks li a.xing {
  background: url('images/logo_xing.gif') no-repeat center center;
}

.custom ul.imglinks li a.xing:hover {
  background: url('images/logo_xing_ov.gif') no-repeat center center;
}

.custom ul.imglinks li a.twitter {
  background: url('images/logo_twitter.gif') no-repeat center center;
}

.custom ul.imglinks li a.twitter:hover {
  background: url('images/logo_twitter_ov.gif') no-repeat center center;
}

.custom #disqus_thread,
.custom .prev_next,
.custom .post_nav,
.custom a.dsq-brlink {
  margin:0 2em 0 1em;
}

.custom .format_text a.tt-small {
  text-decoration: none;
}

.custom .ec3_list {
  margin-left: 0;
}

.custom .FB_SERVER_IFRAME {
  height: 690px !important;
}