@charset "UTF-8";

html,
body {
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.4;
	background-color: rgba(118, 152, 175, 0.473);

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.bgstripes {
	position: absolute;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-position: left top;
}

#background_overlay {
	height: 100%;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999999 !important;
	background-color: black;
	display: none;
	-moz-opacity: 0.75;
	/* mozilla, netscape */
	opacity: 0.75;
	/* fx, safari, opera */
}

/* ~~ Element/tag selectors ~~ */
ul,
ol,
dl {
	/* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;

}

.fixed {
	position: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin-top: 0;
	/* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px;
	/* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

a img {
	/* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline;
	/* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {
	color: #6E6C64;
	text-decoration: underline;
}

a:hover,
a:active,
a:focus {
	/* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 964px;
	margin: 0 auto;
	/* the auto value on the sides, coupled with the width, centers the layout */
	min-height: 600px;
	/* height of page */
	overflow: auto;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	height: 60px;
}

.logo {
	width: 130px;
	height: 55px;
	float: left;
	/* IE10 Consumer Preview */
	/*
	background-image: -ms-radial-gradient(center, ellipse farthest-side, red 0%, #000066 100%);
*/

	/* Mozilla Firefox */
	/*
	background-image: -moz-radial-gradient(center, ellipse farthest-side, red 0%, #000066 100%);
*/

	/* Opera */
	/*
	background-image: -o-radial-gradient(center, ellipse farthest-side, red 0%, #000066 100%);
*/

	/* Webkit (Safari/Chrome 10) */
	/*
	background-image: -webkit-gradient(radial, center center, 0, center center, 487, color-stop(0,#fff), color-stop(1, red));
*/

	/* Webkit (Chrome 11+) */
	/*
	background-image: -webkit-radial-gradient(center, ellipse farthest-side, #fff 0%, red 100%);
*/

	/* W3C Markup, IE10 Release Preview */
	/*
	background-image: radial-gradient(ellipse farthest-side at center, #fff 0%, red 100%);
*/
}

.page_title {
	font-family: Arial Black, sans-serif;
	float: right;
	font-size: 1em;
	width: 240px;
	height: 60px;
	background-image: url(../images/layout/page-title.png);
	background-size: 100% Auto;
	text-align: center;
}

.footer {
	height: 45px;
}

.ServicePerson_Name {
	color: white;
	float: left;
}

.ServiceDepoService {
	color: white;
	float: right;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

.content {
	position: relative;
	color: #000;
	/*
	text-shadow: 1px 1px 3px #ffbbbb;
*/
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background: white;
	padding: 5px;
	border-radius: 8px;
	/* min-height:495px; height of page minus footer 45px and header 60px (logo) */
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {
	/* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}

.fltlft {
	/* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}

.clearfloat {
	/* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear: both;
	height: 0;
	font-size: 1px;
	line-height: 0px;
}

/* ~~ Jquery ~~*/

.serviceitemactions {
	position: absolute;
	margin: 50px 100px 100px 100px;
	width: 750px;

	display: none;
	background: white;
	border-radius: 8px;
	font-size: 16px;
	color: black;
	z-index: 9999999;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0px 0px 10px black;
	text-shadow: none;
	overflow: auto;
}

.trailer_btn_fchecked_s {
	background-image: url(../images/buttons/ttick.png) !important;
	background-size: 100px 100px !important;
}

.trailer_btn_schecked_s {
	background-image: url(../images/buttons/otick.png) !important;
	background-size: 100px 100px !important;
}

.trailer_btn_fchecked_m {
	background-image: url(../images/buttons/ttick.png) !important;
	background-size: 180px 140px !important;
}

.trailer_btn_schecked_m {
	background-image: url(../images/buttons/otick.png) !important;
	background-size: 180px 160px !important;
	background-position: 0px 20px;

	background-repeat: no-repeat;
}

.trailer_btn_fchecked_l {
	background-image: url(../images/buttons/ttick.png) !important;
	background-size: 200px 200px !important;
}

.trailer_btn_schecked_l {
	background-image: url(../images/buttons/otick.png) !important;
	background-size: 200px 200px !important;
}

.main_menu_btn {
	width: 145px;
	height: 125px;
	margin: 10px;
}

.safety_menu_btn {
	width: 225px;
	height: 105px;
	margin: 10px;
	font-size: 20px;
}

.eba_menu_btn {
	width: 300px;
	height: 150px;
	margin: 10px;
}

.ui-dialog-titlebar-close,
.ui-dialog-titlebar {
	visibility: hidden;
}

.dialogbuttons {
	text-align: center;
	position: absolute;
	height: 100px;
	width: 95%;
	bottom: 20px;
	padding-left: 15px;
}

.dialogbuttons button {
	width: 45%;
	height: 50px;
	float: left;
}

.dialogbutton {
	text-align: center;
	position: absolute;
	height: 50px;
	width: 95%;
	bottom: 20px;
	padding-left: 15px;
}

.dialogbutton button {
	width: 95%;
	height: 50px;
	float: left;
}

#btn_goback {
	position: absolute !important;
	width: 200px;
	height: 40px;
	bottom: 5px !important;
	left: 5px;
}

#btn_center {
	position: absolute !important;
	width: 200px;
	height: 40px;
	right: 220px;
	bottom: 5px !important;
}

#btn_rcenter {
	position: absolute !important;
	width: 200px;
	height: 40px;
	left: 220px;
	bottom: 5px !important;
}

