/*
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/
*/




/* FOR CUSTOMSS image map header styles*/
.custom #imagemap_header {
width: 951px;
height: 111px;
position: relative;
}
.custom #imagemap_header ul {
margin: 0;
padding: 0px;
list-style: none;
}
.custom #imagemap_header .title a {
position: absolute;
width: 555px;
height: 111px;
top: 0px;
left: 0px;
}
.custom #imagemap_header .rssfeed a {
position: absolute;
width: 340px;
height: 93px;
top: 10px;
right: 30px;
}
.custom #header {
padding-left:0.00em;
padding-bottom:0;
padding-top:0;
}




/* this one makes sure that the "This entry is closed for comments text doesn't show up */
.custom .comments_closed p {
  display: none;
}


/* this one gives the "About" section with the links to privacy,terms & contact a custom layout */
.custom li#linkcat-3.widget {
font-size: 0.9em;
font-family: Tahoma, Arial, Verdana, sans-serif; }


/* this one gives the News feed section with the links to privacy,terms & contact a custom layout */
.custom li#rss-3.widget {
font-size: 8pt;
font-family: Tahoma, Arial, Verdana, sans-serif; }





/* this one makes funky footer magic (also check out in the custom_functions.php they go together */
.custom #custom_footer_nav {text-align: center; }

.custom #custom_footer_nav ul {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin:0;
padding:0 0 20px;
font-size: 1.5em;
}

.custom #custom_footer_nav li {
border-right: 1px solid #DEDEDE;
display: inline;
margin-right: 20px;
padding-right: 20px;
}

.custom #custom_footer_nav li.noborder {
border-right: 0px;
}

.custom #custom_footer_nav li a {
color:#777777;
font-weight:normal;
text-decoration:none;
}







/* removes small RSS graphic from the RSS feed widget */
li#widget_rss .sub_rss a {background:none;}





/* Style the First (or Only) Post */
.custom .top {
   margin:1em;
   padding:2em;
}

/* Style Remaining Posts (in a Multi-Post Listing) */
.custom .post_box {
   margin:1em;
   padding:2em;
}



/* FLOATING SOCIAL icons ON SIDE OF SITE  */
.custom #bookmarks {background: transparent; width: 7.1em; position: fixed; top: 15%; right: 0.55%;}
.custom #bookmarks a {display: block; text-indent: -9999px; height: 7.1em;}

.custom #bookmarks #twitter {background: url('/wp-content/uploads/Chrome-Twitter.png')}
.custom #bookmarks #facebook {background: url('/wp-content/uploads/Chrome-Facebook.png')}
.custom #bookmarks #delicious {background: url('/wp-content/uploads/Chrome-Delicious.png')}
.custom #bookmarks #stumbleupon {background: url('/wp-content/uploads/Chrome-Stumbleupon.png')}
.custom #bookmarks #digg {background: url('/wp-content/uploads/Chrome-Digg.png')}
.custom #bookmarks #reddit {background: url('/wp-content/uploads/Chrome-Reddit.png')}