/*
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/
*/

/* Header Image */

.custom #header {border-bottom:none;
height:150px;
padding-top:0em;
padding-bottom:0;
background:url(http://www.gtmsuccess.com/wp-content/themes/thesis_17/custom/images/GatewaytoMarketingSuccessBanner.jpg)
center left
no-repeat; }

.custom #header
#logo { display:none; }
.custom #header
#tagline { display:none; }

/*Change Margins and Border of Blog */

.custom #container
{
margin-top: 2em;
margin-bottom:
2em;
padding: 0.1em;
}

/*Remove Comments Are Closed */

.custom
.comments_closed p {display: none ;}

/* Change Footer Style */

.custom #footer {
height: 50px;
background-color:
#1b325f;
color: #fff;
border: none;
}
#footer a {color:#fff}
#footer a:hover,
#footer a:active,#footer a:focus {color:#3A89c9;}

/*Sidebar Background in Color*/

.custom #sidebar_1 {background:#9ec6e7;} 
.custom #sidebar_2 {background:#e9f2f9;}
.custom #sidebar_2 {padding:22px 0 0px 0px;}
.custom #content {background:#fff;}

/*Left Sidebar Lines for Topic List*/

li#text-8.widget
span.list p {
border-bottom:1px
dotted #b7b7b7; 
padding-bottom:5px;}

/*White Space After Multimedia Box*/

#multimedia_box {
margin-bottom:1em;
}

/*Custom Teaser Format*/

.custom .teaser {
width: 100%;
margin-top: 2em;
padding-top: 2em;
border-top: 1px dotted #bbb;
text-align: justify;
}
.custom
.teasers_box {
padding-top: 0;
padding-bottom:0;
border-top: 0;}

/*Navigation Bar Across Page */

.custom .menu {background:#1b325f;}

/*Sidebar Header Colors*/

.custom .sidebar h3 {font-weight: bold; color: #d6300d; padding: 0px 0px 2px 0px; border-bottom: 1px solid #a1a2a2; font-variant: normal;}

/*Navigation List in Lowercase*/

.menu, .menu a, .menu li ul{text-transform: none;} 

/*Border Inside Homepage Multimedia Box*/

.custom #custom_box {border:1px solid #d0cfcf;}





















































