#btn_continue,
.btn_continue {
	position: absolute !important;
	width: 200px;
	height: 40px;
	right: 5px;
	bottom: 5px !important;
}

#btn_continue_w,
.btn_continue_w {
	position: absolute !important;
	width: 300px;
	height: 40px;
	right: 5px;
	bottom: 5px !important;
}

#btn_continue_owb {
	position: absolute !important;
	width: 200px;
	height: 40px;
	right: 315px;
	bottom: 5px !important;
}

.input_login {
	background: rgba(200, 200, 200, 0.8);
	width: 200px;
	height: 40px;
}

.input_textarea {
	background: rgba(200, 200, 200, 0.8);
	width: 200px;
	height: 80px;
	resize: none !important;
}

.input_textarea_l {
	background: rgba(200, 200, 200, 0.8);
	width: 400px;
	height: 200px;
	resize: none !important;
}

.email_holder,
.vehicle_stock_holder,
.depo_holder,
.log_fault_holder {
	background: rgba(255, 255, 255, 0.8);
	width: 840px;
	color: black;
	text-shadow: none;
}

.email_row_title,
.vehicle_stock_row_title,
.depo_row_title,
.log_fault_row_title {
	font-weight: bolder;
	background: rgba(0, 200, 0, 0.6);
	width: 840px;
	height: 30px;
	overflow: hidden;
}

.email_row_new {
	font-weight: bolder;
	background: rgba(0, 0, 200, 0.6);
	width: 100%;
	height: 30px;
	border-bottom-style: solid;
	border-width: thin;
	border-color: #999;
}

.email_row_old,
.vehicle_stock_row,
.depo_row {
	width: 100%;
	height: 30px;
	border-bottom-style: solid;
	border-width: thin;
	border-color: #999;
}

.log_fault_row {
	width: 100%;
	height: 60px;
	border-bottom-style: solid;
	border-width: thin;
	border-color: #999;
}

.email_row_from {
	width: 200px;
	height: 30px;
	float: left;
	padding-left: 10px;
}

.email_row_subject,
.depo_row_name {
	width: 390px;
	height: 30px;
	float: left;
}

.depo_row_name_s {
	width: 290px;
	height: 30px;
	float: left;
}

.depo_row_name_ss {
	width: 270px;
	height: 30px;
	float: left;
}

.vehicle_stock_row_request,
.depo_row_lastser_l {
	width: 150px;
	height: 30px;
	float: left;
}

.email_row_date,
.depo_row_code,
.depo_row_type,
.depo_row_phone,
.depo_row_map,
.depo_row_weekday,
.depo_row_state,
.depo_row_lastser,
.depo_row_logfaults {
	width: 100px;
	height: 30px;
	float: left;
}

.depo_row_code {
	padding-left: 10px;
}

.btn_deponame {
	width: 420px;
}

.email_row_importance {
	width: 50px;
	height: 30px;
	float: left;
}

.vehicle_stock_row_item_no,
.vehicle_stock_row_qty,
.vehicle_stock_row_cost,
.vehicle_stock_row_min_max,
.vehicle_stock_row_depo {
	width: 75px;
	height: 30px;
	float: left;
}

