		<style>
		.entry-content > :not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
			max-width:unset !important;
		}
		
		#site-header{
			
			background: white;
		}
		 #colophon{
			  margin:0px !important;
			 padding:0px !important;
		 }
		 
		  .site-info{ display:none}
			</style>
		 

	<script >
	  function coordinate(event) {
      /*  let x = event.clientX;
        let y = event.clientY;
        document.getElementById("X").value = x;
        document.getElementById("Y").value = y;*/
    }
	
 
	$(document).ready(function(){
	
	$('#price-range-submit').hide();

	$("#min_price,#max_price").on('change', function () {

	  $('#price-range-submit').show();

	  var min_price_range = parseInt($("#min_price").val());

	  var max_price_range = parseInt($("#max_price").val());

	  if (min_price_range > max_price_range) {
		$('#max_price').val(min_price_range);
	  }

	  $("#slider-range").slider({
		values: [min_price_range, max_price_range]
	  });
	  
	});


	$("#min_price,#max_price").on("paste keyup", function () {                                        

	  $('#price-range-submit').show();

	  var min_price_range = parseInt($("#min_price").val());

	  var max_price_range = parseInt($("#max_price").val());
	  
	  if(min_price_range == max_price_range){

			max_price_range = min_price_range + 100;
			
			$("#min_price").val(min_price_range);		
			$("#max_price").val(max_price_range);
	  }

	  $("#slider-range").slider({
		values: [min_price_range, max_price_range]
	  });

	});


	$(function () {
		
		var minc=0;
		var max=100;
		 
		 
	  $("#slider-range").slider({
		range: true,
		orientation: "horizontal",
		min: 0,
		max: 200,
		values: [minc, 100],
		step: 10,

		slide: function (event, ui) {
		  if (ui.values[0] == ui.values[1]) {
			  return false;
		  }
		  
		  
		    $("#range").html('$'+ui.values[0]+'- $'+ui.values[1]);
			 
		  $("#min_price").val(ui.values[0]);
		  $("#max_price").val(ui.values[1]);
		}
	  });

	  $("#min_price").val(0);
	  $("#max_price").val(200);

	});

	$("#slider-range,#price-range-submit").click(function () {

	  var min_price = $('#min_price').val();
	  var max_price = $('#max_price').val();

	  $("#searchResults").text("Here List of products will be shown which are cost between " + min_price  +" "+ "and" + " "+ max_price + ".");
	});
	
	
	  $("#slider-range").slider({
		values: [10, 20]
	  });

});

 

	</script>
	
 <style>
  .Pay{
	  
	  font-size:17px !important;
  }
   .advdiv{
				min-height1:260px;
				background-color: #008ccf;
				padding: 10px;
			}
