/*
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/
*/
/*---:[ headlines and bylines ]:---*/

body.custom {
    background: #fff;
	color: #fff;
	font-family:Georgia,"Times New Roman",Times,serif;
}

.custom #container {
    margin-top: 1px;
    margin-bottom: 2em;
	padding: 0.3em;
    background: #566666;
    border: 0.1em solid #999;

}

.custom a, .custom a:visited { color: #fff; }
.custom a:hover { color: #fff; text-decoration: underline; }

.custom #header {
	display: block;
    margin-left: auto;
    margin-right: auto;
	align: center;
	border-bottom: 0px;
	margin-top: 0em;
	#margin-top: 1em;
	}
	
.custom #headerblock {
	display: block;
  margin-left: auto;
  margin-right: auto;
  }	
	
.custom #content_box {
	border: 0px;
	margin-top: -5em;
	#margin-top: -2em;/* override for Microsoft Internet Explorer browsers*/
	}
	
	
	.custom #content_box_template {
	border: 0px;
	}

.custom #page {
    background: #566666;
}

.custom #sidebars {
	border-color:#566666;
	border-style:solid;

}

.post_box, .teasers_box {
border-top:0px;
clear:both;
}

.custom #sidebar_1 {
border-color:#566666;
border-style:solid;

}

.custom #footer {
	border-top:0px;
	clear:both;
	text-align:right;
	}


h1, h2, h3, h4 { font-size: 1em; font-weight: normal; }

	h1 { display:none; }
	
	h2 { color: #566666; }
	
	h2 a { color: #fff; }

	h2 a:hover { color: #fff; }
	
	#content #archive_info h1 { font-size: 1.8em; line-height: 1em; font-weight: normal; }

/*---:[ h3 and h4 sizes are calculated relative to the base font size of the content or sidebar ]:---*/
	
	.sidebar h3 { color: #ff; }

h4 { font-size: 1em; font-weight: bold; }

/*---:[ headline meta data (includes bylines) ]:---*/

.headline_meta { font-style: italic; color: #fff; }

	.headline_meta span, .headline_meta abbr { font-style: normal; text-transform: lowercase; letter-spacing: 1px; }

	.headline_meta a { color: #566666; border-bottom: 0px; }
	
	.headline_meta a:hover { color: #fff; }
	
/* ------ WRAPPER CSS ------ */

#info {height:30em;}
#info p {text-align:center;}
.menu {display:inline-block;}
.menu {display:inline;}
.holder {display:table;}

.menu {
  display:table-row;
  list-style-type:none;
  white-space:nowrap; 
  margin-bottom: -0.0em; 
  margin-top: 2em; 
  padding-right: 2em;
  }
.menu li {display:inline;}
.menu a, .menu a:visited {
  display:block;
  float:left;
  padding:4px 16px;
  color:#566666; 
  background:#fff; 
  border:1px solid #fff; 
  text-decoration:none;
  font-family: Georgia,"Times New Roman",Times,serif;
  font-size: 16px;
  }
  
.menu a:hover {
	color: #666;
	text-decoration: underline;
	}

#wrapper1 {text-align:left;}
#wrapper2 {text-align:center margin-top: 2em; height: 1%;}
#wrapper3 {text-align:right;}

#wrapper1 .holder {margin:0;}
#wrapper2 .holder {margin:5px auto; #text-align: center; height: 1%;}
#wrapper3 .holder {margin:0 0 0 auto;}

