html, body {
    min-height: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
	margin: 0 auto;
    /* justify-content: center; */
    align-items: flex-start; /* Aligns to the top */
	
}

@media print {
  #printPageButton {
    display: none;
  }
}


@media print {
  #ExportLaborButton {
    display: none;
  }
}

@media print {
  #ExportPartsButton {
    display: none;
  }
}


	.pagebreak {
    page-break-before: always;		
}
	
	@media only screen{
		.DisplayPage{
    display: none;
  }
		.pagebreak {
    display: none;
  }		
}
.PageContent{
    max-width: 1300px;
	with: 90%;
    margin: 0 auto;
	left:-30px;
    
	
}
.TitleBar {
  width: 1064px;
  position: relative;
  left: 0px;
}
.MainBody {
	border-style: none;
	position: relative;
	top: 0px;
	Left: 0px;
	bottom: 0px;
}
.TopBar {
  padding-left: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #0B63AB;
  position: relative;
  border: none;
  color: #FFFFFF;
  height: 50px;
}


.MainContent {
	position: relative;
	top: 13px;
	/* left: 5px; */
	margin: 0 auto;
	}

.TitleText {
  font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
  font-size: 30px;
  font-weight: bold;
  top: 50%;
  margin-top: 4px;
}


/* Toolbar Styles */
.mytoolbar {
  display: flex; /* Align child items horizontally */
  align-items: center; /* Vertically align items */
  justify-content: flex-start; /* Align menus to the left */
  background: #CCCCCC; /* Matches the menu background */
  padding: 0;
  margin: 0;
  position: relative; /* Ensure stacking control */
  z-index: 1000; /* Ensure menu stays on top */
  height: 50px; /* Set toolbar height */
  box-sizing: border-box;
}

/* Menu Styles Scoped to ID */
#menu1, #menu2, #menu3 {
  list-style: none; /* Remove bullet points */
  padding: 0;
  margin: 0;
  display: flex; /* Align main menu items horizontally */
  align-items: center; /* Vertically align menu items */
  height: 100%; /* Match toolbar height */
}

#menu1 li, #menu2 li, #menu3 li {
  position: relative; /* Needed for dropdown positioning */
  height: 100%; /* Ensure menu items match toolbar height */
    
}

/* Main Links */
#menu1 > li > a, #menu2 > li > a, #menu3 > li > a {
  display: flex; /* Use flexbox for consistent alignment */
  align-items: center; /* Vertically align text */
  justify-content: center; /* Horizontally center text */
  padding: 0px 60px; /* Consistent padding */
  text-decoration: none;
  color: #000;
  font-weight: bold;
  background: #CCCCCC;
  border: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
  height: 100%; /* Ensure links fill the menu height */
  line-height: normal; /* Remove line-height dependency */
  box-sizing: border-box; /* Include padding and borders in height calculations */
}

#menu1 > li > a:hover, #menu2 > li > a:hover, #menu3 > li > a:hover {
  background: #AAAAAA;
  border-color: #BBBBBB;
}

/* Dropdown Indicators */
#menu2 > li > a.prett, #menu3 > li > a.prett {
  position: relative;
  padding-right: 30px; /* Add space for dropdown arrow */
}

#menu2 > li > a.prett::after, #menu3 > li > a.prett::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

/* Dropdown Menus Scoped by ID */
#menu2 .menus, #menu3 .menus {
  position: absolute;
    padding: 0 10px; /* Consistent padding */
  display: none;
  top: 100%; /* Position dropdown below parent */
  
  background: #CCCCCC;
  border: 1px solid #BBBBBB;
  font-weight: bold;
  z-index: 2000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: auto; /* Allows flexible dropdown width */
  min-width: 100px; /* Minimum dropdown width */
}

#menu2 .menus {
  width: 260px; /* Custom width for Tools dropdown */
    left: 0;
}

#menu3 .menus {
  width: 130px; /* Custom width for Manage dropdown */
    left: 33px;
}

#menu2 .menus li, #menu3 .menus li {
  list-style: none;
}

#menu2 .menus li a, #menu3 .menus li a {
  display: block;
  padding: 10px 5px; /* Padding for dropdown items */
  text-decoration: none;
  color: #000;
  background: #CCCCCC;
  transition: background 0.3s;
}

#menu2 .menus li a:hover, #menu3 .menus li a:hover {
  background: #AAAAAA;
}

