* { 
	margin: 0; 
	padding: 0; 
}
body { 
	font: 14px/1.4 arial, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight:normal;
	color:#000 !important;
}
 
p {
	margin: 20px 0; 
}

	/* 
	Generic Styling, for Desktops/Laptops 
	*/
	table.jobs { 
		width: 100% !important; 
		border-collapse: collapse; 
		margin-left:auto !important;
		margin-right:auto !important;
		background-color: #fff !important;
	}
	/* Zebra striping */
	tr:nth-of-type(odd) {  
	}
	tr {
		border-top:1px solid #dddddd;
		 width: 100% !important; 
	}
	
	th { 
		background: transparent; 
		color: #333; 
	    font-weight:normal;
		font-size:11px;
	}
	td, th { 
		padding: 6px;  
		text-align: left; 
	}
	
	td.desc {
		padding-right:50px !important;
	}
	
	
	 /*buttons at top*/
		 
	a#apply {
  background: #ff8f05;
  background-image: -webkit-linear-gradient(top, #ff8f05, #c24f02);
  background-image: -moz-linear-gradient(top, #ff8f05, #c24f02);
  background-image: -ms-linear-gradient(top, #ff8f05, #c24f02);
  background-image: -o-linear-gradient(top, #ff8f05, #c24f02);
  background-image: linear-gradient(to bottom, #ff8f05, #c24f02);
  -webkit-border-radius: 15;
  -moz-border-radius: 15;
  border-radius: 15px;
  font-family: Arial;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

a:hover#apply {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}

/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {
	
	/* Force table to not be like tables anymore */
	table.jobs {
		width: 100% !important; 
	}
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
		
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
		
	tr { border: 1px solid #ccc; }
		
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}
		
	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
		 
		td.desc {
			 
		padding-left: 10px  !important; 
		}
		 
		 
		
	/*
	Label the data
	*/
	td.one:nth-of-type(1):before { content: "POSITION TITLE"; }
	td.one:nth-of-type(2):before { content: "POSITION TYPE"}
	td.one:nth-of-type(3):before { content: "PAY";  }
	td.one:nth-of-type(4):before { content: "SHIFT HOURS"; }
	td.one:nth-of-type(5):before { content: "DETAILS"; } 
		
	td.desc:nth-of-type(1):before { content: ""; } 
}
	
/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
	body { 
		padding: 0; 
		margin: 0; 
		width: 320px; }
	}
	
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	body { 
		width: 495px; 
	}
}