/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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 overwrite *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!
*/

body.custom {
    background: #000000;
    
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #ffffff;
}


.custom #post_box {
     margin-top: 1em;
     margin-bottom: 0.5em;
}

/*
.custom #header #logo a { text-decoration: none; color: #CC3333 !important; }
.custom #header #logo a:hover { color: #2361a1 !important; }
.custom #header #tagline { font-weight: normal; font-size: 1.4em; line-height: 1.429em; color: #CC3333; }
*/

.sidebar h3 { 
    margin-bottom: 0.2em;
}


.custom .widget li { border-bottom: 1px dotted #ddd; }

/* 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;    
  border-top: 1px dashed black;
  border-bottom: 1px dashed black;
} 

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: 258px; 
  padding: 5px;    
  display: block;      
  border: 1px solid #fff;    
}

/* Non-hover profile links */       
#myspace{ background: #FEF9BF url('http://www.takingyourmusiconline.com/wp-content/themes/thesis/custom/images/myspace_32.png') 5px 5px no-repeat; height: 35px; text-indent: 35px;} 
#twitter{ background: #FEF9BF url('http://www.takingyourmusiconline.com/wp-content/themes/thesis/custom/images/Twitter_32x32.png') 5px 5px no-repeat; height: 35px; text-indent: 45px;}

/* Hover profile links */
#myspace:hover{ background: #999 url('http://www.takingyourmusiconline.com/wp-content/themes/thesis/custom/images/myspace_32.png') 5px 5px no-repeat} 
#twitter:hover{ background: #999 url('http://www.takingyourmusiconline.com/wp-content/themes/thesis/custom/images/Twitter_32x32.png') 5px 5px no-repeat} 

/*Note box style */
.custom .format_text p.note {
background: #f5f5f5 url('http://www.takingyourmusiconline.com/wp-content/themes/thesis/custom/images/black_guitar-32x32.png') center no-repeat;
border: 2px solid #ddd;
background-position: 7px 50%; /* x-pos y-pos */
text-align: left;
padding: 5px 5px 5px 45px;}

/*Alert box style */
.custom .format_text p.alert {
background: #ffffa0 url('http://www.takingyourmusiconline.com/wp-content/themes/thesis/custom/images/star-48.png') center no-repeat;
border: 2px solid #e5e597;
background-position: 7px 50%; /* x-pos y-pos */
text-align: left;
padding: 5px 5px 5px 45px;}


/*Testimonial box style */
.custom .format_text p.testimonial {
background: #ffffa0 url('http://www.takingyourmusiconline.com/wp-content/themes/thesis/custom/images/star-48.png') center no-repeat;
border: 2px solid #e5e597;
background-position: 7px 50%; /* x-pos y-pos */
text-align: left;
font-style: italic;
padding: 5px 5px 5px 45px;}

.custom .comments_closed p {
  display: none;
}
