@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
h1, h2, h3, p, blockquote, ol, ul, dl {
	margin: 0px;
	padding: 0px;
}
.twoColFixLtHdr #container {
	width: 988px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/bookBckGrnd.png);
	background-repeat: repeat-y;
} 
.twoColFixLtHdr #header {
	height: 100px;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 10px;
	background-image: url(../images/header.png);
	background-repeat: no-repeat;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-indent: -1300em;
}
.twoColFixLtHdr #sidebar1 {
	width: auto;
	padding-left: 10px;
	margin-top: 10px;
	float: left;
	height: auto;
}
.twoColFixLtHdr #container #test {
	width: 200px;
}

.twoColFixLtHdr #container #sidebar1 ul li {
	background-image: url(../images/button.png);
	width: 230px;
	background-repeat: no-repeat;
	height: 45px;
	list-style-type: none;
	margin-bottom: 10px;
}


.twoColFixLtHdr #container #sidebar1 ul li:hover {
	background-image: url(../images/buttonOver.png);
	width: 230px;
	background-repeat: no-repeat;
	height: 45px;
	list-style-type: none;
	margin-bottom: 10px;
}
.twoColFixLtHdr #container #sidebar1 ul li.current {
	background-image: url(../images/buttonDown.png);
}
.twoColFixLtHdr #container #sidebar1 ul li a.current {
	cursor: default;
}
.twoColFixLtHdr #container #sidebar1 ul li a {
	text-decoration: none;
	text-align: center;
	height: 30px;
	width: 230px;
	padding-top: 13px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #FC3;
	font-size: 0.9em;
	display: block;
}
.twoColFixLtHdr #UpperDivRnd{
	background-image: url(../images/upperDivRnd.png);
	height: 10px;
	background-repeat: no-repeat;
	margin-left: 280px;
	margin-top: 10px;
}

.twoColFixLtHdr #mainContent {
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 280px;
	background-color: #FFF;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
} 
.twoColFixLtHdr #container #mainContent img {
	margin-left: auto;
	margin-right: auto;
}

.twoColFixLtHdr #container #mainContent #databseThmbs{
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 15px;
	margin-left: 5px;
}
.twoColFixLtHdr #container #mainContent #databseThmbs img {
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 5px;
	border: 1px solid #999;
}
.twoColFixLtHdr #container #mainContent #dataBasePackagedThumbs {
	margin-right: auto;
	margin-left: auto;
	padding-right: 100px;
	padding-left: 100px;
}



.twoColFixLtHdr #container #mainContent h1 {
	font-family: Arial, Helvetica, sans-serif;
	margin-bottom: 20px;
	font-size: 1.3em;
	text-align: center;
}
.twoColFixLtHdr #container #mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	margin-bottom: .6em;
}
.twoColFixLtHdr #container #mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	line-height: 1.3em;
	margin-bottom: 1em;
}
.twoColFixLtHdr #LowerDivRnd{
	background-image: url(../images/lowerDivRnd.png);
	margin-left: 280px;
	background-repeat: no-repeat;
	height: 10px;
}

.twoColFixLtHdr #footer {
	background:#DDDDDD;
	position: relative;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	margin-top: 15px;
	padding-top: 5px;
	padding-right: 10px;
	padding-left: 20px;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7em;
}
.twoColFixLtHdr #container #footer img {
	position: absolute;
	right: 0px;
	bottom: 0px;
}
.twoColFixLtHdr #container #footer ul li {
	display: inline;
	font-size: 0.8em;
	margin-right: 5px;
}


.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;
	padding-left: 15px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.publishedBooks {
	background-color: #CCC;
	margin-bottom: 20px;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	background-image: url(../images/volumesBckGrnd.png);
	background-repeat: repeat;
	margin-top: 20px;
}
.publishedBooks img {
	float: left;
	margin-right: 20px;
}
.publishedBooks h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
}
.publishedBooks h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	margin-bottom: 10px;
	text-align: center;
	text-decoration: underline;
	padding-right: 20px;
	padding-left: 20px;
}
.medals {
	margin-right: 100px;
	margin-left: 100px;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 15px;
}
.twoColFixLtHdr #container #mainContent .links h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	margin-bottom: 10px;
}
.twoColFixLtHdr #container #mainContent .links {
	background-color: #CCC;
	background-image: url(../images/volumesBckGrnd.png);
	padding: 15px;
	margin-bottom: 15px;
}
.twoColFixLtHdr #container #mainContent #currentTitle {
	background-image: url(../images/volumesBckGrnd.png);
	background-repeat: repeat-x;
	text-align: center;
	font-size: 1.3em;
	font-family: Arial, Helvetica, sans-serif;
	display: block;
}
.twoColFixLtHdr #container #mainContent #currentTitle p {
	padding: 5px;
	font-weight: bold;
}
.twoColFixLtHdr #container #homePage {
	background-image: url(../images/homeBackGround.png);
	background-repeat: no-repeat;
	height: 500px;
}
.twoColFixLtHdr #container #mainContent #homePage p {
	padding-right: 160px;
	padding-left: 165px;
	text-align: center;
	padding-top: 15px;
}
.buttons {
	float: right;
	
}
