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

body {
	margin: 0px auto;
	background-color: #471706;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #fff;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #fff;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #fff;
}

/* ~~ This is the layout information. ~~ 
1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
*/

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 1000px; /* the auto value on the sides, coupled with the width, centers the layout */
	background-color: #FFF;
	margin: 0px auto;
	clear: both;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	height: 15px;
	width: 1000px;
	background-color: #d3612c;
}

.content {
	height: 600px;
	padding-top: 35px;
	padding-bottom: 10px;
	clear: both;
}
#book {
	float: left;
	position: relative;
	height: 625px;
	width: 420px;
	margin-left: 50px;
}
#book img {
	position:absolute;
	left:0;
	-webkit-transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
}
#book img.top:hover {
	opacity:0;
}
#text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: 1.15;
	font-weight: normal;
	color: #333;
	text-align: justify;
	margin-right: 40px;
	float: right;
	width: 470px;
}
/* ~~ The footer ~~ */
.footer {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	color: #CCC;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 30px;
}
.title_rust {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 26px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #ed6525;
}
.title_brown {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 23px;
	font-style: normal;
	line-height: normal;
	color: #7e1d0a;
}
#buy_btn {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: normal;
	color: #FFF;
	background-color: #d3612c;
	text-align: center;
	margin: 10px 0px 0px 15px;
	float: left;
	height: 30px;
	width: 260px;
	padding-top: 10px;
	border-radius: 5px;
	position: relative;
	box-shadow: 2px 2px 4px 2px #777;
}
#buy_btn:hover{
	background-color: #d04302;
}
#back_4sm {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: normal;
	color: #FFF;
	background-color: #fcad25;
	text-align: center;
	margin: 10px 10px 0px 0px;
	float: right;
	height: 30px;
	width: 170px;
	padding-top: 10px;
	border-radius: 5px;
	position: relative;
	box-shadow: 2px 2px 4px 2px #777;
}
#back_4sm:hover{
	background-color: #fb9402;
}
