/*
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/

Old Values for Reference:
.custom #header #logo a { display: none; height: 75px; width: 367px; background: url('http://execgiftsblog.com/wp-content/uploads/execgiftsavatar.jpg') top left no-repeat; outline: none; }
.custom #header #logo-img a { display: block; position: relative; left: 0px; top: -75px; height: 75px; width: 367px;  outline: none; }
.custom #header #header-ad { float: right; position: absolute; width: 468px; height: 60px; top: 90px; left: 750px; }

*/

/*---:[ header elements ]:---*/
.custom #header { display: block; height:75px; padding-top:1em; padding-bottom:1em;}
.custom #header #logo a { display: none; }
.custom #header #logo-img a { display: block; position: relative; width: 348px; left: -10px; top: 0px; height: 75px; outline: none; padding: 0; margin: 0; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }
.custom #header #header-ad { float: right; text-align: right; position: relative; top: 1.0em; width: 460px; padding: 0em; margin: 0em; }

/*---:[ global elements ]:---*/
.custom h4 { margin-bottom: 0.9em; }

/*---:[ sidebar elements ]:---*/
.custom #sidebars h3 { font-weight: bold; text-align: center; padding: 0.3em; background: #F0EEC2; border: 1px #ddd solid; }
#widget_killer_recent_entries-2 li { border-bottom: 1px dashed #dddddd; display: block; margin: 0; padding: 0.5em 1.1em 0.5em 1.7em;}

/*---:[ advertising elements ]:---*/
.custom125 { margin-bottom: 15px; }

/*---:[ social media elements ]:---*/
.input_text_twitter { margin-top: 15px; }

/*---:[ email and twitter in nav bar ]:---*/
ul#emailtwitter_tabs { list-style: none; margin-top: 5px; font-size: 1.1em; }
ul#emailtwitter_tabs li a { display: block; line-height: 1em; color: #111; text-transform: uppercase; letter-spacing: 2px; }
ul#emailtwitter_tabs li a:hover { color: #111; text-decoration: underline; }
ul#emailtwitter_tabs li.twitter-bar { padding-right: 0; background: none; border: none; float: right; }		
ul#emailtwitter_tabs li.twitter-bar a { padding-right: 16px; background: url('images/twitter-bird-16x16.jpg') 100% 50% no-repeat; }
ul#emailtwitter_tabs li.rss_email { padding-right: 19px; background: none; border: none; float: right; }
ul#emailtwitter_tabs li.rss_email a { padding-right: 16px; background: url('images/icon-envelope-blue.gif') 100% 50% no-repeat; }
ul#emailtwitter_tabs li.rss { padding-right: 19px; background: none; border: none; float: right; }
ul#emailtwitter_tabs li.rss a { padding-right: 16px; background: url('images/icon-rss.gif') 100% 50% no-repeat; }

/*---:[ previous and next post links ]:---*/
.prev_next {margin-top:2.5em;}
.prev_next{text-transform:uppercase;letter-spacing:0;color:#666;clear:both;}
.prev_next p.previous{float:left;width:50%;border-right:1px dotted #CCC;text-align:left;}
.prev_next p{float:right; width:45%;text-align:right;}
.prev_next a{text-decoration:none;letter-spacing:0;}
.prev_next a:hover{text-decoration:underline;}
.post_nav a{display:block;font-size:11px;text-transform:none;letter-spacing:normal;}
.prev_next p{letter-spacing:2px;line-height:1.2em;}
.prev_next.btm{border-top:1px solid #e4e4e4;border-bottom:none;}

/*---:[ datafeedr styles ]:---*/
.custom .headline_area { position:absolute;  top:-1500px;  left:-1500px; }
.custom .hfeed .headline_area, .about .headline_area, .contact .headline_area, .wedding-store .headline_area, .disclosure-policy .headline_area, .privacy-policy .headline_area { left:0; position:relative; top:0; }

a:link { color: #004B91; }
a:visited { color: #996633; }
a:active { color: #FF9933; }

