/*

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/

/* This line changes the background color and adds crisp border*/
body.custom { 

	background: #000; }

	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.30em; background: #fff; border: 0.6em solid #666666; }
.custom #page { background: #fff; }

.custom .comments_closed p {
  display: none;
}

/* This line removes page title*/
.custom div.headline_area h1 { display:none; padding: 0; }
.index h1 {font-color:#fff;}

.headline_area {
	position:absolute;
	top:-1500px;
	left:-1500px;
}

/*Nav menu customizations*/
.custom .menu {background: #FFFFFF;}

/*change nav bar color*/
.custom ul#tabs li a { color: #Ffffff; background:#000000; }
.custom a:hover { text-decoration:underline;}


/*do not display Blog Title and Tagline Name*/
.custom #header #logo { display: none; }
.custom #header #tagline { display: none; }

/* This line removes white space around header*/
.custom #header { padding: 0; border-bottom:none;}*/

/* This line removes "Comments in this entry are closed on posts" text*/
.custom remove_action('thesis_hook_after_post', 'thesis_comments_link');


/* This line collapses vertical space of the tagline*/
.custom #header #tagline { height: 0; }
.custom #header #logo { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }
.custom #header {
margin-left:-2em;
}*/

/* HEADER ZONE */
.custom #header_area #page {padding-top: 0em;}
.custom #page {padding: 0;}
.custom #page {margin: 0;}
.custom #page {border: 0;}*/

.custom #header { 
  height:200px;
  padding:0;
  }

/*extend menu color across page*/
.menu {background: #ffffff;}

/*make the feature_box background not grey*/
.custom #feature_box {background: #none;}

/*feature box customization*/ 
.custom #feature_box { padding:0; margin:2; border:0; text-align:center; background:#ffffff;}

/*Reduce the space between widgets in the sidebars*/
.custom li.widget { margin-bottom: 20px; }

/* This line changes the color of the sidebar*/
.custom #sidebar_1 {background:#ffffff none repeat scroll 0 0;}

/*widget headline color*/
/*.custom sidebar H3 {background-color: #eeeeee;}*/

/*change sidebar background color*/
.custom #content_box {background-color:#ffffff;}
.custom #content {background-color:#ffffff;} 
.custom #header {background-color:#ffffff;} 

/*move menu right*/ 
/*.menu {float:right; width:826px;}*/

/*get rid of dotted line box around nav links*/
.custom a {
   outline: none;
}

/*.menu {float:right; width:826px;}*/

/* Nav Search */
.custom ul.menu li.nav_right {
  float:right;
  width:300px;
  font-size:12px;
  height: 30px;
  letter-spacing:1px;
  overflow:hidden;
  text-transform: uppercase;
}

.custom ul.menu li.search {
  background-color: #fff;
  border-bottom:none;
  height:25px;
  margin-bottom:0;
}

.custom ul.menu li.search input {
  background-color: #efefef;
  border:0px solid #333;
  color:#333;
  font-size:14px;
  height:24px;
  letter-spacing:1px;
  padding:4px 10px 0 22px;
  text-transform: uppercase;
  width:125px;
}*/

