/*
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:

/*---:[ Top bg image ]:---*/
body.custom { background: #01265d url('images/bg.jpg') 50% 0 no-repeat; }

.custom #container { margin-top: 12em; 
    margin-bottom: 2em;
    padding: 1em;
    background: url('http://www.greatmusclegains.com/images/bg_border.jpg') 50% 0 repeat-y;
    border: 0.15em solid #FFF;
}
.custom #page { background: #FFF; }
	
/*---[ Hide header ]:---*/
.custom #header { display:none; }
.custom #header #logo { display:none; }
.custom #header #tagline { display:none; }

/*---[ Change h1, h2, h3 ]:---*/
.custom h1 { color: #01265d; font-weight:bold; }
.custom h1 a { color: #01265d; font-weight:bold; }
.custom h1 a:active { color: #01265d; font-weight:bold; }
.custom h1 a:visited { color: #01265d; font-weight:bold; }
.custom h1 a:hover { color: #1b4480; font-weight:bold; }

.custom h2 { color: #01265d; font-weight:bold; }
.custom h2 a { color: #01265d; font-weight:bold; }
.custom h2 a:active { color: #01265d; font-weight:bold; }
.custom h2 a:visited { color: #01265d; font-weight:bold; }
.custom h2 a:hover { color: #1b4480; font-weight:bold; }

.custom h3 { background: url('http://www.greatmusclegains.com/images/h3_bg.gif') 50% 0 repeat-x;  color: #fff; font-style:weight; padding:0.2em 0.2em 0.2em 0.5em; }

/*---[ Navi menu tabs ]:---*/
.custom ul#tabs li.current-cat a, .custom ul#tabs li.current_page_item a {
  background-color: #1b4480;
  color: #ffffff;
  border: #1b4480;
}
.custom ul#tabs li a:hover {
  text-decoration: none;
  background: #01265d;
  color:#ffffff;
}

.custom #tabs, .custom #tabs li {
      background: #7ec0fe;
      border-style: none;
      border-color:#5cabf3;
      border:1; margin:0; border-bottom:none; padding: 1px;
}

/*---[ Change Multimedia box bg color ]:---*/
.custom #image_box { 
  background: #1b4480 none repeat scroll 0 0;
}

/* Customize Footer Text */
.custom #footer {
     color: #1b4480;
     text-align: right;
     background: url('http://www.greatmusclegains.com/images/b_footer.gif') 50% 0 repeat-x;
     text-decoration: none;
     border:0; margin:0; border-bottom:none; border-top:0;
}

/*.custom #footer_area {background:#c3d9d6; padding:0.5em 0; border-top:1px solid #bbd; border:medium none;}*/

.custom #footer ul, .custom #footer li {
     display:inline;
     text-decoration: none;
}

/* Customize Footer Links */
.custom #footer a {
     color: #1b4480;
     border-bottom:none;
}

.custom #footer a:hover {
     color: #01265d;
     text-decoration: none;
}

/*optin button*/
.optinbutton {
     color: #01265d;
     background: #FFF url('http://www.greatmusclegains.com/images/optin_bg.jpg') repeat-x;
     font-family: Tahoma;
     font-weight: bold;
     width: 150px;
     height: 30px;
     text-align: center;
     border-style: none;
     border:0px; margin:0px; border-bottom:none;
}

.optinbutton:hover {
color: #03285f;
background: #FFF url('http://www.greatmusclegains.com/images/optin_bg2.jpg') repeat-x;
     font-family: Tahoma;
     font-weight: bold;
     cursor: pointer;
     cursor: hand;
     width: 150px;
     height: 30px;
}

.pushme {border:0px; padding:0px;}

/*submit button*/
.custom .form_submit {
     color: #fff;
     background: #01265d;
}

.custom .form_submit:hover {
     color: #c9e9e6;
     cursor: pointer;
     cursor: hand;
}

.form_submit { border:none !important; }

.custom div.adblock img {
  padding: 4px;
  background-color: #FFFFFF;
}
.custom .cenx {text-align: center;}

.muscles {
	font-family: Tahoma;
	background: #FFF url('http://www.greatmusclegains.com/images/subscribe2.jpg') no-repeat;
	font-size: 12px;
	color: #FFF;
}

.welc {
     	font-family: Tahoma;
	font-size: 1.2em;
        line-height: 1.5em;
        color: #01265d;
        text-align: left;
}

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/
*/