@charset "UTF-8";
/* CSS Document */

/*****Reset*****/  
/*Remove margin and padding from elements*/

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; }

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}  
.clearfloat {
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}  
/*****Basic Elements*****/  
/*Define styles for basic elements: body, h1-h6, ul, ol, a, p, etc.*/  

a {
	color: #0066cc;
}
a:hover {
	color: #000000;
}
a img {
	border: none;
}
body {
	max-width: 960px;
	background-color: rgb(255,255,255);
	font-size: 15px;
	font-family: Georgia, sans-serif;
	overflow: auto;
	color: rgb(52,52,52);
	padding: 20px;

}
h1 {
	padding: 20px 0px;
	font-weight: normal;
	font-size: 200%;
	text-transform: uppercase;
}
h2 {
	font-size: 120%;
	font-weight: normal;
	color: #0066cc;
	padding-bottom: 5px;
}
p {
	padding: 0px 10px 10px 0px;
}

#content {
	position:absolute;
	height:768px;
	width:1024px;
	margin:0px 0px 0px -512px;
	top: 0;
	left: 50%;
	padding: 0px;
	background-color:#000;
	overflow:hidden;
}
img a {
	border:none;
}

/*****Generic Classes*****/  
/*Define styles for simple things like floating to the sides, removing a bottombottom margin on elements, etc  
Yes, these may not be as semantic as we would all like, but they are necessary for coding efficiently*/
  

/*****Basic Layout*****/  
/*Define the basic template: header, footer, etc. Elements that help to define the basic layout of the site*/
  

  
/*****Header*****/  
/*Define all elements in the header*/
  

  
/*****Content*****/  
/*Define all elements in the content area*/

.row {
	margin-bottom: 15px;
}

.book {
	float: left;
	margin: 10px -40px 10px 0px;
	width: 450px;
}
.book-large {
	float: left;
	margin: 10px 10px 10px 0px;
	width: 650px;
}
.clip {
	float: left;
	margin: 50px 10px 10px 0px;
	width: 450px;
	height: 285px;
}
#title {
	float: right;
	font-weight: bold;
	font-family: Arial, sans-serif;
	font-size: 36px;
	color: rgb(152,152,152);
}
.title, titleImg {
	margin-right: 5px;
	clear: none;
}
.titleImg {
	width: 80px;
	float: left;
}  
.titleImg-large {
	width: 160px;
	float: left;
	margin-right: 5px;
	clear: none;
}  
.titleImg img, .book a img {
	max-width: 70px;
	height: auto;
}
.text-right {
	float: right;
	text-align: right;
	position: relative;
}
.text-left {
	float: left;
}
.width50 {
	width: 50%;
}

.philosophie {
	padding-bottom: 100px;
}

/*****Footer*****/  
/*Define all elements in the footer*/
  

  
/*****Etc*****/  
/*Continue to define the other sections one by one*/
  
@media screen and (max-width: 479px) {
	html {
		overflow-x: hidden !important;
	}
	body {
		padding: 10px;
		max-width: 310px;
		overflow-x: hidden;
	}
	.book {
		width: 290px;
		overflow-x: hidden;
	}
	h1 {
		font-size: 140%;
	}
	#title {
		float: left;
	}
}