/* general display classes --------------------------------------------------------------------- */

body{
    margin: 0;
    padding: 0;
    background-color: #333333;
}

/* top ----------------------------------------------------------------------------------------- */

.banner{
    position: absolute;
    top: 5%;
    left: 50%;
    
    font: Verdana;
    font-weight: bold;
    font-family: sans-serif;
    text-align: right;
    color: #cc0000;
    text-shadow: black 0.2em 0.2em 0.4em;
}

.banner .title{
    font-size: 3em;
    font-weight: bold;
    text-shadow: black 0.2em 0.2em 0.4em;
    vertical-align: top;
}

.banner .caption{
    font-size: 1.2em;
    font-weight: normal;
    text-shadow: black 0.2em 0.2em 0.4em;
    vertical-align: bottom;
}

.banner .info{
    font-size: 0.8em;
    font-weight: normal;
    vertical-align: bottom;
}

.banner .totop{
    font-size: 0.8em;
    font-weight: normal;
    vertical-align: bottom;
}

.nav{
    position: absolute;
    top: 75%;
    left: 15%;
    width: 60%;
    padding: 2px;

    font: Verdana;
    font-weight: bold;
    font-family: sans-serif;
    text-align: right;
    color: #cc0000;
    text-shadow: black 0.2em 0.2em 0.4em;
}

.nav img{
    width: 20%;
}

.home{
    position: absolute;
    top: 1%;
    left: 1%;
}

.home a{
    text-decoration: none;
    font-weight: bold;
    color: #ffffff;
    background-color: #777777;
    padding-left: 0.25em;
    padding-right: 0.25em;
}

.about{
    position: absolute;
    top: 1%;
    left: 93%;
}

.about a{
    text-decoration: none;
    font-weight: bold;
    color: #ffffff;
    background-color: #777777;
    padding-left: 0.25em;
    padding-right: 0.25em;
}

.back{
    position: absolute;
    top: 1%;
    left: 93%;
}

.back a{
    text-decoration: none;
    font-weight: bold;
    color: #ffffff;
    background-color: #777777;
    padding-left: 0.25em;
    padding-right: 0.25em;
}

.songs{
    position: absolute;
    top: 90%;
    left: 20%;
    width: 60%;

    font: Verdana;
    font-weight: bold;
    font-size: small;
    font-family: sans-serif;
    color: #ffffff;
}

.songs a{
    color: #ffffff;
    padding-right: 1em;
}


.album_spec{
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 1em;
}

.album_synopsis{
    font-size: 1.2em;
    margin-bottom: 1em;
}

/* links ----------------------------------------------------------------------------------------- */

a img{
    text-decoration: none;
    padding: 3px;
    margin: 2px;

    border: none;
}

a:visited img{
    text-decoration: none;
    padding: 3px;
    margin: 2px;

    border: none;
}

a:hover img{
    text-decoration: none;
    padding: 2px;
    margin: 2px;

    border: thin solid;
    color: #cc0000;
}

a:active img{
    text-decoration: none;
    padding: 3px;
    margin: 2px;

    border: none;
}


/*  gallery with captions using list elements --------------------------------------------------- */
   
.gallery{
    /* border: thin solid; */
    margin-top: 0em;
    margin-bottom: 1em;
    display: block;
}

.gallery_image{
    list-style: none;
    float: left;
    /* width: 20%;*/
    width: 10em;
    margin: 1em;
    padding: 0;
}

.gallery_image img{
    border: none;
    display: block;
    height: 10em;

    /* the rest handles the drop shadow. */
    padding-right: 13px;
    padding-bottom: 13px;
    background: url(shadow.png) no-repeat bottom right;
}

.gallery_image_nods img{
    border: none;
    display: block;
    width: 100%;
}

.gallery_image .title{
    text-align: center;
    padding-top: 1px;
    font-size: small;
    font-weight: normal;
}

.clearer{
    clear: both;
}

