.bar_container{ position: relative; width:100%;	height: 35px; background: #f8f8f8; font-size: 10.74px; line-height: 35px; overflow:hidden; border-bottom:1px solid #e0dede; -moz-user-select:none; -webkit-user-select:none; user-select: none; display: block;}

.bar_container .parent_node , .child, .right_side{
	height:100%;
	color: #fff;
	font-weight: bold;
	margin:0;
	padding-left: 7px;
	padding-right: 7px;
	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
	float:left;
	display: block;
	
	color: #919191;
}

.bar_container .child, .bar_container .parent_node{
	border-right: 1px solid #e2e0e0;
	width: auto;
}

.bar_container .child.selected, .bar_container .parent_node.selected{
	background-color: #b9c4ca;
	color: #fff;
}

.bar_container .right_side{ float:right; position: absolute; top:0; padding:0; overflow:hidden;	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ -moz-box-sizing: border-box; box-sizing: border-box;  display:inline-block}

.bar_container .children_container{
	overflow:hidden;
	position:relative;
	left:0px;
	-webkit-transition: left 0.5s; /* For Safari 3.1 to 6.0 */
	-moz-transition: left 0.5s;
	-o-transition: left 0.5s;
    transition: left 0.5s;
    width: 100%;
}

.bar_container .parent_node{
	/*background-color: #b9c4ca;*/
	cursor: pointer;
	width:auto;
}

.bar_container .child{ float: left; cursor: pointer; white-space: nowrap;}
.bar_container .child:hover, .bar_container .parent_node:hover{ color: #39a9dc;}

.bar_container .arrow_left,.arrow_right{
	width: 23px;
	height: 35px;
	position: absolute;
	cursor: pointer;
	top:0.1em;
	background-color: #FFF;
	
	-webkit-transition: left 0.5s, right 0.5s; /* For Safari 3.1 to 6.0 */
	-moz-transition: left 0.5s, right 0.5s;
	-o-transition: left 0.5s, right 0.5s;
    transition: left 0.5s, right 0.5s;
    
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    color: #39a9dc;
    font-size: 1.8em;
}

.bar_container .arrow_left{
	padding-left:0.1em;
	left:-30px;
}



.bar_container .arrow_right{
	padding-left:5px;
	right:-30px;
}
