		<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="Admin & Clerical" >Admin & Clerical</option>
																		<option value="Business Support Services" >Business Support Services</option>
																		<option value="" selected></option>
																		<option value="Healthcare/Medical" selected>Healthcare/Medical</option>
																		<option value="Skilled Trades & Construction" selected>Skilled Trades & Construction</option>
																		<option value="Healthcare & Medical" selected>Healthcare & Medical</option>
																		<option value="Administrative & Clerical" selected>Administrative & Clerical</option>
																		<option value="Warehouse & Logistics" selected>Warehouse & Logistics</option>
																		<option value="Engineering & Technical" selected>Engineering & Technical</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>
																		<option value="Lakehead" >Lakehead</option>
																		<option value="Burney" >Burney</option>
																		<option value="Garden Grove" >Garden Grove</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_AM588721522" value="AM588721522">
						<input type="hidden" id="title_1697288" value="Pest Control Technician">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/pest-control-technician-3/">Pest Control Technician</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 pest control company to find their next Licensed Pest Control Technician. This position is based in Redding, CA.The ideal candidate will be reliable, customer-focused, safety-minded, and able to work ......
						</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/pest-control-technician-3/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1697288';showapply('1697288');document.getElementById('job_apply').value='AM588721522';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/pest-control-technician-3/'" onclick1="document.getElementById('PostId').value='1697288';show('1697288');document.getElementById('job_apply').value='AM588721522'" >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="light11697288" 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('light11697288').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11697288').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;">Pest Control 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"  >
									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;"><span fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 14px;" style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; box-sizing: border-box;">O2 Employment Services is working with a reputable pest control company to find their next Licensed Pest Control Technician. This position is based in Redding, CA.</span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 14px;" style="font-size: 14px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></span></span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 14px;" style="font-size: 14px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">The ideal candidate will be reliable, customer-focused, safety-minded, and able to work independently while providing high-quality pest control services in residential, commercial, and industrial environments.</span></span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 14px;" style="font-size: 14px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">&nbsp;</strong></span></span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 14px;" style="font-size: 14px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Licensed Pest Control Technician Compensation:</strong></span></span></div><ul fr-original-style='margin-bottom: 0in; color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin-top: 0in;' style='margin-bottom: 0in; color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin-top: 0in; box-sizing: border-box;' type="disc"><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">$19.00 - $23.00 per hour depending on experience</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Experienced Field Representatives may receive the higher end of the pay range, while&nbsp;new&nbsp;Applicators will start toward the lower end</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Compensation may be re-evaluated after 90 days based on performance and licensing progression</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Health, dental, and vision insurance available</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Prestige Medical Care membership</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Paid training and continuing education</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Paid time off and holidays</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Company vehicle and uniform provided</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Opportunities for advancement</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 14px;" style="font-size: 14px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">&nbsp;</span></span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 14px;" style="font-size: 14px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Licensed Pest Control Technician &ndash; Qualifications</strong></span></span></div><ul fr-original-style='margin-bottom: 0in; color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin-top: 0in;' style='margin-bottom: 0in; color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin-top: 0in; box-sizing: border-box;' type="disc"><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Valid California Structural Pest Control License &ndash; Branch 2 required</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Field Representative License preferred; applicators must obtain Field Representative license within 90 days if not already licensed</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">High school diploma or equivalent required</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Strong knowledge of pest control methods, materials, safety procedures, and applicable regulations</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Excellent verbal and written communication skills with a customer-focused approach</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Proficiency with email management, mobile applications, and digital documentation tools</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Ability to work independently, manage a daily service route, and make sound decisions in the field</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Valid driver&rsquo;s license with a clean driving record and ability to meet company insurability requirements</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Ability to regularly lift and carry up to 50 pounds, including operating a 50-pound backpack sprayer for extended periods</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Ability to climb ladders, access attics, crawlspaces, rooftops, basements, and confined spaces</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Must be comfortable working outdoors in varying weather conditions and pest-active environments</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 14px;" style="font-size: 14px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">&nbsp;</strong></span></span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 14px;" style="font-size: 14px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Licensed Pest Control Technician &ndash; Responsibilities</strong></span></span></div><ul fr-original-style='margin-bottom: 0in; color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin-top: 0in;' style='margin-bottom: 0in; color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin-top: 0in; box-sizing: border-box;' type="disc"><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Inspect residential, commercial, and industrial properties to identify pest activity and conditions conducive to infestation</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Determine and implement appropriate treatment plans based on inspection findings and customer needs</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Apply pesticides and pest control solutions safely, effectively, and in compliance with label directions and applicable regulations</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Communicate clearly with customers regarding service details, treatment plans, expectations, and follow-up care</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Provide preventative recommendations to reduce the risk of future pest infestations</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Maintain accurate and detailed service records, including chemicals used, application areas, and service notes</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Ensure compliance with all local, state, and federal pesticide regulations and company policies</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Safely operate and maintain a company vehicle while traveling to and from client sites</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Maintain equipment, tools, and supplies in clean, organized, and safe working condition</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Utilize mobile service applications and digital tools for routing, documentation, and communication</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Maintain&nbsp;professional&nbsp;and timely communication with office staff and team members</li><li fr-original-style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif;" style="margin: 0in; font-size: 14px; font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Consistently demonstrate reliability,&nbsp;professionalism, punctuality, and accountability in the field</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 14px;" style="font-size: 14px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">&nbsp;</span></span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 14px;" style="font-size: 14px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.&nbsp;</span></span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-size: 14px;" style="font-size: 14px; box-sizing: border-box;"><span fr-original-style="font-family: Arial,Helvetica,sans-serif;" style="font-family: Arial, Helvetica, sans-serif; box-sizing: border-box;">&nbsp;</span></span></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><span fr-original-style="font-family: Arial, Helvetica, sans-serif; font-size: 14px;" style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; box-sizing: border-box;"><em fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</em></span></div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1697288')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_BB195733820" value="BB195733820">
						<input type="hidden" id="title_1695946" value="Security">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/security/">Security</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Cottonwood, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is working with a local organization to find their next Compliance Officer in Cottonwood, CA. This position combines community patrol and compliance with administrative responsibilities and regular interaction with the public.  ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$20 - $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/security/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1695946';showapply('1695946');document.getElementById('job_apply').value='BB195733820';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/security/'" onclick1="document.getElementById('PostId').value='1695946';show('1695946');document.getElementById('job_apply').value='BB195733820'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$20 - $23																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11695946" 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('light11695946').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11695946').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;">Security</h1></a>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Location :
								</div>
								<div class=" lft addspace"  >
									Cottonwood, 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 - $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 organization to find their next <strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Compliance Officer</strong> in <strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Cottonwood, CA</strong>. This position combines community patrol and compliance with administrative responsibilities and regular interaction with the public.</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;">The ideal candidate will be professional, observant, organized, and confident communicating with others, including during difficult or confrontational situations.</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;">Compliance Officer &ndash; Compensation &amp; Schedule</strong></div><ul fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">$20.00&ndash;$23.00 per hour</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Full-time Schedule</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Monday&ndash;Friday</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">7:30 a.m.&ndash;4:00 p.m.</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Possibility for weekend hours as needed</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Compliance Officer &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;">Conduct daily community patrols and identify, photograph, and document potential violations or concerns</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Communicate with community members regarding rules, guidelines, and compliance issues</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Monitor properties and community areas for concerns, including weed abatement, parking, safety, and maintenance issues</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Prepare notices, violation letters, and other compliance correspondence</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Process complaints and maintain accurate records, spreadsheets, and follow-up documentation</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Follow established procedures for escalating violations and enforcement</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Coordinate and participate in compliance hearings, including preparing and presenting relevant information</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Communicate professionally with individuals regarding violations, corrective actions, fines, and appeal procedures</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Coordinate with local agencies when necessary</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Assist with phones, payments, and general office responsibilities as needed</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Perform minor community cleanup and additional compliance duties as assigned</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;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Compliance Officer &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;">Strong communication, interpersonal, and organizational skills</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Professional and respectful when handling sensitive or difficult situations</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to remain calm and composed when interacting with upset or confrontational individuals</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong attention to detail with the ability to document and follow up on concerns accurately</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Comfortable working independently and enforcing established rules and procedures</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Basic computer and technology skills, including email, spreadsheets, and general office programs</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to balance outdoor fieldwork with administrative responsibilities</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Dependable, professional, and able to maintain confidentiality</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Valid driver&rsquo;s license</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Previous experience in compliance, property management, code enforcement, security, customer service, or a related field is a plus</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;"><em fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</em></div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1695946')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_BB97461820" value="BB97461820">
						<input type="hidden" id="title_1696125" value="Executive Assistant">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/executive-assistant-5/">Executive 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 construction company to find their next Executive Assistant &ndash; Construction. This remote position will work closely with the company owner to support administrative operations, field communication,  ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$22 - $28																			</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/executive-assistant-5/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1696125';showapply('1696125');document.getElementById('job_apply').value='BB97461820';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/executive-assistant-5/'" onclick1="document.getElementById('PostId').value='1696125';show('1696125');document.getElementById('job_apply').value='BB97461820'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$22 - $28																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11696125" 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('light11696125').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11696125').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;">Executive 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"  >
									 $22 - $28 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 construction company to find their next <strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Executive Assistant &ndash; Construction</strong>. This remote position will work closely with the company owner to support administrative operations, field communication, workforce coordination, time tracking, and construction projects.</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;">The ideal candidate will be organized, proactive, tech-savvy, and experienced within the construction or trades industry. This position requires someone who can work independently, manage multiple priorities, and communicate effectively with field employees, outside partners, and company leadership.</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;">Executive Assistant &ndash; Compensation &amp; Schedule</strong></div><ul fr-original-style="margin-top: 1em;" style="margin-top: 1em; box-sizing: border-box; font-family: inherit; font-size: inherit; margin-bottom: 10px;"><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; margin-bottom: 0in;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; margin-bottom: 0in; box-sizing: border-box;">$22.00&ndash;$28.00 per hour, depending on experience</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Approximately 20 hours per week to start</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Expected to transition to full-time as project needs increase</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; font-weight: bold;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; font-weight: bold; box-sizing: border-box;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">100% remote position</strong></li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; font-weight: bold;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; font-weight: bold; box-sizing: border-box;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Must reside in California</strong></li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Temp-to-hire opportunity</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;">Executive Assistant &ndash; Responsibilities</strong></div><ul fr-original-style="margin-top: 1em;" style="margin-top: 1em; box-sizing: border-box; font-family: inherit; font-size: inherit; margin-bottom: 10px;"><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; margin-bottom: 0in;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; margin-bottom: 0in; box-sizing: border-box;">Provide direct administrative and organizational support to the company owner</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Coordinate with outside staffing partners regarding onboarding and workforce needs</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Review and manage employee timekeeping through QuickBooks Time</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Ensure employee hours are accurately assigned to appropriate projects and job codes</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Categorize and match receipts and expenses within QuickBooks</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Monitor field updates, project photos, and communication through CompanyCam</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Serve as a primary point of contact for field communication and organize non-urgent updates for company leadership</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Assist with incoming bid opportunities and organize related documents</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Download and organize project plans and assist with basic estimating templates</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Manage scheduling and calendar priorities for the company owner</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Maintain organized digital records and help streamline administrative processes</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Communicate with field employees, accounting partners, staffing agencies, and other outside contacts as needed</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;">Executive Assistant &ndash; Qualifications</strong></div><ul fr-original-style="margin-top: 1em;" style="margin-top: 1em; box-sizing: border-box; font-family: inherit; font-size: inherit; margin-bottom: 10px;"><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; margin-bottom: 0in;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; margin-bottom: 0in; box-sizing: border-box;">Minimum 2 years of administrative experience within construction, contracting, or the trades required</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; font-weight: bold;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; font-weight: bold; box-sizing: border-box;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Experience with QuickBooks Online and QuickBooks Time required</strong></li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Proficiency with Microsoft Excel</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Experience with CompanyCam preferred, or ability to learn new technology quickly</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Working knowledge of construction processes and terminology, including change orders, lien waivers, and submittals</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Familiarity with California construction-related labor and timekeeping requirements preferred</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Strong organizational skills and attention to detail</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Excellent written and verbal communication skills</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Ability to professionally prioritize and filter communications while protecting executive time</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Comfortable working independently in a remote environment</li><li fr-original-style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%;" style="font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-size: 11pt; color: rgb(0, 0, 0); line-height: 115%; box-sizing: border-box;">Must reside in California<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;"></li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.&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('1696125')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF965563819" value="AF965563819">
						<input type="hidden" id="title_1694379" value="Medical Front Office">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/medical-front-office/">Medical Front Office</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 medical office to find their next Medical Front Office team member. This is a great opportunity for someone who enjoys working with patients and wants to expand their experience within the medical field. ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
										$21									</div>
							</div>
						</div>
							
						<div class="addpad clr">
						
							<div style="float:left" class="buttond">
							<div   onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/medical-front-office/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1694379';showapply('1694379');document.getElementById('job_apply').value='AF965563819';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/medical-front-office/'" onclick1="document.getElementById('PostId').value='1694379';show('1694379');document.getElementById('job_apply').value='AF965563819'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
											$21								</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11694379" 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('light11694379').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11694379').style.display='none';document.getElementById('fade').style.display='none'"   style="display:none;position: absolute;right: 2%;text-align: 0;top: 1%;/*! margin-left: 2%; */font-size: 36px;cursor:pointer" class="ico-times" role="img" aria-label="Cancel"></i>
						
					</div>	
					<div class="contentpopupdesc" style="background:white;border-radius:6px;">
					
					   <div class="head clr">  
							<div style="width:100%;padding-top:10px" class="clr">
								<a class="atagcover" href="#"><h1 style="padding-top: 0px;margin-top: 0px;">Medical Front Office</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"  >
									 $21 - $21 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 medical office to find their next Medical Front Office team member. This is a great opportunity for someone who enjoys working with patients and wants to expand their experience within the medical field. This position offers lots of cross-training opportunities, including exposure to Medical Assistant duties and other areas of the practice.</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;">Medical Front Office Compensation &amp; Schedule:</div><ul data-spread="false" 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;">$21/hour</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Full-time opportunity</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Monday&ndash;Friday schedule</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Medical, dental, and vision insurance offered through O2</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Opportunity for cross-training and professional growth</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Medical Front Office Requirements:</div><ul data-spread="false" 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 medical office, or healthcare experience <strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">required</strong></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Medical Assistant experience preferred</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Friendly and professional with strong customer service skills</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Comfortable working directly with patients</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong communication and organizational skills</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to multitask in a busy medical office</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Dependable and willing to learn</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Must be a team player</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Must be open to cross-training and assisting in multiple areas of the practice</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Interest in learning Medical Assistant duties is a plus</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Medical Front Office Responsibilities:</div><ul data-spread="false" fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit; margin-top: 0px; margin-bottom: 10px;"><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Greet and check in patients</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Answer phones and assist with patient questions</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Schedule and confirm appointments</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Update patient information and maintain accurate records</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Assist with general front office and administrative duties</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Communicate with providers and clinical staff</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Help keep patient flow organized and efficient</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Cross-train in Medical Assistant and other clinical/administrative duties</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Assist in other areas of the office as needed</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.&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('1694379')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_BB50763085" value="BB50763085">
						<input type="hidden" id="title_1693413" value="Casting Shop Laborer">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/casting-shop-laborer-2/">Casting Shop Laborer</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 manufacturing company to find their next Casting Shop Laborer. This position is based in Redding, CA and supports the production of precast molds in a hands-on shop environment.Casting Shop Laborer Compe ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
										$19									</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/casting-shop-laborer-2/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1693413';showapply('1693413');document.getElementById('job_apply').value='BB50763085';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/casting-shop-laborer-2/'" onclick1="document.getElementById('PostId').value='1693413';show('1693413');document.getElementById('job_apply').value='BB50763085'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
											$19								</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11693413" 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('light11693413').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11693413').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;">Casting Shop 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"  >
									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 - $19 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 manufacturing company to find their next&nbsp;Casting Shop Laborer. This position is based in&nbsp;Redding, CA&nbsp;and supports the production of&nbsp;precast&nbsp;molds in a hands-on shop environment.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Casting Shop Laborer Compensation &amp; Benefits</strong><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">$18.50 per hour - starting rate of pay<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Full-time opportunity<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Opportunity for overtime</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></strong></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Mold Shop Laborer Qualifications</strong><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Previous labor or manufacturing experience preferred<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Comfortable using hand tools and power tools (drills, impacts, etc.)<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Willingness to learn and safely operate saws, including a table saw<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong attention to detail and ability to follow directions<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Reliable with a strong work ethic</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Mold Shop Laborer Responsibilities</strong><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Sand foam and polyurethane materials as part of mold creation<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Cut materials using various saws<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Operate hand tools and power tools<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Assist in building negative molds for&nbsp;precast&nbsp;production<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Maintain a clean and safe work environment</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Mold Shop Laborer Schedule</strong><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Monday&ndash;Friday, full-time, 5am - 1:30pm<br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Occasional Saturdays based on production 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;">Please note this&nbsp;job&nbsp;description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this&nbsp;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.</em></div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1693413')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF726837818" value="AF726837818">
						<input type="hidden" id="title_1693683" value="Part-Time Bookkeeper">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/part-time-bookkeeper/">Part-Time Bookkeeper</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 church to find their next Part-Time Bookkeeper in Redding, CA. This is a great opportunity for someone with a bookkeeping background who is looking for a flexible part-time schedule with the potential fo ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$20 - $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/part-time-bookkeeper/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1693683';showapply('1693683');document.getElementById('job_apply').value='AF726837818';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/part-time-bookkeeper/'" onclick1="document.getElementById('PostId').value='1693683';show('1693683');document.getElementById('job_apply').value='AF726837818'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$20 - $25																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11693683" 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('light11693683').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11693683').style.display='none';document.getElementById('fade').style.display='none'"   style="display:none;position: absolute;right: 2%;text-align: 0;top: 1%;/*! margin-left: 2%; */font-size: 36px;cursor:pointer" class="ico-times" role="img" aria-label="Cancel"></i>
						
					</div>	
					<div class="contentpopupdesc" style="background:white;border-radius:6px;">
					
					   <div class="head clr">  
							<div style="width:100%;padding-top:10px" class="clr">
								<a class="atagcover" href="#"><h1 style="padding-top: 0px;margin-top: 0px;">Part-Time Bookkeeper</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"  >
									 $20 - $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 local church to find their next Part-Time Bookkeeper in Redding, CA. This is a great opportunity for someone with a bookkeeping background who is looking for a flexible part-time schedule with the potential for additional hours.</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;">Bookkeeper Compensation &amp; Schedule</div><ul data-spread="false" 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;">$20&ndash;$25 per hour</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Part-time, approximately 15&ndash;18 hours per week</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Opportunity for hours to grow</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Bookkeeper Qualifications</div><ul data-spread="false" 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 bookkeeping experience preferred</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Understanding of general bookkeeping principles, including credits and debits</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Experience with accounts payable and accounts receivable</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">General ledger knowledge</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Payroll experience preferred</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Paylocity experience is a plus, but training is available</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Detail-oriented and comfortable working with financial records</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Bookkeeper Responsibilities</div><ul data-spread="false" 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;">Prepare statements and reconcile payments</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Process accounts payable and accounts receivable</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Set up bill payments through the banking system</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Perform general ledger work and correct account coding as needed</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Assist with payroll processing through Paylocity</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Process payroll on the 1st and 15th</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Input payroll expenses into the accounting system</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Maintain accurate and organized financial records</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.&nbsp;</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><em fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</em></div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1693683')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_BB791122817" value="BB791122817">
						<input type="hidden" id="title_1692624" value="AutoCAD Drafter / Project Manager">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/autocad-drafter-project-manager/">AutoCAD Drafter / Project Manager</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Cottonwood, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is working with a well-established local custom cabinetry and millwork company to find their next AutoCAD Drafter / Project Manager in Cottonwood, CA.This full-time opportunity is ideal for an experienced drafter who is comfort ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$29 - $43																			</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/autocad-drafter-project-manager/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1692624';showapply('1692624');document.getElementById('job_apply').value='BB791122817';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/autocad-drafter-project-manager/'" onclick1="document.getElementById('PostId').value='1692624';show('1692624');document.getElementById('job_apply').value='BB791122817'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$29 - $43																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11692624" 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('light11692624').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11692624').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;">AutoCAD Drafter / Project 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"  >
									Cottonwood, 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"  >
									 $29 - $43 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 well-established local custom cabinetry and millwork company to find their next&nbsp;<strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">AutoCAD Drafter / Project Manager</strong>&nbsp;in&nbsp;<strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Cottonwood, CA</strong>.</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;">This full-time opportunity is ideal for an experienced drafter who is comfortable reading architectural plans, producing detailed shop drawings, and helping manage projects from initial planning through production and completion.</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;">The ideal candidate will have strong AutoCAD experience, excellent attention to detail, and the ability to communicate effectively with contractors, architects, designers, and internal production teams. Experience with cabinetry, millwork, Cabinet Vision, or CNC programming is highly 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;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">AutoCAD Drafter / Project Manager &ndash; Compensation &amp; Schedule</strong></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-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; list-style: disc; margin-top: 0px; margin-bottom: 0px;' style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; list-style: disc; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;'><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">$60,000 &ndash; $90,000 annually, depending on experience, ability, and performance</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Full-time</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">In-person position</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Schedule TBD</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Benefits available upon hire with the client company may include:</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">401(k)</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">401(k) matching</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Dental insurance</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Vision insurance</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Paid Time Off</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Relocation Assistance</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;"><br fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"></strong></div></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;">AutoCAD Drafter / Project Manager &ndash; Qualifications</strong></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-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; list-style: disc; margin-top: 0px; margin-bottom: 0px;' style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; list-style: disc; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;'><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Previous drafting and AutoCAD experience required</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to read and interpret architectural drawings, technical specifications, and scope sheets</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong verbal and written communication skills</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong organizational and project management skills</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to manage project details, timelines, revisions, and deadlines</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to communicate and problem-solve with contractors, architects, designers, and internal teams</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Cabinet Vision experience highly preferred</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Experience with Cabinet Ware is a plus</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Practical woodworking and cabinet design experience is a plus</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Knowledge of ADA and AWI rules, restrictions, and requirements is helpful</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Experience drafting and laying out cabinet or millwork projects is a plus</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Associate degree preferred</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Must be punctual and dependable</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></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;">AutoCAD Drafter / Project Manager &ndash; Responsibilities</strong></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-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; list-style: disc; margin-top: 0px; margin-bottom: 0px;' style='color: rgb(36, 36, 36); font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; list-style: disc; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;'><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Prepare takeoffs from architectural plans for millwork and casework projects</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Read and interpret architectural plans, specifications, and project scope</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Confirm measurements and project details</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Produce accurate working sets of shop drawings</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Create ready-to-build designs using AutoCAD and applicable cabinet design software</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Communicate and problem-solve with contractors, architects, and designers</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Track revisions, project updates, timelines, and key deadlines</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Coordinate job information between drafting, CNC, production management, and foremen</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Program CNC equipment and work closely with the CNC operator and production team</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Oversee Cabinet Vision setup and training</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Support project management responsibilities from planning through completion</div></li><li fr-original-style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px;" style="color: black; font-size: 11pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin-top: 0px; margin-bottom: 0px; box-sizing: border-box;"><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Help ensure projects remain accurate, organized, and on schedule</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;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.&nbsp;</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><em fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</em></div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1692624')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF919404814" value="AF919404814">
						<input type="hidden" id="title_1691714" value="Project Superintendent">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/project-superintendent/">Project Superintendent</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Garden Grove, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is working with a construction company to find their next Project Superintendent for a project located in Garden Grove, CA. This is a full-time, project-based opportunity overseeing a California Public Works construction projec ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$47 - $49																			</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/project-superintendent/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1691714';showapply('1691714');document.getElementById('job_apply').value='AF919404814';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/project-superintendent/'" onclick1="document.getElementById('PostId').value='1691714';show('1691714');document.getElementById('job_apply').value='AF919404814'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$47 - $49																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11691714" 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('light11691714').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11691714').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;">Project Superintendent</h1></a>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Location :
								</div>
								<div class=" lft addspace"  >
									Garden Grove, 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"  >
									 $47 - $49 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 construction company to find their next Project Superintendent for a project located in <strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">Garden Grove, CA</strong>. This is a full-time, project-based opportunity overseeing a California Public Works construction project. The ideal candidate will have strong commercial construction experience and be confident managing day-to-day field operations, subcontractors, safety, scheduling, quality control, and project documentation.</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Project Superintendent Compensation &amp; Benefits</div><ul data-spread="false" 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;">$100,000 annually</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Full-time, project-based opportunity</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Project located in Garden Grove, CA</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Opportunity to lead a California Public Works construction project</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Project Superintendent Qualifications</div><ul data-spread="false" 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 experience as a Construction Superintendent or similar field leadership role required</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong knowledge of commercial construction methods and practices</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to read and interpret construction plans, specifications, schedules, and contract documents</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Experience coordinating multiple subcontractors and trades</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Public Works construction experience preferred</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Experience working with union subcontractors and workforce preferred</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Working knowledge of Cal/OSHA construction safety requirements</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to serve as an onsite Competent Person within applicable training and experience</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong leadership, communication, organization, and documentation skills</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to identify problems, develop solutions, and make timely field decisions</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Comfortable using construction technology for plans, scheduling, documentation, photos, email, and project communication</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">OSHA 30-Hour Construction Safety training preferred/required based on project requirements</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">First Aid/CPR and applicable Competent Person training may be required</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Project Superintendent Responsibilities</div><ul data-spread="false" 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;">Serve as the primary onsite representative and oversee daily construction activities</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Coordinate subcontractors, suppliers, inspectors, testing agencies, consultants, and project personnel</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Maintain a safe, organized, professional, and productive jobsite</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Review plans, specifications, schedules, submittals, RFIs, and other project documents</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ensure work is completed according to approved plans, specifications, codes, and contract requirements</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Develop and maintain short-term construction schedules</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Coordinate sequencing between trades to minimize delays, conflicts, and rework</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Monitor subcontractor manpower, production, quality, safety, and completion of work</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Coordinate inspections, testing, deliveries, and jobsite access</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Support Public Works requirements, including prevailing wage, apprenticeship, labor compliance, and accurate field documentation</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Coordinate effectively with union subcontractors, foremen, and workers</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Conduct routine jobsite safety inspections, toolbox talks, and pre-task planning</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Identify and correct unsafe conditions and exercise Stop Work Authority when necessary</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Maintain quality control throughout construction and coordinate punch-list completion</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Complete accurate daily reports documenting workforce activity, work completed, inspections, safety activities, delays, deliveries, and project progress</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Communicate project progress, scheduling concerns, safety issues, potential change orders, and other significant concerns to project management</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Anticipate potential issues and proactively keep the project safe, on schedule, and moving forward</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.&nbsp;</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">&nbsp;</div><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;"><em fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">O2 Employment Services is an Equal Employment Opportunity Employer. Reasonable accommodations may be made to enable individuals with disabilities or sincerely held religious beliefs to perform the essential functions of the position.</em></div>								</div>
							</div>
							 
							
							<div class="addpad clr" style="padding-bottom:67px">
						 
								<div style="float:left">
								<div   href="#" class="btn1 tooltiplink" onclick="showapply('1691714')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF85713286" value="AF85713286">
						<input type="hidden" id="title_1689176" value="Furniture Installer">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/furniture-installer-2/">Furniture Installer</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 furniture company to find their next Furniture Installer. This position is based in Redding, CA.The ideal candidate is mechanically inclined, enjoys hands-on work, takes pride in delivering exc ......
						</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/furniture-installer-2/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1689176';showapply('1689176');document.getElementById('job_apply').value='AF85713286';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/furniture-installer-2/'" onclick1="document.getElementById('PostId').value='1689176';show('1689176');document.getElementById('job_apply').value='AF85713286'" >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="light11689176" 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('light11689176').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11689176').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;">Furniture 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"  >
									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 working with a reputable local furniture company to find their next Furniture Installer. 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 is mechanically inclined, enjoys hands-on work, takes pride in delivering excellent customer service, and is looking for a long-term career with a stable 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;">Furniture Installer Compensation:</div><ul data-end="634" data-start="498" 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; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; text-align: left; margin-top: 0px; margin-bottom: 10px;' 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; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; text-align: left; margin-top: 0px; margin-bottom: 10px; box-sizing: border-box;'><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">$22/hour</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Monday&ndash;Friday schedule</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Paid holidays</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Paid vacation</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Simple IRA retirement plan</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Medical, dental, and vision insurance</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Furniture Installer Qualifications:</div><ul data-end="1004" data-start="680" 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; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; text-align: left; margin-top: 0px; margin-bottom: 10px;' 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; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; text-align: left; margin-top: 0px; margin-bottom: 10px; box-sizing: border-box;'><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Valid driver&#39;s license with a clean DMV record</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Smoke-free</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">1&ndash;2 years of hands-on mechanical experience preferred</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Ability to safely use hand and power tools</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Strong customer service and communication skills</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Construction and hand tool knowledge is&nbsp;required</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Knowledge of Shasta County and surrounding areas is a plus</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Furniture Installer Responsibilities:</div><ul data-end="1513" data-start="1052" 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; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; text-align: left; margin-top: 0px; margin-bottom: 10px;' 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; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; text-align: left; margin-top: 0px; margin-bottom: 10px; box-sizing: border-box;'><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Load, transport, and deliver furniture safely to customer locations</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Operate a company vehicle while following all traffic and safety regulations</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Assemble and install office and residential furniture</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Ensure furniture is handled with care to prevent damage</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Provide exceptional customer service during deliveries and installations</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Obtain customer signatures and delivery confirmations</li><li fr-original-style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36);" style="font-family: Calibri, sans-serif; font-size: 11pt; color: rgb(36, 36, 36); box-sizing: border-box;">Assist with warehouse, delivery, and installation tasks as needed</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.&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('1689176')" >Apply Now</div>
								
								 
	  
								</div>
								 
							</div>
						
							
						</div>
						
					</div>
				</div>
		  </div>
	</div>
					<div class="job">
				<input type="hidden" id="jobid_AF764992810" value="AF764992810">
						<input type="hidden" id="title_1687380" value="Payroll Specialist">
						<div class="head clr">  
							<div class="title"  >
								<a class="atag" href="https://jobs.o2employmentservices.com/job-board/jobs/payroll-specialist-5/">Payroll Specialist</a>
							</div>
							<div class='location'  >
								<div class="loc_right"  >
									Redding, CA 
								</div>
							</div>
						</div>
						<div class="desc clr" style='text-align: left;'>  
						
						 O2 Employment Services is looking to find their next Payroll Specialist. This is a full-time, long-term opportunity located in Redding, CA. The ideal candidate will have previous payroll experience, including certified payroll and prevailing wage.Pay ......
						</div>
						<div class="addpad clr small_rate"> 
							<div class="small_rate" >
									<div class="payrate"  >
																				$24 - $28																			</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/payroll-specialist-5/?apply=true'" class="btn1 tooltiplink" onclick1="scrolltop();document.getElementById('PostId').value='1687380';showapply('1687380');document.getElementById('job_apply').value='AF764992810';" >Apply Now</div>
							
							<div   href="#" class="rightdiv btn1 tooltiplink addleftmargin" onclick="window.location.href='https://jobs.o2employmentservices.com/job-board/jobs/payroll-specialist-5/'" onclick1="document.getElementById('PostId').value='1687380';show('1687380');document.getElementById('job_apply').value='AF764992810'" >Read More</div>
  
							</div>
							
							<div class="big_rate" style="float:right">
								<div class="payrate" style="float:right">
																					$24 - $28																		</div>
							</div>
						</div>
										
				</div>
					<!-- Destails --->
	<div id="light11687380" 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('light11687380').style.display='none';document.getElementById('fade').style.display='none'"><span  >&#8592;</span> Job Board </h1>
						
						<i  onclick="document.getElementById('light11687380').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;">Payroll Specialist</h1></a>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Location :
								</div>
								<div class=" lft addspace"  >
									Redding, CA 
								</div>
							</div>
							<div class="clr addpad" style="padding-top: 3px;font-size: 16px;">
								<div class="lefthead lft">
									Pay Range :
								</div>
								<div class=" lft addspace"  >
									 $24 - $28 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 looking to find their next Payroll Specialist. This is a full-time, long-term opportunity located in Redding, CA. The ideal candidate will have previous payroll experience, including certified payroll and prevailing wage.</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;">Payroll Specialist Compensation &amp; Benefits</div><ul data-spread="false" 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;">$25 - $28 per hour, depending on experience</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Full-time, long-term opportunity</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Medical, Dental, Vision &amp; Term Life Insurance</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Payroll Specialist Qualifications</div><ul data-spread="false" 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;">Certified payroll and prevailing wage experience&nbsp;</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Previous payroll experience <strong fr-original-style="" style="box-sizing: border-box; font-weight: bold; font-family: inherit; font-size: inherit;">REQUIRED</strong></li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Light accounting experience is a plus</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Proficient in Microsoft Word and Excel</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong general math skills</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Excellent attention to detail</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Ability to follow directions and take detailed notes</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Strong communication and customer service skills</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Self-motivated and dependable</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Team player who can work in a fast-paced environment</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Payroll Specialist Responsibilities</div><ul data-spread="false" 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;">Calculate employee pay and deductions</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Collect, calculate, and enter payroll data</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Maintain and update payroll records</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Process certified payroll and prevailing wage requirements</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Prepare reports for earnings, taxes, deductions, and other payroll information</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Research and resolve payroll discrepancies</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Follow applicable payroll laws and regulations</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Maintain payroll operations according to established policies and procedures</li><li fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Perform other duties as assigned</li></ul><div fr-original-style="" style="box-sizing: border-box; font-family: inherit; font-size: inherit;">Please note this job description is not designed to cover or contain a comprehensive listing of activities, duties or responsibilities that are required of the employee for this job. Duties, responsibilities, and activities may change at any time with or without notice.&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('1687380')" >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}]}}