/*
  Slideshow
*/
#slideshow {
    margin-left: auto;
    margin-right: auto;
    width: 600px;
    box-shadow: 10px 10px 30px 5px #000;
}

#slideshow img {
	cursor: pointer;
}

/*
  Next and previous buttons
*/
#btn_prev, #btn_next {
  font-size: 40px;
  text-decoration: none;
}
#btn_prev {
	position :  relative;
	right :     320px;
	bottom :    280px;
}
#btn_next {
	position :  relative;
	left :      320px;
	bottom :    280px;
}

/*
  Carousel page buttons
*/
#pager {
	position :   relative;
	bottom :     40px;
	text-align:  center;
	z-index:     500;
}
#pager span { 
    font-size: 30px;
    width: 10px; height: 10px; 
    padding : 10px;
    color: #ddd;
    display: inline-block;
    cursor: pointer;
}
#pager span.cycle-pager-active {
	color: #FBDB0C;
}
#pager > * { 
	cursor: pointer;
}


/*
  Critical Acclaim
*/
.book_comment {
	position :   absolute;
	font-size :  40px;
	z-index :    -1;
  color:      #999999;
}

.comment_position_0 {
	left :   60px;
	top :    310px;
}
.comment_position_1 {
  right:   50px;
  top :    440px;
}
.comment_position_2 {
  left :   20px;
  top :    720px;
}
.comment_position_3 {
  right :  10px;
  top :    790px;
}

/*
  Book Descriptions
*/
#book_descriptions {
	position: relative;
	top: -25px;
	align: center;
	width: 700px;
}
.book_desc {
	position: absolute;
	text-align: left;
	font-size: 16px;
}
.book_desc_small {
	font-size: 14px;
}
.book_desc_title {
	font-size: 20px;
	text-decoration: underline;
  display: inline-block;
  margin-bottom: 10px;
}

/*
  General
*/
.display_none {
  display: none;
}