<style type="text/css">

/**********************
Defaults
*/
html, body{
	height: 100%;
}

a {
	color: #5416B4;
	text-decoration: none;
}

/********************
Default text display styles if HTML file does not specify
*/
p{
	margin-bottom: 0em;
	margin-left: 0em;
	margin-right: 0em;
	margin-top: 0em;
	padding: 0em;
	text-indent: 1.5em;
 }
p.chapter{
	font-weight: bold;
	margin-bottom: 0em;
	margin-top: 0em;
	padding: 0em;
	/*Used for e-book formats*/
	page-break-before: always;
	text-indent: 1.5em;
}

/********************
Bookmark links for selecting continue reading, no, etc.
*/
.bookmarkLink{
	color: #9A70D4;
	text-decoration: none;
}

.bookmarkLinkHover{
	color: #9A70D4;
	cursor: pointer;
	text-decoration: none;
}

/********************
Main content area, between navigation panes
*/
#content{
	left: 10%;
	padding-left: 10%;
	padding-right: 10%;
	position: fixed;
	right: 10%;
	top: 15%;
	height: 500px;
}

#noJScontent{
	left: 10%;
	padding-left: 10%;
	padding-right: 10%;
	position: fixed;
	right: 10%;
	top: 15%;
	overflow: auto;
	height: 500px;
}

/********************
Non-JS DIV to let them know the benefits
*/
.noJS{
	border: 2px solid #E6E6E6;
	float: left;
	padding-left: 10%;
	padding-right: 10%;
}

.noJS ul{
	list-style: square;
}



/********************
Left navigation side (previous page)
*/
.leftNav{
	/* Catch-all default - Also note that IE didn't work properly until this was here */
	background: #E0E0E0;
	/* For Internet Explorer 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#E0E0E0, endColorStr=#FFFFFFFF, GradientType=1);
	/* For Internet Explorer 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#E0E0E0, endColorstr=#FFFFFFFF, GradientType=1)";
	/* For WebKit (Safari, Google Chrome etc) */
	background: -webkit-gradient(linear, left top, right top, from(#E0E0E0), to(#fff), color-stop(0.7, #fff));
	/* FOR IE 10 */
	background-image: -ms-linear-gradient(left, #E0E0E0, #FFF 70%);
	/* For Mozilla/Gecko (Firefox etc) */
	background: -moz-linear-gradient(left, #E0E0E0, #FFF 70%);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 8%;
}

.leftNavHover{
	/* Catch-all default - Also note that IE didn't work properly until this was here */
	background: #CDCDCD;
	/* For Internet Explorer 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#CDCDCD, endColorStr=#FFFFFFFF, GradientType=1);
	/* For Internet Explorer 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#CDCDCD, endColorstr=#FFFFFFFF, GradientType=1)";
	background: -webkit-gradient(linear, left top, right top, from(#CDCDCD), to(#fff), color-stop(0.7, #fff));
	/* FOR IE 10 */
	background-image: -ms-linear-gradient(left, #CDCDCD, #FFF 70%);
	/* For Mozilla/Gecko (Firefox etc) */
	background: -moz-linear-gradient(left, #CDCDCD, #FFF 70%);
	cursor: pointer;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 8%;
}

.leftNav:hover{
	background: #E0E0E0;
	cursor: pointer;
	height: 100%;
	left: 0;
	position: fixed;
	top: 10%;
	width: 8%;
}


/********************
Menu items at the top (bookmark, blurb, buy, etc.)
*/
#menu{
	background: #FFF;
	left: 0;
	height: 10%;
	position: fixed;
	top: 0;
	width: 100%;
}

#menu li{
	color: #CDCDCD;
	display:inline;
	margin-right: 5%;
}

#menu li:hover{
	color: #FFE509;
	cursor: pointer;
}

#menu li a{
	color: #CDCDCD;
	text-decoration: none;
} 

#menu li a:hover{
	color: #FFE509;
}

#menu ul{
	list-style: none;
} 

/*******************
Right navigation side (next page)
*/
.rightNav{
	/* Catch-all default - Also note that IE didn't work properly until this was here */
	background: #E0E0E0;
	/* For Internet Explorer 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#FFFFFFFF, endColorStr=#E0E0E0, GradientType=1);
	/* For Internet Explorer 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFFFF, endColorstr=#E0E0E0, GradientType=1)";
	background: -webkit-gradient(linear, left top, right top, from(#FFF), to(#E0E0E0), color-stop(0.3, #fff));
	/* For Internet Explorer 10 */
	background-image: -ms-linear-gradient(left, #FFF, #E0E0E0);
	/* For Mozilla/Gecko (Firefox etc) */
	background: -moz-linear-gradient(left, #FFF, #E0E0E0 70%);
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	width: 8%;
}

.rightNavHover{
	/* Catch-all default - Also note that IE didn't work properly until this was here */
	background: #CDCDCD;
	/* For Internet Explorer 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#FFFFFFFF, endColorStr=#CDCDCD, GradientType=1);
	/* For Internet Explorer 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFFFF, endColorstr=#CDCDCD, GradientType=1)";
	background: -webkit-gradient(linear, left top, right top, from(#FFF), to(#CDCDCD), color-stop(0.3, #fff));
	/* FOR IE 10 */
	background-image: -ms-linear-gradient(left, #FFF, #CDCDCD 70%);
	/* For Mozilla/Gecko (Firefox etc) */
	background: -moz-linear-gradient(left, #FFF, #CDCDCD 70%);
	cursor: pointer;
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	width: 8%;
}

.rightNav:hover{
	background: #E0E0E0;
	cursor: pointer;
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	width: 8%;
}

.panel {
	position: absolute;
	top: 50px;
	left: 0;
	display: none;
	background: #FFFFFF;
	border:1px solid #CDCDCD;
	-moz-border-radius-topright: 20px;
	-webkit-border-top-right-radius: 20px;
	-moz-border-radius-bottomright: 20px;
	-webkit-border-bottom-right-radius: 20px;
	width: 265px;
	height: auto;
	padding-top: 15px;
	padding-bottom: 15px;
	//padding-left: 15px;
	filter: alpha(opacity=85);
	opacity: .80;
}

.panel ul{
	list-style: none;
	float: right;
	width: 100%;
}

.panel li{
	padding-top: 5px;
	padding-bottom: 5px;
}

.even{
	background: #E6E6E6;
}
.odd{
	background: #FFF;	
}
.chapterNote{
	background: #FFF;
	border: 2px solid #9A70D4;	
}
.chapterNote:hover{
	background: #FFF;
	border: 2px solid #000;	
}

.panel li:hover{
	background-color: #CDCDCD;	
}

.highlight
{
	background-color: #9A70D4;
	background: #9A70D4;
	padding-top: .3em;
	padding-bottom: .3em;
	display: inline;
	background: rgb(0, 180, 255); /* Fall-back for browsers that don't support rgba */
    background: rgba(0, 180, 255, .5);
}

</style>