/* 
Kai Brach
brizk design (www.brizk.com)
*/

/* Basics ######################################################### */

html, body, div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td { 
	margin: 0; padding: 0; 
} 

html, body {
	height:100%;
	overflow:hidden;
	line-height:1.5em; /* I NEVER trust the default */
	font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #888479;
}

body {
	background: #f2edde url(../_pix/bg.gif) 0 0 repeat-x;
	background-attachment: fixed;	
}
/* 
	so here we can make our own scroller - anything 'outside'
	#height_container set to position:absolute will behave like
	position:fixed in all browsers - netting us lte IE 6 support
	Since this method works for all browsers, we can just use 
	this technique for all of them.
*/ 

#height_container {
	height:100%;
	overflow:auto; 
}

/* 
	we should add a wrapper for padding top/bottom so that our 
	scrollbar let's us scroll past our fixed boxes
*/
	
#height_wrapper {
	padding: 50px 540px 50px 0;
	width: 430px;
	margin: 0 auto;
	z-index: 5;
}


#height_wrapper div.item {
	background: url(../_pix/divider.png) 0 bottom no-repeat;
	margin-bottom: 25px;
}

#fixed_header,
#fixed_footer {
	position:absolute; 
	width:100%;
	left:0;
	text-align:center; /* IE 5.x centering */
}

#fixed_header {
	top:0;
	height: 28px;
	background: url(../_pix/top.png) 0 0 repeat-x;
}

#fixed_footer {
	bottom:0;
	z-index: -1;
}

div.logo {
	height: 23px;
	width:980px;
	margin:0 auto;
	position: relative;
}

div.logo div {
	width: 540px;
	position: absolute;
	top: 0;
	left: 440px;
	height: 500px;
	background: url(../_pix/logo.png) 0 65px no-repeat;
}

#fixed_footer div {
	width: 980px;
	height: 440px;
	background: url(../_pix/glow.jpg) right bottom no-repeat;
	margin: 0 auto;
	position: relative;
	padding: 0;
}

#height_wrapper div.item div.frame {
	padding: 0 0 45px 0 ;
	margin: 0;
	background-position: 35px 0;
	background-repeat: no-repeat;
	}
	
div.footer {
	padding: 10px 0 45px 0;
	color: #b8b4aa;
}

div.book-rockstar {
	background-image: url(../_pix/book-rockstar.png);
}	

div.book-unlimited {
	background-image: url(../_pix/book-unlimited.png);
}

div.book-principles {
	background-image: url(../_pix/book-principles.png);
}

div.book-socalled {
	background-image: url(../_pix/book-socalled.png);
}	




/* Headlines ######################################################### */		


h1 {
	padding: 15px 0 0 0;
	font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;
	margin:0 0 10px 0;
	font-size:2em;
	font-weight:normal;
	letter-spacing:-1px;
	line-height:1.1em;
	text-indent: -1111em;
	background-position: 215px 15px;
	background-repeat: no-repeat;
}

div.book-rockstar h1 {
	background-image: url(../_pix/h-rockstar.png);
	height: 97px;
}

div.book-unlimited h1 {
	background-image: url(../_pix/h-unlimited.png);
	height: 97px;
}

div.book-principles h1 {
	background-image: url(../_pix/h-principles.png);
	height: 97px;
}

div.book-socalled h1 {
	background-image: url(../_pix/h-socalled.png);
	height: 70px;
}
	
	

/* Links ######################################################### */	

a:link,  a:visited, a:active {color:#888479; text-decoration: none; outline:none}
a:hover {color:#615c50;}

.footer a:link, .footer  a:visited, .footer a:active {color:#b8b4aa; text-decoration:underline}
.footer a:hover {color:#888479;}


.logo a:link, .logo  a:visited, .logo a:active {color:#796042; text-decoration:underline}
.logo a:hover {color:#463724;}



/* Fonts ######################################################### */

.font-grey {color:#878787;}

p {
	padding:0 0 15px 0;
}

div.logo div p {
	text-align: left;
	font-size: 14px;
	line-height: 1.5em;
	color: #796042;
}

div.logo div p.top {
	padding: 60px 0 0 240px;
	height: 210px;
}

div.logo div p {
	padding: 0 0 15px 240px;
}

#height_wrapper div.item p {
	padding: 0 0 5px 0;
}

div.logo div p em {
	color: #888479;
}

p.intro {
    margin:0 0 0 215px;
	padding: 0;
	color: #888479;
}
	


/* Navigation ######################################################### */

	
/* Images ######################################################### */	

img {
	border:0;
}


#fixed_footer div img {
	position: absolute;
	bottom: 0;
	left: 450px;
}
	
/* Tables ######################################################### */

	

/* Lists ######################################################### */



/* Forms ######################################################### */

form {
	padding:0;
	margin:0 0 20px 0;
}

		


/* Misc ######################################################### */		

.clearfix:after {
    content:"."; 
    display:block; 
    height:0; 
    clear:both; 
    visibility:hidden;
}
.clearfix {
    display:inline-block;
}
.clearfix {
    display:block;
}
* html .clearfix {
    height:1px;
}

.float-left {
	float:left;
}

.float-right {
	float:right;
}	

.clear {
	clear:both;
}	

.center {
	text-align:center;
}	
