/*
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/
*/
body.custom { background: url('http://bookninjas.com/wp-content/themes/brown.png'); }

		.custom #page { background: #fff;}
.custom #content_box {background: #e5dfe0;}
.custom #content {background-color:#fff;}
.custom #header{
	padding-left: 10px;
	padding-right: 0;
	padding-bottom: 0;
        padding-top: 6px;
	}	
	
.custom #header #logo{
	background: url('http://bookninjas.com/wp-content/themes/header.png') no-repeat;
	height: 110px;
	width: 899px;
	margin-left: 0.0em;
	}
 
.custom #header #logo a{
	text-indent: -9999px;
	display: block;
		}	
	
.custom #header #tagline { height: 5px; text-indent: -9999px;}
.custom #header #logo a{
	text-indent: -9999px;
	display: block;
		}	

.custom .post_box {
	padding-top: 5px;
}
.custom .menu{
		width: 100%;
	background: url('http://bookninjas.com/wp-content/themes/brown.png');
	voice-family: "\"}\""; padding-top: 10px;
	voice-family: inherit;

}

.custom .menu ul{
margin:0;
margin-left: 0px; /*margin between first menu item and left browser edge*/
padding: 0;
list-style: none;
}

.custom.menu li{
	display: left;
	margin: 0;
	padding: 0;
	text-transform:uppercase;
	font-weight: bold;
}

.custom .menu a{
	float: right;
	display: block;
	font-size: 11px;
	font-weight:bold;
	font-family: Arial, Helvetica, sans-serif;
	color: white;
	text-decoration: none;
	margin: 0 4px 0 0; /*Margin between each menu item*/
	padding: 9px 18px 5px 18px; /*Padding within each menu item*/
	background-color: #c01a66; /*Default menu color*/
	/*BELOW 4 LINES add rounded bottom corners to each menu item.
  ONLY WORKS IN FIREFOX AND FUTURE CSS3 CAPABLE BROWSERS
  REMOVE IF DESIRED*/
-moz-border-radius-topleft: 10px;
	border-top-left-radius: 10px;
	-moz-border-radius-topright: 10px;
	border-top-right-radius: 10px;
}

.custom .menu a:hover{
background-color: white; /*Red color theme*/
padding-top: 5px; /*Flip default padding-top value with padding-bottom */
padding-bottom: 9px; /*Flip default padding-bottom value with padding-top*/
color: #c01a66;
}

.custom .menu .current a{ /** currently selected menu item **/
	background-color: white; /*Red color theme*/
	padding-top: 9px; /*Flip default padding-top value with padding-bottom */
	padding-bottom: 5px; /*Flip default padding-bottom value with padding-top*/
	color: black;
}
/* Twitter widget Before content */
#twitter_div {
  background:transparent url(http://bookninjas.com/wp-content/themes/twitter_verysmall.gif) no-repeat scroll 15px 10px;
  padding:10px 0 10px 70px; position:relative;
}
#twitter_div li {
  font-family:georgia,serif;
  font-size:1em;
  font-size-adjust:none;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  line-height:normal;
  list-style-image:none;
  list-style-position:outside;
  list-style-type:none;
}
#twitter_div li span {
  display:block;
  font-size:1.1em;
  font-style:italic;
}
#twitter_div ul {
  margin:0 0 8px 12px;
}
#twitter_div li span a a:visited {
  color:#2A69A3; text-decoration:none;
}
#twitter_link {
  color:#2A69A3;
  text-decoration:none;
  font-size:1em;
  font-style:italic;
  float:right;
  margin-right:25px;
}
/* Twitter widget Before content */ 
