/* CSS Document */

body {
	background: #222222;
	color: #eee;
	font-family: Verdana, Geneva, sans-serif;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

/* ~~ 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: 0px;
	padding-left: 0px; /* 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;
}
p {
	font-size: 14px;
}


/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #ccc;
	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: underline;

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



/* ~~this fixed width container surrounds the other divs~~ */
#container {
	width: 972px;
	text-align: center;
	background-image: url(newbookBG3.jpg);
	background-repeat: no-repeat;
	background-position: 72px 100px;
	background-color: #000;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 100;
	margin-left: auto;
}
#slideshowcontainer {
	width: 972px;
	text-align: center;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #000;
}


/* ~~ 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 {
	padding: 10px;
}



/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ Top Navigation ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	display: inline;
	color: #888;
}
ul.nav a, ul.nav a:visited { 
	width: 159px;  /*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;
	float: left;
	margin-right: 15px;
	margin-left: 15px;
-webkit-border-radius: 6px; 
-moz-border-radius: 6px; 
border-radius: 6px;
	color: inherit;
}

ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #ccc;
	display: inline;
	text-decoration: underline;
}

/* ~~ Slideshow Navigation ~~ */
ul.worknav {
	list-style: none; /* this removes the list marker */
	border-top: none; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-top: 20px;
	color: #999;
	
	font-size: 12px;
	font-weight: bold;
}
ul.worknav li {
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	margin-top: 10px;
	color: #999;
}
ul.worknav a, ul.worknav a:visited {
	color: inherit;
	text-decoration: none;
}

ul.worknav a:hover, ul.worknav a:active, ul.worknav a:focus {
	color: #fff;
	text-decoration: underline;
	}


ul.nav li.currentpage, ul.worknav li.currentpage {
	color: #fff;
}

/* ~~ Book Navigation ~~ */
ul.booknav {
	list-style: none; /* this removes the list marker */
	border-top: none; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 0px;
	color: #111;
	margin-top: 30px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 28px;
	font-weight: bold;
}
ul.booknav li {
	font-size: 20px;
	line-height: 18px;
	font-weight: normal;
	font-style: normal;
	color: #555;
	margin-bottom: 10px;
}
ul.booknav a, ul.booknav a:visited {
	color: #222;
	text-decoration: none;
}
ul.booknav a:hover, ul.booknav a:active, ul.booknav a:focus {
	color: #000;
	text-decoration: underline;
}



.login {
	font-size: 14px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	line-height: 1px;
}

h1 {
	letter-spacing: 0px;
	padding: 0;
	border-bottom: 1px solid #666;
	display: inline-block;
	font-family: Georgia, "Times New Roman", Times, serif;
	
	font-weight: normal;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 16px;
}

h2 {
	padding: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 28px;
	font-style: normal;
	font-weight: bold;
	color: #333;
	margin-top: 25px;
	margin-right: 0;
	margin-bottom: 25px;
	margin-left: 0;
}

/* ~~ The footer ~~ */
.footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both;
	font-size: 12px;
	color: #999;
	margin: 0px;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	height: 34px;
}

/* work gallery styles */
#worknavi {
	float: left;
	width: 120px;
	text-align: left;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;

}

#slideshow {
	float: right;
	width: 822px;
	text-align: center;
	height: 516px;
	margin-top: 10px;
}
#js_slideshow {
	float: right;
	width: 822px;
	text-align: center;
	height: 516px;
	margin-top: 10px;
	background-color: #eee;
}
#js_slideshow>img {
	padding-top: 30px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;

}

#js_thumbs {
	float: right;
	height: 517px;
	width: 120px;
	overflow: auto;
	background-color: #000;
	margin-right: 0px;
}

.js_thumb {
	
		margin-bottom: 5px;
		border: 1px solid #666;
}

#js_bigimage img {
	}
	
#bigslider {
	margin-top: 15px;
	margin-right: 15px;
	margin-bottom: 15px;
	margin-left: 25px;
	}
#bigslider>img {
}


/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

#book {
	color: #333;
	
}
#bookleft {
	float: left;
	width: 325px;
	text-align: center;
	height: 390px;
	margin-left: 132px;
	padding-top: 40px;
}

#bookright {
	float: right;
	width: 325px;
	text-align: center;
	height: 390px;
	margin-right: 132px;
	padding-top: 40px;
}
#bookcenter {
	font-family: Georgia, "Times New Roman", Times, serif;
	text-align: center;
	padding-top: 20px;
	background-image: url(newbookBG3tile.png);
	background-repeat: repeat-y;
	color: #000;
	background-position: 80px;
	font-size: 12px;
	letter-spacing: 0em;
	padding-bottom: 40px;
	margin-top: 10px;
	margin-bottom: 10px;
}

#bookcenter form {
	padding: 4px;
	border: 1px solid #666;
	}
	
#bookcenter a {
	color: #00F;
	text-decoration: underline;
}
td {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
}
.loginform {
	color: #333;
	font-size: 12px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	-border-radius:10px;
}

form label {
	display: block;
}

form p {

}
.alert {
	font-size: 14px;
	font-weight: bold;
	color: #000;
	background-color: #FC0;
	width: 250px;
	display: block;
	margin-right: auto;
	margin-left: auto;
	padding: 4px;
	border: 1px solid #666;
}
.smallred {
	color: #FF0000;
}


.smallprint {
	font-size: 10px;
}