.vehicle_stock_row_item {
	width: 350px;
	height: 30px;
	float: left;
}

.log_fault_row_depo {
	width: 50px;
	height: 60px;
	float: left;
}

.log_fault_row_no {
	width: 85px;
	padding-left: 10px;
	height: 60px;
	float: left;
}

.log_fault_row_trailer {
	width: 65px;
	height: 60px;
	float: left;
}

.log_fault_row_duration {
	width: 75px;
	height: 60px;
	float: left;
}

.log_fault_row_reported_by,
.log_fault_row_status {
	width: 100px;
	height: 60px;
	float: left;
}

.log_fault_row_reported_at {
	width: 100px;
	height: 60px;
	float: left;
}

.log_fault_row_description {
	width: 200px;
	height: 60px;
	float: left;
}

.service_left {
	width: 400px;
	height: 300px;
	float: left;
}

.service_right {
	width: 400px;
	height: 300px;
	float: right;
}

.service_container {
	width: 961px;
	height: 300px;
}

#service_textarea {
	background: rgba(200, 200, 200, 0.8);
	width: 350px;
	height: 60px;
	resize: none !important;
}

.service_item {
	width: 317px;
	height: 55px;
	float: left;
	border-style: solid;
	border-width: thin;
	border-color: #ffdddd;
	padding-top: 2px;
}

.service_item2 {
	width: 440px;
	height: 90px;
	float: left;
	border: 1px solid #B8B8B8;
	padding-top: 2px;
	border-radius: 10px;
	background-color: #DDD;
	color: #000;
	margin: 10px 15px;
}

.trailer_check {
	width: 800px;
	float: left;
	padding: 10px 10px 10px 10px;
}

.site_logfault_title {
	position: relative;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 250px;
	height: 40px;
	float: left;
	padding-left: 10px;
	border-style: solid;
	border-width: thin;
	border-color: #ffdddd;
	font-weight: bolder;
}

.service_item_title {
	position: relative;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 137px;
	height: 50px;
	float: left;
	padding-left: 10px;
	font-weight: bolder;
}

.service_item_title2 {
	padding: 10px;
	width: 260px;
	height: 40px;
	float: left;
	font-weight: bolder;
}

.service_site_trailers_title {
	position: relative;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 120px;
	height: 40px;
	float: left;
	padding-left: 10px;
	font-weight: bolder;
}

.service_site_trailers_title2 {
	position: relative;
	padding: 12px;
	width: 250px;
	float: left;
}

.service_item_description {
	display: none;
	font-size: 12px;
	position: absolute;
	background: White;
	width: 280px;
	color: black;
	z-index: 9999999;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0px 0px 10px black;
	text-shadow: none;
	font-weight: bolder;
}

.service_item_description2 {
	font-size: 12px;
	width: 280px;
	text-shadow: none;
	font-weight: bolder;
}

.sitelog_fault_description {
	display: none;
	font-size: 12px;
	position: absolute;
	background: White;
	width: 280px;
	color: black;
	z-index: 9999999;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0px 0px 10px black;
	text-shadow: none;
}

.service_item_condition {
	width: 169px;
	height: 42px;
	float: right;
	font-weight: bolder;
}

.service_item_condition2 {
	width: 150px;
	height: 90px;
	float: right;
	font-weight: bolder;
}

.service_site_trailers_condition {
	width: 150px;
	height: 42px;
	float: right;
}

.scroll_btn_right {
	float: right;
	width: 100px;
}

.scroll_btn_right img {
	width: 100px;
	height: 75px;
}

.dropdown {
	height: 30px;
}

#btn_Exit {
	width: 200px;
	height: 200px;
}

#btn_Exit img {
	width: 100px;
	height: 100px;
}

.table_logfault {
	width: 95%;
	margin-bottom: 20px;
	border: 1px solid black;
	border-radius: 5px;
}

.table_logfault td {
	border: 1px solid black;
	padding: 3px;
}

.over14days {
	border: 1px solid red !important;
	box-shadow: 0px 0px 5px red;
}

.over14days td {
	border: 1px solid red;
}

.LF_Header {
	border-bottom: 1px solid black;
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.5em;
	font-weight: bolder;
	text-align: center;
}

.LF_Info {
	border-bottom: 1px solid black;
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10px;
}

