﻿body {
    background: #C0C0C0;
    margin: 0;
}

.title-layout {
    width: auto;
    height: 108px;
    min-width: 784px;
    padding: 8px;
    background: #E0E0E0;
    border-bottom: 2px solid #666;
    overflow: hidden;
    white-space: nowrap;
    display: block;
}
.title-layout img.title {
    margin: 4px 8px;
}

.menu-layout {
    position: relative;
    width: auto;
    min-width: 1000px;
    padding: 0px 24px;
    background: linear-gradient(#EEE, #BBB);
    border-bottom: 2px solid #666;
    overflow: visible;
    display: block;
}
.menu-layout .menu-group,
.menu-layout .menu-btn {
    margin: 0 4px;
    padding: 2px 22px;
    background: rgba(0,0,0,0.2);
    border: none;
    border-left: 2px solid #666;
    border-right: 2px solid #666;
    outline: none;
    text-decoration: none;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 16pt;
    text-shadow: 1px 2px 2px #000;
    color: #FFF;
    cursor: pointer;
    vertical-align: top;
    display: inline-block;

    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}
.menu-layout .menu-group:hover,
.menu-layout .menu-btn:hover {
    background: #FFF;
    color: #006bff;
}
.menu-layout .menu-group {
    position: relative;
    padding-right: 32px;
}
.menu-layout .menu-group img,
.menu-layout .menu-btn img {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 12px;
    height: 8px;
    margin: -2px 0 0 0;
}

.menu-layout .menu-group-menu {
    position: absolute;
    min-width: 160px;
    min-height: 24px;
    background: #E0E0E0;
    border: 2px solid #666;
    border-top: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    z-index: 2;
    overflow: hidden;
    display: none;
}
.menu-layout .menu-group-menu a {
    padding: 2px 6px;
    text-decoration: none;
    font-size: 16pt;
    color: #000;
    display: block;
}
.menu-layout .menu-group-menu a:hover {
    background: #C0C0C0;
    color: #00F;
}

.content-layout {
    width: auto;
    min-width: 800px;
    display: block;
}