#menu2 > li:hover > .menus, #menu3 > li:hover > .menus {
  display: block; /* Show dropdown menu on hover */
}

/* Submenu Styling */
#menu3 .submenu {
  position: absolute;
  display: none;
  top: 0; /* Align to the top of the parent dropdown */
  text-align: left;   
  left: -206px;    /* Offset of Dropdown Submenu */
  background: #CCCCCC;
  border: 1px solid #BBBBBB;
  width: 163px; /* Allow flexible submenu width */
  min-width: 155px; /* Minimum submenu width */
  z-index: 2000;
 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
 /* border: 1px solid red; */
}
#menu3 .submenu li {
    position: relative;
 left: -40px;   
}
#menu3 .submenu li a {
    left:10px;
  padding: 10px 0px 10px 10px;
  width: 195px;
    text-align: center;
  /*  border: 1px solid green; */ /* Links */

}

#menu3 .menus li:hover > .submenu {
  display: block; /* Show submenu on hover */
    
}


/* ************************************************************************************ */
.topnav {
    
    width: 1064px;
    max-width: 1064px;
    height: 40px;
	
}
.Btn_logon {
    font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
    font-size: 14px;
    font-weight: bold;
    top: -2px;
    margin-top: 4px;
    position: absolute;
    left: 817px;
    box-sizing: border-box;
    display: inline-block;
    float: none;
    line-height: 20px;
    z-index: auto;
    width: 237px;
}

.Btn_Completebutton {
  font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
  font-size: 14px;
  font-weight: bold;
  margin-top: 4px;
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  float: none;
  line-height: 20px;
  width: 105px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.55);
  border-radius: 7px;
}
.Btn_Deletebutton {
  font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
  font-size: 14px;
  font-weight: bold;
  margin-top: 4px;
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  float: none;
  line-height: 20px;
  width: 80px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.55);
  border-radius: 7px;
}

.Btn_Completebutton {
	color: #000000;
	background-color: #C6CDF8;
	border-color: #635FB3;
}
.Btn_Completebutton:focus, .Btn_Completebutton.focus {
  color: #fff;
  background-color: #2FC710;
  border-color: #22920B;
}
.Btn_Completebutton:hover {
  color: #fff;
  background-color: #989898;
  border-color: #989898;
}
.Btn_Completebutton:active, .Btn_Completebutton.active, .open > .dropdown-toggle.Btn_Completebutton {
  color: #fff;
  background-color: #2FC710;
  border-color: #22920B;
}
.Btn_Completebutton:active:hover, .Btn_Completebutton.active:hover, .open > .dropdown-toggle.Btn_Completebutton:hover, .Btn_Completebutton:active:focus, .Btn_Completebutton.active:focus, .open > .dropdown-toggle.Btn_Completebutton:focus, .Btn_Completebutton:active.focus, .Btn_Completebutton.active.focus, .open > .dropdown-toggle.Btn_Completebutton.focus {
  color: #fff;
  background-color: #26A10C;
  border-color: #22920B;
}
.Btn_Completebutton:active, .Btn_Completebutton.active, .open > .dropdown-toggle.Btn_Completebutton {
  background-image: none;
  border-color: undefined;
}
.Btn_Completebutton.disabled:hover, .Btn_Completebutton[disabled]:hover, fieldset[disabled] .Btn_Completebutton:hover, .Btn_Completebutton.disabled:focus, .Btn_Completebutton[disabled]:focus, fieldset[disabled] .Btn_Completebutton:focus, .Btn_Completebutton.disabled.focus, .Btn_Completebutton[disabled].focus, fieldset[disabled] .Btn_Completebutton.focus {
  background-color: #26A10C;
  border-color: #26A10C;
}
.Btn_Completebutton .badge {
  color: #26A10C;
  background-color: #fff;
}