.LF_Action {
	border-bottom: 1px solid black;
	width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.LF_Notes {
	border-bottom: 1px solid black;
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	padding-bottom: 10px;
}

.LF_Final {
	margin-top: 20px;
	width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.LF_Note {
	margin-top: 20px;
	width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.LF_Note Textarea {
	width: 100%;
	height: 100px;
}

.LF_Note button {
	width: 200px;
	height: 45px;
	margin-left: 200px;
	margin-right: 200px;
	margin-bottom: 10px;
}

.btn_psc {
	width: 65px;
	border-radius: 8px;
	color: #FFF;
	height: 29px;
	margin-top: 2px;
	text-align: center;
	padding-top: 10px;
	margin-right: 3px;
}

.ok {
	background-color: #00BB00;
	border: 1px solid #008800;
	float: left;
}

.fix {
	background-color: #FF0000;
	border: 1px solid #880000;
	float: left;
}

.na {
	background-color: #FF9900;
	border: 1px solid #EE8800;
	float: left;
}

.checkbox {
	width: 40px;
	float: left;
	height: 40px;
	margin-top: 2px;
	background-image: url('../images/buttons/checkbox.png');
	background-size: 40px 40px;
	background-repeat: no-repeat;
}

.checkbox_ticked {
	background-image: url('../images/buttons/checkbox-checked.png');
}

.green_btn {
	border-radius: 8px;
	background-color: #00BB00;
	color: #FFF;
	height: 29px;
	margin-top: 2px;
	text-align: center;
	padding-top: 10px;
	border: 1px solid #008800;
	margin-right: 3px;
	float: left;
}

.yellow_btn {
	border-radius: 8px;
	background-color: #EAC117;
	color: #000;
	height: 29px;
	margin-top: 2px;
	text-align: center;
	padding-top: 10px;
	border: 1px solid #D4A017;
	margin-right: 3px;
	float: left;
}

.red_btn {
	border-radius: 8px;
	background-color: #FF0000;
	color: #FFF;
	height: 29px;
	margin-top: 2px;
	text-align: center;
	padding-top: 10px;
	border: 1px solid #880000;
	margin-right: 2px;
	float: left;
}

.grid {
	width: 80%;
	border: 1px solid black;
	border-collapse: collapse;
	margin: 0px auto;
}

.grid tr,
.grid td,
.grid th {
	border: 1px solid black;
	text-align: center;
}

.accord_title {
	width: 99%;
	height: 36px;
	background-color: white;
	border-style: outset;
	border-width: 4px;
	border-color: #999999;
	margin-top: 1px;
	display: block;
}

.accord_body {
	width: 100%;
	background-color: white;
	color: black;
	display: block;
}

.input_servicedepo_default {
	font-size: 22px;
	border-style: outset;
}

/*added in version 1.5 stock inventory module*/
.ui-tabs-vertical {
	width: 740px;
	margin: 10px auto;
	background: none;
	border: none;
	float: left;
}

.ui-tabs-vertical .ui-tabs-nav {
	padding: 0 .1em 0 .2em;
	float: left;
	width: 120px;
	border: none;
}

.ui-tabs-vertical .ui-tabs-nav li {
	clear: left;
	width: 100%;
	border-bottom-width: 1px !important;
	border-right-width: 0 !important;
	margin: 0 -1px 0 0;
	height: 60px;
	border: #CCC solid 1px;
}

.ui-tabs-vertical .ui-tabs-nav li a {
	display: block;
}

.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active {
	padding-bottom: 0;
	padding-right: .1em;
	border-right-width: 1px;
	border-right-width: 1px;
}

.ui-tabs-nav {
	background: none;
	border: none;
}

#categories {
	background: white;
	border-radius: 0px;
	width: 680px;
	border: none !important;
}

#categories .ui-state-default {
	background: grey !important;
	width: 120px !important;
}

#categories .ui-state-active .img {
	background-position-y: 0px !important;
}

#categories .ui-state-active {
	background: #00bb00 !important;
	width: 130px !important;
	margin-left: -10px !important;
}

#categories .ui-state-default .img {
	background-position-y: 60px;
}


/* Handle sprites for menu system */
.img {
	background-image: url('../images/layout/ma-items-cat-sprite.png');
	margin: -10px 20px 10px -20px;
}

#li-categories-Accessories a .img {
	background-position-x: 0px;
}

