body{
	font-family: 'Lato', sans-serif;
	color:#262626;
}

.noselect {
  /* -webkit-touch-callout: none; 
    -webkit-user-select: none; 
     -khtml-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none;  */
                                 
}

.dropdownWrapper{
	width: 302px;
	border-style:solid;
	border-width: 1px;
	border-color: #b7b7b7;
	box-sizing: border-box;
	position: relative;
	z-index: 99;
	
}

.arrow{
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	float: right;
	font-size: 24px;
	color:#046B99;
	cursor: pointer;
	-webkit-transition: all .3s;
    transition: all .3s;
}

.arrow:hover{
	color:rgb(188,186,190);
}

.down{
	transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.up{
	transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}



.dropdownHeader{
	height: 30px;
	width: 270px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 30px;
	font-size: 18px;
	padding-left:10px;
	cursor: default;
	text-align: center;
	box-sizing: border-box;
}

.dropdownComponents{
	width: 100%;
	height: 0px;
	overflow: hidden;
	border-style:solid;
	border-width: 0px;
	border-color: #b7b7b7;
	box-sizing: content-box;
    position: absolute;
    top: 31px;
    left:-1px;
    z-index: 10;
    background-color: white;
}

.selectedItems{
	width: calc(100% - 20px);
	font-size: 12px;
	padding: 5px 10px;
	text-align: left;
	font-style: italic;
	color:#b7b7b7;
	box-sizing: content-box;
	border-style: solid;
	border-width: 1px;
	border-color: #b7b7b7;
	background-color: white;
	position: absolute;
	margin-left: -1px;
	display: none;
}

.optionWrapper{
	width: 100%;
	height: 24px;
	-webkit-transition: all .2s;
    transition: all .2s;
}

.optionWrapper:hover{
	background-color: #f2f2f2;
}

.optionText{
	height: 24px;
	width: 300px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 24px;
	font-size: 14px;
	padding-left:10px;
	cursor: pointer;
	text-align: left;
	box-sizing: border-box;
}

.checkBox{
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	float: right;
	font-size: 18px;
	color:#046B99;
	cursor: pointer;
	-webkit-transition: all .3s;
    transition: all .3s;
}

.unchecked{
	display: none;
}

.dropNavWrapper{
	height: 30px;
	text-align: center;
	line-height: 30px;
	border-style: solid;
	border-width: 0 0 1px 0;
	border-color: #b7b7b7;
	font-size: 16px;
}

.pageWrapper{
	width:180px;
	float: left;
}

.dropNavHide{
	opacity: 0;
}

.dropNav{
	width: 30px;
	height: 30px;
	float: left;
	line-height: 26px;
	text-align: center;
	font-size: 24px;
	color:#046B99;
	cursor: default;
	-webkit-transition: all .3s;
    transition: all .3s;
}

.dropNav:hover{
	color:rgb(188,186,190);
}

.filterWrapper{
	width: 100%;
	height: 30px;
    border-style: solid;
	border-width: 0 0 1px 0;
	border-color: #b7b7b7;
}

.filterIcon{
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	float: right;
	font-size: 24px;
	color:#046B99;
	cursor: pointer;
	-webkit-transition: all .3s;
    transition: all .3s;
}

.filterIcon:hover{
	color:rgb(188,186,190);
}

.filterInput{
	width: 300px;
	height: 100%;
	border-color: white;
	border-width: 0px;
	padding: 0 10px;
	font-weight: bold;
}

.filteredItems{
	width: calc(100% + 2px);
	font-size: 12px;
	padding: 5px 10px;
	text-align: left;
	font-style: italic;
	color:#b7b7b7;
	box-sizing: border-box;
	overflow: hidden;
	border-style: solid;
	border-width: 0 1px 1px 1px;
	border-color: #b7b7b7;
	margin-left: -1px;
	display: none;
}








