/* Toggle Filter */
.filterDiv {
    /*float: left;
    background-color: #2196F3;
    color: #ffffff;
    width: 100px;
    line-height: 100px;
    text-align: center;
    margin: 2px;*/
    display: none; /* Hidden by default */
}
/* The "show" class is added to the filtered elements */
.show {
    display: block;
    /*border-bottom:none;*/
    position: relative;
    top:1px;
}
.toggle-container{
	position: relative;
	top:30px;
}
.toggle{
	text-align: center;
	height:28px;
	background-color:#ffffff;
	padding-left:10px;
	padding-right:10px;
	border:1px solid #a7a7a7;
	cursor:pointer;
	line-height: 28px;
	border-right:none;
	font-size:0.9em;
}
.toggle:first-child{
	border-radius:20px 0 0 20px;
	width:80px;
}
.toggle:last-child{
	border-radius:0 20px 20px 0;
	border-right:1px solid #a7a7a7;
}
.toggle.active, .toggle.active:hover{
	cursor:default;
	background-color:#C7EBFF;
/*	z-index:2;
	border:1px solid #005CBA;
	position: relative;
	right:-1px;*/
}
.toggle:hover{
	background-color:#f5f5f5;
}