/**********************************************************************************************

	CSS on Sails
	Title: Website
	Author: XHTMLized
	Date: March 2008 

***********************************************************************************************

		
	1. BASE
			1.1 Reset
			1.2 Default styles
			1.3 Basic styles
	
	2. LAYOUT
			2.1 Header
			2.2 Content
			2.3 Sidebar
			2.4 Footer
		

***********************************************************************************************/


/* 1. BASE
-----------------------------------------------------------------------------------------------
===============================================================================================*/	



/* 1.1	Reset
-----------------------------------------------------------------------------------------------*/	


	html, body, div, span, applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, font, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	b, u, i, center,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td {
		margin: 0;
		padding: 0;
		border: 0;
		outline: 0;
		font-size: 100%;
		vertical-align: baseline;
		background: transparent;
	}
	
	body {
		line-height: 1;
	}
	
	ol, ul {
		list-style: none;
	}
	
	blockquote, q {
		quotes: none;
	}
	
	blockquote:before, 
	blockquote:after,
	q:before, q:after {
		content: '';
		content: none;
	}
	
	:focus {
		outline: 0;
	}
	
	ins {
		text-decoration: none;
	}
	
	del {
		text-decoration: line-through;
	}
	
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}


/* 1.2	Default styles
-----------------------------------------------------------------------------------------------*/	

	body {
		background: #fff;
		font: 62.5% Arial, Helvetica, sans-serif;
		text-align: center;
		background: url(../images/bg_header.gif) repeat-x;
	}

	hr { 
		display: none;
	}
			
	strong {
		font-weight: bold;
	}
			
	em {
		font-style: italic;
	}
		
	abbr, acronym {
		border-bottom: 1px dotted #999; 
		cursor: help;
	}
	
	input, textarea, select {
		font: 1.2em Arial, Helvetica, sans-serif;
	}

	a {
		color: #224a92;
		text-decoration: none;
	}
	
	a:hover, 
	a:active {
		color: #d14d06;
		text-decoration: underline;
	}
	

/* 1.3	Basic styles
-----------------------------------------------------------------------------------------------*/	

	.hide {
		display: none;
	}
	
	h2,h3,h4,h5,h6{
		color: #3d4c09;
		line-height: 1.1em;
	}
	
	h2{
		font-size: 24px;
		padding-bottom: 20px;
	}
	
	h3{
		font-size: 16px;
		padding-bottom: 15px;
	}
	
	p{
		font-size: 12px;
		padding-bottom: 15px;
		line-height: 18px;
	}
	

/* 2. LAYOUT
-----------------------------------------------------------------------------------------------
===============================================================================================*/	

	.container {
		width: 960px;
		position: relative;
		margin: 0 auto;
		text-align: left;
	}
	
	#header {
		height: 125px;
	}
	
	

/* 2.1	Header
-----------------------------------------------------------------------------------------------*/	

	#header .top{
		padding-top: 18px;
		height: 65px;
	}
		#header .top fieldset{
			position: absolute;
			right: 0;
			top: 42px;
			padding: 10px 0 0 14px;
			width: 224px;
			height: 31px;
			background: #667e0d url(../images/bg_search.gif) no-repeat;
		}
			#header .top fieldset input{
				float: left;
				margin-right: 5px;
			}
			#header .top fieldset input.input-text{
				width: 150px;
				font-size: 12px;
				line-height: 1em;
				padding: 4px 0;
				border: none;
			}

		#header h1, 
		#header h1 span{
			display: block;
			width: 258px;
			height: 32px;
			overflow: hidden;
			cursor: pointer;
		}
		#header h1 a{
			font-size: 22px;
			line-height: 32px;
			text-decoration: none;
			color: #111;
			font-family: Georgia, "Times New Roman", Times, serif;
		}
		
		#header h1{
			position: absolute;
			top: 25px;
			left: 66px;
		}
			
		#header h1 span {	
			position: absolute; 
			top: 0;
			left: 0;
			z-index: 10;
			background: url(../images/logo2.gif) no-repeat;
		}
		#header .top p {
			position: absolute; 
			top: 57px;
			left: 66px;
			color: #454545;
			text-transform: uppercase;
			letter-spacing: .025em;
		}
	
	
	.navigation{}
	
		.navigation li{
			float: left;
			padding: 5px 5px 0 0;
		}
		.navigation li a{
			float: left;
			line-height: 28px;
			font-size: 14px;
			font-weight: bold;
			color: #fff;
			text-decoration: none;
			height: 28px;
			padding-left: 16px;
			background: #93ad18 url(../images/nav_left.gif) no-repeat left;
		}
		.navigation li a span{
			float: left;
			padding-right: 16px;
			height: 28px;
			cursor: pointer;
			background: url(../images/nav_right.gif) no-repeat right;
		}
		.navigation li a.active,
		.navigation li a:hover{
			background: #667e0d url(../images/nav_active_left.gif) no-repeat left;
		}
		.navigation li a.active span,
		.navigation li a:hover span{
			background: url(../images/nav_active_right.gif) no-repeat right;
		}
	
	
	

