.resourcesPopup{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 20;
}

.resourcesPopup .background{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #000;
	opacity: 0.3;
}

.resourcesPopup .content{
	position: relative;
	width: 600px;
	background: #fff;
	margin: 40px auto;
	overflow: auto;
	border-radius: 4px;
}

.resourcesPopup .content .resourcesHolder{
	margin: 0px 0px 0px;
	overflow: auto;
    max-height: 850px;
}
.resourcesPopup .content .resourcesDivider{
	height: 20px;
    background: #8a8a8a;
}
.resourcesPopup .content .resourcesHolder .resourceHolder{
	overflow: auto;
    border-bottom: 1px solid #c6c6c6;
    padding: 20px 15px;
    cursor: pointer;
}
.resourcesPopup .content .resourcesHolder .resourceHolder:hover{
	background: #e3e3e3;
}

.resourcesPopup .content .resourcesHolder .resourceHolder .label{
	font-size: 18px;
}

.resourcesPopup .content .resourcesHolder .resourceHolder .description{
	opacity: 0.6;
}

