/* 	CUSTOMIZE/OVERRIDE MAP */
#treeLayers{
/* 	height: 750px; */
	height: 430px;
	width: 100%;
	font-family: tahoma, arial, helvetica;
	font-size: 0.8em;
	padding: 0 !important;
/* 	border: 1px dotted red; */
	border: 1px solid #EFEFEF;
	overflow: auto;
	overflow-y: auto;
	resize:none;
	padding-right: 0px;
    padding-left: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#treeLayers ul.dynatree-container{
	border: 0px dotted blue;
}

#treeLayers span.dynatree-selected a {
    font-family: tahoma, arial, helvetica;
    color: #0000a0;
/* 	font-weight: 700; */
    font-style: normal;
}

#treeLayers img {
	width: auto;
	height: auto;
    margin-left: 3px;
    vertical-align: top;
    border-style: none;
}

#treeLayers p {
	margin: 5px 0 10px;
}

#treeLayers_descripcion {
	width: 100%;
	margin: 0 0 0px;
	font-size: 8pt;
    white-space: pre-wrap;
	color: gray;
}

#controls_layer{
	border: 0px dotted red;
}

#controls_layer_range{
	display: inline-block;
}

input[type=range] {
    /*removes default webkit styles*/
    -webkit-appearance: none;
    
    /*fix for FF unable to apply focus style bug */
    border: 1px solid white;
    
    /*required for proper track sizing in FF*/
    width: 150px;
    margin: 5px;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 150px;
    height: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #007FFF;
    margin-top: -3px;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #ccc;
}

input[type=range]::-moz-range-track {
    width: 150px;
    height: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}
input[type=range]::-moz-range-thumb {
    border: none;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: goldenrod;
}

/*hide the outline behind the border*/
input[type=range]:-moz-focusring{
    outline: 1px solid white;
    outline-offset: -1px;
}

input[type=range]::-ms-track {
    width: 150px;
    height: 5px;
    
    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;
    
    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 6px 0;

    /*remove default tick marks*/
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #777;
    border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
    background: #ddd;
    border-radius: 10px;
}
input[type=range]::-ms-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: goldenrod;
}
input[type=range]:focus::-ms-fill-lower {
    background: #888;
}
input[type=range]:focus::-ms-fill-upper {
    background: #ccc;
}