/* 2.2	Content
-----------------------------------------------------------------------------------------------*/	
	
	#content{
		padding-top: 31px;
		font-size: 12p;
	}

	.home #content{
		padding-top: 0;
	}

	.book_list li{
		width: 100%;
		overflow: hidden;
		padding-bottom: 20px;
	}
	
	.book_list img{
		border: 1px solid #b2b2b2;
		padding: 4px;
		float: left;
		margin-right: 20px;
	}
	
	.detail .book_list{
		padding-bottom: 20px;
	}
	.detail .book_list li{
		padding-bottom: 10px;
	}
		.detail .book_list li a{
			font-size: 12px;
			line-height: 18px;
		}
	
	
	/* home */
	.banner-wrapper{
		width: 884px;
		margin: 0 auto;
		padding: 44px 0px 0px;
	}
		.banner-content{
			width: 883px;
			height: 241px;
			background: #9ec627 url(../images/bg_banner.gif) repeat-x;
		}
	
		.banner-content blockquote{
			position: absolute;
			z-index: 5;
			top: 81px;
			right: 48px;
			width: 360px;
			font-size: 20px;
			text-align: center;
			line-height:36px;
		}
			.banner-content blockquote em{
				font-style: normal;
				color: #d14d06;
			}
			.banner-content blockquote strong{
				font-size: 22px;
				text-transform: uppercase;
			}
		
		.banner-content fieldset{
			position: absolute;
			z-index:3;
			left: 71px;
			top: 78px;
			width: 380px;
		}
			.search-box input{
				float: left;
				width: 249px;
				height: 24px;
				border: 2px solid #d5e99a;
				font-size:24px;
				padding: 7px;
				line-height: 1em;
				color: #a3a3a3;
			}
			.search-box a{
				float: left;
				font-size: 18px;
				font-weight: bold;
				color: #fff;
				padding: 10px 8px 7px;
				border: 2px solid #d5e99a;
				background: #6e812e;
			}
			.search-box a:hover{
				text-decoration: none;
				background: #343f0f;
			}
			.banner-content fieldset p{
				font-size: 11px;
				color: #262606;
				border-bottom: 1px solid #d8e8a7;
				padding: 5px 0 0 0;
				clear: both;
			}
			.banner-content ul{
				padding-top: 10px;
			}
				.banner-content ul.left{
					float: left;
					width: 190px;
				}
				.banner-content ul.right {
					float: left;
					width: 190px;
				}
				.banner-content li{
					color: #2a4372;
					font-size: 11px;
					line-height: 1em;
					width: 100%;
					overflow: hidden;
				}
				.banner-content label input{
					float: left;
				}
				.banner-content label span{
					float: left;
					line-height: 20px;
					padding-left: 3px;
				}
			
			.corner-left,
			.corner-right{
				position: absolute;
				top: 44px;
				height: 241px;
				width: 15px;
			}
			.corner-left{
				left: 38px;
				background: url(../images/banner_corner.gif) no-repeat right;
			}
			.corner-right{
				right: 38px;
				background: url(../images/banner_corner.gif) no-repeat left;
			}
			.wires{
				position: absolute;
				z-index:1;
				right: 38px;
				top: 108px;
				display: block;
				width: 377px;
				height: 177px;
				background: url(../images/wires.gif) no-repeat;
			}
		
		.bulb{
			position: absolute;
			z-index: 2;
			top: 0;
			left: 357px;
			width: 243px;
			height: 283px;
			/* background: url(../images/bulb.gif) no-repeat; */
		}
	
		
	/* interior */
	
	.interior{
		padding-top: 40px !important;
	}
	
	#main{
		float: left;
		width: 725px;
	}
		.header{
			width: 100%;
			overflow: hidden;
			padding-bottom: 5px;
			margin-bottom: 30px;
			border-bottom: 3px solid #6a840d;
		}
			.header h2{
				float: left;
				padding-bottom: 0;
				width: 400px;
			}
			.header p{
				float: right;
				width: 300px;
				text-align: right;
				padding: 10px 0 0 0;
			}
	
	
	/* details */
	
	.detail #content h2{
		font-size: 20px;
	}
	
	.book_reader{
		margin-bottom: 30px;
	}
	
	/* table */
	
	table{
		margin-bottom: 20px;
	}
	td{
		font-size: 12px;
		line-height: 18px;
	}
	