#li-categories-Axle a .img {
	background-position-x: -120px;
}

#li-categories-Body a .img {
	background-position-x: -720px;
}

#li-categories-BodyParts a .img {
	background-position-x: -240px;
}

#li-categories-Brakes a .img {
	background-position-x: -360px;
}

#li-categories-Cables a .img {
	background-position-x: -480px;
}

#li-categories-Chassis a .img {
	background-position-x: -600px;
}

#li-categories-Coupling a .img {
	background-position-x: -840px;
}

#li-categories-Hubs a .img {
	background-position-x: -960px;
}

#li-categories-JockeyWheel a .img {
	background-position-x: -1080px;
}

#li-categories-Labour a .img {
	background-position-x: -1200px;
}

#li-categories-Mudguards a .img {
	background-position-x: -1320px;
}

#li-categories-Fasteners a .img {
	background-position-x: -1440px;
}

#li-categories-Paint a .img {
	background-position-x: -1560px;
}

#li-categories-Rego a .img {
	background-position-x: -1680px;
}

#li-categories-Springs a .img {
	background-position-x: -1800px;
}

#li-categories-Winch a .img {
	background-position-x: -1920px;
}

#li-categories-Steel a .img {
	background-position-x: -2040px;
}

#li-categories-Electrical a .img {
	background-position-x: -2160px;
}

#li-categories-Wheel a .img {
	background-position-x: -2280px;
}

#li-categories-Stickers a .img {
	background-position-x: -2400px;
}

#li-categories-Services a .img {
	background-position-x: -2520px;
}

#li-categories-Plant a .img {
	background-position-x: -2640px;
}

#li-categories-Consumables a .img {
	background-position-x: -2760px;
}

#li-categories-Equipement a .img {
	background-position-x: -2880px;
}

#li-categories-SafetyChains a .img {
	background-position-x: -3120px;
}

#li-categories-FirstAid a .img {
	background-position-x: -3000px;
}


.ui-tabs-vertical .ui-tabs-panel {
	padding: 0 .1em;
	width: 500px;
	background: white;
	color: black;
	float: left;
	margin-top: 2px;
	box-shadow: 0px 0px 15px #888888;
	margin-left: -2px;
	overflow-y: scroll;
	overflow-x: hidden;
}

#subcat .ui-tabs-panel {
	width: 355px;
	margin-left: -2px;
	margin-top: 2px;
}

.subcat {
	height: 60px !important;
}

.subcat_con {
	margin: -25px 0px 0px -20px;
	border: none !important;
	background: none !important;
}

.subcat_item {
	width: 370px;
	min-height: 35px;
	border: 1px black solid;
	margin-top: -1px;
	position: relative;
	overflow: auto;
}

.subcat_item_text {
	width: 260px;
	color: black;
	font-size: 80%;
	margin-left: 4px;
	float: left;
}

.btn_subcat_item {
	float: right;
	width: 100px;
	height: 27px;
	color: white;
	background: green;
	text-align: center;
	position: absolute;
	top: 5px;
	right: 5px;
	padding-top: 0px;
}

.subcat_area {
	border: none !important;
	box-shadow: 0px 0px 15px #888888;
}

.ui-widget-header {
	background: none !important;
}


.img_tick {
	height: 50px;
	width: 50px;
	background-image: url('../images/layout/arrows50.png');
	background-position: -300px 0px;
	float: right;
}

#used_components td {
	border: solid 1px black;
}

.used_components_name {
	width: 160px;
	float: left;
}

#used_components input {
	width: 30px;
	float: left;
	height: 40px;
}

.used_component_remove {
	width: 40px !important;
	height: 40px !important;
	background-color: red;
	height: 25px;
	float: right;
	margin: 1px 1px;
	color: white;
	text-align: center;
}

.btn_orange {
	float: right;
	width: 67px;
	border-radius: 8px;
	background-color: #FF9900;
	color: #FFF;
	height: 29px;
	margin-top: 2px;
	text-align: center;
	padding-top: 10px;
	border: 1px solid #EE8800;
}

.vehicleLFC {
	border: blue 2px solid !important;
}

.lfdisabled {
	background-color: #ff6464
}

#btn_sms {
	position: absolute;
	right: 10px;
	bottom: 10px;
}

#btn_expense {
	position: absolute;
	left: 10px;
	bottom: 10px;
}