/*Job List Widget*/
.widget-job-list-section .widget-body .select-job-type-wrapper
{
	margin-top: 10px;
}

.widget-job-list-section .widget-body .select-job-type-wrapper::after
{
	clear: both;
	content: "";
	display: block;
}
	
.widget-job-list-section .widget-body .select-job-type-wrapper .select-job-btn-wrapper
{	
	cursor: pointer;
	display: inline-block;
	width: 50%;
	float: left;
	text-align: center;
	height: 41px;
	line-height: 41px;
	font-weight: bold;
	background-color: #aaaaaa;
	color: white;
}

.widget-job-list-section .widget-body .select-job-type-wrapper .select-job-btn-wrapper.hot-job-btn-wrapper
{
	border-top-left-radius: 3px;
}
.widget-job-list-section .widget-body .select-job-type-wrapper .select-job-btn-wrapper.new-job-btn-wrapper
{
	border-top-right-radius: 3px;
}
.widget-job-list-section .widget-body .select-job-type-wrapper .select-job-btn-wrapper.active
{
	color: white;
	background-color: #ffca4f;
	
}

.widget-job-list-section .widget-body .select-job-type-wrapper .select-job-btn-wrapper:last-child
{
	float:right;
}
	
.widget-job-list-section .widget-body .select-job-type-wrapper .select-job-btn-wrapper .hot-job-btn,
.widget-job-list-section .widget-body .select-job-type-wrapper .select-job-btn-wrapper .new-job-btn
{
	/*text-shadow: 1px 1px 1px black;*/
}

.widget-job-list-section .widget-body .job-list-wrapper
{
	display:none;
}

.widget-job-list-section .widget-body .job-list-wrapper.active
{
	display: block;
}

.widget-job-list-section .widget-body .job-list-wrapper .job-list
{
	list-style: none;
	padding: 0px;
	margin: 0px;
}
.widget-job-list-section .widget-body .job-list-wrapper .job-list:first-child
{
	border-top : 1px solid #ffca4f;
}
.widget-job-list-section .widget-body .job-list-wrapper .job-list:last-child
{
	border-bottom : 1px solid #ffca4f;
}
.widget-job-list-section .widget-body .job-list-wrapper .job-list .job-item 
{
	padding: 5px 0px 5px 65px;
	border-bottom : 1px solid #eeeeee;
	border-left:1px solid #ffca4f;
	border-right: 1px solid #ffca4f;
}

.widget-job-list-section .widget-body .job-list-wrapper .job-list .job-item .company-logo-wrapper 
{
	display: inline-block;
	margin-left: -60px;
	width: 50px;
	height: 50px;
	border: 1px solid #eeeeee;
	position:relative;
	
}

.widget-job-list-section .widget-body .job-list-wrapper .job-list .job-item .company-logo-wrapper .company-logo
{
	width: 50px;
	position:absolute;
	top:0;
	bottom: 0;
	margin: auto;
}

.widget-job-list-section .widget-body .job-list-wrapper .job-list .job-item .job-text-wrapper
{
	display: inline-block;
	width: 100%;
	vertical-align: top;
}

.widget-job-list-section .widget-body .job-list-wrapper .job-list .job-item .job-text-wrapper .job-link
{
	text-decoration : none;
	color : #666666;
}

.widget-job-list-section .widget-body .job-list-wrapper .job-list .job-item .job-text-wrapper .job-link .job-subject-wrapper .job-subject
{
	font-size: 14px;
	width: 100%;
	overflow: hidden;
	max-height: 36px;
	line-height: 18px;
	display:inline-block;
}

.widget-job-list-section .widget-body .job-list-wrapper .job-list .job-item .job-text-wrapper .job-link .job-company-name-wrapper .job-company-name
{
	font-size: 12px;
	color: #aaaaaa;
	width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	display: inline-block;
}
/*Job List Widget End*/