/*
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: #80abcb url('images/body-bg.jpg') 0 0 repeat-x;
}
.custom #page{background: none;}

.custom a {
    color: #374753;
}
.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    position: relative;
}

.custom #content_box {
    background: #fff;
    border: 10px solid #eee;
    margin-top: 25px;
}
.custom #header {
   padding-top: 0px;
   padding-bottom: 12px;
}
.custom #header #logo {
   background: url('images/logo.png') top left no-repeat;
   text-indent: -9999px;
   height: 70px;
}
.custom #header #logo a {
	display: block;
	width: 387px;
	height: 75px; 
}
.custom #header #tagline {
   text-indent: -9999px;
}
.custom .rss-posts {
   float: right;
   width: 120px;
   background: url('http://keywordsblogger.com/wp-content/uploads/2010/02/icon-rss.gif') center left no-repeat;
   padding-left: 17px;
}
.custom #my-photo {
   position: absolute;
   left: 500px;
   top: -20px;
z-index: 100;
}
.custom ul.menu {
   border: 0 none;
   height: 40px;
}
.custom ul.menu li {
   border: 0 none;
   border-color: transparent;
   background: transparent;
   /* padding: 5px 5px 0 5px;*/
}
.custom ul.menu li a{
   font-family: Tahoma, sans-serif;
   color: #374753;
   font-size: 14px;
   letter-spacing: 0;
   font-weight: bold;
   padding: 11px 13px;
   text-transform: none;
}
.custom ul.menu li a:hover{
   background:#374753;
   color: #fff;
   text-decoration: none;
}
.custom ul.menu li.current, ul.menu li.current-cat {
  background: transparent;
	
 
}
.custom ul.menu li.current a, ul.menu li.current-cat a {
  background: #374753;
  color: #fff;
}

.custom #feature_box {
   border: 0 none;
}
.custom #sidebars {
   background: #eee;
   border-left: 1px solid #dad9d9;
   border-bottom: 1px solid #dad9d9;
}
.custom .sidebar h3 {
   background: #374753;
   padding: 8px 14px;
   color: #fff;
   font-size: 15px;
   display: inline-block;
 
}
.custom li.widget ul {
  margin-top: 20px;
  border-bottom: 1px solid #ccc;
  padding-left: 10px;
}
.custom #footer {
  border: 0 none;
}
.custom #footer p, .custom #footer a {
  color: #fff;
}
.custom h2.entry-title, .custom h1.entry-title{
 font-family:Helvetica,Arial,sans-serif;
 font-size:2.2em;
 font-style:normal;
 font-weight:bold;
 letter-spacing:-1px;
 line-height:1.3em;
}
.custom .teaser a.teaser_link, .custom a.more-link {
  background: #83adcc;
  color: #fff;
  padding: 5px;
  display: inline;
}

.custom .ads125 {
  padding: 5px;
  overflow: auto;
  margin-top: 15px;
}
.custom .ads125 a{
  display: block;
  float: left;
  width: 125px;
 margin-right: 10px;
}

.custom #optin-box {
  width: 280px;
}
.custom #optin-box p, .custom #optin-box li {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 5px;
}
.custom #optin-box h2 {
  text-align: center;
  font-family: Tahoma, sans-serif;
  margin: 10px 0 20px 0;
  font-weight: bold;
  font-size: 14px;
}
.custom #optin-box h2 span{ 
  
  font-size: 20px;
  font-weight: bold;
}
.custom #optin-box ul {
  margin-left: 10px;
}

.custom .infusion-form{
	padding: 5px;
	margin-top: 25px;
}
.custom #optin-box label {
    display: block;
    float: left;
    width: 90px;
}
.custom #optin-box input[type="text"] {
	padding: 3px;	
	margin-bottom: 10px;
}

.custom #optin-box .infusion-submit {
	text-align: center;
}
.custom #optin-box .infusion-submit input[type="submit"] {
    background: none repeat scroll 0 0 #333333;
    border-radius: 10px 10px 10px 10px;
    box-shadow: -1px 0 3px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    cursor: pointer;
    padding: 10px 20px;
}