/*-----------------------------------------------------
 * General design of the site
 * Made from various examples on css Zen Garden
 * http://www.csszengarden.com/
 *-----------------------------------------------------*/

body {
    margin: 20px;
    padding: 0;
    background: #ACC1FF url("images/kofc_background.jpg") top center repeat-y;
    font: normal .7em Tahoma, Arial, Helvetica, sans-serif;
}

form {
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: normal;
    color: #000000;
}

p, blockquote, ol, ul {
    line-height: 160%;
}

a {
    color: #000000;
}

a:hover {
    text-decoration: none;
}


/* Global wrapper defines the basis of all pages */

#wrapper {
    width: 875px;
    margin: 0 auto;
}


/* General header layout */

#header {
    float: left;
    width: 247px;
    height: 185px;
    background: url(images/kofc_header.jpg);
}

#header h1 {
    margin: 0;
    padding: 43px 0 0 0;
    text-align: center;
    letter-spacing: -1px;
    font-size: 3em;
    color: #0000FF;
}

#header h2 {
    margin: 0;
    padding: 25px 0 0 0;
    text-align: center;
    font-size: 2em;
    font-style: italic;
    color: #0000FF;
}

#header h3 {
    margin: 0;
    padding: 0 0 0 0;
    text-align: center;
    font-size: 1.3em;
    font-style: italic;
    color: #0000FF;
}

#header a {
    text-decoration: none;
    color: #FFFFFF;
}


/* Header layout for links to the general pages */

#pages {
    float: right;
    width: 610px;
    height: 185px;
    background: url(images/kofc_banner.jpg);
}

#pages h2 {
    display: none;
}

#pages ul {
    float: right;
    margin: 0;
    padding: 10px 15px 0 0;
    list-style: none;
    line-height: normal;
}

#pages li {
    display: inline;
}

#pages a {
    padding-left: 2em;
    text-decoration: none;
    font: bold 1em Tahoma, Arial, Helvetica, sans-serif;
    color: #0000FF;
}

#pages a:hover {
    color: #FFFFFF;
}


/* The general body of every page (i.e. the content) */

#content {
    clear: both;
    padding-top: 10px;
    font: normal 1.3em Tahoma, Arial, Helvetica, sans-serif;
}


/* The layout for a specific event. The title (event), details (description), and shifts. */

.event {
    margin: 0 0 0 0;
    text-align: center;
    font-size: 2.25em;
}

.description {
    margin: 0 0 0 0;
    text-align: center;
    font-size: 1.5em;
    font-style: italic;
}

/* Layout for posts (articles) on the front page. */

#article {
    margin: 0 0 2em 0;
}

#article .title {
    margin: 0 0 .7em 0;
    border-top: 2.5px solid #000000;
    background-color: #FFDB70;
    font-size: 1.5em;
}

#article .body {
    margin: 0 0 .5em 0;
    margin-left: .5em;
}

#article .post-details {
    border-top: 1px dotted #000000;
    font-size: .75em;
    text-align: right;
    margin: 0 0 2em 0;
}


/* Footer layout (contact information) */

#footer {
    text-align: right;
}


/*-----------------------------------------------------
 * Used for hover-over images
 * 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-color: lightyellow;
    padding: 5px;
    left: -1000px;
    border: 1px dashed gray;
    visibility: hidden;
    color: black;
    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 */
}

