/*
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/
*/


/*
Creating a fading background to the blog with matching underlying color to the bottom of the snippet.
*/
body.custom {background: #8B0E00 url(/wp-content/themes/thesis_16/my_images/marroon_fade.png) repeat-x;}


/*
This makes the header background transparent
*/
div#header_area div.page {background:transparent;}


/*
Sizes header area
*/
.custom #header { 
background: url(/wp-content/themes/thesis_16/my_images/logo2.png) no-repeat;
border-bottom:none;
height:5em;
length: 12em;
padding-top:0;
padding-bottom:2em;
}


.custom .menu {
  font-weight: bold;
}


/*
Creates text underlying effect on tabs in menu bar when cursor is hovered over it.
*/
.custom .menu a:hover {
	text-decoration: underline;
}


/*
For the selected tab in menu bar, this bolds the text and assures that the text isn't underlined when cursor is hovered over tab.
*/
.custom .menu li.tab.current a,
.custom .menu li.tab.current a:hover {
    text-decoration: none;
  
}

/*
Creates fixed floating media icons on right side of site.
*/
.custom #bookmarks {background: transparent; width: 5.1em; position: fixed; top: 35%; right: 0.55%;}
.custom #bookmarks a {display: block; text-indent: -9999px; height: 5.1em;}
.custom #bookmarks #rss {background: url(/wp-content/themes/thesis_16/my_images/rss.png) no-repeat}
.custom #bookmarks #email {background: url(/wp-content/themes/thesis_16/my_images/email.png) no-repeat}
.custom #bookmarks #facebook {background: url(/wp-content/themes/thesis_16/my_images/facebook.png) no-repeat}
.custom #bookmarks #twitter {background: url(/wp-content/themes/thesis_16/my_images/twitter.png) no-repeat}


/*
Need this so that in Explorer on a tab change, there isn't a flicker of white across nav menu.
*/
.custom #nav_area .page,
.custom .menu {
  background-color: #2B0808;
  }


/*
Creates dividers for nav tabs.
*/
.custom .menu .tab-home {border-right: 1px solid #fff;}
.custom .menu .tab-1 {border-right: 1px solid #fff;}
.custom .menu .tab-2 {border-right: 1px solid #fff;}
.custom .menu .tab-3 {border-right: 1px solid #fff;}
.custom .menu .tab-4 {border-right: 1px solid #fff;}
.custom .menu .tab-5 {border-right: 1px solid #fff;}
.custom .menu .tab-6 {border-right: 1px solid #fff;}
.custom .menu .tab-7 {border-right: 1px solid #fff;}
.custom .menu .tab-8 {border-right: 1px solid #fff;}


/*
This following code specifies the specific width of a tab:
ul.menu li.tab.tab-1 {width: 500px;)
*/