body {
    font-family: "Open Sans";
    font-size: 12px;
    color: #000000;
    padding: 0px;
    margin: 0 auto;
}

input[type="text"]:disabled {
    color: #000000;
}

.float-l {
    float: left;
}
.float-r {
    float: right;
}
.float-clear {
    clear: both;
}

table {
    border: 1px solid #ddd;
    border-spacing: 0px !important;
}

td {
    border: 1px solid #ddd;
    padding: 4px 8px;
}

.table-header {
    font-weight: bold;
    background-color: #f5f5f5;
}

.page-wrapper {
    position: relative;
    text-align: center;
    width: 100%;
}

.page {
    position: relative;
    width: 800px;
    margin: 0 auto;
}

.page-header {
    width: 100%;
    height: 40px;
    background-color: #f2f2f2;
    border-bottom: 5px solid #9ec7e4;
    text-align: right;
    position: relative;
}
.page-header .chapter {
    color: #65a5d4;
    font-size: 10px;
    padding-top: 25px;
    padding-right: 45px;
}


.exam-wrapper {
    border: 5px solid #b2b2b2;
    position: relative;
    width: 800px;
    min-height: 480px;
    background-color: #ffffff;
}


.exam-wrapper .instructions {
    padding: 15px 45px 0px 45px;
    font-family: "Open Sans";
    font-size: 16px;
    color: #3e8fc8;
}
.exam-wrapper .instructions .title {
    font-weight: bold;
    text-align: left;
}
.exam-wrapper .instructions .details {
    font-weight: normal;
    text-align: left;
    position: relative;
}

.exam-wrapper .exam {
    /*position: relative;
    width: 544px;
    height: 355px;
    min-height: 355px;
    margin-left: 50px;
    border: 1px solid #9c9c9c;*/
    /*-webkit-overflow-scrolling: touch;
    overflow: auto;*/
}

.geo-map {
    position: relative;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 800px;
}

.map-point {
    position: absolute;
    background-image: url(../images/map_point.png);
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    margin-left: -16px;
    margin-top: -16px;
}
.map-point.selected {
    background-image: url(../images/map_point_selected.png);
    cursor: pointer;
}
.map-point.square {
    background-image: url(../images/map_point_sq.png);
}
.map-point.square.selected {
    background-image: url(../images/map_point_sq_selected.png);
}

.map-label {
    position: absolute;
    opacity: 0;
}

.buttons-wrapper {
    margin-top: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    min-height: 100px;
}
.buttons {
    width: 140px;
}
.buttons .button {
    width: 140px;
    height: 20px;
    color: #333333;
    font-size: 12px;
    padding: 3px 5px 0px 5px;
    margin-bottom: 5px;
    text-align: left;
    background-color: #ffffff;
}
.buttons .button:hover {
    cursor: pointer;
    color: #ffffff;
}
.buttons .button.blue {
    border: 1px solid #3e8fc8;
    border-right: none;
}
.buttons .button.orange {
    border: 1px solid #ee854d;
    border-right: none;
}
.buttons .button.green {
    border: 1px solid #93ba29;
    border-right: none;
}
.buttons .button.blue:hover {
    background-color: #3e8fc8;
}
.buttons .button.orange:hover {
    background-color: #ee854d;
}
.buttons .button.green:hover {
    background-color: #93ba29;
}

.close-cross {
    position: absolute;
    right: 5px;
    top: 5px;
    background-image: url(../images/cross.png);
    background-repeat: no-repeat;
    width: 19px;
    height: 19px;
    display: none;
}