body {
	background: #42413C;
	margin: 0;
	padding: 0;
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 125%;
	line-height: 1.4;
}
/* ~~ Element/tag selectors ~~ */
ul, 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 block. 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 blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
	color: #999;
}
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;
}
a hover {
	color: #fff;
	}
/* Header styles */
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	clear:both;
	background-color: #000000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
}
header ul {
	clear:left;
	float:left;
	width:100%;
	list-style:none;
	margin:6px 0 0 0;
	padding:0;
}
header ul li {
	display:inline;
	list-style:none;
	margin:0;
	padding:0;
}
header ul li a {
	display:block;
	float:left;
	margin:0 0 0 1px;
	padding:3px 10px;
	text-align:center;
	background:#588EA1;
	color:#333;
	text-decoration:none;
	position:relative;
	left:15px;
	line-height:1.3em;
}
header ul li a:hover {
	color:#333;
	background-color: #CCC;
}
header ul li a.active,
header ul li a.active:hover {
	color:#333;
	background:#ccc;
	font-weight:bold;
}
header ul li a span {
	display:block;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 100%;
	background: #000000;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

btn a{
	font-family: Verdana, Geneva, sans-serif;
	color: #333;
	background-color: #999999;
	float: left;
	width: 90%;
	margin: 8px;
	text-decoration: none;
	padding: 8px;
}
btn a:hover{
	color: #FFF;
	text-decoration: none;
}
#layoutdims {
	color: #333;
	clear:both;
	background:#999;
	border-top:2px solid #000;
	margin:0;
	padding:6px 15px !important;
	text-align:right;
}
#layoutdims a{
	color: #333;
}
#layoutdims a:hover{
	color: #fff;
}

.sidebar1 {
	float: right;
	width: 25%;
	padding-bottom: 10px;
}
.content {
	padding: 10px 0;
	width: 75%;
	float: right;
}
.chapter {
	padding: 10px 0;
	width: 100%;
	float: left;
	background-color: #FFF;
	color: #333;
}
.chapter p {
	color: #333;
}
.chapter ol {
	margin-left: 20px;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
nav ul {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px;
}
nav ul li {
	border-bottom: 1px solid #666;
}
nav ul a, nav ul a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: auto;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background-color: #588EA1;
	color: #333;
}
nav ul a:hover, nav ul a:active, nav ul a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #588EA1;
	color: #FFF;
	text-decoration: none;
}

/* ~~ The footer ~~ */
footer {
	padding: 10px;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	background-color: #999999;
	font-size: 70%;
	line-height: normal;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure, map_btns, btn {
	display: block;
}
.verse {
	font-size: 75%;
	color: #666;
}
answers {
	float: right;
	width: 95%;
}
