#sidebar{
    position: absolute;
    height: 60%;
    width: 25%;
    top: 62px;
    left: -500px;
    overflow-y: auto;
    overflow-x: hidden;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;

    background: white;
    box-shadow: 0 1px 7px rgba(0,0,0,0.65);
    -webkit-border-radius: 4px;
    border-radius: 4px;

    z-index: 1000;
}

#sidebar .close {
    position: absolute;
    right: 15px;
    top: 5px;
    width: 20px;
    height: 20px;

    color: #333;
    font-size: 25pt;
    line-height: 1em;
    text-align: center;
    background: white;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    cursor: pointer;

    z-index: 8;
}

.checkbox{
	list-style-type: none;
}

.checkbox li{
	padding-top: 5px;
}

#cb1, #cb2, #cb3, #cb4, #cb5{
	margin-left: 20px;
	margin-top: 16px;
}

#itisForm input[type=radio] {
    margin-right: 5px;
}

.layersDiv input[type=radio] {
    display:none;
}

.layersDiv  input[type=radio] + label:before {
    content: "";  
    display: inline-block;  
    width: 15px;  
    height: 15px;  
    vertical-align:middle;
    margin-right: 8px;  
    background-color: #aaa;  
    box-shadow: inset 0px 2px 2px rgba(0, 0, 0, .3);
    border-radius: 8px;  
}

.layersDiv  input[type=radio]:checked + label:before {
    content: "\2022"; /* Bullet */
    color:white;
    background-color: #666; 
    font-size:1.8em;
    text-align:center;
    line-height:14px;
    text-shadow:0px 0px 3px #eee;
}


@media(max-width:500px){
    #sidebar {
        width: 93%;
        padding: 10px;
        left: 10px;
        right: 10px;
    }
}

@media(min-width:501px) and (max-width:1200px){
    #sidebar {
        width: 305px;
    }
}

#itisForm a {
    cursor: pointer;
}