@charset "utf-8";
body  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	background: #dad3b6 url(images/back.jpg) repeat-x;
	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;
}
.container { 
	width: 744px; 
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#menu {
	width:744px;
	background: #dad3b6;
	height: 20px;
	font-size: 12px;
	font-family:"Times New Roman";
	padding-top:5px;
}
#menu a {
	font-weight: bold;
	color: #123651;
	text-decoration: none;
	padding-left:20px;
	padding-right:10px;
}
#menu a:hover {
	color: #a34125;
}
#menu1 {
	width:744px;
	background: #dad3b6;
	height: 20px;
	font-size: 11px;
	font-family:Arial, Helvetica, sans-serif;
	padding-bottom:5px;
}
#menu1 a {
	font-weight: bold;
	color: #a34125;
	text-decoration: none;
	padding-left:8px;
	padding-right:8px;
}
#menu1 a:hover {
	color: #123651;
}
#menu2 {
	width:744px;
	background: #dad3b6;
	height: 365px;
	font-size: 11px;
	font-family:Arial, Helvetica, sans-serif;
	padding-bottom:5px;
}
#menu2 a {
	font-weight: bold;
	color: #a34125;
	text-decoration: none;
	padding-left:8px;
	padding-right:8px;
}
#menu2 a:hover {
	color: #123651;
}
#header { 
	background: #DDDDDD; 
	height: 490px;
} 
#header1 { 
	background: #DDDDDD; 
	height: 116px;
} 
#singleColumn {
	float: left;
	width:724px;
	background: url(images/contentback.jpg) repeat-x #fff;
	margin: 0 0 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#singleColumn a {
	font-weight: bold;
	color: #a34125;
	text-decoration:none;
}
#singleColumn a:hover{
	color: #123651;
	text-decoration:underline;
}
#singleColumn h3{
	font-family: "Times New Roman", Times, serif;
	font-size:14px;
}
#mainContent { 
	float: left;
	width:511px;
	background: url(images/contentback.jpg) repeat-x #fff;
	margin: 0 0 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent h3{
	font-family: "Times New Roman", Times, serif;
	font-size:14px;
}
#mainContent li{
	list-style: none;
	padding-left: 5px;
}
#mainContent a{
	color:#a34125;
	text-decoration:none;
}
#mainContent a:hover {
	color:#123651;
	text-decoration: underline;
}
#donation {
	display:block;
	float:right;
	width:200px;
}
#title {
	font-family:"Times New Roman", Times, serif;
	font-size:14px;
	font-weight:bold;
	width:350px;
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	background: url(images/contentback.jpg) repeat-x #fff;
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 5px 5px;
}
#sidebar1 a{
	text-decoration:none;
	color: #a34125;
}
#sidebar1 a:hover {
	color:#123651;
	text-decoration:underline;
}
#sidebar1 li{
	list-style:none;
}
#sidebar1 b{
	font-weight:bold;
	font-size:14px;
	color:#a34125;
}
#sidebar1 h3{
	font-family:"Times New Roman", Times, serif;
	font-size:14px;
}
#footer { 
	width:744px;
	background: #dad3b6;
	height: 20px;
	font-size: 11px;
	font-family:"Times New Roman";
	padding-top:5px;
	margin: 0 auto;
} 
#footer a {
	font-weight: bold;
	color: #123651;
	text-decoration: none;
	padding-left:2px;
	padding-right:2px;

}
#copyright {
	text-align:center;
	font-size:11px;
	font-family: "Times New Roman", Times, serif;
}
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background: #123651;
padding: 5px;
left: -1000px;
border: 1px solid #123651;
visibility: hidden;
color: #a34125;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 60px; /*position where enlarged image should offset horizontally */

}
.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 */
	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;
}