/*
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/
*/
.custom #header_area{display:none;}

.custom #nav_area ul {border-bottom:none; border-left:none;}
	.custom #nav_area ul li {border-width:0; margin-bottom:0; padding-bottom:0; background:none;}

.custom #header {border-bottom:none;}

.custom #header_area{display:none;}

.custom #nav_area {background:#ffffff; padding:0.5em 0; border-bottom:1px solid #89b864 ;}
	.custom #nav_area ul {border-bottom:none; border-left:none;}
		.custom #nav_area ul li {border-width:0; margin-bottom:0; padding-bottom:0; background:none;}

.custom #title_area {background:#c0d898; padding:1em 0; border-bottom:1px solid #89b864;}
	.custom #header {border-bottom:none;}

.custom #title_area {background:#c0d898; padding:1em 0 0.5em; border-bottom:1px solid #89b864;}
	.custom #header {border-bottom:none; height:150px; padding-top:0; padding-bottom:0; background:url(images/gohulu5.png) center left no-repeat;}
		.custom #header #logo {display:none;}
		.custom #header #tagline {display:none;}


/* Featured Post Formatting */
.custom #feature_box { font-family: Georgia; color: #000000; background: #faf7ea; padding: 22px 15px 22px 15px; }
.custom #feature_box h2 { font-size: 2.2em; margin: 0 0 14px 0; }
.custom #feature_box h2 a { color: #000000; text-decoration: none; }
.custom #feature_box h2 a:hover { color: #f87a00; }
.custom #feature_box p { font-size: 1.4em; line-height:1.571em; text-align: justify;}
.custom #feature_box .featurereadmore { padding: 22px 0 0 0; }
.custom #feature_box .featurereadmore a { font-size: 14px; text-decoration: none; }

/*crush links*/

 .custom #box1 body {
      background:#fff;
      padding:20px;
      color:#000;
      font-family:Arial,sans-serif;
      font-size:13px;
      line-height:1.3;
      }
   .custom #box1 h1 {margin:0 0 .25em; font-size:1.8em;}
   .custom #box1 h2 {margin:1.5em 0 .25em; font-size:1.2em;}
   .custom #box1 code {font:12px Monaco,monospaced; color:#963;}
    
    /* Start custom button CSS here
    ---------------------------------------- */
   .custom .btn {
      display:inline-block;
      background:none;
      margin:0;
      padding:3px 0;
      border-width:0;
      overflow:visible;
      font:100%/1.2 Arial,Sans-serif;
      text-decoration:none;
      color:#333;
      }
   .custom * html button.btn {
      padding-bottom:1px;
      }
    /* Immediately below is a temporary hack to serve the 
       following margin values only to Gecko browsers
       Gecko browsers add an extra 3px of left/right 
       padding to button elements which can't be overriden.
       Thus, we use -3px of left/right margin to overcome this. */
    html:not([lang*=""]) button.btn {
      margin:0 -3px;
      }
   .custom .btn span {
      background:#ddd url(http://gohulu.com/wp-content/themes/thesis/images/bg-button.gif) repeat-x 0 0;
      margin:0;
      padding:3px 0;
      border-left:1px solid #bbb;
      border-right:1px solid #aaa;
      }
   .custom * html .btn span {
      padding-top:0;
      }
   .custom .btn span span {
      position:relative;
      padding:3px .4em;
      border-width:0;
      border-top:1px solid #bbb;
      border-bottom:1px solid #aaa;
      }
    
    /* pill classes only needed if using pill style buttons ( LEFT | CENTER | RIGHT ) */
   .custom #box1 button.pill-l span {
      border-right-width:0;
      }
   .custom #box1 button.pill-l span span {
      border-right:1px solid #bbb;
      }
   .custom #box1 button.pill-c span {
      border-right-style:none;
      border-left-color:#fff;
      }
   .custom #box1 button.pill-c span span {
      border-right:1px solid #bbb;
      }
   .custom #box1 button.pill-r span {
      border-left-color:#fff;
      }
    
    /* only needed if implementing separate hover/focus/active state for buttons */
   .custom .btn:hover span, .custom .btn:hover span span, .custom .btn:focus span, .custom .btn:focus span span {
      cursor:pointer; /* important for any clickable/pressable element */
      border-color:#FF9124 !important;
      color:#000;
      }
   .custom .btn:active span {
      background-position:0 -400px;
      outline:none;
      }
   .custom .btn:focus, .btn:active {
      outline:none; /* doesn't seem to be respected for <button>, only <a> */
      }

    /* use if one button should be the 'primary' button */
   .custom .primary {
      font-weight:bold;
      color:#000;
      }
  /*crush links*/

		

