/*
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/
*/
/* This line sets up our clickable background image based on the site title's link */
/* DIY: height: 250 px; width: 959 px */
/* DIY: images/SDMS_Banner_959px.jpg */
.custom #header #logo a { display: block; height: 250px; width: 959px; background: url('images/SDMS_Banner_959px.jpg') no-repeat; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }

.custom ul#tabs { list-style: none; border: 1px solid #ddd; border-width: 0 0 1px 1px; text-align: center;  }

/*---:[ Set 1: solid background with slick borders around your "page" area ]:---*/

body.custom { background: #663300; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #663300; border: 0.4em solid #FF9933; }

		.custom #page { background: #FFFFCC; }
.custom #content_box {background-color:#FFFFCC;}
.custom #content {background-color:#FFFFCC;}

.custom #custom_box { background-color: #FFFFCC; }

.custom #custom_box { background: #FFFFCC; border:#009999 ; padding: 0; }

.custom .adspace { text-align: center; margin: 0 auto; padding-top:

0.25em; background-color: #FFFFCC; }

.custom .adspace .adblock img { padding: 0.5em; }

/*from simple mom*/
{

border-bottom-color:#009999;
border-bottom-style:dotted;
border-bottom-width:1px;
border-top-color:#009999;
border-top-style:dotted;
border-top-width:1px;
margin-bottom:0;
margin-left:auto;
margin-right:auto;
margin-top:0;
padding-bottom:0;
padding-left:0;
padding-right:0;
padding-top:0;
text-align:center;
}

/* lines between sidebar */
.custom #footer { border-color: #009999; }
.custom #header { border-color: #009999; }
.custom #sidebar_1 { border-color: #009999; }

/*--social links under media box--*/
/* 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: -2px 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: 203px; 
  padding: 5px;    
  display: block;      
  border: 1px solid #fff;    
}

/* Non-hover profile links */       
#twitter{ background: #FEF9BF url('images/twitter.png') 5px 5px no-repeat; height: 35px; text-indent: 35px;} 
#facebook{ background: #FEF9BF url('images/facebook.png') 5px 5px no-repeat; height: 35px; text-indent: 45px;}
#email{ background: #FEF9BF url('images/feedburner.png') 5px 5px no-repeat; height: 35px; text-indent: 40px;} 
#rss{ background: #FEF9BF url('images/rss.png') 5px 5px no-repeat; height: 35px; text-indent: 45px;} 

/* Hover profile links */
#twitter:hover{ background: #999 url('images/twitter.png') 5px 5px no-repeat} 
#facebook:hover{ background: #999 url('images/facebook.png') 5px 5px no-repeat} 
#email:hover{ background: #999 url('images/feedburner.png') 5px 5px no-repeat} 
#rss:hover{ background: #999 url('images/rss.png') 5px 5px no-repeat}
    