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

/* AQUADAILY */

/* custom background */
body.custom {
    background: #8db6b6 url('images/bg-ocean.jpg') 50% 0 no-repeat;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
}

.custom #page {
    background: #fff;
}

.custom #header {
    padding: 0;
    margin-top: 2em;
}

.custom #sidebars {
    background: #fff;
}

.custom #video_box {
    background-color: #fff;
}

/* custom videobox heading styling */
.custom div.custom_video_box img {
	padding: 0px;
        margin-left: auto;
        margin-right: auto; 
        padding-top:0.25em;
        padding-bottom: 0.5em;
        border-bottom:1.5px dotted #bebebe;
        border-top:1.5px dotted #bebebe;
        background-color: #4985FF;
}

/* custom ad styling */
.custom div.adblock img {
	padding: 4px;
	background: #fff;
}

/* custom sidebar styling */

.custom 

.sidebar h3 {
	font-size: 1.0em;
	line-height: 1.385em;
	margin-bottom: 0.615em; 
	font-variant: small-caps;
	letter-spacing: 2px;
	font-weight: bold; 
	color: #111;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

/* custom alert box colour in sidebar */
.custom #sidebars .alert {
	background-color: #3DD8FF;
}

/* custom Special Features list styling in sidebar */
.custom #sidebars a {
	text-decoration: none;
}

.custom #sidebars p.featurelist {
	line-height: 1.8em;
}

/* custom style for ads in margins */
.custom #sidebars .myads {
        width: 160px;
	margin-left: auto;
        margin-right: auto;
}

/* custom caption */
.custom #content .wp-caption-text {
	font-style: italic;
        font-size: 0.8em;
        text-align: center;
}

/* flickr / image credit class */
.custom #content p.flickrcredit {
	text-align: right;
        font-size: 0.8em;
        margin-top: -1.5em;
        padding: 0em;
        }

/* custom feedflare styling */
.custom p.feedburnerFlareBlock {
        text-align: center;
        font-weight: bold;
        margin-top: 1.25em;
}

/*custom feedburner email button*/
.button {
        background-color: #544E4F;
        font-size: 0.95em;
        font-family:georgia;
        font-weight: normal;
        color:#ffffff; }

/* custom bottom of post adsense style */
.custom #content .myadsenseblock {
        width: 468px;
        margin-left: auto;
        margin-right: auto; 
} 

/* custom related posts style */
.custom #content .related_posts {
        margin-top: 1em;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
}

/* custom adsense in index links style */
.custom #content_box .myadsenselinks {
        margin-top: 1em;
}

/* custom social networking buttons links */
/* Define the clear div to offset the link floats */
div.clear{
  clear: both;   
  height: 1px;
  width: 1px;
} 

/* This is the style for the container */  
div.socialmedia_sidebar
{
  background: #eee;
  margin: -18px 0 5px 0; 
/* If you are using this below the media box, 
use a negative top margin to raise it up. If not, adjust accordingly */
  padding: 5px 0 5px 10px;    
} 

div.socialmedia_sidebar ul li{
  float: left;         
  list-style: none;    
  text-align: center;
} 

div.socialmedia_sidebar span.name{
  font-size: 2em;
  display: block;
}

div.socialmedia_sidebar span.service{
  font-style: italic;
}  

div.socialmedia_sidebar ul li a{
  width: 190px; 
  padding: 5px;    
  display: block;      
  border: 1px solid #fff;    
}

/* Non-hover profile links */       
#twitter{ background: #FEF9BF url('/wp-content/themes/thesis/images/twitter.32.32.png') 5px 5px no-repeat; height: 35px; text-indent: 35px;} 
#rss{ background: #FEF9BF url('/wp-content/themes/thesis/images/rss.32.32.png') 5px 5px no-repeat; height: 35px; text-indent: 45px;} 
  
/* Hover profile links */
#twitter:hover{ background: #999 url('/wp-content/themes/thesis/images/twitter.32.32.png') 5px 5px no-repeat} 
#rss:hover{ background: #999 url('/wp-content/themes/thesis/images/rss.32.32.png') 5px 5px no-repeat}

/* custom author box */
#authorbox{
    background:#FEF9BF;
    border:1px solid #CECFD0;
    width:500px;
    margin:0 auto;
    margin-bottom:10px;
    overflow:hidden;
}
    #authorbox h4{
        font-size:16px;
        color:#191919;
        margin:0;
        padding:10px 10px 5px 10px;
    }
.authortext{
        padding-right:100px;
    }
#authorbox img{
      float:right;
      padding:10px;
      margin-left:10px;
    }
    #authorbox p{
        color:#191919;
        margin:0;
        padding:0px 10px 10px 10px;
    }
 #authorbox h4 > a{
        text-decoration:none;
    }
#authorbox p{
        color:#191919;
    }
