/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

img {  border: 0; }


/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #5f3d31;
  background-image:url(images_home/home1.jpg);
  background-repeat:repeat-x;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 17px;
  margin: 0 0 30px 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}

#outerWrapper #contentWrapper #content h1 {
color: #000;
padding:7px 7px 2px 7px;
margin:0;
font-size: 14px;
font-weight: bold;
line-height: 18px;
}

h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 760px;
}


#bkgd {
background-image:url(images/bkgdlake2.gif);
margin:0;
padding:0;
}

#outerWrapper #header {
  background-color: #000;
  border-bottom: solid 0px #666;
  font-size: 18px;
  font-weight: bold;
  line-height: 15px;
  margin:0;
  padding: 0;
}


#navbox {
height:25px;
background-color:#000;
margin:0;
padding:0;
}

#outerWrapper #contentWrapper #leftColumn1 {
  border-right: solid 0px #666;
  float: left;
  padding: 10px 10px 10px 0px;
  width: 237px;
}

#outerWrapper #contentWrapper #leftColumn1 #homeleftinner {
  padding: 0;
  margin:0 0 0 5px;
  width: 237px;
  background-color:#dee5df;
}


#homeleftinner h2 {
margin: 10px 10px 0 10px;
padding:0;
}

#homeleftinner h3 {
font-size:12px;
color:#fff;
background-color:#f9bbbb;
margin: 20px 0 20px 0;
padding:10px;
}

#homeleftinner p {
font-size:11px;
margin: 10px 10px 10px 10px;
padding:0;
}

#homeleftinner ul {
margin-left: 30px;
padding-left:0;
list-style:square;
}

#homeleftinner hr {
background-color:#5a62a5;
height:5px;
padding:0px;
margin:0 0 20px 10px;
width:200px;
}

#homeleftinner img {
margin: 0;
padding:0;
}


/*Template Pages Left Column styles*/

#outerWrapper #contentWrapper #leftColumntemp {
  border-right: solid 0px #666;
  float: left;
  padding: 0px;
  width: 237px;
}

#outerWrapper #contentWrapper #leftColumntemp #temptoppics {
  padding:0 0 0 0;
  margin:55px 0 0 26px;
  width: 200px;
  background-color:transparent;
}



#outerWrapper #contentWrapper #leftColumntemp #templeftinner {
  padding:0 0 0 0;
  margin:45px 0 30px 26px;
  width: 200px;
  background-color:#dee5df;
  border:#cccc33 solid 1px;
}

#templeftinner h2 {
margin: 10px 10px 0 10px;
padding:0;
}

#templeftinner h3 {
font-size:12px;
color:#fff;
background-color:#cccc33;
margin: 20px 0 0 0;
padding:10px;
}

#templeftinner p {
margin: 10px 10px 10px 10px;
padding:0;
}

#templeftinner ul {
margin-left: 30px;
padding-left:0;
}

#templeftinner hr {
background-color:#9b59ff;
height:5px;
padding:0px;
margin:0 0 20px 10px;
width:170px;
}

#temppics {
margin-top:0px;
padding-top:0;
}

#outerWrapper #contentWrapper #content {
  margin-bottom: 0;
  margin-left: 257px;
  margin-top: 0;
  margin-right:70px;
  padding-bottom: 10px;
  padding-left:30px;
  padding-right:0;
  padding-top:10px;
  color: #333;
}


#content h2 {
font-family:"Trebuchet MS", Arial;
color: #333;
padding:10px 7px 30px 70px;
margin:0;
background-color:#D9E5CC;
font-size: 14px;
font-weight: bold;
line-height: 16px;
background-image: url(images/logo_newv1.jpg);
background-repeat:no-repeat;
}

#content h8 {
vertical-align:middle;
padding:7px 7px 30px 70px;
margin:0;
font-size:20px;
background-image: url(images/bkgd_titles.jpg);
background-repeat:no-repeat;
}




#content p {
font-size:12px;
color: #333;
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
  color:#FFF;
  background-image:url(images/bkdgfoot.jpg);
  background-repeat:no-repeat;
  background-position:bottom;
  background-color: #050536;
  border-top: solid 1px #666;
  padding: 10px 10px 10px 10px;
}

#outerWrapper #footer a:link {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

#outerWrapper #footer a:visited {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

#outerWrapper #footer a:hover {
  color: #fff;
  text-decoration: underline;
}


#outerWrapper #footer a:active {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

#homebutton {
float:right;
margin:0 0 0 0;
padding:0;
width:60px;
}

