.item-list {
	height: 100%;
	width: calc(50% - 5px);
	float: right;
	background-color: white;
	border: 1px solid gray;
	overflow-x: hidden;
	overflow-y: auto;

	border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
}

.item-list:hover {
	-webkit-box-shadow: 0px 0px 6px 2px rgba(138,138,138,1);
	-moz-box-shadow: 0px 0px 6px 2px rgba(138,138,138,1);
	box-shadow: 0px 0px 6px 2px rgba(138,138,138,1);
}

.item-list.item {
	margin-right: 6px;
}

.item-list::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 6px;
	background-color: #F5F5F5;
}

.item-list::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.item-list::-webkit-scrollbar-thumb
{
	border-radius: 6px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #C5C5C5;
}


.item {
	font-size: 1em;
	width: calc(100% - 6px);
	margin: 3px;
	padding: 5px;
	font-family: Calibri;
	background-color: #93adee;
	cursor: pointer;

	border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
}

.selected {
	border-width:1px;
	background-color: #4670da;
}


.item:hover {
	background-color: #4670da;
}