/* 2.3	Sidebar
-----------------------------------------------------------------------------------------------*/	

	#sidebar{
		float: right;
		width: 200px;
		padding: 0 0 30px 25px;
	}
	#sidebar h3{
		font-size: 18px;
		padding: 9px 0 5px 0;
		margin-bottom: 30px;
		border-bottom: 3px solid #6a840d;
	}
	#sidebar .cat li{
		font-size: 12px;
		line-height: 15px;
		padding-bottom: 5px;
		padding-left: 15px;
		background: url(../images/list.gif) no-repeat 0 5px;
	}
	
	#sidebar .subcat li{
		font-size: 12px;
		margin-left:15px;
		line-height: 15px;
		padding-bottom: 5px;
		padding-left: 25px;
		/*background: url(../images/list.gif) no-repeat 0 5px;*/
	}

	.detail #sidebar h3{
		margin-bottom: 0;
		border-bottom: 0;
		padding-bottom: 18px;
		font-size: 14px;
	}
	#sidebar1{
		float: right;
		width: 200px;
		padding: 0 0 30px 25px;
	}
	#sidebar1 h3{
		font-size: 18px;
		padding: 9px 0 5px 0;
		margin-bottom: 30px;
		border-bottom: 3px solid #6a840d;
	}
	#sidebar1 .cat li{
		font-size: 12px;
		line-height: 15px;
		padding-bottom: 5px;
		padding-left: 15px;
		background: url(../images/list.gif) no-repeat 0 5px;
	}
	
	#sidebar1 .subcat li{
		font-size: 12px;
		margin-left:15px;
		line-height: 15px;
		padding-bottom: 5px;
		padding-left: 25px;
		/*background: url(../images/list.gif) no-repeat 0 5px;*/
	}

	.detail #sidebar1 h3{
		margin-bottom: 0;
		border-bottom: 0;
		padding-bottom: 18px;
		font-size: 14px;
	}

/* 2.4	Footer
-----------------------------------------------------------------------------------------------*/	

	#footer{
		float: left;
		margin-top: 20px;
		border-top: 2px solid #6a840d;
		padding: 10px 0;
		width: 100%;
		overflow: hidden;
		color: #3b3b3b;
	}
	
	#footer p{
		font-size: 10px;
	}
	
	#footer a{
		color: #3b3b3b;
		padding: 0 10px;
	}
	
	#footer a.first{
		padding-left: 0;
	}
	
	#footer a.last{
		padding-right: 0;
	}
	
	#footer a:hover{
		text-decoration: underline;
	}
	
	#footer .left{
		float: left;
	}
	
	#footer .right{
		float: right;
	}

.readList{
	padding-bottom:10px;	
}