@media (min-width: 450px) {}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn-warning {
  color: #000000;
  background-color: #2FC710;
  border-color: #2FC710;
}
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #2FC710;
  border-color: #22920B;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #2FC710;
  border-color: #22920B;
}
.btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-toggle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus, .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .btn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #26A10C;
  border-color: #22920B;
}
.btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
  background-image: none;
  border-color: undefined;
}
.btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus {
  background-color: #26A10C;
  border-color: #26A10C;
}
.btn-warning .badge {
  color: #26A10C;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggle.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .open > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-danger.active.focus, .open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.WOListHeader {
  border-top: None;
  border-bottom: None;
  border-right: thick;
  border-left: thick;
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-style: normal;
  font-weight: bolder;
}
.WOListBody {
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
}
.WOListBody td.WOListBody a {
  text-decoration: none;
  color: #000000;
}
.WOListBody table.WOListBody tr, td {
  text-decoration: none;
  border: 1px solid #ffffff;
  border-collapse: collapse;
  color: #000000;
  font-size: 1em;
  margin: 0;
  margin-bottom: 22px;
  padding: 0px;
  font-style: normal;
  border-bottom-style: solid;
  border-bottom-width: 0.25em;
  border-bottom-color: #ffffff;
  border-radius: 0px;
}
.WOListBody table.WOListBody, td {
  padding: 5px;
	text-decoration: none;
	color: #000000;
}
table.WOListBody tr:nth-child(even) {
  background-color: #DBDBDB;
}

table.WOListBody tr:nth-child(odd) {
  background-color: #EBEBEB;
}

table.WOListBody label {
  display: inline-block;
  width: 100px;
  margin-right: 10px;
  text-align: right;
}
.DisWOListBody {}
.DisWOListBody td.DisWOListBody {
  height: 20px;
}
.DisWOListCompanyName {
  Color: Black;
  Font-size: 32px;
  font-weight: Bold;
  font-style: italic;
}
.DisWOListall {
  Color: Black;
  Font-size: 16px;
  font-weight: bold;
  font-style: italic;
  border-style: solid;
  border-top: thin solid #000000;
  border-bottom: thin solid #000000;
  border-right: thin solid #000000;
  border-left: thin solid #000000;
}
.DisWOListName {
  Color: Black;
  Font-size: 16px;
  font-weight: bold;
  font-style: normal;
  border-style: solid;
  border-top: thin solid #000000;
  border-bottom: none;
  border-right: thin solid #000000;
  border-left: thin solid #000000;
}
.DisWOListData {
  border-style: solid;
  border-top: none;
  border-bottom: thin solid #000000;
  border-right: thin solid #000000;
  border-left: thin solid #000000;
}
.DisWOListDataSides {
  border-style: solid;
  border-top: none;
  border-bottom: none;
  border-right: thin solid #000000;
  border-left: thin solid #000000;
}
.DisWOListDataRight {
  border-style: solid;
  border-top: none;
  border-bottom: Thin solid #000000;
  border-right: none;
  border-left: Thin solid #000000;
}
.DisWOListDataLeft {
  border-style: solid;
  border-top: none;
  border-bottom: thin solid #000000;
  border-right: thin solid #000000;
  border-left: none;
}
.DisWOListDatanone {
  border-style: hidden;
  border-top: none;
  border-bottom: none ;
  border-right: none;
  border-left: none;
}
.DisWOListMaterials {}
.DisWOListMaterials table.DisWOListMaterials, td {
  padding: 0px;
}
table.DisWOListMaterials tr:nth-child(even) {
  background-color:#BCBCBC;
}
table.DisWOListMaterials tr:nth-child(odd) {
  background-color:#858585;
	
}
table.DisWOListMaterials label {
  display: inline-block;
  width: 100px;
  margin: 0px;
  text-align: right;
}

.DisWOListParts {
	border-collapse: collapse;
  	padding: 0px;
	margin: 0px;
	border-width: 0px;
}
.DisWOListParts table.DisWOListParts, td {
  padding: 0px,3px, 0px,0px;
border-width: 0px;	
}
table.DisWOListParts tr:nth-child(even) {
  background-color:#DBDBDB;
}
table.DisWOListParts tr:nth-child(odd) {
  background-color:#DBDBDB;
}
table.DisWOListParts label {
  display: inline-block;
  width: 100px;
  margin-right: 0px;
  text-align: right;
	padding: 0px;
	margin:0px;
}



.DisWOLabor {}
.DisWOLabor table.DisWOLabor, .DisWOLabor.td {
  padding: 5px;
}
table.DisWOLabor tr:nth-child(even) {
  background-color: #C6C6C6;
}
table.DisWOLabor label {
  display: inline-block;
  width: 100px;
  margin-right: 10px;
  text-align: right;
}
.form-group {
  margin-bottom: 15px;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}
.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.wrapper {
  width: 350px;
  padding: 20px;
  height: 60px;
}
.WOMerge {
width: 1300px;
	text-align: center;
}