#contacttable {
padding:0;
margin:0;
}

#contact_content {
padding:0;
margin:0 0 0 10px;
}

/*Gallery Styles*/

#gallery {
border:#000000 solid 0px;
padding:0;
margin: 20px 0 0 0;
}

#gallery_wrap h3 {
font-size:24px;
padding:0;
margin: 80px 0 0 100px;
}

.blk1px {
border:#000 solid 1px;
}


#gallerybig a:link {
font-weight:bold;
font-size:14px;
color:#10426c;
text-decoration:underline;
}

#gallerybig a:visited {
font-weight:bold;
font-size:14px;
color:#10426c;
text-decoration:underline;
}

#gallerybig a:hover {
font-size:14px;
color:#10426c;
text-decoration:none;
font-weight:bold;
}

#gallerybig a:active {
font-size:14px;
color:#10426c;
text-decoration:underline;
font-weight:bold;
}

#gallery a:link {
font-weight:bold;
font-size:14px;
color:#10426c;
text-decoration:underline;

margin-left:0px;
padding-left:18px;
background-image:url(images/arrow.gif);
background-repeat:no-repeat;
background-position: left;
}

#gallery a:visited {
font-weight:bold;
font-size:14px;
color:#10426c;
text-decoration:underline;

margin-left:0px;
padding-left:18px;
background-image:url(images/arrow.gif);
background-repeat:no-repeat;
background-position: left;

}

#gallery a:hover {
font-size:14px;
color:#10426c;
text-decoration:none;
font-weight:bold;

margin-left:0px;
padding-left:18px;
background-image:url(images/arrow.gif);
background-repeat:no-repeat;
background-position: left;
}

#gallery a:active {
font-size:14px;
color:#10426c;
text-decoration:underline;
font-weight:bold;

margin-left:0px;
padding-left:18px;
background-image:url(images/arrow.gif);
background-repeat:no-repeat;
background-position: left;
}

.gallery1 a:link {
font-weight:bold;
font-size:14px;
color:#10426c;
text-decoration:underline;
background:none;
}

.gallery1 a:visited {
font-weight:bold;
font-size:14px;
color:#10426c;
text-decoration:underline;
background:none;
}

.gallery1 a:hover {
font-size:14px;
color:#10426c;
text-decoration:none;
font-weight:bold;
background:none;
}

.gallery1 a:active {
font-size:14px;
color:#10426c;
text-decoration:underline;
font-weight:bold;
background:none;
}

#big_pic {
margin:0;
padding:0;
}

/*Classes*/
.h_left_img {
margin:0 0 0 30px;
padding:0;
}

.h_bottom_img {
margin:0 0 40px 0;
padding:0;
}

.float_left {
float:left;
}

.float_right {
float:right;
margin-right:70px;
padding:0 0 0 0;
}

.donate_left {
margin:0 0 0 20px;
padding:0;
}

.temppic_top {
margin:0 0 0 0;
padding:0;
}

.temppic_bottom {
margin:20px 0 0 0;
padding:0;
}

.temppic_3rd_bottom {
margin:20px 0 20px 0;
padding:0;
}

.redarial14 {
font-size:14px;
color:#c7051c;
}
.hometitle {
font-size:17px;
font-weight:bold;
padding:10px;
background-color:#EFF3F3;
}

.htitle {
font-size:12px;
color:#555;
}

/*End of Classes*/

#content h5 {
color:#555;
font-size:13px;
font-weight:bold;
padding:5px 0 0 0px;
background-color:#EFF3F3;
}

#homegallery {
padding:7px;
margin:0 0 0 0;
}


#homegallery a:link {
color:#10254b;
font-size:12px;
font-weight:bold;
text-decoration:underline;
}

#homegallery a:visited {
color:#10254b;
font-size:12px;
font-weight:bold;
text-decoration:underline;
}

#homegallery a:hover {
color:#10254b;
font-size:12px;
font-weight:bold;
text-decoration:none;
}

#homegallery a:active {
color:#10254b;
font-size:12px;
font-weight:bold;
text-decoration:underline;
}

.capital {
padding: 0 0 0 0;
margin:7px;
border:#000000 solid 1px;
float:left;
}

.thermopic {
padding: 0 0 0 0;
margin:10px 0 20px 20px;
border:#000000 solid 1px;
}

.videopic {
padding: 0 0 0 0;
margin:20px 0 20px 20px;
width:200px;
border:#000000 solid 1px;
}








