/* Exclusive */
html
{
    cursor: default;
    padding: 0px;
    margin: 0px;
}
form
{
    display: inline;
    padding: 0px;
    margin: 0px;
}
body
{
    padding: 0px;
    margin: 0px;
    font-family: "Comic Sans MS";
    font-size: 15px;
    font-weight: bold;
    background-color: #FFC20E;
    background-image: url(/resources/splat.png);
    background-position: center 200px;
    background-repeat: no-repeat;
    color: Yellow;
}
.context
{
    position: absolute;
    width: 900px;
    left: 50%;
    margin-left: -450px;
}
.page
{
    position: absolute;
    left: 20px;
    width: 860px;
    height: 400px;
    top: 250px;
}
button
{
    cursor: pointer;
}

/* Content */
h1
{
    color: White;
    font-size: 30px;
    margin: 0px 0px 10px 0px;
    padding: 0px;
}
h2
{
    color: White;
    font-size: 18px;
    margin: 0px 0px 10px 0px;
    padding: 0px;
}
ul
{
    margin: 0px;
    padding: 0px;
}
li
{
    margin: 0px 0px 0px 100px;
    padding: 0px;
    font-size: larger;
}
.special
{
    font-size: x-large;
    color: White;
}
a
{
    color: Yellow;
    cursor: pointer;
}
a:hover
{
    text-decoration: none;
}
.side
{
    float: right;
    width: 356px;
    height: 356px;
    margin-top: 20px;
    padding-left: 20px;
}

/* Slideshow */
#slideshow
{
    position: relative;
    width: 356px;
    height: 356px;
}
#slideshow img
{
    position: absolute;
    width: 356px;
    height: 356px;
}

.error
{
    font-weight: bold;
    color: Red;
    background-color: #FFEAEA;
    border: solid 1px Red;
    padding: 10px;
}
.message
{
    font-weight: bold;
    color: Green;
    background-color: #CEFC8D;
    border: solid 1px Green;
    padding: 10px;
}

/* Main Menu */
.main-menu
{
    position: absolute;
    left: 0px;
    top: 10px;
    height: 155px;
    font-size: 14px; 
}
.main-menu a
{
    display: block;
    float: left;
    margin-right: 70px;
    width: 154px;
    padding-top: 152px;
    height: 15px;
    text-align: center;
    color: White;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
    background-image: url(/resources/main-menu-item.png);
    background-repeat: no-repeat;
}
.main-menu a:hover
{
    background-position: 100% 0%;
    font-weight: bold;
    font-size: larger;
}
.main-menu .selected
{
    display: block;
    float: left;
    margin-right: 70px;
    width: 154px;
    padding-top: 152px;
    height: 15px;
    text-align: center;
    color: White;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
    background-image: url(/resources/main-menu-item.png);
    background-repeat: no-repeat;
    background-position: 100% 0%;
    font-size: larger;
}

/* Content */
.column
{
    float: left;
    width: 270px;
}

#custom p
{
    margin: 20px 0px 0px 0px;
}
.paragraph
{
    margin: 20px 0px 0px 0px;
}

/* Input */
form
{
    display: block;
    margin: 10px 0px 0px 0px;
}
form div
{
    position: relative;
    margin-top: 2px;
    width: 356px;
}
form div label
{
    float: left;
    display: block;
    width: 120px;
    text-align: right;
    padding-right: 10px;
    vertical-align: middle;
    font-weight: bold;
    font-size: small;
}
form div input
{
    width: 200px;
    border: solid 1px Gray;
}
form div select
{
    width: 200px;
    border: solid 1px Gray;
}
form div textarea
{
    width: 200px;
    height: 200px;
    font-family: "Arial";
    font-size: 12px;
    overflow-y: auto;
    border: solid 1px Gray;
    padding: 0px;
}
form .buttons
{
    padding-left: 127px;
    padding-top: 1px;
}

/* Details */
.details
{
    width: 270px;
    margin-top: 10px;
    border: none;
}
.details div
{
    height: 18px;
    margin-top: 2px;
    width: 270px;
}
.details label
{
    float: left;
    display: block;
    width: 90px;
    text-align: right;
    padding-right: 10px;
    vertical-align: middle;
    font-weight: bold;
}
.details span
{
    float: left;
    width: 170px;
    display: block;
}

/* Lightbox */
.curtain
{
    position: relative;
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: Black;
    opacity: 0.75;
    filter: alpha(opacity=75);
    z-index: 1;
}
.lightbox-image
{
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 2;
}
.lightbox-image-close
{
    position: fixed;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
    background-image: url(/resources/close.png);
    cursor: pointer;
    z-index: 2;
}