/* Universal style rule */
*{
  margin: 0;
  padding: 0;
  /* Temporary borders */
  /* border: dashed 1px #f00;*/
} 


/* BODY TEXT AND BACKGROUND */
body {
    border:0;
    background:#ffffff;
    color:#000;
   font-family: Arial, Helvetica, San-serif;
   font-size: 1em;
}

h1,h2,h3,h4 {
font-family: "Palatino Linotype", Georgia, serif;
font-size: 2em;
text-align: center;
color:#b88e5e;
font-weight:bold;
font-variant:small-caps;
letter-spacing:0.2em; 
padding:.2em;
}

h2{
font-size: .75em;
font-weight:bold;
}

p {
font-size: .75em;
color: #000000; /*black*/
text-align: center;
padding:.5em;
}


  /* Applies to entire gallery div */
        #gallery{
            position:relative;    
 background:#fff url(images/concover1.jpg) 155px 5px no-repeat;

        }
        
        /* Small thumbnail images left*/
        #gallery a img {
            width: 5em;
            margin:0.25em 0 0 .5em;
            border:solid 2px #b88e5e;
         }
       
        
        /* Large image size */
        #gallery a span img {
            width: 35em;

        }
        
        /* Span that surrounds large image */
        #gallery a span {            
            position: absolute;
            /* Hidden at first */
            visibility: hidden;   
            border: solid 1px #fffff;            
            background-color: #ffffff;
            padding:1em;
            color: #993333;     
        }
         
        /* IE6 needs this style rule */
        #gallery a:hover {
            background-color: transparent;
            z-index:5;
            text-decoration:none;            
        }  
                        
        /* Make large image visible on hover */
        #gallery a:hover span {
            visibility: visible;
            top: 0em;
            left: 8em; 
        }
 
 /*end of gallery styles=====================*/







/*====Applies to Headings, Paragraphs and Lists==*/

ul, ol {
  padding:10px 0 10px 40px;
}


/* ======GENERAL ELEMENTS=====*/


p.link {
margin-top: 10px;
font-size: .75em;
font-weight:bold;
}


/*Page Links*/
a:link{  
color:#428142; /*green*/
  text-decoration:underline;
}

a:visited{   
color: #993333; /* burgundy */   
text-decoration: underline;
}


hr {
width: 95%;
color: #993333;
}

