* {
    box-sizing: border-box;
}

html, body {
    font-family: Arial;
    font-size: 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a {
    color: #990000;
    text-decoration: none;
}

a:hover {
    color: #CC0000;
    text-decoration: underline;
}

button {
    border: 1px solid #000000;
    padding: 5px 10px;
    background: #990000;
    color: #FFFFFF;
    font-weight: bold;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #CC0000;
    color: #FFFFFF;
}

.hidden {
    display: none;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome and Opera */
}

.outer-wrap {
    width: 100%;
    margin: auto;
}

.inner-wrap {
    width: 1000px;
    margin: auto;
    border: 1px solid #000000;
}

#header {
    width: 100%;
    padding: 10px;
    background: #CCCCCC;
}

#sub-header {
    width: 100%;
    padding: 10px;
    margin: 0;
    background: #DCDCDC;
    border-top: 1px solid #666666;
}

#sub-header h2 {
    margin: 0;
}

#header h1 {
    margin: 0;
    padding: 0;
}

#body {
    position: relative;
    width: 100%;
    height: 500px;
    background: #E7E7E7;
    border: 1px solid #000000;
    overflow: hidden;
}

#selectable-info-box {
    padding: 10px;
    width: 100%;
    background: #E7E7E7;
    border-bottom: 1px solid #000000;
}

#selectable-info-box .title {

}

#selectable-info-box .body {

}

#selectable-info-box .body ul {
    margin: 0;
    padding: 0;
}

#selectable-info-box .body ul li {
    display: inline-block;
    margin: 10px;
    padding: 10px;
    background: #CCCCCC;
}

#footer {
    width: 100%;
    padding: 10px;
    background: #CCCCCC;
}

#nav {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 250px;
    height: 500px;
    border-right: 1px solid #000000;
    overflow: auto;
    overflow-x: hidden;
}

#nav .nav-below {
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

.nav-item {
    position: relative;
    padding: 5px 10px;
    width: 250px;
    height: 40px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    background: #AAAAAA;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    overflow: hidden;
}

.nav-item:hover {
    background: #CCCCCC;
}

.nav-item-selected {
    background: #FFCC00;
    /* height: 80px; */
}

.nav-item-selected:hover {
    background: #EEBB00;
}

.nav-item .info {
    position: absolute;
    left: 0;
    top: 30px;
    width: 250px;
    height: 50px;
    padding: 2px 5px 0 45px;
    line-height: 20px;
    background: #BBBBBB;
    border-top: 1px solid #AAAAAA;
}

.nav-item .label {
    position: absolute;
    left: 35px;
    top: 3px;
}

.box {
    position: absolute;
    left: 3px;
    top: 10px;
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #999999;
}

#monitors {
    position: absolute;
    top: 0;
    left: 250px;
    margin: 0;
    width: 750px;
    height: 500px;
    background: url("../../assets/img/bg.jpg");
    background-position: 50% 50%;
}

#c {

}