/*
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/
*/

/*---:[ core layout elements ]:---*/
body.custom { background: #9ED7ED; }
 .custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #fff; border: 0.4em solid #abd; }
 .custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #fff; border: 0.4em solid #688CA2; }
 .custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #fff; border: 0.4em solid #AEB5AA; }
 .custom #page { padding: 0; background: #fff; }
 .custom #header #logo a { display: block; height: 146px; width: 935px; background: url('images/gm-header.jpg') center no-repeat; outline: none; }
 .custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
 .custom #header #tagline { height: 0; }
 .custom #header { padding: 0; } 

/*---:[ header tab elements ]:---*/
ul#tabs li.page-item-3 a { color: #fff; text-decoration: none; background-color: #C74444; }
ul#tabs li.page-item-3 a:hover { color: #fff; text-decoration: underline; background-color: #C74444; }

/*---:[ global elements ]:---*/
.custom h4 { margin-bottom: 0.9em; }

/*---:[ sidebar widget elements ]:---*/
.custom li.widget h3 { color: #382118;  border-bottom: 1px solid #382118;}

/*---:[ comment elements ]:---*/ 
.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #E7F8FB none repeat scroll 0 0; padding-top:20px;} 
.custom dl#comment_list dd p.reply { margin: 1em 0 1.5em 0; }
.custom dl#comment_list dd p.reply a {background: #2f2c28; color: #FFF;font-size: 11px;font-weight: normal;padding: 4px 6px;text-transform: uppercase;}
.custom dl#comment_list dd p.reply a:hover {background:#46382d; border: 0;}

/*---:[ advertising elements ]:---*/
.custom125 { margin-bottom: 15px; }

/*---:[ social media elements ]:---*/
.input_text_twitter { margin-top: 15px; }
.custom ul.twitter { font-size: 0.8em; }
.custom .twitter-timestamp { font-size: 1.3em; }
.custom ul.twitter li.twitter-item { margin-bottom: 1em; padding-bottom: 1em; border-bottom: 1px dashed; }

/*---:[ 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; }

/*---:[ user relationship elements ]:---*/
.stay_connected { margin: 1em 1em 1.5em 1em; padding: 0.7em; background: #e5f6fc; border: 1px solid #0262A5;}
.stay_connected h3 { margin-top: 0; margin-bottom: 0.875em; font-size:20px; color:#333333; }
.stay_connected p { margin-bottom: 0; margin-bottom: 0.5em; font-size:12px; color:#333333; }

/*---:[ post alert box ]:---*/
.custom .format_text p.alert { background: #9ED7ED center no-repeat; border: 1px solid #AEB5AA; text-align: justify; padding: 8px; margin:15px 0px; font-size: 0.8em; line-height: 1.2em; }
.custom .format_text p.alert img { float:left; margin-right:5px; }

/*---:[ content elements ]:---*/
.custom blockquote { border: 1px solid #9ED7ED; color: #1A78D0; padding-top: 0.4em; }
