.interactiveContainer.salaryContainer {
	max-width: none !important;
	margin-left: -30% !important;
	width: 160% !important;
}
@media screen and (max-width: 1000px) {
	.interactiveContainer.salaryContainer {
		max-width: none !important;
		margin-left: 0% !important;
		width: 100% !important;
	}
}
.chartContainer {
	position: relative;
	width: 96%;
	padding: 0 2%;
	height: 180px;
	border-top: 3px solid #333;
	border-bottom: 1px solid #ccc;
	float: left;
	overflow: hidden;
	background: none;
}

.jobItem {
	position: absolute;
	top: 50%;
	margin-top: -6px;
	color: rgba(0,0,0,0.7);
	/*	width: 6px;*/
	width: 205px;
	border-left: 3px solid #000;
	padding-left: 4px;
	font-size: 10px;
	height:11px;
	cursor: pointer;
	font-weight: bold;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}
.jobItem.aligned {
	top: 50% !important;
}
.jobNumber {
	display: none;
}
.jobItem:hover {
	border-left: 13px solid #000;
	font-size: 12px;
	color: #000 !important;
}
.jobItem:hover .jobNumber {
	display: block;
}

.hideMobile { 
	display: block;
}

@media screen and (max-width: 600px) {
	.hideMobile {
		display: none;
	}
}

.allItem {
	top: 0;
	height: 100%;
	margin: 0;
	margin-left: -1px;
	border-left: 2px dashed rgba(100,100,255,0.5);
	color: blue;
	font-size: 13px;
	text-transform: uppercase;
	z-index: 1;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}
.allItem:hover {
	border-left: 2px dashed rgba(100,100,255,0.5);
	font-size: 13px;
}
.bottomContainer {
	position: relative;
	float: left;
	height: 40px;
	padding-top: 3px;
	width: 96%;
	margin: 0 2%;
}
.aboveContainer {
	position: relative;
	float: left;
	height: 20px;
	padding-top: 3px;
	width: 96%;
	margin: 0 2%;
}
.tickItem {
	position: absolute;
	font-size: 10px;
	width: 30px;
	top: 4px;
	margin-left: -15px;
	text-align: center;
}
.selectedAmount {
	position: absolute;
	bottom: 2px;
	font-size: 20px;
	font-weight: 100;
	padding-left: 3px;
	border-left: 2px solid #333;
	-webkit-transition: all 100ms linear;
	-moz-transition: all 100ms linear;
	-o-transition: all 100ms linear;
	-ms-transition: all 100ms linear;
	transition: all 100ms linear;
}