#cats-container {
	width: 250px;
	bottom: 0;
	top: 55px;
	z-index: 10;
	position: fixed;
	background: #f4f8fd;
	border-right: 10px #87b5e1  solid;
	border-top: 3px #87b5e1 solid;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow-x: hidden;
	overflow-y:auto;
}


#cats-container #hiercats {
    -webkit-overflow-scrolling: touch;

    position: absolute;
    top: 0px; left:0px; right: 0px; bottom: 0px;
/*  text-overflow: ellipsis; */
}

#hiercats * {
	font-size: 12px;
}

ul {
	padding: 0px 10px 0px 10px;
	list-style:none;
	cursor:pointer;
}

#hiercats li {
	margin-left: 0px;
	padding-left: 0px;
	list-style-type: none;
    cursor:pointer;
}
#hiercats a {
	font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
	color: #6699FF; /*#4c5054;*/
  padding:0px 3px 0px 3px;
  display:block;
}
#hiercats a:hover {
    font-weight: 700;
}

.hselected {
    background-color:#cadef2;
    border-radius: 4px;
    font-weight: 700;
}


.hclosed {
    cursor:pointer;
    background: url(../img/arrow_closed.png) no-repeat 0px 2px transparent;
    list-style-type: none;
    margin: 0;
    padding: 0px 0px 0px 0px;
    vertical-align: middle;
}
.hopen {
    /*border: 1px solid green;*/
    cursor:pointer;
    background: url(../img/arrow_open.png) no-repeat 0px 3px transparent;
    list-style-type: none;
    margin: 0;
    padding: 0px 0px 0px 0px;
    vertical-align: middle;
}

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 2dppx) { 
	.hclosed {
	    cursor:pointer;
	    background: url(../img/arrow_closed@2x.png) no-repeat 0px 0px transparent;
	    background-size: 11px 14px;
	    list-style-type: none;
	    margin: 0;
	    padding: 0px 0px 0px 0px;
	    vertical-align: middle;
	}
	.hopen {
	    cursor:pointer;
	    background: url(../img/arrow_open@2x.png) no-repeat 0px 0px transparent;
	    background-size: 11px 14px;
	    list-style-type: none;
	    margin: 0;
	    padding: 0px 0px 0px 0px;
	    vertical-align: middle;
	}
}