/* CSS Document */

/* Overwritten HTML tags */
body {
	margin-top:50px;
	background-color:#640000;
	/*background-color:#640000;*/
	/*background-color:#000064;*/
	/*background-color:#781a16;*/
	font-family:Arial, Helvetica, sans-serif;
}

h1 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:24px;
}

h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
}

p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	text-indent:20px;
}

.custH2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:18px;
}

.quotes {
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	font-style: italic;
	text-indent:30px;
}

.quoteAuthor {
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	text-align:right;
}

/* Header */
#header {
	width: 800px;
	height:178px;
	margin: 0 auto;
	background-image: url(images/header.png);
	background-repeat: no-repeat;
	background-position: left top;
}

/* Menu */
#menu {
	float: left;
	width: 800px;
	height: 10px;
	margin:151px 0 0 60px;
}

#menu ul {
	margin: 0;
	padding: 0px 0 0 10px;
	list-style: none;
	line-height: normal;
}

#menu li {
	display: block;
	float: left;
}

#menu a {
	display: block;
	float: left;
	margin-right: 1px;
	padding: 0px 15px 0px 15px;
	text-decoration: none;
	font-weight: bold;
	color: #000000;
}

#menu a:visited {
	font-size: 16px;
	font-weight: bold;
	color: #000000;
}

#menu a:hover { 
	font-size: 16px;
	font-weight: bold;
	color: #ece455;
	background-color: #000000;
}

/* Page Description Box */
#description {
	width: 764px;
	padding:0px 0px 10px 0px;
}

/* Contact */
#contact {
	width: 764px;
	margin:0 auto;
	text-align:center;
}

/* Page */
#page {
	width: 764px;
	margin: 0 auto;
	padding: 10px 10px 10px 10px;
	background: #FFFFFF;
	border-right-width:8px;
	border-left-width:8px;
	border-top-width:0px;
	border-bottom-width:0px;
	border-style:solid;
	border-color: #c52c24;
}

/* Left Column */
#leftColumn {
	float: left;
	width: 382px;
}

/* Right Column */
#rightColumn {
	float: right;
	width: 382px;
}

/* Single Column */
#singleColumn {
	width: 764px;
}

/* Footer */
#footer {
	clear:both;
	width: 800px;
	height:27px;
	margin: 0 auto;
	background: url(images/footer.png) no-repeat;
	padding:3px 0 0 0;
}

#legal {
	text-align: center;
	font-size:12px;
	color: #FFFFFF;
}

/* Image Gallery */
/* Code from http://www.dynamicdrive.com/style/csslibrary/item/css-image-gallery/#thumb */
.thumbnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

/* Enlarged image border */
.thumbnail:hover img{
border: 2px solid white;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color:#333333;
padding:150px;
left: -1000px;
border: 1px solid black;
visibility: hidden;
font-family:Arial, Helvetica, sans-serif;
font-size:16px;
color:#FFFFFF;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 0px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 230px;
left: 230px; /*position where enlarged image should offset horizontally */
z-index: 50;
}