		<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>
																		<option value="Administrative & Clerical" >Administrative & Clerical</option>
																		<option value="Business Support Services" >Business Support Services</option>
																		<option value="Healthcare & Medical" >Healthcare & Medical</option>
																		<option value="Skilled Trades & Construction" >Skilled Trades & Construction</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>
																		<option value="Mount Shasta" >Mount Shasta</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_AF92442630" value="AF92442630">
						<input type="hidden" id="title_1656604" value="HVAC Service Technician">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/hvac-service-technician-2/">HVAC Service Technician</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 local HVAC company to find their next HVAC Service Technician. This position is based in Anderson, CA.The ideal candidate will have at least 1 year of professional HVAC experience, strong troubleshoo ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$24 - $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/hvac-service-technician-2/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1656604';showapply('1656604');document.getElementById('job_apply').value='AF92442630';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/hvac-service-technician-2/'" onclick1="document.getElementById('PostId').value='1656604';show('1656604');document.getElementById('job_apply').value='AF92442630'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$24 - $26																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11656604" 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('light11656604').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11656604').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;">HVAC Service Technician</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"  >
									 $24 - $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 reputable local HVAC company to find their next HVAC Service Technician. This position is based in Anderson, CA.<br data-start="216" data-end="219" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">The ideal candidate will have at least 1 year of professional HVAC experience, strong troubleshooting skills, and the ability to diagnose and repair residential and/or commercial HVAC systems efficiently.</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;">HVAC Service Technician Compensation:<br data-start="466" data-end="469" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; $24&ndash;$26 per hour DOE<br data-start="491" data-end="494" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Full-time position<br data-start="514" data-end="517" 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<br data-start="595" data-end="598" data-is-only-node="" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Opportunity for long-term growth</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;">HVAC Service Technician Qualifications:<br data-start="679" data-end="682" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Minimum 1 year of professional HVAC experience required<br data-start="739" data-end="742" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; EPA Universal Certification required<br data-start="780" data-end="783" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Troubleshooting and diagnostic skills<br data-start="829" data-end="832" data-is-only-node="" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Knowledge of HVAC systems, maintenance, and repairs<br data-start="885" data-end="888" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Strong communication and customer service skills<br data-start="938" data-end="941" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Ability to work independently and as part of a team<br data-start="994" data-end="997" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Valid driver&rsquo;s license&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;">HVAC Service Technician Responsibilities:<br data-start="1080" data-end="1083" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Diagnose, troubleshoot, and repair HVAC systems<br data-start="1132" data-end="1135" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Perform routine maintenance and inspections<br data-start="1180" data-end="1183" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Identify issues and recommend effective solutions<br data-start="1234" data-end="1237" data-is-only-node="" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Ensure all work is completed safely and efficiently<br data-start="1290" data-end="1293" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Maintain accurate service records and documentation<br data-start="1346" data-end="1349" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Provide excellent customer service while on job sites</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.<br 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;">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('1656604')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF792136630" value="AF792136630">
						<input type="hidden" id="title_1656692" value="Law Firm Receptionist/Admin Assistant">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/law-firm-receptionist-admin-assistant/">Law Firm Receptionist/Admin 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 local law firm to find their next Administrative Assistant / Receptionist. This position is based in Redding, CA.The ideal candidate will have excellent customer service skills, strong multitasking abilities,  ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$19 - $23																			</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/law-firm-receptionist-admin-assistant/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1656692';showapply('1656692');document.getElementById('job_apply').value='AF792136630';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/law-firm-receptionist-admin-assistant/'" onclick1="document.getElementById('PostId').value='1656692';show('1656692');document.getElementById('job_apply').value='AF792136630'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$19 - $23																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11656692" 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('light11656692').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11656692').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;">Law Firm Receptionist/Admin 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"  >
									 $19 - $23 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 law firm to find their next Administrative Assistant / Receptionist. 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 excellent customer service skills, strong multitasking abilities, and be comfortable working in a fast-paced professional office environment. This role combines front desk reception with administrative support and requires someone who is organized, dependable, and proactive. Experience in a law office is a plus but not required.</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;">Administrative Assistant / Receptionist Compensation:<br data-start="734" data-end="737" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; $19 &ndash; $22 per hour<br data-start="757" data-end="760" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Vision, dental, and medical insurance offered through O2<br data-start="818" data-end="821" 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;">Administrative Assistant / Receptionist Qualifications:<br data-start="900" data-end="903" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Professional phone etiquette and ability to answer and route calls efficiently<br data-start="983" data-end="986" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Strong customer service skills and friendly, professional demeanor<br data-start="1054" data-end="1057" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Excellent multitasking and organizational abilities<br data-start="1110" data-end="1113" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Proficiency in basic computer programs (Word, Excel, Outlook)<br data-start="1176" data-end="1179" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Strong attention to detail and ability to manage multiple priorities<br data-start="1249" data-end="1252" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Ability to maintain confidentiality and handle sensitive information<br data-start="1322" data-end="1325" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Experience in a law office environment preferred, but not required</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;">Administrative Assistant / Receptionist Responsibilities:<br data-start="1458" data-end="1461" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Answer and direct incoming calls in a professional and timely manner<br data-start="1531" data-end="1534" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Greet and assist clients and visitors<br data-start="1573" data-end="1576" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Provide administrative support including filing, scanning, data entry, and document preparation<br data-start="1673" data-end="1676" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Pick up and distribute mail and assist with outgoing mail<br data-start="1735" data-end="1738" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Deliver and file documents at the courthouse and other local offices as needed<br data-start="1818" data-end="1821" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Assist with scheduling appointments and maintaining calendars<br data-start="1884" data-end="1887" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Maintain office organization, supplies, and general front office operations<br data-start="1964" data-end="1967" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Support attorneys and office staff with day-to-day administrative tasks 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.</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('1656692')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF711283630" value="AF711283630">
						<input type="hidden" id="title_1657088" value="HVAC Installer">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/hvac-installer-2/">HVAC Installer</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 local HVAC company to find their next HVAC Installer. This position is based in Anderson, CA.The ideal candidate will have HVAC installation experience, strong mechanical aptitude, and the ability to ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$24 - $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/hvac-installer-2/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1657088';showapply('1657088');document.getElementById('job_apply').value='AF711283630';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/hvac-installer-2/'" onclick1="document.getElementById('PostId').value='1657088';show('1657088');document.getElementById('job_apply').value='AF711283630'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$24 - $26																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11657088" 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('light11657088').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11657088').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;">HVAC Installer</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"  >
									 $24 - $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 reputable local HVAC company to find their next HVAC Installer. This position is based in Anderson, CA.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">The ideal candidate will have HVAC installation experience, strong mechanical aptitude, and the ability to work efficiently in both residential and commercial settings. This is a great opportunity for someone who is dependable, hardworking, and takes pride in quality workmanship.</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;">HVAC Installer Compensation:<br data-start="523" data-end="526" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; $26 per hour<br data-start="540" data-end="543" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Full-time position<br data-start="563" data-end="566" 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<br data-start="644" data-end="647" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Opportunity for long-term growth</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;">HVAC Installer Qualifications:<br data-start="719" data-end="722" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Previous HVAC installation experience preferred (at least 2 years experience required)<br data-start="771" data-end="774" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; EPA Certification required<br data-start="802" data-end="805" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Strong mechanical aptitude and troubleshooting skills<br data-start="860" data-end="863" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Knowledge of HVAC systems, ductwork, and installation procedures<br data-start="929" data-end="932" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Ability to read and follow blueprints and technical specifications<br data-start="1000" data-end="1003" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Strong attention to detail and commitment to safety<br data-start="1056" data-end="1059" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Ability to work independently and as part of a team<br data-start="1112" data-end="1115" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Valid driver&rsquo;s license preferred</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;">HVAC Installer Responsibilities:<br data-start="1189" data-end="1192" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Install HVAC systems, equipment, and ductwork in residential and/or commercial settings<br data-start="1281" data-end="1284" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Remove and replace old HVAC systems as needed<br data-start="1331" data-end="1334" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Ensure all installations are completed according to specifications and safety standards<br data-start="1423" data-end="1426" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Test systems to ensure proper functionality and performance<br data-start="1487" data-end="1490" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Maintain clean and organized job sites<br data-start="1530" data-end="1533" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Communicate professionally with customers and team members<br data-start="1593" data-end="1596" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Complete all required installation documentation accurately</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.</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('1657088')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AM138039615" value="AM138039615">
						<input type="hidden" id="title_1653498" value="Heavy Equipment Yard Laborer">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/heavy-equipment-yard-laborer-3/">Heavy Equipment Yard Laborer</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 partnering with a well-established heavy equipment rental company in the Redding area seeking a dependable and hardworking Yard Laborer to join their team. This is a hands-on position ideal for someone who enjoys physical wo ......
						</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/heavy-equipment-yard-laborer-3/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1653498';showapply('1653498');document.getElementById('job_apply').value='AM138039615';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/heavy-equipment-yard-laborer-3/'" onclick1="document.getElementById('PostId').value='1653498';show('1653498');document.getElementById('job_apply').value='AM138039615'" >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="light11653498" 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('light11653498').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11653498').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;">Heavy Equipment Yard Laborer</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"  >
									 $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 partnering with a well-established heavy equipment rental company in the Redding area seeking a dependable and hardworking Yard Laborer to join their team. This is a hands-on position ideal for someone who enjoys physical work, working outdoors, and being around equipment and machinery. This is a full-time, long-term opportunity with room for growth.</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;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Heavy Equipment Yard Laborer &ndash; 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;">$16.90 &ndash; $20.00 per hour, depending on experience</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Vision, dental, and medical insurance offered through O2</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Company perks!</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;">Heavy Equipment Yard Laborer &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 yard, labor, construction, landscaping, mechanic, farm, or heavy equipment experience preferred</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Comfortable working outdoors in varying weather conditions</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to safely lift, carry, push, and pull heavy materials and equipment</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Basic mechanical aptitude and ability to use hand and power tools</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Reliable attendance and strong work ethic</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to follow directions and work independently or with a team</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Forklift experience is a plus</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Valid driver&rsquo;s license preferred</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to maintain a clean and organized work environment</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;">Heavy Equipment Yard Laborer &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;">Assist with loading and unloading heavy equipment and materials</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Clean, organize, and maintain the yard and equipment areas</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Inspect equipment for cleanliness and basic operational readiness</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Wash and prepare rental equipment for customer pickup and return</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Assist customers and drivers with equipment movement and staging</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Operate hand tools and basic shop equipment safely</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Support mechanics and shop personnel as needed</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Perform general labor duties around the yard and facility</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Maintain safety standards and keep work areas clean and hazard-free</li></ul><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;">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;">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('1653498')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF293306625" value="AF293306625">
						<input type="hidden" id="title_1653530" value="Maintenance Coordinator">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/maintenance-coordinator-3/">Maintenance 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 partnering with a reputable company to hire a full-time Maintenance Coordinator in Redding, CA. This position is ideal for someone who is organized, solution-focused, and thrives in a fast-paced office environment. The ideal ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
										$22									</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/maintenance-coordinator-3/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1653530';showapply('1653530');document.getElementById('job_apply').value='AF293306625';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/maintenance-coordinator-3/'" onclick1="document.getElementById('PostId').value='1653530';show('1653530');document.getElementById('job_apply').value='AF293306625'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
											$22								</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11653530" 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('light11653530').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11653530').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;">Maintenance 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"  >
									 $22 - $22 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 partnering with a reputable company to hire a full-time Maintenance Coordinator in Redding, CA. This position is ideal for someone who is organized, solution-focused, and thrives in a fast-paced office environment. The ideal candidate will have strong communication skills, excellent attention to detail, and the ability to effectively coordinate maintenance requests, vendors, and resident needs.</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;">Maintenance Coordinator Compensation:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Starting at $22.00 per hour DOE<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Monday &ndash; Friday | 8:30 AM &ndash; 5:00 PM</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;">Maintenance Coordinator Qualifications:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Previous experience in property management, maintenance coordination, construction administration, customer service, or related office environments preferred<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; Excellent organizational and multitasking abilities<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Ability to problem-solve and work efficiently in a fast-paced environment<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Strong computer skills required<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Proficient with Microsoft Office, email, and online tools<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Experience with property management software preferred</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;">Maintenance Coordinator Responsibilities:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Coordinate maintenance requests from start to finish<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Communicate with residents, property owners, and vendors in a professional manner<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Schedule repairs and ensure work orders are completed in a timely manner<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Maintain accurate records, documentation, and follow-up communications<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Track maintenance progress and ensure projects stay on schedule<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Help create positive experiences by finding solutions and keeping all parties informed</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;">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;"><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. This job appears on the O2 Staffing job board.</em></div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1653530')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AM482156622" value="AM482156622">
						<input type="hidden" id="title_1651322" value="Automotive Mechanic">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/automotive-mechanic-4/">Automotive Mechanic</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Mount Shasta, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is working with a reputable automotive repair company to find their next Automotive Mechanic. This position is based in Mount Shasta, CA.The ideal candidate will be dependable, mechanically inclined, and experienced in diagnosi ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$20 - $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/automotive-mechanic-4/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1651322';showapply('1651322');document.getElementById('job_apply').value='AM482156622';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/automotive-mechanic-4/'" onclick1="document.getElementById('PostId').value='1651322';show('1651322');document.getElementById('job_apply').value='AM482156622'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$20 - $33																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11651322" 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('light11651322').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11651322').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;">Automotive Mechanic</h1></a>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Location :
								</div>
								<div class=" lft addspace"  >
									Mount Shasta, 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"  >
									 $20 - $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;">O2 Employment Services is working with a reputable automotive repair company to find their next Automotive Mechanic. This position is based in Mount Shasta, CA.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">The ideal candidate will be dependable, mechanically inclined, and experienced in diagnosing, repairing, and maintaining a variety of vehicles. This individual should possess strong troubleshooting skills, attention to detail, and a commitment to providing quality workmanship and excellent customer service.</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;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Automotive Mechanic Compensation:</strong></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; $20.00 - $34.00 per hour DOE<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; Long-term career opportunity<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Stable, full-time schedule<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Opportunity for growth based on performance and experience</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;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Automotive Mechanic Qualifications:</strong></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Previous automotive repair and maintenance experience required<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Ability to diagnose and repair mechanical and electrical vehicle issues<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Knowledge of automotive systems including brakes, suspension, steering, engines, and drivetrains<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Experience using diagnostic equipment and hand tools<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Valid driver&#39;s license with a satisfactory driving record<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Strong problem-solving and troubleshooting skills<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Ability to work independently and as part of a team<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; ASE certifications preferred but not required<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Ability to lift up to 50 pounds and perform physical job duties in a shop environment</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;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Automotive Mechanic Responsibilities:</strong></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Perform diagnostics, maintenance, and repairs on customer vehicles<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Inspect vehicles and identify mechanical or safety concerns<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Complete preventative maintenance services including oil changes, tune-ups, and fluid services<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Repair or replace defective parts and components<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Utilize diagnostic equipment to troubleshoot vehicle issues<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Test drive vehicles as necessary to verify repairs and diagnose concerns<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Maintain accurate repair orders and service documentation<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Communicate repair recommendations and findings professionally<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Maintain a clean, organized, and safe work environment<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Follow all company safety policies and procedures</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;">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;">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('1651322')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF910780623" value="AF910780623">
						<input type="hidden" id="title_1651801" value="Lumber Sales & Operations Coordinator">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/lumber-sales-operations-coordinator/">Lumber Sales & Operations 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 company to hire a full-time Lumber Sales &amp; Operations Coordinator in Redding, CA.This position is ideal for someone who is highly organized, self-motivated, and thrives in a fast-paced environmen ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$18 - $25																			</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/lumber-sales-operations-coordinator/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1651801';showapply('1651801');document.getElementById('job_apply').value='AF910780623';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/lumber-sales-operations-coordinator/'" onclick1="document.getElementById('PostId').value='1651801';show('1651801');document.getElementById('job_apply').value='AF910780623'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$18 - $25																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11651801" 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('light11651801').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11651801').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;">Lumber Sales & Operations 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"  >
									 $18 - $25 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 hire a full-time Lumber Sales &amp; Operations Coordinator in Redding, CA.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">This position is ideal for someone who is highly organized, self-motivated, and thrives in a fast-paced environment. The ideal candidate will have strong sales and customer service skills, administrative experience, and the ability to support multiple areas of the business including sales, operations, logistics, and HR.</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;">Lumber Sales &amp; Operations Coordinator Compensation:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull;$18 - $25/hour<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Full-time position, Monday &ndash; Friday, 7:00 AM &ndash; 3:30 PM<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Benefits available after 1 year of employment</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;">Lumber Sales &amp; Operations Coordinator Qualifications:</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Strong communication, organization, and problem-solving skills<br style="font-family: Poppins, sans-serif; font-size: 13px; box-sizing: border-box; color: rgb(0, 0, 0); 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;" fr-original-style="font-family: Poppins, sans-serif; font-size: 13px; box-sizing: border-box; color: rgb(0, 0, 0); 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;">&bull; Sales and customer relationship experience<br style="font-family: Poppins, sans-serif; font-size: 13px; box-sizing: border-box; color: rgb(0, 0, 0); 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;" fr-original-style="font-family: Poppins, sans-serif; font-size: 13px; box-sizing: border-box; color: rgb(0, 0, 0); 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;">&bull; Construction or lumber industry knowledge strongly preferred<br style="font-family: Poppins, sans-serif; font-size: 13px; box-sizing: border-box; color: rgb(0, 0, 0); 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;" fr-original-style="font-family: Poppins, sans-serif; font-size: 13px; box-sizing: border-box; color: rgb(0, 0, 0); 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;">&bull; Ability to read blueprints, project specifications, and technical drawings<br style="font-family: Poppins, sans-serif; font-size: 13px; box-sizing: border-box; color: rgb(0, 0, 0); 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;" fr-original-style="font-family: Poppins, sans-serif; font-size: 13px; box-sizing: border-box; color: rgb(0, 0, 0); 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;">&bull; Proficiency in QuickBooks, Microsoft Word, and Excel required<br style="font-family: Poppins, sans-serif; font-size: 13px; box-sizing: border-box; color: rgb(0, 0, 0); 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;" fr-original-style="font-family: Poppins, sans-serif; font-size: 13px; box-sizing: border-box; color: rgb(0, 0, 0); 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;">&bull; Strong attention to detail and ability to multitask <br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; High school diploma or GED required<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Valid driver&rsquo;s license and reliable transportation required<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Must pass pre-employment background check and drug screen</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;">Lumber Sales &amp; Operations Coordinator Responsibilities:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Build and maintain relationships with customers, contractors, architects, and vendors<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Prepare customer quotes, invoices, and job billing documentation<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Maintain customer, vendor, and project records<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Assist customers with material selection and project requirements<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Research products, vendors, and sourcing options<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Coordinate custom orders, deliveries, and logistics scheduling<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Track inventory, purchasing, and order accuracy<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Support office operations through reporting, recordkeeping, and administrative tasks<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Assist with employee onboarding, compliance tracking, and HR documentation<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Troubleshoot operational issues and help improve workflows across departments</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.</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. This job appears on the O2 Staffing job board.</div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1651801')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF347236618" value="AF347236618">
						<input type="hidden" id="title_1648550" value="Journeyman Painter">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/journeyman-painter/">Journeyman Painter</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 local painting company to find their next Journeyman Painter. This position is based in Redding, CA.The ideal candidate will have strong painting experience, including professional spray application, ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																			</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/journeyman-painter/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1648550';showapply('1648550');document.getElementById('job_apply').value='AF347236618';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/journeyman-painter/'" onclick1="document.getElementById('PostId').value='1648550';show('1648550');document.getElementById('job_apply').value='AF347236618'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																			</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11648550" 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('light11648550').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11648550').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;">Journeyman Painter</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"  >
									 $0 - $0 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 local painting company to find their next Journeyman Painter. 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 painting experience, including professional spray application, excellent attention to detail, and the ability to work independently or as part of a team on residential and commercial projects.</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;">Journeyman Painter Compensation:</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; $25.00 &ndash; $35.00 per hour DOE<br data-start="525" data-end="528" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Full-time position<br data-start="548" data-end="551" 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<br data-start="629" data-end="632" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Opportunity to work with a respected local company</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;">Journeyman Painter Qualifications:</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Previous journeyman-level painting experience required (at least 3 years of professional experience)<br data-start="783" data-end="786" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Experience with spray equipment and spray application required<br data-start="850" data-end="853" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Knowledge of surface preparation, priming, masking, and finishing techniques<br data-start="931" data-end="934" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Ability to work on residential and commercial projects<br data-start="990" data-end="993" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Strong attention to detail and commitment to quality workmanship<br data-start="1059" data-end="1062" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Reliable transportation and strong attendance required<br data-start="1118" data-end="1121" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Ability to lift, climb ladders, and perform physical labor throughout the day</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;">Journeyman Painter Responsibilities:</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Prepare surfaces by scraping, sanding, patching, caulking, and priming<br data-start="1317" data-end="1320" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Apply paints, stains, and coatings using spray equipment, rollers, and brushes<br data-start="1400" data-end="1403" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Operate and maintain spray equipment safely and efficiently<br data-start="1464" data-end="1467" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Mask and protect surrounding areas before painting<br data-start="1519" data-end="1522" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Ensure clean, professional finishes with attention to detail<br data-start="1584" data-end="1587" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Maintain a clean and organized job site<br data-start="1628" data-end="1631" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&bull; Follow all company safety procedures and guidelines<br 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. This job appears on the O2 Staffing job board.</div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1648550')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF673839616" value="AF673839616">
						<input type="hidden" id="title_1647035" value="Administrative Assistant">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/administrative-assistant-3/">Administrative 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 local company who is looking for an Administrative Assistant. This is a full-time, regular role in Redding, CA. Compensation of the Administrative Assistant: $20 - $22 per hourVision, dental, medical offered t ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$19 - $22																			</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/administrative-assistant-3/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1647035';showapply('1647035');document.getElementById('job_apply').value='AF673839616';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/administrative-assistant-3/'" onclick1="document.getElementById('PostId').value='1647035';show('1647035');document.getElementById('job_apply').value='AF673839616'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$19 - $22																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11647035" 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('light11647035').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11647035').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;">Administrative 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"  >
									 $19 - $22 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 who is looking for an Administrative Assistant. This is a full-time, regular role in Redding, CA.</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;">Compensation of the Administrative Assistant:</div><ul 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-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; text-align: left; margin-top: 0px; margin-bottom: 10px; background-color: rgb(255, 255, 255);' 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-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; text-align: left; margin-top: 0px; margin-bottom: 10px; background-color: rgb(255, 255, 255); box-sizing: border-box;'><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;">&nbsp;$20 - $22 per hour</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;">Vision, dental, medical offered through O2</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Full-Time | Monday&ndash;Friday | 8:30 AM &ndash; 5:00 PM</div></li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Prestige Medical, vacation time, 401(k) match, and Aflac supplemental insurance, &nbsp;because your well-being matters!</div></li></ul><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;">Qualifications of the Administrative Assistant:</div><ul data-editing-info='{"applyListStyleFromLevel":true}' 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-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; text-align: left; margin-top: 0px; margin-bottom: 0px; list-style-type: disc; background-color: rgb(255, 255, 255);' 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-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; text-align: left; margin-top: 0px; margin-bottom: 0px; list-style-type: disc; background-color: rgb(255, 255, 255); box-sizing: border-box;'><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to create and maintain organized job files and documentation</div></li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong communication skills for professional customer interaction via phone, email, and in person</div></li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Proven ability to follow instructions accurately and complete tasks in a timely manner</div></li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Experience assisting&nbsp;Property Managers or similar roles in a support capacity</div></li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Experience in&nbsp;property management, real estate, or related office administration- Required</div></li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Skilled in data entry, scheduling, maintaining databases, and managing filing systems</div></li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Comfortable processing incoming and outgoing mail and managing general office tasks</div></li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Detail-oriented and dependable with the ability to multitask and prioritize responsibilities</div></li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Flexible and willing to take on other duties as assigned to support the team</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;">Responsibilities of the Administrative Assistant:</div><ul 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-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; text-align: left; margin-top: 0px; margin-bottom: 10px; background-color: rgb(255, 255, 255);' 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-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; text-align: left; margin-top: 0px; margin-bottom: 10px; background-color: rgb(255, 255, 255); box-sizing: border-box;'><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;">Deliver exceptional customer service to clients, tenants, and vendors in a professional and courteous manner</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;">Manage multiple tasks efficiently while maintaining strong attention to detail in a fast-paced environment</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;">Proficient in Microsoft Office Suite (Word, Excel, Outlook) and comfortable using standard office equipment</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;">Possess strong organizational skills with the ability to prioritize and manage time effectively</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;">Be a self-starter who can work independently while also thriving in a team-oriented setting</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;">Demonstrate excellent written and verbal communication skills with a polished and professional demeanor</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;">Maintain a high level of reliability and punctuality with consistent attendance</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); box-sizing: border-box;">Support general administrative duties including data entry, file management, and assisting&nbsp;property managers as needed</li></ul><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;">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. This job appears on the O2 Staffing job board.</div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1647035')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF315140615" value="AF315140615">
						<input type="hidden" id="title_1645889" value="Office Manager">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/office-manager-4/">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 clinic to find their next Office Manager. This position is based in Redding, CA.The ideal candidate will have strong office management experience, an HR background, bookkeeping experience, Qu ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$23 - $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/office-manager-4/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1645889';showapply('1645889');document.getElementById('job_apply').value='AF315140615';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/office-manager-4/'" onclick1="document.getElementById('PostId').value='1645889';show('1645889');document.getElementById('job_apply').value='AF315140615'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$23 - $33																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11645889" 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('light11645889').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11645889').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;">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"  >
									 $23 - $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;">O2 Employment Services is working with a reputable medical clinic to find their next 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 have strong office management experience, an HR background, bookkeeping experience, QuickBooks knowledge, and the ability to take initiative and learn quickly.</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;">Office Manager Compensation:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; $23 - $33 per 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;">Office Manager Qualifications:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Previous office management experience <strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">REQUIRED</strong><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; HR background <strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">REQUIRED</strong><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Bookkeeping experience <strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">REQUIRED</strong><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; QuickBooks experience preferred<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Strong communication and organizational skills<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Ability to understand new processes quickly<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Self-motivated, dependable, and a go-getter attitude</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;">Office Manager Responsibilities:<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Manage day-to-day office operations<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Contact insurance companies and assist with contract-related tasks<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Assist with bookkeeping duties using QuickBooks<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Support HR-related functions as needed<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Communicate professionally with staff, patients, insurance companies, and outside contacts<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;&bull; Maintain organization and efficiency within the office</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;">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;">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('1645889')" >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=6&">6</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}]}}