/* JOB BOARD RULES */

/* CONTENT CONTAINER */

div#content_container {
	position: relative;
	width: 100%;
}


/* JOB SEARCH ACTION BUTTONS */

ul#job_board_search_actions {
	position: absolute;
	top: 0px;
	right: 0px;
	margin: 0px;
	list-style: none;
	z-index: 60;
}

	#job_board_search_actions li {
		float: left;
	}
	
		#job_board_search_actions li a {
			display: block;
			margin: 0px;
			padding: 0px 5px;
			height: 30px;
			line-height: 30px;
			font-size: 10px;
			color: #6fbbd4;
			text-align: center;
			text-decoration: none;
		}
		
		a#view_all_jobs_trigger {
			width: 160px;
		}

		a#job_search_trigger {
			width: 100px;
		}
		
		#job_board_search_actions li a:hover {
			background-color: #fafafa;
			color: #980000;
		}


/* JOB SEARCH OPTION FORM */

div#job_search_options {
	display: none;
	position: absolute;
	top: 29px;
	left: 0px;
	z-index: 50;
	padding: 20px 0px;
	border: 1px solid #cbcbcb;
	width: 100%;
	height: 224px;
	background-color: #fafafa;
}

	.job_search_form label {
		float: left;
		display: inline;
		clear: left;
		padding: 0 0 0 2%;
		width: 28%;
	}
	
	.job_search_form fieldset {
		margin: 0px;
		border: 0px;
	}
	
	* html form.job_search_form input.text_field, * html form.job_search_form select.select_field {
		background-color: #ffffff !important
	}
	
	.job_search_form input.text_field, .job_search_form select.select_field {
		clear: right;
		margin: 0px 2% 1.5em 0px;
		width: 67%;
		height: 25px;
		color: #505050;
		background-color: #f4f4f4 !important;
		border: 2px solid #e1e1e1;
		font-size: 14px;
	}
	
	.job_search_form select.select_field {
		clear: right;
	}
	
	input.job_search_submit_button {
		margin: 0px 0px 1.5em 30%;
	}


/* JOB BOARD RULES */

ul#job_list {
	margin: 24px 0px !important;
	padding: 0px !important;
	width: 100%;
	list-style: none;
	clear: right;
}

	#job_list li {
		display: inline;
		clear: right;
		width: 100%;
		line-height: 0px;
	}

		a.job_board_heading, a.job_board_item {
			display: block;
			clear: right;
		}
		
		a.job_board_heading, a.job_board_item {
			padding: 8px 0px;
			width: 100%;
			line-height: 20px;
			overflow: hidden;
			text-decoration: none;
		}
		
		a.job_board_heading {
			height: 33px;
		}
						
		a.job_board_item {
			background-color: ffffff;
			background-repeat: no-repeat;
			background-position: 0px 0px;
			cursor: pointer;
			border-bottom: solid #e6e6e6 1px;
			
		}
	
		a.job_board_item:hover {
			background-color: #f9f9f9;
			border-bottom: solid #e4e4e4 1px;
		}				
	
		a:hover.job_board_item {
			background-position: 0px bottom;
		}
		
			a.job_board_heading span, .job_board_item span {
				float: left;
				font-weight: 100;
			}
			
			a.job_board_heading span {
				font-size: 14px;
				font-weight: bold;
				color: #91353b;
			}

span.updated_date {
	padding: 0 0 0 0;
	width: 14%;
	color: #b2b2b2;
	overflow: hidden;
}

span.job_location {
	padding: 0 0 0 5%;
	width: 28%;
	color: #5b8b9d;
}

span.job_title {
	padding: 0 0 0 5%;
	width: 47%;
	color: #004964;
}

a.job_board_item:hover span.updated_date, a.job_board_item:hover span.job_location {
	color: #333333;
}

a.job_board_item:hover span.job_title {
	color: #333333;
}


