#itemFilterInput,#itemFilterAndSelect{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
#itemFilterInput,#itemFilterAndSelect{
	-webkit-box-flex: 1;
	flex: 1;
}
#itemFilterAndSelect{
	-webkit-box-orient: horizontal;
	-webkit-flex-flow: row;
	-moz-flex-flow: row;
	-ms-flex-flow: row;
	flex-flow: row;
	flex-direction: row;
}
#itemFilterPanel{
	-webkit-box-orient: vertical;
	-webkit-flex-flow: column;
	-moz-flex-flow: column;
	-ms-flex-flow: column;
	flex-flow: column;
	flex-direction: column;
}
null{
	-ms-flex-pack: center;
	-moz-box-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}
null{
    -ms-flex-pack: justify;
	-moz-box-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	justify-content: space-around;
}
null{
    -ms-flex-pack: justify;
	-moz-box-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}
null{
    -ms-flex-pack: start;
	-moz-box-pack: start;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
}
null{
    -ms-flex-pack: end;
	-moz-box-pack: end;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	justify-content: flex-end;
}
null{
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
null{
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
}
null{
	-webkit-align-items: stretch;
	-webkit-box-align: stretch;
	-moz-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}



null{
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: url(ffFilters.svg#grayscale); /* Firefox 4+ */
	filter: gray; /* IE 6-9 */
}
null{
	-webkit-filter: grayscale(50%);
	-moz-filter: grayscale(50%);
	-ms-filter: grayscale(50%);
	-o-filter: grayscale(50%);
	filter: grayscale(50%);
	filter: url(ffFilters.svg#semigrayscale); /* Firefox 4+ */
	filter: gray; /* IE 6-9 */
}
null{
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	filter: none;
	filter: grayscale(0%);
}



#itemFilterPanel{
	padding-left: 10px;
	
	width: 282px;
	min-width: 282px;
	max-width: 282px;
}
#itemFilterInput{
	border: 1px solid rgb(70,70,70);
	border-bottom: double rgb(80, 80, 80);
	color: rgb(235, 235, 235);
	font: 15px Tahoma;
	background: black;
	text-align: left;
	
	width: 138px;
	min-width: 138px;
	max-width: 138px;
	
	height: 25px;
	min-height: 25px;
	max-height: 25px;
}
#itemDisplay{
	overflow: auto;
	overflow-y: scroll;
	
	height: 492px;
	min-height: 492px;
	max-height: 492px;
	
	width: 678px;
	min-width: 678px;
	max-width: 678px;
}
#itemDisplay > div.invisible{
	display: none;
	opacity: 0;
}
#itemDisplay > div{
	display: inline-block;
	float: left;
	opacity: 0.6;
	border: 2px solid black;
	margin: 1px;
	
	-webkit-transition: opacity 0.25s,border 0.25s;
	transition: opacity 0.25s,border 0.25s;
	
	width: 60px;
	min-width: 60px;
	max-width: 60px;
	
	height: 60px;
	min-height: 60px;
	max-height: 60px;
}
#itemDisplay > div > img{
	width: 60px;
	min-width: 60px;
	max-width: 60px;
	
	height: 60px;
	min-height: 60px;
	max-height: 60px;
}
#itemDisplay > div:hover{
	border: 2px solid white;
	opacity: 1;
	background: rgb(25,25,25);
	cursor: pointer;
}