@import url('/css/shared.css');


* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

img {
    box-sizing: content-box;
    -moz-box-sizing: content-box;
}

body {
    background-color: #00A0B0;
    background-image: url('/images/body-back.gif');
    background-repeat: repeat-x;
    margin: 0; 
    padding: 0;
    padding-top: 20px;
}


#fs-wrapper {
    width: 860px;
    left: 50%;
    position: relative;
    margin-left: -425px;

    background-color: white;
    border-top: 1px solid #008897;
    border-left: 1px solid #008897;
    border-right: 3px solid #007380;
    border-bottom: 3px solid #007380;
}

#fs-header {
    border: 1px solid white;
    border-right: 0;
}

#fs-header-top {
    background-color: #00C8CC;
    background-image: url('/images/header-top-back.jpg');
    background-repeat: no-repeat;
}

#fs-header-bottom {
    background-color: #122124;
    background-image: url('/images/header-bottom-back.jpg');
    background-repeat: no-repeat;
    color: white;
}

#fs-content {
    background-color: #F0F8F8;
    background-image: url('/images/content-back.jpg');
    background-repeat: repeat-y;
    padding: 10px;
    padding-top: 19px;
}

#fs-side {
    background-color: white;
    border: 1px solid white;
}

#fs-header-bottom {
    padding-top: 12px;
    height: 33px;
}


a.nav-link {
    font-family: 'verdana';
    color: white;
    text-decoration: none;
    margin-left: 8px;
    margin-right: 4px;
    font-size: 14px;
    font-weight: bold;
}
a.nav-link-active {
    color: #9BF5FF;
    text-decoration: underline;
}
a.nav-link:hover {
    text-decoration: underline;
}
a.nav-link img {
    padding-bottom: 1px;
}
a.nav-link:hover img {
    border-bottom: 1px solid white;
    padding-bottom: 0;
}
a.nav-link-active img {
    border-bottom: 1px solid #33EEFF;
    padding-bottom: 0;
}
