/* Standard colours are white text on a black background */
body {
    background-color: black;
    color: white;
}

/* Links are silver normally and aqua when the mouse hovers over the link */
a:link, a:visited {
    color: silver;
}
a:hover {
    color: white;
}
a#selected {
    color: aqua;
}

/* Prevent images inside a link from displaying that ugly border */
a img {
    border: none;
}

/* The logo (small wineglass) size and positioning */
#logo {
    width: 80px;
    height: 85px;
    position: absolute;
    left: 20px;
    top: 20px;
    border: solid gray 1px;
}

/* The main title font, size and positioning */
#title {
    font-family: Georgia, Times New Roman, serif;
    font-size: 250%;
    font-weight: bold;
    position: absolute;
    left: 150px;
    top: 38px;
    white-space: nowrap;
}

/* The menu font, size and positioning */
#menu {
    font-family: Verdana, Arial, sans-serif;
    font-size: 140%;
    position: absolute;
    left: 10px;
    top: 126px;
    width: 120px;
}

/* Remove the underline from the links in the menu */
#menu a {
    text-decoration: none;
}

.sublevel {
    font-size: 75%;
    margin-left: 10px;
}

/* The content area font and position */
#content {
    font-family: Verdana, Arial, sans-serif;
    position: absolute;
    left: 150px;
    top: 128px;
    padding-bottom: 20px;
}

div.gallery-index-cell {
    float: left;
    width: 120px;
    height: 150px;
    text-align: center;
}

/* Remove the underline from the links under the thumbnails */
div.gallery-index-cell A:link,A:visited,A:active {
    text-decoration: none;
}

img.gallery-index-thumbnail {
    margin-top: 5px;
    padding: 5px;
    border: solid gray 1px;
}

div.gallery-cell {
    float: left;
    width: 120px;
    height: 120px;
    text-align: center;
}

img.gallery-thumbnail {
    margin-top: 5px;
    padding: 5px;
    border: solid gray 1px;
}

#medium-image {
    padding: 10px;
}

#contact-table td {
    vertical-align: top;
}