.lead { font-size: 1.5rem; font-weight: 300;background: linear-gradient(to right, #000000 0%, #000000 50%,#999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color:transparent; }

    /* Container styles */
    .container {
      width: 90%;
      max-width: 728px;
      margin: 50px auto;
      font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* range slider container */
    .range-slider {
      position: relative;
      width: 100%;
      height: 30px;
      
    }

    /* Slider track (the base line) */
    .slider-track {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 8px;
      background: #e0e0e0;
      transform: translateY(-50%);
      border-radius: 4px;
    }

    /* Colored range bar (between handles) */
    .slider-range {
      position: absolute;
      top: 50%;
      height: 8px;
      background: #008ccf;
      transform: translateY(-50%);
      border-radius: 4px;
    }

    /* Slider handles */
    .slider-handle {
      position: absolute;
      top: 50%;
      width: 24px;
      height: 24px;
      background: #008ccf;
      border: 2px solid #008ccf;
      border-radius: 50%;
      cursor: pointer;
      transform: translate(-50%, -50%);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      touch-action: none;
      z-index: 2;
    }

    /* Input fields styling */
    .inputs {
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }

    .input-group {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .input-group label {
      margin-bottom: 5px;
      font-weight: bold;
      color: #333;
    }

    .input-group input {
      width: 120px;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 16px;
    }
  </style>
	<style>
	body{
		background:#f0f7fc;
		font-family: "Open Sans", sans-serif !important;
	}
	::placeholder {
	  color: #9DA8B8;
	  opacity: 1; /* Firefox */
	}


	.price-range-field {
		width: 49%; 
	}
	.ui-slider-horizontal {
		width: 93% !important;
		margin-left: 9px;
	}
	.main{
		width:100%;
		height:100%;
	}
	.sidebar{
	width:26%;
	padding-left:5px;
	float:left;
	margin-top: 2%;
	}
	.content{
		float:left;
		width:74%;
		padding: 2%;
		font-size: 15px !important;
		padding-right:0px;
	}
	.contentpopup{
		float:left;
		 width1:42%; 
	}
	.contentpopupthanks{
		
		float:left;
		 width1:42%; 
	}
	.title{
		width:75%;float:left
	 
	}
	.location{
		width:25%;float:left

	}
	.contentpopupdesc{
		float:left;
		width:66%;
		padding: 25px;
		font-size: 20px !important;
	}
	.space{
		margin: auto; 
		width: 100%;
		min-height: 800px;
		 
	}
	.input {
		height: 2.5rem ;
		font-size: 20px;
		line-height: 22px;
		white-space: nowrap;
		display: inline-block;
		background-image: url('https://www.w3schools.com/Css/searchicon.png');
		background-position: 10px 10px; 
		background-repeat: no-repeat;
		border-radius: 6px;
		background-position: 96% 11px;
		width:100%;
		padding-left: 15px !important;
	}
	.attr{
		width:100%;
	}
		
	 
	.custom-select {
		position: relative;
		font-family: "Open Sans", sans-serif !important;

	}

	.custom-select select {
		display: none; /*hide original SELECT element:*/
	}

	.select-selected {
		background-color: white;
		font-weight:bold;

	}

	/*style the arrow inside the select element:*/
	.select-selected:after {
		position: absolute;
		content: "";
		top: 14px;
		right: 10px;
		width: 0;
		height: 0;
		border: 6px solid transparent;
		border-color: #063565 transparent transparent transparent;
	}

	/*point the arrow upwards when the select box is open (active):*/
	.select-selected.select-arrow-active:after {
		border-color: transparent transparent #fff transparent;
		top: 7px;
	}


	.select-items div,.select-selected {
		color: #063565;
		padding: 11px 17px; 
		cursor: pointer;
		user-select: none;
 font-size:15px !important;
	font-weight:bold  !important;;
		border-radius: 6px;
	}

	/*style items (options):*/
		.select-items {
		  position: absolute;
		  background-color: white;
		  top: 100%;
		  left: 0;
		  right: 0;
		  z-index: 99;
	}

	/*hide the items when the select box is closed:*/
	.select-hide {
		display: none;
	}

	.select-items div:hover, .same-as-selected {
		background-color: #F0F7FC;
		border-radius: 0px !important;
	}

	.addpadd{
		margin-top:15px;
	}
	.ui-slider-horizontal {
		margin-bottom: 15px;
		width: 100%;
	}
	.clr{color:#063565;}
		.ui-widget-header {
		background: #008ccf ;
	}

.job{
	width: 100%;
	  padding: 21px;
	  padding-bottom:60px;
	  background: white;
	 
	  border-radius: 8px;
	  margin-top:2%
	}
	.atag {
	  color: #063565;
	  font-weight: bold;
	  font-size: 22px;
	  text-decoration: none;
	  font-family: "Castoro", serif;
	}
	.atagcover {
	  color: #063565;
	  font-weight: bold;
	 
	  text-decoration: none;
	  font-family: "Castoro", serif;
	}
	.location {
	  color: #008CCF;
	  font-weight: bold;
	  font-size: 16px;
	  text-decoration: none;
	}
	.payrate {
	  color: #008CCF;
	  font-weight: bold;
	  font-size: 16px;
	  text-decoration: none;
	  font-family: "Open Sans", sans-serif;
	}
	
	.clr{ clear:both}
	.desc{
		color: #063565;
		color: #063565;
		padding-top:15px;
		font-size: 15px;
		font-family: "Open Sans", sans-serif;
		line-height: 22px;
	}
	.descover{
		color: #063565;
		color: #063565;
		padding-top:15px;
		 font-size: 16px;
		font-family: "Open Sans", sans-serif;
	}
	
	.descover ul li{
		color: #063565 !important;
	 
		padding-top:15px !important;
		 font-size: 16px !important;
		font-family: "Open Sans", sans-serif !important;
	}
			
	.btn1 {
		cursor: pointer;
		font-family: Lato;
		font-size:15px;
		text-align: center;
		background-color: #008ccf;
		color: WHITE;
		border-radius: 5px !important;
		line-height: 21px;
		padding: 8px 7px;
		text-decoration: none;
		width:100px;
		border: 1px solid #008ccf;
		font-weight: bold;
	}
	
	.btn112 {
		cursor: pointer;
		font-family: Lato;
		font-size:15px;
		text-align: center;
		background-color:white;
		color: #008ccf;
		border-radius: 5px !important;
		line-height: 21px;
		padding: 8px 7px;
		text-decoration: none; 
		 
		font-weight: bold;
	}
	
	.addpad{
		padding-top:15px;
	}
	.tooltiplink{ float:left;}
	.addleftmargin{margin-left:20px}

	.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {

		background:#008ccf;
		border-radius: 12px;
	}

	.price-range-field {
	  width: 47%;
	}

	.white_content1 {
		display: none;
		position: absolute;
		top: 2%;
		left: 0%;
		width: 99%;
		padding: 16px;
		background-color: darkgray;
		z-index: 1002;
		overflow: auto;
		color: white;
		height: 90%;
		border-radius: 6px;
	}
	.black_overlay {
		display: none;
		position: fixed;
		top: 0%;
		left: 0%;
		width: 100%;
		height: 100%;
		background-color: rgb(240, 247, 252);
		z-index: 1001;
		-moz-opacity: 0.8;
		opacity: 1;
		filter: alpha(opacity=80);
	}
	.lft{
		float:left
	}

	.lefthead {
		color: #063565;
		font-weight: bold; 
		text-decoration: none;
	}
	.addspace{
		margin-left:5px;
	}

	.addpadstep{
		margin-top: 57px;
	}
	.addpadstep1{
		margin-top: 27px;
	}

	.addspacestep{
		padding-top: 12px;
	}

	.addspacestep  input {
		background: #f0f7fc !important;
		font-size: unset !important;
		color:#063565  ;
		 border:0px;
	}

	.bld{
		font-weight: bold;
	}

	.pagination1  {
		float: right;
	}
	.pagination1 li a{
		color:#008ccf;
	}		
	.pagination1 li{
		list-style-type: none;
		float: left;
		padding-left: 20px;
		padding-right: 15px;
		border-radius:5px;
		background:white;
		border:1px solid #008ccf;
	    color:#008ccf;
	}
	
	.currentpage a{
		
	 
		color:white !important;
	}
	.currentpage{
		
		background:#008ccf !important;
		color:white !important;
	}
	li a {
		text-decoration: none;
		color: white;
	}
		 
	 
	.last{
		border-bottom-right-radius: 5px;
		border-top-right-radius: 5px;
	}
	.currentpage {

		background: #D3D3D3;
	}
	.loc_right{
		float:right;width: 100%;text-align: right;
	}
	.btn12{ float:right;}
	.small_rate{ display:none;}  
	.big_rate{  display:block; }
	
	@media only screen and (max-width: 1332px) {
		.contentpopup{
			float:left;
			width1:70%;


		}
		
		.contentpopupthanks{
			float:left;
			width1:70%;


		}
		
		
		
		
		
	}	
	@media only screen and (max-width: 1032px) {
		.rangep{
			
			 width:63% !important;;
		 }
	}
	 
	@media only screen and (max-width: 990px) {
		
		 .Pay {
			 
			 width:100% ;
			 Clear:both;
		 }
		 .rangep{
			 Clear:both;
			 width:100% !important;
		 }
		 #range{
			 text-align: left !important;
			 width:100% !important;
		 }
		 .advdiv {
			min-height1: 310px;
		 }
		 .space {
			padding-left: 5%;padding-right: 5%;
		 }
	}

	@media only screen and (max-width: 870px) {
		.advdiv1 {
			min-height: 330px;
		 }
	}
	@media only screen and (max-width: 820px) {
		.advdiv1 {
			min-height: 450px;
		 }
	}
	@media only screen and (max-width: 900px) {
		.btn11{ width:100%;clear:both;}
		.btn12{ width:100%;clear:both;float:unset;margin-top:5px}
	}
	@media only screen and (max-width: 710px) {
		
		.contentpopupdesc{
		float:left;
		width:89%;
		padding: 25px;
		font-size: 20px !important;
	}
	
		.jobboard{
			
			width:50% !important;
		}
			
	.addspacestep input {
			background: #f0f7fc !important;
			font-size: unset !important;
			color: #9DA8B8 !important;
			border: 0px;
			clear: both;
			padding: 0px;
			padding-left: 0px;
			margin: 0px !important;
			margin-top: 0px;
			width: 100% !important;
			margin-top: 10px !important;
		}
	}	
	 
	@media only screen and (max-width: 580px) {

		.advdiv1 {
			min-height: 224px;
		 }
		 
		.sidebar{
			width:100% !important;;
		}
		.content{
			width:100%;
			padding:0px;
		}
		.attr {
			width: 97% !important;
		}
		.contentpopup {
			width1: 82%;
			padding:8% !important;
		}
		
		.contentpopupthanks {
			width: 82% !important;;
			padding:8% !important;
		}
		
		.white_content1 {
			width: 92%;
		}
		.contentpopupdesc {

			width: 100%;
			padding:10px !important;
		}

		.buttond{

			width:100%;
		} 
		.rightdiv{ float:right;margin-right: 20px;}

		.small_rate{ display:block;} 
		.big_rate{  display:none; }

		.addspacestep input {
			background: #f0f7fc !important;
			font-size: unset !important;
			color: #063565 !important;
			border: 0px;
			clear: both;
			padding: 0px;
			padding-left: 0px;
			margin: 0px !important;
			margin-top: 0px;
			width: 100% !important;
			margin-top: 10px !important;
		} 

		.addpadstep .lefthead {
			margin-top:10px
		}

		 .title{
			 width:100%;Clear:both
			 
		 }
		 .location{
			 width:100%;Clear:both
			 
		 }
				 
		.loc_right{
			text-align: left;
			float:left;
			width: 100%;
			margin-top: 10px;
		} 

	}


 
@media only screen and (max-width: 584px) {
  
	.contentpopup {
		width1: 82%;
		padding:8% !important;
	}
	.contentpopupthanks {
		width: 82% !important;
		padding:8% !important;
	}
	
	.pagination1 {
		float: left;
		margin: 0;
		padding: 0;
	}

	#thanks_light1 div div .contentpopup {
		
		width:90% !important;
	}
}
@media only screen and (max-width: 334px) {
   .advdiv1{
		min-height:380px;
		background-color: #008ccf;
		padding: 10px;
	}
}

[class^="ico-"], [class*=" ico-"] {
  font: normal 1em/1 Arial, sans-serif;
  display: inline-block;
}

.ico-times::before { content: "\2716"; }
	</style>
	
<script>
	function show(id){
	
	document.getElementById('light1'+id).style.display='block';
	document.getElementById('fade').style.display='block';
	}
	function hideshow(id){
	 
		id= document.getElementById('PostId').value
	document.getElementById('light1'+id).style.display='none';
	document.getElementById('fade').style.display='none';
	}
	
	function showapply(id){
		hideshow(id)

		document.getElementById('applytitle').innerHTML=document.getElementById('title_'+id).value
		document.getElementById('appliedtitle').innerHTML=document.getElementById('title_'+id).value

		document.getElementById('first_light1').style.display='block';
		document.getElementById('fade').style.display='block';
	}
	
	function hideapply(){
	 
	document.getElementById('first_light1').style.display='none';
	document.getElementById('fade').style.display='none';
	}
	
	function showthanks(){
	hideapply()
	document.getElementById('thanks_light1').style.display='block';
	document.getElementById('fade').style.display='block';
	}
	
	function applyjob(){
		 
	
		
		
	}
</script>
	<div id="fade" class="black_overlay" style="display: none;"></div>
	
	<!-- Thanks --->
	<div id="thanks_light1" class="white_content1" style="position: fixed;  background: white; display: none;background: #f0f7fc;"> 
		  <div style="clear:both"> 
			 
				 
				<div class="clr">
					<div class="sidebar">
						<h1  class='jobboardfont'style="color: #063565;cursor:pointer" onclick="document.getElementById('thanks_light1').style.display='none';document.getElementById('fade').style.display='none'"> <span  > &#8592;</span> Job Board</h1>
						
						 
						
					</div>	
					<div class="contentpopupthanks" style="background:white;border-radius:6px;width:47%;padding:50px">
					
					   <div class="head clr">  
							<div style="width:100%;padding-top:10px" class="clr">
								<div class="atag" href="#" style="text-align:center;font-size: 30px !important;">Thank you!</div>
							</div>
							<div class="clr addpadstep" style="padding-bottom:51px;">
								<div class="lefthead lft" style="font-size: 21px;text-align: center;">
								Thank you for applying for the <span style="color:#008ccf;" id='appliedtitle'>Pool Route Technician</span>
position. We will get in touch with you.
								</div>
								 
							</div> 
						</div>
						
					</div>
				</div>
		  </div>
	</div>
		 
	<!--- --->	 
	
	<style>
	.ui-widget.ui-widget-content {
  border: 1px solid #E1E5ED;
  background: #E1E5ED;
}

.samefont1{
	 
 
	font-family:  sans serif;
}


.samefont{
	font-size:15px !important;
	font-weight:bold  !important;;
	 
}
h1{
	
	font-family: "Castoro", serif;
}
 .jobboardfont{
	 font-size: 25px  !important;
 }
 
 li{
	 list-style-type: none;
 }
	</style>
	<!-- Destails --->
	<div id="first_light1" class="white_content1" style="position: fixed;  background: white; display: none;background: #f0f7fc;"> 
		  <div style="clear:both"> 
			 
				 
				<div class="clr">
					<div class="sidebar jobboard">
						<h1 class='jobboardfont' style="color: #063565;cursor:pointer;font-size: 27px;"  onclick="document.getElementById('first_light1').style.display='none';document.getElementById('fade').style.display='none'"><span  > &#8592;</span> Job Board</h1>
						
						<i onclick="document.getElementById('first_light1').style.display='none';document.getElementById('fade').style.display='none'" style="display:none;position: absolute;right: 2%;text-align: 0;top: 1%;/*! margin-left: 2%; */font-size: 36px;cursor:pointer" class="ico-times" role="img" aria-label="Cancel"></i>
					</div>	
					<div class="contentpopup" style="background:white;border-radius:6px;padding:50px;padding-top: 0px;padding-bottom: 1px;">
						<form  method="post" id="sform" enctype="multipart/form-data">
					   <div class="head clr">  
							<div style="width:100%;padding-top:10px" class="clr">
								<h1 style="color: #063565;cursor:pointer"  >Apply Now</h1>
						 		
								 <span style="display:none" id="applytitle">  </span>
							</div>
							<div class="clr addpadstep1"> 
								<div class="lefthead lft">
							    	Is this your first time applying with<span id="applytisdstle"> O2 Employment Services</span>?<span style="color:red">*</span> 
								</div>
								<div class=" clr addspacestep"  >
									 <input type="radio" name="optoin" checked  value='1' onclick="document.getElementById('nooptoin').style.display='block'" style="width: unset !important;"> Yes  <input style="width: unset !important;" type="radio" name="optoin" value='0' onclick="document.getElementById('nooptoin').style.display='none'"> No
								</div>
							</div>
							<div class="clr addpadstep1">
								<div class="lefthead lft">
									Your Name:<span style="color:red">*</span>
								</div>
								<div class=" clr addspacestep"  >
									<input type="text"  id="firstname"   name="firstname" class="input" style="float:left;width: 230px;background: none;padding-left: 7px;border-bottom: ;border-radius: 20px;">
									
									<input type="text"    id="lastname" name="lastname" class="input" style="float:left;width: 230px;background: none;padding-left: 7px;border-bottom: ;border-radius: 20px;;margin-left:20px">
								</div>
							</div>
							<div class="clr addpadstep">
								<div class="lefthead lft">
									Phone Number:<span style="color:red">*</span>
								</div>
								<div class=" clr addspacestep"  >
									<input type="tel"   maxlength ="12" id="phone" name="phone" onkeypress="formatNumber(this.value)" class="input" style="float:left;width: 479px;background: none;padding-left: 7px;border-bottom: ;border-radius: 20px;"  pattern="[0-9]{3}-[0-9]{2}-[0-9]{3}" required>
									 
								</div>
							</div>
							<div class="clr addpadstep">
								<div class="lefthead lft">
									Email Address:<span style="color:red">*</span>
								</div>
								<div class=" clr addspacestep"  >
									<input type="text"   id="email" name='email' class="input" style="float:left;width: 479px;background: none;padding-left: 7px;border-bottom: ;border-radius: 20px;">
									 
								</div>
							</div>
							<span id="nooptoin">
							<div class="clr addpadstep">
								<div class="lefthead lft">
									Address:<span style="color:red">*</span>
								</div>
								<div class=" clr addspacestep"  >
									<input type="text" placeholder="Street Address"  id="street" name='street' class="input" style="float:left;width: 230px;background: none;padding-left: 15px;border-bottom: ;border-radius: 20px;">
									
									<input type="text" placeholder="City" class="input"  id="city" name='city' style="float:left;width: 230px;background: none;padding-left: 15px;border-bottom: ;border-radius: 20px;;margin-left:20px">
								</div>
								<div class=" clr addspacestep"  >
									<input type="text" placeholder="State" class="input"  id="state" name='state' style="float:left;width: 230px;background: none;padding-left: 15px;border-bottom: ;border-radius: 20px;">
									
									<input type="text" placeholder="Zip" class="input"  id="zip" name='zip' style="float:left;width: 230px;background: none;padding-left: 15px;border-bottom: ;border-radius: 20px;;margin-left:20px">
								</div>
							</div>
							
							<div class="clr addpadstep" style="display:none">
								<div class="lefthead lft">
									Last 6 SSN<span style="color:red">*</span>:
								</div>
								<div class=" clr addspacestep"  >
									<input type="text" placeholder="######"  id="ssn"  name='ssn' class="input" style="float:left;width: 230px;background: none;padding-left: 7px;border-bottom: ;border-radius: 20px;">
									
									 
								</div>
								
							</div>
							<div class="clr addpadstep">
								<div class=" clr addspacestep big_rate"  >
									 
									<div class="big_rate" style="float:left;font-weight:bold;width:50%;text-align: center;font-size: 12px;"> 
										 
										Accepted only: DOC , DOCX  <br/>  PDF Upload Resume
										 
										
									</div>
									
									 <div class="big_rate" style=" float:left;font-weight:bold;width:50%;text-align: center;font-size: 12px;">
									 
										Accepted only: DOC , DOCX  <br/>  PDF Upload Resume
									</div>
									
									 
									
								</div>
								<div class=" clr addspacestep"  >
									 
									 <div class=" clr addspacestep  small_rate"  >
									 
										<div class="" style="float:left;font-weight:bold;width:100%;text-align: center;padding-top: 2%;padding-bottom: 2%;font-size: 12px;"> 
											Accepted only: DOC , DOCX  <br/>  PDF Upload Resume
										</div>
										
										 
									</div> 
									
									<input type="file" id="file1" placeholder="Upload Resume" name="resume" class="input" style="float:left;width: 230px;background: none;padding-left: 14px;border-radius: 20px;padding-top: 8px;">
									 
									 
									<div class=" clr addspacestep  small_rate"  >
									 
										<div class="" style="float:left;font-weight:bold;width:100%;text-align: center;padding-top: 2%;padding-bottom: 2%;font-size: 12px;"> 
											Accepted only: DOC , DOCX  <br/>  PDF Upload Resume
										</div>
										
										 
									</div> 
								 
									<input type="file" id="file2" placeholder="Upload Documents"  name="dacumentfile" class="input" style="float:left;width: 230px;background: none;padding-left: 14px;border-radius: 20px;padding-top: 8px;;margin-left:20px">
									 
								</div>
								
								 
							</div>
							</span>
							<div class="clr addpadstep">	</div>
							<div class="clr addpadstep">
								<div class="  lft" >
									Please review our <span style='color:#008cd1;cursor:pointer' onclick="window.top.location.href ='https://o2employmentservices.com/privacy-policy/'">data privacy policy</span>.
								</div>
								  
							</div>
							 
							 <input type="hidden" id="job_apply" name="job_apply" value="">	 
							<input type="hidden" id="PostId" name="PostId" value="">	 
							
							<div class="clr " style="height:10px">	</div>
							<div class="clr " style="height:10px">	</div>
							
							<div class="  clr" style1="padding-bottom:40px;padding-top:10px">
							
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink"  id="uploadForm" onclick1="applyjob()">Submit</div>
								
								
	  
								</div>
								
								  <img id="loader"  src="https://upload.wikimedia.org/wikipedia/commons/c/c7/Loading_2.gif" style='margin-left: 50px;float:left;display:none' height="40px">
							</div>
						
							<div class="clr " style="height:10px">	</div>
							<div class="clr " style="height:10px">	</div>
							<div class="clr " style="height:10px">	</div>
						</div>
						</form>
					</div>
				</div>
		  </div>
	</div>
		 
	<!--- --->	 
		 
	 
	<!--- --->	 
		 
	
	
	<div class="main">
		 
		<h1  class='jobboardfont'style="color: #063565;cursor:pointer;text-align: center;height: 70px;font-size: 32px !important;">Job Board</h1>
		
		<div class="space">
		
			<div class="sidebar">
			<form method="get">
				<h2 style="color: #063565;font-size: 22px;">Refine Your Search</h2>
				 
				
				<div class="attr addpadd">  
					 
<input type="text" class="allclo headertxt clr input samefont" style="border:1px solid #cbcbcb "  onclick="this.value='';" id="keyword" name="keyword" value="Search"  > 
				</div>
				
				 
				<!--		
				<div class="attr addpadd"> 
					
					<div class="custom-select clr"  >
						
					  <select name="category">
						<option value="0">All Categories</option>					
															<option value="General" >General</option>
														  </select>
					</div> 
				</div>-->
				
				<div class="attr addpadd"> 
					<div class="custom-select"  >
					  <select name="location" class="samefont">
						<option value="0">All Locations</option>
															<option value="Shingletown" >Shingletown</option>
																		<option value="Redding" >Redding</option>
																		<option value="Bella Vista" >Bella Vista</option>
																		<option value="Mt.Shasta" >Mt.Shasta</option>
																		<option value="Yreka" >Yreka</option>
																		<option value="Round Mountain" >Round Mountain</option>
																		<option value="Palo Cedro" >Palo Cedro</option>
																		<option value="Anderson" >Anderson</option>
																		<option value="Red Bluff" >Red Bluff</option>
																		<option value="Enterprise" >Enterprise</option>
																		<option value="Cottonwood" >Cottonwood</option>
																		<option value="Whiskeytown" >Whiskeytown</option>
																		<option value="Shasta Lake" >Shasta Lake</option>
																		<option value="Millville" >Millville</option>
																		<option value="Roseville" >Roseville</option>
																		<option value="Corning" >Corning</option>
																		<option value="Chico" >Chico</option>
																		<option value="Eureka" >Eureka</option>
																		<option value="Eurkea" >Eurkea</option>
														  </select>
					</div> 
				</div>
				<div class="attr addpadd" style="display:none"> 
					<div class="custom-select"  >
				 
					  <select name="jobtype" class="samefont">
						<option value="0">All Job Types</option>
															<option value="Permanent" >Permanent</option>
																		<option value="Contract To Perm" >Contract To Perm</option>
																		<option value="Contract" >Contract</option>
														  </select>
					</div> 
				</div>
				<style>
				.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 168px;
  background-color: #f0f7fc;
  color: #063565;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -94px;
  opacity: 0;
  transition: opacity 0.3s;border: 2px solid #E1E5ED;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
				</style>
				<div class="attr addpadd" style="background: white;padding: 10px;border-radius: 6px;width: 100%;">

					<div>
						<div style="float:left;color: #063565; font-weight:bold;"  class="Pay samefont" >
							Pay Range 
							 
							
						</div>
						<div class="rangep" style="float:right;width:40%">
						<div   style="width:65%;float: right;text-align:right;color: #063565;font-weight: bold;" id="range">
							 
						</div>

						<div  style="display:none">
							  <input type="number" min=0 max="100"  oninput="validity.valid||(value='0');" id="min_price" name="min_price" class="price-range-field" />
							  <input type="number" min=0 max="200"  value="200" oninput="validity.valid||(value='100');" id="max_price" name="max_price" class="price-range-field" />
							</div>
						</div>
					
					</div>
					<div style="clear:both;height:15px;"></div>
					 
					  <!-- Slider Container -->
						<div class="range-slider">
						  <!-- Slider Track (background line) -->
						  <div class="slider-track"></div>
						  <!-- Colored Range Bar between the handles -->
						  <div class="slider-range"></div>
						  <!-- Handle for minimum value -->
						  <div class="slider-handle handle-min" data-type="min"></div>
						  <!-- Handle for maximum value -->
						  <div class="slider-handle handle-max" data-type="max"></div>
						</div>
						 
	
	
				</div>
				
				
				
				<div class="attr" style="padding-top: 10px;border-radius: 6px;width: 100%;padding-bottom: 53px;">
				<input type="submit" name="Search"   value="Search" class="btn1 tooltiplink btn11" onclick=""> 
				
				<input type="button" name="Clear"   value="Clear" class="btn1 tooltiplink btn12" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board'"> 
				 
				</form>
			</div>	
			 
				<div class="advdiv" style="border-radius: 20px;padding: 30px;" > 
					 
					<div style="color: white;font-size:25px;line-height: 25px;"  class="samefont1" >
					
						Can't find what you are looking for?
						 
						
					</div>
					<div style="color: white;padding-top: 20px;line-height: 25px;"  class="samefont1" >
						
							Submit Your resume and we'll match you with the right employer
							 
							
					</div>
					
					<div style="color: white;padding-top: 20px;"  class="samefont1" >
					
						<a href="https://hire.myavionte.com/sonar/v2/careers/integrations/standalone/general?bId=SdRgE7dXUts&jbId=AeA2F76ugfA&rpid=general" target="_blank" class="btn112 tooltiplink1"    >Submit Resume &rarr; </a>
					
					</div>	
				</div>
				
			</div>
			
			<div class="content" >
			     <!-- --->       
				 				<div class="job">
				<input type="hidden" id="jobid_AM161526515" value="AM161526515">
						<input type="hidden" id="title_1624954" value="Outreach Case Manager In Eureka, CA">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/outreach-case-manager-in-eureka-ca/">Outreach Case Manager In Eureka, CA</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Eureka, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is working with a local non-profit organization to find an Outreach Case Manager. This is a full-time position located in Eureka, CA.Outreach Case Manager &ndash; Compensation &amp; Benefits&bull; $22.00 - $26.00 per hour, depe ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$22 - $26																			</div>
							</div>
						</div>
							
						<div class="addpad clr">
						
							<div style="float:left" class="buttond">
							<div   onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/outreach-case-manager-in-eureka-ca/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1624954';showapply('1624954');document.getElementById('job_apply').value='AM161526515';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/outreach-case-manager-in-eureka-ca/'" onclick1="document.getElementById('PostId').value='1624954';show('1624954');document.getElementById('job_apply').value='AM161526515'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$22 - $26																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11624954" class="white_content1" style="position: fixed;  background: white; display: none;background: #f0f7fc;"> 
		  <div style="clear:both"> 
			 
				 
				<div class="clr">
					<div class="sidebar jobboard" style1="width:16%;">
						<h1 class='jobboardfont' style="color: #063565;cursor:pointer" onclick="document.getElementById('light11624954').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11624954').style.display='none';document.getElementById('fade').style.display='none'"   style="display:none;position: absolute;right: 2%;text-align: 0;top: 1%;/*! margin-left: 2%; */font-size: 36px;cursor:pointer" class="ico-times" role="img" aria-label="Cancel"></i>
						
					</div>	
					<div class="contentpopupdesc" style="background:white;border-radius:6px;">
					
					   <div class="head clr">  
							<div style="width:100%;padding-top:10px" class="clr">
								<a class="atagcover" href="#"><h1 style="padding-top: 0px;margin-top: 0px;">Outreach Case Manager In Eureka, CA</h1></a>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Location :
								</div>
								<div class=" lft addspace"  >
									Eureka, CA 
								</div>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Pay Range :
								</div>
								<div class=" lft addspace"  >
									 $22 - $26 per hour
								</div>
							</div>
							<div class="clr addpad">
								 <div class="descover clr">  
										
										 <div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is working with a local non-profit organization to find an Outreach Case Manager. This is a full-time position located in Eureka, CA.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></strong></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Outreach Case Manager &ndash; Compensation &amp; Benefits</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; $22.00 - $26.00 per hour, depending on experience</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Full-time position</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Vision, dental, and medical insurance offered through O2 Employment Services</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Opportunity to work in a meaningful, community-focused role helping underserved populations throughout the North State</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Outreach Case Manager &ndash; Qualifications</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">High school diploma or equivalent required</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Associate&rsquo;s degree in Social Work, Human Services, or related field preferred</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Previous experience in community services, case management, outreach, housing navigation, or related field preferred</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Familiarity with HIPAA, Title 42, billing processes, and documentation standards preferred</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong interpersonal and communication skills</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Excellent organizational and time-management abilities</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Proficient with Microsoft Office and client management software</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to work effectively with diverse populations in challenging environments</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Must have a clean DMV record and be insurable through company auto insurance provider</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to maintain professionalism and composure in high-stress situations</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Outreach Case Manager &ndash; Responsibilities</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Conduct client intake interviews to determine eligibility for ECM and Community Support services</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Assist clients with enrollment paperwork and provide education regarding available programs and services</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Maintain accurate client documentation and ensure compliance with HIPAA and confidentiality standards</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Track client outcomes, quality performance indicators, and program effectiveness</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Participate in HMIS data entry, assessments, housing screenings, and case documentation</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Assist clients with housing navigation, applications, eligibility verification, and obtaining required documentation</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Coordinate with landlords, housing providers, healthcare systems, emergency personnel, and community organizations</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Conduct outreach in rural, urban, and encampment settings to engage underserved populations</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Build rapport with clients using trauma-informed care principles</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Support clients experiencing housing instability, substance use disorders, mental health crises, and other barriers to care</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Attend meetings and collaborate with internal departments and external agencies to support coordinated care efforts</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Respond appropriately to crisis situations while maintaining professional boundaries and safety protocols</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Other duties as assigned</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Outreach Case Manager &ndash; Work Environment</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Extensive field-based work and community outreach</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Outdoor work in varying weather and environmental conditions</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Frequent interaction with individuals experiencing homelessness, mental health conditions, substance use disorders, and crisis situations</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Collaboration with healthcare providers, emergency response personnel, housing providers, and community partners</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1624954')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AM936064515" value="AM936064515">
						<input type="hidden" id="title_1624956" value="Outreach Case Manager in Chico, CA">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/outreach-case-manager-in-chico-ca/">Outreach Case Manager in Chico, CA</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Chico, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is working with a local non-profit organization to find an Outreach Case Manager. This is a full-time position located in Chico, CA.Outreach Case Manager &ndash; Compensation &amp; Benefits&bull; $22.00 - $26.00 per hour, depen ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$22 - $26																			</div>
							</div>
						</div>
							
						<div class="addpad clr">
						
							<div style="float:left" class="buttond">
							<div   onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/outreach-case-manager-in-chico-ca/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1624956';showapply('1624956');document.getElementById('job_apply').value='AM936064515';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/outreach-case-manager-in-chico-ca/'" onclick1="document.getElementById('PostId').value='1624956';show('1624956');document.getElementById('job_apply').value='AM936064515'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$22 - $26																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11624956" class="white_content1" style="position: fixed;  background: white; display: none;background: #f0f7fc;"> 
		  <div style="clear:both"> 
			 
				 
				<div class="clr">
					<div class="sidebar jobboard" style1="width:16%;">
						<h1 class='jobboardfont' style="color: #063565;cursor:pointer" onclick="document.getElementById('light11624956').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11624956').style.display='none';document.getElementById('fade').style.display='none'"   style="display:none;position: absolute;right: 2%;text-align: 0;top: 1%;/*! margin-left: 2%; */font-size: 36px;cursor:pointer" class="ico-times" role="img" aria-label="Cancel"></i>
						
					</div>	
					<div class="contentpopupdesc" style="background:white;border-radius:6px;">
					
					   <div class="head clr">  
							<div style="width:100%;padding-top:10px" class="clr">
								<a class="atagcover" href="#"><h1 style="padding-top: 0px;margin-top: 0px;">Outreach Case Manager in Chico, CA</h1></a>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Location :
								</div>
								<div class=" lft addspace"  >
									Chico, CA 
								</div>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Pay Range :
								</div>
								<div class=" lft addspace"  >
									 $22 - $26 per hour
								</div>
							</div>
							<div class="clr addpad">
								 <div class="descover clr">  
										
										 <div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is working with a local non-profit organization to find an Outreach Case Manager. This is a full-time position located in Chico, CA.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></strong></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Outreach Case Manager &ndash; Compensation &amp; Benefits</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; $22.00 - $26.00 per hour, depending on experience</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Full-time position</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Vision, dental, and medical insurance offered through O2 Employment Services</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Opportunity to work in a meaningful, community-focused role helping underserved populations throughout the North State</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Outreach Case Manager &ndash; Qualifications</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">High school diploma or equivalent required</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Associate&rsquo;s degree in Social Work, Human Services, or related field preferred</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Previous experience in community services, case management, outreach, housing navigation, or related field preferred</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Familiarity with HIPAA, Title 42, billing processes, and documentation standards preferred</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong interpersonal and communication skills</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Excellent organizational and time-management abilities</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Proficient with Microsoft Office and client management software</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to work effectively with diverse populations in challenging environments</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Must have a clean DMV record and be insurable through company auto insurance provider</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to maintain professionalism and composure in high-stress situations</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Outreach Case Manager &ndash; Responsibilities</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Conduct client intake interviews to determine eligibility for ECM and Community Support services</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Assist clients with enrollment paperwork and provide education regarding available programs and services</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Maintain accurate client documentation and ensure compliance with HIPAA and confidentiality standards</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Track client outcomes, quality performance indicators, and program effectiveness</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Participate in HMIS data entry, assessments, housing screenings, and case documentation</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Assist clients with housing navigation, applications, eligibility verification, and obtaining required documentation</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Coordinate with landlords, housing providers, healthcare systems, emergency personnel, and community organizations</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Conduct outreach in rural, urban, and encampment settings to engage underserved populations</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Build rapport with clients using trauma-informed care principles</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Support clients experiencing housing instability, substance use disorders, mental health crises, and other barriers to care</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Attend meetings and collaborate with internal departments and external agencies to support coordinated care efforts</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Respond appropriately to crisis situations while maintaining professional boundaries and safety protocols</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Other duties as assigned</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Outreach Case Manager &ndash; Work Environment</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Extensive field-based work and community outreach</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Outdoor work in varying weather and environmental conditions</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Frequent interaction with individuals experiencing homelessness, mental health conditions, substance use disorders, and crisis situations</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Collaboration with healthcare providers, emergency response personnel, housing providers, and community partners</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1624956')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AM565230515" value="AM565230515">
						<input type="hidden" id="title_1624958" value="Housing Transition Navigator in Eureka, CA">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/housing-transition-navigator-in-eureka-ca/">Housing Transition Navigator in Eureka, CA</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Eurkea, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is working with a local non-profit organization to find their next Housing Transition Navigator. This position is based in Eureka, CA.The ideal candidate will have a passion for helping individuals experiencing homelessness or  ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$22 - $26																			</div>
							</div>
						</div>
							
						<div class="addpad clr">
						
							<div style="float:left" class="buttond">
							<div   onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/housing-transition-navigator-in-eureka-ca/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1624958';showapply('1624958');document.getElementById('job_apply').value='AM565230515';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/housing-transition-navigator-in-eureka-ca/'" onclick1="document.getElementById('PostId').value='1624958';show('1624958');document.getElementById('job_apply').value='AM565230515'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$22 - $26																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11624958" class="white_content1" style="position: fixed;  background: white; display: none;background: #f0f7fc;"> 
		  <div style="clear:both"> 
			 
				 
				<div class="clr">
					<div class="sidebar jobboard" style1="width:16%;">
						<h1 class='jobboardfont' style="color: #063565;cursor:pointer" onclick="document.getElementById('light11624958').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11624958').style.display='none';document.getElementById('fade').style.display='none'"   style="display:none;position: absolute;right: 2%;text-align: 0;top: 1%;/*! margin-left: 2%; */font-size: 36px;cursor:pointer" class="ico-times" role="img" aria-label="Cancel"></i>
						
					</div>	
					<div class="contentpopupdesc" style="background:white;border-radius:6px;">
					
					   <div class="head clr">  
							<div style="width:100%;padding-top:10px" class="clr">
								<a class="atagcover" href="#"><h1 style="padding-top: 0px;margin-top: 0px;">Housing Transition Navigator in Eureka, CA</h1></a>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Location :
								</div>
								<div class=" lft addspace"  >
									Eurkea, CA 
								</div>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Pay Range :
								</div>
								<div class=" lft addspace"  >
									 $22 - $26 per hour
								</div>
							</div>
							<div class="clr addpad">
								 <div class="descover clr">  
										
										 <div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is working with a local non-profit organization to find their next Housing Transition Navigator. This position is based in Eureka, CA.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">The ideal candidate will have a passion for helping individuals experiencing homelessness or housing instability while providing compassionate, trauma-informed support and housing navigation services.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></strong></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Housing Transition Navigator Compensation:</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">$22.00 - $26.00 per hour, depending on experience</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Full-time position</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Dental, vision, medical, life insurance, and 401(k) benefits available</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Opportunity to make a direct impact within the local community</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Housing Transition Navigator Qualifications:</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">High School Diploma or GED required</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Associate degree in Human Services, Social Work, or related field preferred</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Minimum of 1 year of experience in housing navigation, case management, or related field preferred</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Familiarity with homelessness services, housing resources, HUD, Section 8, or community support programs preferred</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong organizational and documentation skills</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Excellent interpersonal and communication abilities</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to work effectively with diverse populations in challenging situations</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Valid California driver&rsquo;s license and reliable transportation required</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Must maintain a clean DMV record and be insurable through company auto insurance provider</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Housing Transition Navigator Responsibilities:</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Conduct housing readiness assessments and assist clients with individualized housing support plans</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Build rapport with clients using trauma-informed and culturally sensitive care approaches</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Assist clients with obtaining required documentation including identification, Social Security cards, and income verification</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Support clients with housing applications, HUD and Section 8 applications, and housing voucher programs</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Coordinate housing appointments, tours, and follow-up support for clients</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Educate clients on tenant rights, budgeting, and landlord communication</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Collaborate with ECM Case Managers, housing authorities, legal aid organizations, and community partners</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Maintain organized client files and accurate documentation</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Track housing progress, barriers, referrals, and outcomes</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Participate in meetings and coordinate care with internal and external stakeholders</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Other duties as assigned</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Housing Transition Navigator Work Environment:</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Combination of office and community-based work settings</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Frequent interaction with individuals experiencing homelessness, housing instability, mental health challenges, or substance use disorders</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Exposure to emotionally charged or high-stress situations may occur</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Regular communication with community agencies, housing providers, and support organizations</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1624958')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AM664536515" value="AM664536515">
						<input type="hidden" id="title_1624959" value="Housing Transition Navigator in Chico, CA">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/housing-transition-navigator-in-chico-ca/">Housing Transition Navigator in Chico, CA</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Chico, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is working with a local non-profit organization to find their next Housing Transition Navigator. This position is based in Redding, CA.The ideal candidate will have a passion for helping individuals experiencing homelessness or ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$22 - $26																			</div>
							</div>
						</div>
							
						<div class="addpad clr">
						
							<div style="float:left" class="buttond">
							<div   onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/housing-transition-navigator-in-chico-ca/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1624959';showapply('1624959');document.getElementById('job_apply').value='AM664536515';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/housing-transition-navigator-in-chico-ca/'" onclick1="document.getElementById('PostId').value='1624959';show('1624959');document.getElementById('job_apply').value='AM664536515'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$22 - $26																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11624959" class="white_content1" style="position: fixed;  background: white; display: none;background: #f0f7fc;"> 
		  <div style="clear:both"> 
			 
				 
				<div class="clr">
					<div class="sidebar jobboard" style1="width:16%;">
						<h1 class='jobboardfont' style="color: #063565;cursor:pointer" onclick="document.getElementById('light11624959').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11624959').style.display='none';document.getElementById('fade').style.display='none'"   style="display:none;position: absolute;right: 2%;text-align: 0;top: 1%;/*! margin-left: 2%; */font-size: 36px;cursor:pointer" class="ico-times" role="img" aria-label="Cancel"></i>
						
					</div>	
					<div class="contentpopupdesc" style="background:white;border-radius:6px;">
					
					   <div class="head clr">  
							<div style="width:100%;padding-top:10px" class="clr">
								<a class="atagcover" href="#"><h1 style="padding-top: 0px;margin-top: 0px;">Housing Transition Navigator in Chico, CA</h1></a>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Location :
								</div>
								<div class=" lft addspace"  >
									Chico, CA 
								</div>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Pay Range :
								</div>
								<div class=" lft addspace"  >
									 $22 - $26 per hour
								</div>
							</div>
							<div class="clr addpad">
								 <div class="descover clr">  
										
										 <div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is working with a local non-profit organization to find their next Housing Transition Navigator. This position is based in Redding, CA.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">The ideal candidate will have a passion for helping individuals experiencing homelessness or housing instability while providing compassionate, trauma-informed support and housing navigation services.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Housing Transition Navigator Compensation:</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">$22.00 - $26.00 per hour, depending on experience</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Full-time position</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Dental, vision, medical, life insurance, and 401(k) benefits available</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Opportunity to make a direct impact within the local community</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Housing Transition Navigator Qualifications:</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">High School Diploma or GED required</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Associate degree in Human Services, Social Work, or related field preferred</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Minimum of 1 year of experience in housing navigation, case management, or related field preferred</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Familiarity with homelessness services, housing resources, HUD, Section 8, or community support programs preferred</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong organizational and documentation skills</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Excellent interpersonal and communication abilities</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to work effectively with diverse populations in challenging situations</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Valid California driver&rsquo;s license and reliable transportation required</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Must maintain a clean DMV record and be insurable through company auto insurance provider</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Housing Transition Navigator Responsibilities:</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Conduct housing readiness assessments and assist clients with individualized housing support plans</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Build rapport with clients using trauma-informed and culturally sensitive care approaches</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Assist clients with obtaining required documentation including identification, Social Security cards, and income verification</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Support clients with housing applications, HUD and Section 8 applications, and housing voucher programs</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Coordinate housing appointments, tours, and follow-up support for clients</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Educate clients on tenant rights, budgeting, and landlord communication</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Collaborate with ECM Case Managers, housing authorities, legal aid organizations, and community partners</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Maintain organized client files and accurate documentation</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Track housing progress, barriers, referrals, and outcomes</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Participate in meetings and coordinate care with internal and external stakeholders</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Other duties as assigned</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Housing Transition Navigator Work Environment:</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Combination of office and community-based work settings</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Frequent interaction with individuals experiencing homelessness, housing instability, mental health challenges, or substance use disorders</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Exposure to emotionally charged or high-stress situations may occur</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Regular communication with community agencies, housing providers, and support organizations</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1624959')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF451036514" value="AF451036514">
						<input type="hidden" id="title_1624314" value="Human Resources Coordinator">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/human-resources-coordinator-3/">Human Resources Coordinator</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Anderson, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is working with a reputable company in the manufacturing industry to find their next Human Resource Coordinator. This is a full-time position based in Redding, CA.We are seeking a dedicated, organized, and proactive Human Resou ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$25 - $33																			</div>
							</div>
						</div>
							
						<div class="addpad clr">
						
							<div style="float:left" class="buttond">
							<div   onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/human-resources-coordinator-3/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1624314';showapply('1624314');document.getElementById('job_apply').value='AF451036514';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/human-resources-coordinator-3/'" onclick1="document.getElementById('PostId').value='1624314';show('1624314');document.getElementById('job_apply').value='AF451036514'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$25 - $33																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11624314" class="white_content1" style="position: fixed;  background: white; display: none;background: #f0f7fc;"> 
		  <div style="clear:both"> 
			 
				 
				<div class="clr">
					<div class="sidebar jobboard" style1="width:16%;">
						<h1 class='jobboardfont' style="color: #063565;cursor:pointer" onclick="document.getElementById('light11624314').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11624314').style.display='none';document.getElementById('fade').style.display='none'"   style="display:none;position: absolute;right: 2%;text-align: 0;top: 1%;/*! margin-left: 2%; */font-size: 36px;cursor:pointer" class="ico-times" role="img" aria-label="Cancel"></i>
						
					</div>	
					<div class="contentpopupdesc" style="background:white;border-radius:6px;">
					
					   <div class="head clr">  
							<div style="width:100%;padding-top:10px" class="clr">
								<a class="atagcover" href="#"><h1 style="padding-top: 0px;margin-top: 0px;">Human Resources Coordinator</h1></a>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Location :
								</div>
								<div class=" lft addspace"  >
									Anderson, CA 
								</div>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Pay Range :
								</div>
								<div class=" lft addspace"  >
									 $25 - $33 per hour
								</div>
							</div>
							<div class="clr addpad">
								 <div class="descover clr">  
										
										 <div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px;" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; box-sizing: border-box;">O2 Employment Services is working with a reputable company in the manufacturing industry to find their next Human Resource Coordinator. This is a full-time position based in Redding, CA.</span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 12px;" style="font-size: 12px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">We are seeking a dedicated, organized, and proactive Human Resource Coordinator to support daily HR operations and employee relations within a fast-paced manufacturing environment. This role will be responsible for a wide range of HR and administrative functions including onboarding, safety coordination, leave tracking, employee support, and timecard management. The ideal candidate will have foundational HR knowledge, strong communication skills, and the ability to confidently interact with employees at all levels.</span></span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 12px;" style="font-size: 12px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></span></span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 12px;" style="font-size: 12px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Human Resource Coordinator Compensation:</span></span></div><ul data-end="1247" data-start="913" fr-original-style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;' style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; box-sizing: border-box; margin-top: 0px; margin-bottom: 10px;'><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">$25 - $33 per hour</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Vision, dental, and medical insurance offered through O2 Employment Services</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Company perks</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Opportunity for company-sponsored HR certifications for the right candidate</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 12px;" style="font-size: 12px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Human Resource Coordinator Qualifications:</span></span></div><ul data-end="2047" data-start="1296" fr-original-style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;' style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; box-sizing: border-box; margin-top: 0px; margin-bottom: 10px;'><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Basic knowledge of human resources principles and best practices</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Familiarity with OSHA regulations, workplace safety procedures, and workers&rsquo; compensation processes</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Comfortable working within a manufacturing environment</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Experience tracking employee leave, PTO, and attendance records</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Ability to conduct employee orientations and lead safety meetings confidently</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Strong verbal and written communication skills</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">High attention to detail with strong organizational and time management abilities</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Ability to maintain confidentiality and handle sensitive information professionally</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Proficient in Microsoft Office Suite and comfortable learning new software systems</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Self-motivated with the ability to work independently and take initiative</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 12px;" style="font-size: 12px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Human Resource Coordinator Responsibilities:</span></span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 12px;" style="font-size: 12px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Employee Support &amp; Onboarding</span></span></div><ul data-end="2346" data-start="2134" fr-original-style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;' style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; box-sizing: border-box; margin-top: 0px; margin-bottom: 10px;'><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Conduct new hire orientations and assist with onboarding processes</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Provide administrative support throughout the employee lifecycle</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Serve as a point of contact for employee questions and HR-related concerns</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 12px;" style="font-size: 12px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Safety &amp; Compliance</span></span></div><ul data-end="2571" data-start="2373" fr-original-style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;' style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; box-sizing: border-box; margin-top: 0px; margin-bottom: 10px;'><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Assist in overseeing company safety programs and maintaining OSHA compliance</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Conduct and coordinate employee safety meetings</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Support workers&rsquo; compensation reporting and documentation processes</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 12px;" style="font-size: 12px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Attendance &amp; Employee Administration</span></span></div><ul data-end="2805" data-start="2615" fr-original-style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;' style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; box-sizing: border-box; margin-top: 0px; margin-bottom: 10px;'><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Track employee PTO, leave requests, and attendance records</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Manage and review employee timecards for accuracy</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Maintain personnel files and HR documentation with a high level of accuracy</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 12px;" style="font-size: 12px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Performance &amp; Office Support</span></span></div><ul data-end="3041" data-start="2841" fr-original-style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;' style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; box-sizing: border-box; margin-top: 0px; margin-bottom: 10px;'><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Assist with employee relations and performance management processes</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Support daily office operations and administrative tasks as needed</li><li fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0);" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0); box-sizing: border-box;">Help maintain a positive and professional workplace culture</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 12px;" style="font-size: 12px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.</span></span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 12px;" style="font-size: 12px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></span></span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 12px;" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; box-sizing: border-box;"><em fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</em></span></div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1624314')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AM778978514" value="AM778978514">
						<input type="hidden" id="title_1624357" value="Part-Time Office Administrator">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/part-time-office-administrator/">Part-Time Office Administrator</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Redding, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is working with a local company to hire a Part-Time Office Administrator. This position is ideal for someone who enjoys working with people, has strong computer and organizational skills, and thrives as the welcoming face of a  ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$17 - $20																			</div>
							</div>
						</div>
							
						<div class="addpad clr">
						
							<div style="float:left" class="buttond">
							<div   onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/part-time-office-administrator/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1624357';showapply('1624357');document.getElementById('job_apply').value='AM778978514';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/part-time-office-administrator/'" onclick1="document.getElementById('PostId').value='1624357';show('1624357');document.getElementById('job_apply').value='AM778978514'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$17 - $20																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11624357" class="white_content1" style="position: fixed;  background: white; display: none;background: #f0f7fc;"> 
		  <div style="clear:both"> 
			 
				 
				<div class="clr">
					<div class="sidebar jobboard" style1="width:16%;">
						<h1 class='jobboardfont' style="color: #063565;cursor:pointer" onclick="document.getElementById('light11624357').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11624357').style.display='none';document.getElementById('fade').style.display='none'"   style="display:none;position: absolute;right: 2%;text-align: 0;top: 1%;/*! margin-left: 2%; */font-size: 36px;cursor:pointer" class="ico-times" role="img" aria-label="Cancel"></i>
						
					</div>	
					<div class="contentpopupdesc" style="background:white;border-radius:6px;">
					
					   <div class="head clr">  
							<div style="width:100%;padding-top:10px" class="clr">
								<a class="atagcover" href="#"><h1 style="padding-top: 0px;margin-top: 0px;">Part-Time Office Administrator</h1></a>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Location :
								</div>
								<div class=" lft addspace"  >
									Redding, CA 
								</div>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Pay Range :
								</div>
								<div class=" lft addspace"  >
									 $17 - $20 per hour
								</div>
							</div>
							<div class="clr addpad">
								 <div class="descover clr">  
										
										 <div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is working with a local company to hire a Part-Time Office Administrator. This position is ideal for someone who enjoys working with people, has strong computer and organizational skills, and thrives as the welcoming face of a business. The ideal candidate will have previous office experience, a positive attitude, and a dynamic personality.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Part-Time Office Administrator &ndash; Compensation &amp; Schedule</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">$16.90 &ndash; $18.00 per hour, depending on experience</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Part-time position</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Monday &ndash; Friday</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">9:00 AM &ndash; 1:00 PM</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Vision, dental, and medical insurance offered through O2 Employment Services</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Part-Time Office Administrator &ndash; Qualifications</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Previous office or administrative experience preferred</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong computer skills required</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Proficient with Microsoft Outlook</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Experience with data entry preferred</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Excellent verbal and written communication skills</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Friendly, professional, and customer-service oriented demeanor</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong organizational and multitasking abilities</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Dynamic and dependable personality</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Part-Time Office Administrator &ndash; Responsibilities</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Greet and assist customers, clients, and visitors</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Serve as the front face of the company</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Perform data entry and maintain accurate records</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Manage emails and scheduling through Microsoft Outlook</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Answer phones and direct calls appropriately</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Assist with general office support and administrative duties</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Maintain a professional and organized office environment</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Other duties as assigned</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1624357')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_RR544036514" value="RR544036514">
						<input type="hidden" id="title_1624934" value="Medical Office Manager">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/medical-office-manager/">Medical Office Manager</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Redding, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is working with a reputable medical office to find their next Medical Office Manager. This position is based in Redding, CA.The ideal candidate will be organized, professional, detail-oriented, and experienced in office adminis ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$28 - $31																			</div>
							</div>
						</div>
							
						<div class="addpad clr">
						
							<div style="float:left" class="buttond">
							<div   onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/medical-office-manager/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1624934';showapply('1624934');document.getElementById('job_apply').value='RR544036514';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/medical-office-manager/'" onclick1="document.getElementById('PostId').value='1624934';show('1624934');document.getElementById('job_apply').value='RR544036514'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$28 - $31																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11624934" class="white_content1" style="position: fixed;  background: white; display: none;background: #f0f7fc;"> 
		  <div style="clear:both"> 
			 
				 
				<div class="clr">
					<div class="sidebar jobboard" style1="width:16%;">
						<h1 class='jobboardfont' style="color: #063565;cursor:pointer" onclick="document.getElementById('light11624934').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11624934').style.display='none';document.getElementById('fade').style.display='none'"   style="display:none;position: absolute;right: 2%;text-align: 0;top: 1%;/*! margin-left: 2%; */font-size: 36px;cursor:pointer" class="ico-times" role="img" aria-label="Cancel"></i>
						
					</div>	
					<div class="contentpopupdesc" style="background:white;border-radius:6px;">
					
					   <div class="head clr">  
							<div style="width:100%;padding-top:10px" class="clr">
								<a class="atagcover" href="#"><h1 style="padding-top: 0px;margin-top: 0px;">Medical Office Manager</h1></a>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Location :
								</div>
								<div class=" lft addspace"  >
									Redding, CA 
								</div>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Pay Range :
								</div>
								<div class=" lft addspace"  >
									 $28 - $31 per hour
								</div>
							</div>
							<div class="clr addpad">
								 <div class="descover clr">  
										
										 <div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is working with a reputable medical office to find their next Medical Office Manager. This position is based in Redding, CA.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">The ideal candidate will be organized, professional, detail-oriented, and experienced in office administration and medical billing while being able to lead a team in a fast-paced healthcare environment.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Medical Office Manager Compensation:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; $58,661 - $64,752 annually<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Aflac insurance benefit and Prestige Medical Group coverage<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; PTO, sick time, paid major holidays, and Christmas week off<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Monday &ndash; Friday schedule, 7:45 AM &ndash; 3:45 PM</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Medical Office Manager Qualifications:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Business administration and medical billing knowledge preferred<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Minimum AA degree in Business Administration preferred<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Strong communication, scheduling, and organizational skills<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Ability to multitask and maintain professionalism in a healthcare setting</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Medical Office Manager Responsibilities:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Manage daily front office operations<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Oversee insurance, private pay, and Far Northern billing<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Coordinate scheduling, faxes, emails, and client care internally and externally<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Supervise Office Assistant staff<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Create a welcoming and professional atmosphere for staff and clients<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Open the office each morning and ensure smooth daily operations</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.&nbsp;</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><em fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</em></div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1624934')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AM870137512" value="AM870137512">
						<input type="hidden" id="title_1622907" value="Compliance/ Payroll Specialist">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/compliance-payroll-specialist/">Compliance/ Payroll Specialist</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Redding, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is working with a reputable company to find their next Compliance/ Payroll Specialist. This position is based in Redding, CA.The ideal candidate will have strong payroll processing experience, attention to detail, and experienc ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$25 - $30																			</div>
							</div>
						</div>
							
						<div class="addpad clr">
						
							<div style="float:left" class="buttond">
							<div   onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/compliance-payroll-specialist/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1622907';showapply('1622907');document.getElementById('job_apply').value='AM870137512';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/compliance-payroll-specialist/'" onclick1="document.getElementById('PostId').value='1622907';show('1622907');document.getElementById('job_apply').value='AM870137512'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$25 - $30																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11622907" class="white_content1" style="position: fixed;  background: white; display: none;background: #f0f7fc;"> 
		  <div style="clear:both"> 
			 
				 
				<div class="clr">
					<div class="sidebar jobboard" style1="width:16%;">
						<h1 class='jobboardfont' style="color: #063565;cursor:pointer" onclick="document.getElementById('light11622907').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11622907').style.display='none';document.getElementById('fade').style.display='none'"   style="display:none;position: absolute;right: 2%;text-align: 0;top: 1%;/*! margin-left: 2%; */font-size: 36px;cursor:pointer" class="ico-times" role="img" aria-label="Cancel"></i>
						
					</div>	
					<div class="contentpopupdesc" style="background:white;border-radius:6px;">
					
					   <div class="head clr">  
							<div style="width:100%;padding-top:10px" class="clr">
								<a class="atagcover" href="#"><h1 style="padding-top: 0px;margin-top: 0px;">Compliance/ Payroll Specialist</h1></a>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Location :
								</div>
								<div class=" lft addspace"  >
									Redding, CA 
								</div>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Pay Range :
								</div>
								<div class=" lft addspace"  >
									 $25 - $30 per hour
								</div>
							</div>
							<div class="clr addpad">
								 <div class="descover clr">  
										
										 <div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is working with a reputable company to find their next Compliance/ Payroll Specialist. This position is based in Redding, CA.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">The ideal candidate will have strong payroll processing experience, attention to detail, and experience handling certified payroll and benefit contributions in a fast-paced environment.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Compliance/ Payroll Specialist Compensation:</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">$25.00 - $30.00 per hour, depending on experience</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Full-time position</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Dental, vision, medical, life insurance, and 401(k) offered</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Opportunity to work with an established and professional organization</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Compliance/ Payroll Specialist Qualifications:</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">3&ndash;5 years of experience as a Payroll Specialist required</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Experience with certified payroll and benefit contributions required</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Associate degree in Accounting, Business, Human Resources, or related field preferred</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Previous experience working with a public agency such as Caltrans, Post Office, City, County, or similar organization preferred</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong organizational and time-management skills</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">High level of accuracy and attention to detail</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Excellent written and verbal communication skills</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Proficient with payroll software and Microsoft Office programs</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Compliance/ Payroll Specialist Responsibilities:</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Process payroll accurately and timely</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Prepare and maintain certified payroll reports and documentation</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Process benefit contributions and maintain accurate records</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ensure compliance with payroll laws, regulations, and reporting requirements</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Assist with audits, reporting, and payroll reconciliations</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Maintain&nbsp;employee payroll records and confidentiality</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Communicate with employees and management regarding payroll-related questions</div></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Other duties as assigned</div></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1622907')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF893501511" value="AF893501511">
						<input type="hidden" id="title_1621868" value="HR Assistant">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/hr-assistant/">HR Assistant</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Redding, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is working with a reputable Construction Company to find their next HR &amp; Safety Assistant. This position is based in Redding, CA.The ideal candidate will have prior HR experience, strong organizational and communication ski ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$25 - $35																			</div>
							</div>
						</div>
							
						<div class="addpad clr">
						
							<div style="float:left" class="buttond">
							<div   onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/hr-assistant/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1621868';showapply('1621868');document.getElementById('job_apply').value='AF893501511';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/hr-assistant/'" onclick1="document.getElementById('PostId').value='1621868';show('1621868');document.getElementById('job_apply').value='AF893501511'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$25 - $35																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11621868" class="white_content1" style="position: fixed;  background: white; display: none;background: #f0f7fc;"> 
		  <div style="clear:both"> 
			 
				 
				<div class="clr">
					<div class="sidebar jobboard" style1="width:16%;">
						<h1 class='jobboardfont' style="color: #063565;cursor:pointer" onclick="document.getElementById('light11621868').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11621868').style.display='none';document.getElementById('fade').style.display='none'"   style="display:none;position: absolute;right: 2%;text-align: 0;top: 1%;/*! margin-left: 2%; */font-size: 36px;cursor:pointer" class="ico-times" role="img" aria-label="Cancel"></i>
						
					</div>	
					<div class="contentpopupdesc" style="background:white;border-radius:6px;">
					
					   <div class="head clr">  
							<div style="width:100%;padding-top:10px" class="clr">
								<a class="atagcover" href="#"><h1 style="padding-top: 0px;margin-top: 0px;">HR Assistant</h1></a>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Location :
								</div>
								<div class=" lft addspace"  >
									Redding, CA 
								</div>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Pay Range :
								</div>
								<div class=" lft addspace"  >
									 $25 - $35 per hour
								</div>
							</div>
							<div class="clr addpad">
								 <div class="descover clr">  
										
										 <div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is working with a reputable Construction Company to find their next HR &amp; Safety Assistant. This position is based in Redding, CA.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">The ideal candidate will have prior HR experience, strong organizational and communication skills, and the ability to support safety compliance and workforce coordination in a fast-paced environment.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">HR &amp; Safety Assistant Compensation:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; $25 - $35/hour DOE<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Vision, dental, and medical insurance offered through O2<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Company perks!</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">HR &amp; Safety Assistant Qualifications:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Previous HR, office administration, or safety coordination experience preferred<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Knowledge of California labor laws and workplace safety practices is a plus<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Strong communication and interpersonal skills<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Ability to maintain confidentiality and handle sensitive information<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Proficient with Microsoft Office and computer systems<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Experience working with construction, field operations, or union environments</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">HR &amp; Safety Assistant Responsibilities:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Assist with hiring, onboarding, employee records, and administrative HR functions<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Support workplace safety programs, trainings, and documentation<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Help maintain compliance with Cal/OSHA and company safety procedures<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Coordinate employee paperwork, certifications, and reporting requirements<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Serve as a point of contact for employees, field staff, and union communication<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Assist with workers&rsquo; compensation, benefits administration, and personnel documentation<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Support workforce planning, scheduling, and general office operations</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.&nbsp;</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><em fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</em></div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1621868')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF27434258" value="AF27434258">
						<input type="hidden" id="title_1620324" value="Transaction Coordinator">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/transaction-coordinator/">Transaction Coordinator</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Redding, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is working with a reputable Real Estate Company to find their next Transaction Coordinator. This position is a full-time, regular role located in Redding, CA.The ideal candidate will have prior transaction coordinating experien ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$25 - $30																			</div>
							</div>
						</div>
							
						<div class="addpad clr">
						
							<div style="float:left" class="buttond">
							<div   onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/transaction-coordinator/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1620324';showapply('1620324');document.getElementById('job_apply').value='AF27434258';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/transaction-coordinator/'" onclick1="document.getElementById('PostId').value='1620324';show('1620324');document.getElementById('job_apply').value='AF27434258'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$25 - $30																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11620324" class="white_content1" style="position: fixed;  background: white; display: none;background: #f0f7fc;"> 
		  <div style="clear:both"> 
			 
				 
				<div class="clr">
					<div class="sidebar jobboard" style1="width:16%;">
						<h1 class='jobboardfont' style="color: #063565;cursor:pointer" onclick="document.getElementById('light11620324').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11620324').style.display='none';document.getElementById('fade').style.display='none'"   style="display:none;position: absolute;right: 2%;text-align: 0;top: 1%;/*! margin-left: 2%; */font-size: 36px;cursor:pointer" class="ico-times" role="img" aria-label="Cancel"></i>
						
					</div>	
					<div class="contentpopupdesc" style="background:white;border-radius:6px;">
					
					   <div class="head clr">  
							<div style="width:100%;padding-top:10px" class="clr">
								<a class="atagcover" href="#"><h1 style="padding-top: 0px;margin-top: 0px;">Transaction Coordinator</h1></a>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Location :
								</div>
								<div class=" lft addspace"  >
									Redding, CA 
								</div>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Pay Range :
								</div>
								<div class=" lft addspace"  >
									 $25 - $30 per hour
								</div>
							</div>
							<div class="clr addpad">
								 <div class="descover clr">  
										
										 <div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is working with a reputable Real Estate Company to find their next Transaction Coordinator. This position is a full-time, regular role located in Redding, CA.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">The ideal candidate will have prior transaction coordinating experience within the real estate industry, hold an active California Real Estate License, and be highly organized with strong attention to detail. This individual should be comfortable managing multiple transactions at once, communicating with clients and agents, and ensuring deadlines are met throughout the closing process.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Transaction Coordinator Compensation:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; $25 - $30 an hour<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Vision, dental, and medical insurance offered through O2<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Company perks!</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Transaction Coordinator Qualifications:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Active California Real Estate License required<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Prior experience as a Transaction Coordinator or similar real estate role<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Strong understanding of real estate transactions and contracts<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Excellent organizational and time management skills<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Ability to multitask and manage deadlines in a fast-paced environment<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Strong communication and customer service skills<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Proficiency with Microsoft Office and real estate software platforms</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Transaction Coordinator Responsibilities:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Manage real estate transactions from contract to close<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Ensure all documentation is complete, accurate, and submitted on time<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Coordinate with agents, clients, lenders, escrow, and title companies<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Track deadlines, contingencies, and closing timelines<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Maintain organized transaction files and records<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Communicate updates and status reports throughout the transaction process<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Provide administrative support to the real estate team as needed</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.&nbsp;</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1620324')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<!-- --->
				
				
<div style="width:99%;text-align:center;padding: 20px;height: 52px; clear:both">
	<div  style=" width:100%" >
					 
					
			
				 <ul class="pagination1">
							<li class="first prev" style='color:gray'> < </li>
				
			
						
				<li class="currentpage" ><a href="?pg=1&">1</a></li>

							<li class="page"><a href="?pg=2&">2</a></li>
						<li class="page"><a href="?pg=3&">3</a></li>
			
							<li class="dots">...</li>
				<li class="end"><a href="?pg=8&">8</a></li>
			
								<li class="last next"><a href="?pg=2&"> > </a></li>
					</ul>
							


	</div>

</div>
							
				  
			</div>
		
		</div>
	
	</div>
<input type="hidden" id="effectiveMax" value="1">
</body>

  <!-- jQuery Library -->
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  <script>
    $(document).ready(function() {
      // Define slider limits
      var sliderMin = 0;
      var sliderMax = 200;
		var min=sliderMin
		var mxn=sliderMax
	  		
      // State: current effective values for min and max used by the slider
      var currentMin = min;
      var currentMax = mxn;
  
      // Store the raw value typed by the user for the max input.
      // This may be lower than currentMin.
      var rawMaxInput = sliderMax;

      // Cache slider elements
      var $slider = $('.range-slider');
      var $rangeBar = $('.slider-range');
      var $handleMin = $('.handle-min');
      var $handleMax = $('.handle-max');

      // Variables for slider dimensions
      var sliderOffset = 0;
      var sliderWidth = 0;

      // Active handle (if dragging)
      var activeHandle = null;

      // Update slider dimensions (offset and width)
      function updateSliderDimensions() {
        sliderOffset = $slider.offset().left;
        sliderWidth = $slider.width();
      }

      // Convert a value to a percentage position on the slider
      function valueToPercent(val) {
        return ((val - sliderMin) / (sliderMax - sliderMin)) * 100;
      }

      // Convert a pixel position (relative to slider) to a value 
      function positionToValue(pos) {
        return Math.round((pos / sliderWidth) * (sliderMax - sliderMin) + sliderMin);
      }

      // Update the slider's positions (handles and colored range bar) from the state.
      // For the max handle, we calculate an effective max value which is never below currentMin.
      function updateSliderFromState() {
        updateSliderDimensions();
        // Calculate effective max: if rawMaxInput is below currentMin, we use currentMin for slider position.
        var effectiveMax = Math.max(currentMin, Math.min(rawMaxInput, sliderMax));
        currentMax = effectiveMax;
				//alert(effectiveMax);
		//effectiveMax=90;
       
        var minPercent = valueToPercent(currentMin);
        var maxPercent = valueToPercent(effectiveMax);

        // Update handles positions
        $handleMin.css('left', minPercent + '%');
        $handleMax.css('left', maxPercent + '%');

        // Update the colored range bar between the handles
        $rangeBar.css({
          left: minPercent + '%',
          width: (maxPercent - minPercent) + '%'
        });

        // Update input fields.
        // For min input, always update from currentMin.
        $('#min_price').val(currentMin);
        // For max input, if the user is not currently editing (not focused),
        // update the displayed value to the raw input.
        if (!$('#max_price').is(':focus')) {
			
			
		
          $('#max_price').val(rawMaxInput);
        }
		 $("#range").html('$'+document.getElementById('min_price').value+'- $'+document.getElementById('max_price').value);
      }
		
		 
	  
      // Validate and update min input.
      $('#min_price').on('input', function() {
        var minStr = $(this).val();
        if (minStr === "") return;
        var newMin = parseInt(minStr, 10);
        if (isNaN(newMin)) newMin = sliderMin;

        // Clamp newMin to never go below 0 or above sliderMax.
        newMin = Math.max(sliderMin, Math.min(newMin, sliderMax));

        // If the new minimum is greater than the raw max input, 
        // we update rawMaxInput so that when focus is lost the slider shows a valid range.
        if (newMin > rawMaxInput) {
          rawMaxInput = newMin;
        }
        currentMin = newMin;
        updateSliderFromState();
      });

      // Validate and update max input.
      // This handler allows the user to type a number lower than the current min.
      $('#max_price').on('input', function() {
        var maxStr = $(this).val();
        if (maxStr === "") return;
        var typedMax = parseInt(maxStr, 10);
        if (isNaN(typedMax)) typedMax = sliderMax;

        // Ensure the typed max is not below 0.
        typedMax = Math.max(0, typedMax);

        // Store the raw value typed by the user.
        rawMaxInput = typedMax;

        // For the slider's effective max value, we make sure it is never below currentMin.
        currentMax = Math.max(currentMin, Math.min(rawMaxInput, sliderMax));

        updateSliderFromState();
      });

      // When dragging, update state based on handle movement.
      function moveHandle(e) {
        if (!activeHandle) return;
        e.preventDefault();

        // Get the current x-coordinate (supports touch and mouse).
        var clientX = e.type.startsWith('touch')
          ? e.originalEvent.touches[0].clientX
          : e.clientX;

        updateSliderDimensions();

        // Calculate the new left position relative to slider (in pixels) and clamp it.
        var newLeft = clientX - sliderOffset;
        newLeft = Math.max(0, Math.min(newLeft, sliderWidth));

        // Convert to value.
        var newValue = positionToValue(newLeft);

        // Determine which handle is being dragged.
        var type = $(activeHandle).data('type');
        if (type === 'min') {
          // For the min handle, ensure it does not exceed the effective current max.
          currentMin = Math.min(newValue, currentMax);
          // Also, if currentMin becomes greater than the raw max value,
          // update rawMaxInput so that later the user sees a consistent value.
          if (rawMaxInput < currentMin) {
            rawMaxInput = currentMin;
          }
        } else {
          // For the max handle, ensure it does not go below currentMin.
          // Note: Even if the user typed a lower number, the slider handle stays at currentMin.
          currentMax = Math.max(newValue, currentMin);
          // Also update rawMaxInput to reflect slider movement.
          rawMaxInput = currentMax;
        }
        updateSliderFromState();
      }

      // End dragging and remove event listeners.
      function stopDragging() {
        activeHandle = null;
        $(document).off('mousemove touchmove', moveHandle);
        $(document).off('mouseup touchend', stopDragging);
      }

      // Start dragging when the user presses down on a handle (mouse or touch).
      $('.slider-handle').on('mousedown touchstart', function(e) {
        activeHandle = this;
        updateSliderDimensions();
        $(document).on('mousemove touchmove', moveHandle);
        $(document).on('mouseup touchend', stopDragging);
        e.preventDefault();
      });

      // When the max input loses focus, update its display value to the effective slider value.
      $('#max_price').on('blur', function() {
        // When editing ends, force the input to show the effective value.
        $(this).val(currentMax);
        // Also update rawMaxInput to reflect the slider's effective max.
        rawMaxInput = currentMax;
      });

      // Update slider on window resize.
      $(window).on('resize', function() {
        updateSliderDimensions();
        updateSliderFromState();
      });

      // Initialize slider positions on page load.
      updateSliderFromState();
    });
	
	
  </script>
<script>
function scrolltop(){
 
}
var x, i, j, l, ll, selElmnt, a, b, c;
/*look for any elements with the class "custom-select":*/
x = document.getElementsByClassName("custom-select");
l = x.length;
for (i = 0; i < l; i++) {

  selElmnt = x[i].getElementsByTagName("select")[0];
  ll = selElmnt.length;
  /*for each element, create a new DIV that will act as the selected item:*/
  a = document.createElement("DIV");
  a.setAttribute("class", "select-selected");
  
  
  
  var mintitle=selElmnt.options[selElmnt.selectedIndex].innerHTML;
    a.setAttribute("id", mintitle.replace(" ","_"));
  a.innerHTML = selElmnt.options[selElmnt.selectedIndex].innerHTML;
  x[i].appendChild(a);
   if(i  == 0 ){
	  mintitle='All Locations';
  }
  if(i  == 1 ){
	  
		  mintitle='All Job Types';
  }
  
 
  /*for each element, create a new DIV that will contain the option list:*/
  b = document.createElement("DIV");
  b.setAttribute("class", "select-items select-hide");
  for (j = 1; j < ll; j++) {
  
    /*for each option in the original select element,
    create a new DIV that will act as an option item:*/
   if(j == 1){
	c = document.createElement("DIV");
		c.innerHTML = mintitle;
		c.addEventListener("click", function(e) {
			/*when an item is clicked, update the original select box,
			and the selected item:*/
			var y, i, k, s, h, sl, yl;
			 
			s = this.parentNode.parentNode.getElementsByTagName("select")[0];
			sl = s.length;
			h = this.parentNode.previousSibling;
			for (i = 0; i < sl; i++) {
			  if (s.options[i].innerHTML == this.innerHTML) {
				s.selectedIndex = i;
				h.innerHTML = this.innerHTML;
				
				y = this.parentNode.getElementsByClassName("same-as-selected");
				yl = y.length;
				for (k = 0; k < yl; k++) {
				  y[k].removeAttribute("class");
				}
				this.setAttribute("class", "same-as-selected");
				break;
			  }
			}
			h.click();
		});
		b.appendChild(c);
	}
    c = document.createElement("DIV");
    c.innerHTML = selElmnt.options[j].innerHTML;
    c.addEventListener("click", function(e) {
        /*when an item is clicked, update the original select box,
        and the selected item:*/
        var y, i, k, s, h, sl, yl;
        s = this.parentNode.parentNode.getElementsByTagName("select")[0];
        sl = s.length;
        h = this.parentNode.previousSibling;
        for (i = 0; i < sl; i++) {
          if (s.options[i].innerHTML == this.innerHTML) {
            s.selectedIndex = i;
            h.innerHTML = this.innerHTML;
			
            y = this.parentNode.getElementsByClassName("same-as-selected");
            yl = y.length;
            for (k = 0; k < yl; k++) {
              y[k].removeAttribute("class");
            }
            this.setAttribute("class", "same-as-selected");
            break;
          }
        }
        h.click();
    });
    b.appendChild(c);
  }
  x[i].appendChild(b);
  a.addEventListener("click", function(e) {
      /*when the select box is clicked, close any other select boxes,
      and open/close the current select box:*/
      e.stopPropagation();
      closeAllSelect(this);
      this.nextSibling.classList.toggle("select-hide");
      this.classList.toggle("select-arrow-active");
    });
}
function closeAllSelect(elmnt) {
  /*a function that will close all select boxes in the document,
  except the current select box:*/
  var x, y, i, xl, yl, arrNo = [];
  x = document.getElementsByClassName("select-items");
  y = document.getElementsByClassName("select-selected");
  xl = x.length;
  yl = y.length;
  for (i = 0; i < yl; i++) {
    if (elmnt == y[i]) {
      arrNo.push(i)
    } else {
      y[i].classList.remove("select-arrow-active");
    }
  }
  for (i = 0; i < xl; i++) {
    if (arrNo.indexOf(i)) {
      x[i].classList.add("select-hide");
    }
  }
}
/*if the user clicks anywhere outside the select box,
then close all select boxes:*/
document.addEventListener("click", closeAllSelect);
   $(document).ready(function() {
 
 

		  
 document.getElementById('min_price').value='';
 document.getElementById('max_price').value='';
 
 
  
  

	});

</script>
<script>
	 
	 jQuery(document).ready(function() {
		 
		 
 
 
	setTimeout(function(){    jQuery('#effectiveMax').val('');}, 1000);
	
      $("#uploadForm").on('click', function(e) {
		  
	 
		var flag=true;
		
		
		 
		   
		  
		var firstname	=	document.getElementById('firstname');
		var lastname	=	document.getElementById('lastname');
		var phone	=	document.getElementById('phone');
		var email	=	document.getElementById('email');
		var street	=	document.getElementById('street');
		var city	=	document.getElementById('city');
		var state	=	document.getElementById('state');
		var zip	=	document.getElementById('zip');
		 
		firstname.style.border='0px';
		lastname.style.border='0px';
		phone.style.border='0px';
		email.style.border='0px';
		street.style.border='0px';
		city.style.border='0px';
		state.style.border='0px';
		zip.style.border='0px';
			document.getElementById("file1").style.border='0px'; 
		document.getElementById("file2").style.border='0px'; 
		
		
		var file1 = document.getElementById("file1").value;
		if( file1 != ""){
			var file1_arr=file1.split(".");
			var file1name=file1_arr[file1_arr.length-1]
			if(file1name != "pdf" & file1name != "docx"  & file2name != "doc" ){
			
				document.getElementById("file1").style.border='1px solid red ';
				flag=false;
			}
		
		}
		var file2 = document.getElementById("file2").value;
		
		if( file2 != ""){
			var file2_arr=file2.split(".");
			var file2name=file2_arr[file2_arr.length-1]
			
			 if(file2name != "pdf" & file2name != "docx" & file2name != "doc" ){
			
			document.getElementById("file2").style.border='1px solid red ';
			flag=false;
		}
		}
		
		 
		
		
	
		 
		if(firstname.value == ""){
			
			firstname.style.border='1px solid red ';
			flag=false;
		}
		if(lastname.value == ""){
			
			lastname.style.border='1px solid red ';
			flag=false;
		}
		if(phone.value == ""){
			
			phone.style.border='1px solid red ';
			flag=false;
		}
		if(email.value == ""){
			
			email.style.border='1px solid red ';
			flag=false;
		}else{
			
				const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
				var resp= emailRegex.test(email.value);
			if(resp == false){
				
				email.style.border='1px solid red ';
				flag=false;
			} 
  
		}
		if(street.value == ""){
			
			street.style.border='1px solid red ';
			flag=false;
		}
		if(city.value == ""){
			
			city.style.border='1px solid red ';
			flag=false;
		}
		if(state.value == ""){
			
			state.style.border='1px solid red ';
			flag=false;
		}
		if(zip.value == ""){
			
			zip.style.border='1px solid red ';
			flag=false;
		}
		 
		
		  
		
		if ( flag ==false){
			
			return flag;
		}
		 
        e.preventDefault(); 
		const form = document.getElementById("sform");
        var formData = new FormData(form);
		document.getElementById('loader').style.display='block';
        $.ajax({
          url: 'applyjob.php', 
          type: 'POST',
          data: formData,
          contentType: false,
          processData: false,
          success: function(response) {
            console.log(response);
			document.getElementById('loader').style.display='none';
			hideshow();showthanks();
			
				  
				document.getElementById('firstname').value='';
				document.getElementById('lastname').value='';
				document.getElementById('phone').value='';
				document.getElementById('email').value='';
				document.getElementById('street').value='';
				document.getElementById('city').value='';
				document.getElementById('state').value='';
				document.getElementById('zip').value='';
				document.getElementById('file1').value='';
				document.getElementById('file2').value='';
		
          },
          error: function(error) {
            console.error(error);
          }
        });
      });
    });
	
	function formatNumber(phoneNo) {



		var phone= phoneNo.replace( /(\d{3})(\d{3})(\d{4})/,'($1)-$2-$3'  );
		document.getElementById('phone').value=phone
	}

	</script>
 
 {"id":24,"date":"2025-06-18T08:13:50","date_gmt":"2025-06-18T08:13:50","guid":{"rendered":"https:\/\/jobs.o2employmentservices.com\/wp\/?page_id=24"},"modified":"2025-06-18T11:49:52","modified_gmt":"2025-06-18T11:49:52","slug":"jobs","status":"publish","type":"page","link":"https:\/\/jobs.o2employmentservices.com\/job-board\/","title":{"rendered":"JOBS"},"content":{"rendered":"\n<p><\/p>\n\n\n\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template-jobs.php","meta":{"hide_page_title":"","footnotes":""},"class_list":["post-24","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/jobs.o2employmentservices.com\/job-board\/wp-json\/wp\/v2\/pages\/24","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jobs.o2employmentservices.com\/job-board\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/jobs.o2employmentservices.com\/job-board\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/jobs.o2employmentservices.com\/job-board\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jobs.o2employmentservices.com\/job-board\/wp-json\/wp\/v2\/comments?post=24"}],"version-history":[{"count":3,"href":"https:\/\/jobs.o2employmentservices.com\/job-board\/wp-json\/wp\/v2\/pages\/24\/revisions"}],"predecessor-version":[{"id":57,"href":"https:\/\/jobs.o2employmentservices.com\/job-board\/wp-json\/wp\/v2\/pages\/24\/revisions\/57"}],"wp:attachment":[{"href":"https:\/\/jobs.o2employmentservices.com\/job-board\/wp-json\/wp\/v2\/media?parent=24"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}