/* 
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: 1200px)

  {

	/* Force table to not be like tables anymore */
	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%;
		overflow-y:visible;
		overflow-x:visible;
		min-height:20px;
	}
	
	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;*/
		font-weight:bold;
	}
	
	table#tblOrderDocsSubtotal td{overflow-y:auto;}
	
	/* Datepicker Tables -  */
	.ui-datepicker thead, .ui-datepicker thead th{display:inline-table;}
	.ui-datepicker tbody tr {display:table-header-group;}	
	.ui-datepicker thead th, .ui-datepicker td {display:table-cell;}
	.ui-datepicker thead th span {padding:7.7px;}
	.ui-datepicker td a {padding:11px;}
	.ui-datepicker thead tr {position:relative;top:0;left:0;}
	
	/*
	Label the data
	*/
	
	/*Disbursement Report Table*/
	table#disbTable td:nth-of-type(1):before { content: "Work Order #:"; }
	table#disbTable td:nth-of-type(2):before { content: "Description:"; }
	table#disbTable td:nth-of-type(3):before { content: "Amount:"; }
	table#disbTable td:nth-of-type(4):before { content: "Business Name:"; }
	table#disbTable td:nth-of-type(5):before { content: "Date Received:"; }
	table#disbTable td:nth-of-type(6):before { content: "Transaction Type:"; }
	table#disbTable td:nth-of-type(7):before { content: "IsSent:"; }
	table#disbTable td:nth-of-type(8):before { content: "Amount:"; }
	
	/*Missing Image Report Table*/
	table#missImgReptTable td:nth-of-type(1):before { content: "Work Order #:"; }
	table#missImgReptTable td:nth-of-type(2):before { content: "Date Approved:"; }
	table#missImgReptTable td:nth-of-type(3):before { content: "Transaction Type:"; }
	table#missImgReptTable td:nth-of-type(4):before { content: "Business Name:"; }
	
	/*Transmission Records Report Table*/
	table#transRecRptTable td:nth-of-type(1):before { content: "Transaction Date:"; }
	table#transRecRptTable td:nth-of-type(2):before { content: "Transaction Type:"; }
	table#transRecRptTable td:nth-of-type(3):before { content: "Status:"; }
	table#transRecRptTable td:nth-of-type(4):before { content: "Business Name:"; }
	table#transRecRptTable td:nth-of-type(5):before { content: "Amount:"; }
	
	/*Trade Name Business Owners Table*/
	table#tradeNameBusOwners td:nth-of-type(1):before { content: "Owner Name:"; }
	table#tradeNameBusOwners td:nth-of-type(2):before { content: "Address:"; }
	table#tradeNameBusOwners td:nth-of-type(3):before { content: "Phone:"; }
	table#tradeNameBusOwners td:nth-of-type(4):before { content: "Email:"; }
	table#tradeNameBusOwners td:nth-of-type(5):before { content: ""; }
	
	
	/*Admin Applications Table*/
	table#table3 td:nth-of-type(1):before { content: "Business Name:"; }
	table#table3 td:nth-of-type(2):before { content: "Type of Application:"; }
	table#table3 td:nth-of-type(3):before { content: "Date Submitted:"; }
	table#table3 td:nth-of-type(4):before { content: "Status:"; }
	table#table3 td:nth-of-type(5):before { content: "Reviewed By"; }
	table#table3 td:nth-of-type(6):before { content: "Date Reviewed:"; }
	table#table3 td:nth-of-type(7):before { content: "Work Order:"; }
	table#table3 td:nth-of-type(8):before { content: "Certified Copy:"; }
	table#table3 td:nth-of-type(9):before { content: "Amount Paid:"; }
	table#table3 td:nth-of-type(10):before { content: ""; }
	
	
	/*Incorporators Table*/
	table#tableIncorporator td:nth-of-type(1):before { content: "Name:"; }
	table#tableIncorporator td:nth-of-type(2):before { content: "Address:"; }
    /*table#tableIncorporator td:nth-of-type(3):before { content: "Phone:"; }
	table#tableIncorporator td:nth-of-type(4):before { content: "Email:"; }
	table#tableIncorporator td:nth-of-type(5):before { content: ""; }*/
	
	
	/*Directors Table*/
	table#tableDirector td:nth-of-type(1):before { content: "Name:"; }
	table#tableDirector td:nth-of-type(2):before { content: "Address:"; }
    /*table#tableDirector td:nth-of-type(3):before { content: "Phone:"; }
	table#tableDirector td:nth-of-type(4):before { content: "Email:"; }
	table#tableDirector td:nth-of-type(5):before { content: ""; }*/
	
	/*Officer Table*/
	table#addOfficerTable td:nth-of-type(1):before { content: "Title:"; }
	table#addOfficerTable td:nth-of-type(2):before { content: "Name:"; }
	table#addOfficerTable td:nth-of-type(3):before { content: "Address:"; }
	table#addOfficerTable td:nth-of-type(4):before { content: ""; }
	
	/*Director Table*/
	table#addDirectorTable td:nth-of-type(1):before { content: "Director Name:"; }
	table#addDirectorTable td:nth-of-type(2):before { content: ""; }
	
	/*Personal Property Tables*/
	table.propertyTable td:nth-of-type(1):before { content: "Year:"; }
	table.propertyTable td:nth-of-type(2):before { content: "A:"; }
	table.propertyTable td:nth-of-type(3):before { content: "B:"; }
	table.propertyTable td:nth-of-type(4):before { content: "C:"; }
	table.propertyTable td:nth-of-type(5):before { content: "D:"; }
	table.propertyTable td:nth-of-type(6):before { content: "E:"; }
	table.propertyTable td:nth-of-type(7):before { content: "F:"; }
	table.propertyTable td:nth-of-type(8):before { content: "G:"; }
	table.propertyTable td:nth-of-type(9):before { content: "Total:"; }
	table.propertyTable td.totalCost:nth-of-type(1):before { content: ""; }
	table.propertyTable td.totalCost:nth-of-type(2):before { content: ""; }
	table.propertyTable td.totalCost:nth-of-type(3):before { content: ""; }
	
	/*Modal Window Tables*/
	table.propertyItem1 td:nth-of-type(1):before { content: "Category:"; }
	table.propertyItem1 td:nth-of-type(2):before { content: "Amount:"; }
	table.propertyItem1 td:nth-of-type(3):before { content: "Description:"; }
	
	/*Leased Property Table*/
	table#addLeasedTable td:nth-of-type(1):before { content: "Total Cost:"; }
	table#addLeasedTable td:nth-of-type(2):before { content: "Lessee Name:"; }
	table#addLeasedTable td:nth-of-type(3):before { content: "Lessee Address:"; }
	table#addLeasedTable td:nth-of-type(4):before { content: "Lease #:"; }
	table#addLeasedTable td:nth-of-type(5):before { content: "Description:"; }
	table#addLeasedTable td:nth-of-type(6):before { content: "Installation Date:"; }
	table#addLeasedTable td:nth-of-type(7):before { content: "Original Cost:"; }
	table#addLeasedTable td:nth-of-type(8):before { content: ""; }
	
	/*Ready For Payment Table*/
	table#paymentTable td.col-item:before { content: "Item:"; }
	table#paymentTable td.col-fee:before { content: "Fee:"; }
	table#paymentTable td.paymentTotal:before { content: "Total:"; }
	
	/*Payment summary table*/
	table#paymentSummaryTable td:nth-of-type(1):before { content: "Item:"; }
	table#paymentSummaryTable td:nth-of-type(2):before { content: "Fee:"; }
	table#paymentSummaryTable td:nth-of-type(3):before { content: ""; }
	table#paymentSummaryTable td.paymentTotal:nth-of-type(2):before { content: "Total:"; }

	/*Ready For Payment Tables - PPF*/
	table#paymentTablePPF td.col-item:before { content: "Item:"; }
	table#paymentTablePPF td.col-fee:before { content: "Fee:"; }
	table#paymentTablePPF td.col-penalty:before { content: "Penalty:"; }
	
	table#paymentTablePPF-CCU td.col-item:before { content: "Item:"; }
	table#paymentTablePPF-CCU td.col-penalty:before { content: "Penalty:"; }
	
	/*Admin Order Copies Table*/
	table#tableAdminOrderCopies td:nth-of-type(1):before { content: "Contact Person Name:"; }
	table#tableAdminOrderCopies td:nth-of-type(2):before { content: "Business Name:"; }
	table#tableAdminOrderCopies td:nth-of-type(3):before { content: "Department ID:"; }
	table#tableAdminOrderCopies td:nth-of-type(4):before { content: "Date Requested:"; }
	table#tableAdminOrderCopies td:nth-of-type(5):before { content: "Status:"; }
	table#tableAdminOrderCopies td:nth-of-type(6):before { content: ""; }
	
	/*Record Request Table*/
	table#tableCopiesDocs td:nth-of-type(1):before { content: "Document Type:"; }
	table#tableCopiesDocs td:nth-of-type(2):before { content: "Date:"; }
	table#tableCopiesDocs td:nth-of-type(3):before { content: "Liber and Folio:"; }
	table#tableCopiesDocs td:nth-of-type(4):before { content: "Copies:"; }
	table#tableCopiesDocs td:nth-of-type(5):before { content: "Certified:"; }
	table#tableCopiesDocs td:nth-of-type(6):before { content: "Non-Certified:"; }
	table#tableCopiesDocs td:nth-of-type(7):before { content: ""; }
	
	/*Record Request Table*/
	table#tableRecordRequest td:nth-of-type(1):before { content: "Document Type:"; }
	table#tableRecordRequest td:nth-of-type(2):before { content: "Date of Recording:"; }
	table#tableRecordRequest td:nth-of-type(3):before { content: "Liber and Folio:"; }
	table#tableRecordRequest td:nth-of-type(4):before { content: "Copies:"; }
	table#tableRecordRequest td:nth-of-type(5):before { content: "Number of Pages:"; }
	table#tableRecordRequest td:nth-of-type(6):before { content: "Certified:"; }
	table#tableRecordRequest td:nth-of-type(7):before { content: "Non-Certified:"; }
	
	/*Record Request Table*/
	table#tableRecordRequest2 td:nth-of-type(1):before { content: "Document Type:"; }
	table#tableRecordRequest2 td:nth-of-type(2):before { content: "Copies:"; }
	table#tableRecordRequest2 td:nth-of-type(3):before { content: "Certified:"; }
	table#tableRecordRequest2 td:nth-of-type(4):before { content: "Non-Certified:"; }
	table#tableRecordRequest2 td:nth-of-type(5):before { content: "Total:"; }
	
	/*Busuness Search Results Table*/
	table.tblBusSearch td:nth-of-type(1):before { content: "Department ID:"; }
	table.tblBusSearch td:nth-of-type(2):before { content: "Business Name:"; }
	table.tblBusSearch td:nth-of-type(3):before { content: "Employer Identification Number:"; }
	table.tblBusSearch td:nth-of-type(4):before { content: "Status:"; }
	
	
	/*Order Documents Table*/
	table#tblOrderDocuments td:nth-of-type(1):before { content: ""; }
	table#tblOrderDocuments td:nth-of-type(2):before { content: "Document:"; }
	table#tblOrderDocuments td:nth-of-type(3):before { content: "Date Filed:"; }
	table#tblOrderDocuments td:nth-of-type(4):before { content: "Film:"; }
	table#tblOrderDocuments td:nth-of-type(5):before { content: "Folio:"; }
	table#tblOrderDocuments td:nth-of-type(6):before { content: "Pages:"; }
	
	/*Personal Property Table 1*/
	table#tblPersProperty1 td:nth-of-type(1):before { content: "Asmt. Year:"; }
	table#tblPersProperty1 td:nth-of-type(2):before { content: "Date Filed:"; }
	table#tblPersProperty1 td:nth-of-type(3):before { content: "Extension:"; }
	table#tblPersProperty1 td:nth-of-type(4):before { content: "Penalty Amount:"; }
	table#tblPersProperty1 td:nth-of-type(5):before { content: "Date Penalty Paid:"; }
	
	/*Personal Property Table 2*/
	table#tblPersProperty2 td:nth-of-type(1):before { content: "Asmt. Year:"; }
	table#tblPersProperty2 td:nth-of-type(2):before { content: "County Base:"; }
	table#tblPersProperty2 td:nth-of-type(3):before { content: "Town Base:"; }
	table#tblPersProperty2 td:nth-of-type(4):before { content: "Date Certified:"; }
	/*Order Documents Table*/
	table#tblOrderDocs td:nth-of-type(1):before { content: "Item:"; }
	table#tblOrderDocs td.selectAllCert:nth-of-type(2):before { content: "Select All Certified:"; }
	table#tblOrderDocs td.selectAllNonCert:nth-of-type(3):before { content: "Select All Non-Certified:"; }
	table#tblOrderDocs td:nth-of-type(2):before { content: "Date Filed:"; }
	table#tblOrderDocs td:nth-of-type(3):before { content: "Film:"; }
	table#tblOrderDocs td:nth-of-type(4):before { content: "Folio:"; }
	table#tblOrderDocs td:nth-of-type(5):before { content: "Pages:"; }
	table#tblOrderDocs td:nth-of-type(6):before { content: "Immediate Email Delivery*:"; }
	table#tblOrderDocs td:nth-of-type(7):before { content: "Order Certified Copy:"; }
	table#tblOrderDocs td:nth-of-type(8):before { content: "Order Non-Certified Copy:"; }
	
	/*Documents Filed Online Table*/
	table#tblDocsFiledOnline td:nth-of-type(1):before { content: "Document:"; }
	table#tblDocsFiledOnline td:nth-of-type(2):before { content: "Date Filed:"; }
	table#tblDocsFiledOnline td:nth-of-type(3):before { content: "Pages:"; }
	table#tblDocsFiledOnline td:nth-of-type(4):before { content: "Certified Copies:"; }
	
	/*Certificate of Status Table*/
	table#tblCertStatus td:nth-of-type(1):before { content: "Item:"; }
	table#tblCertStatus td.cosNote:nth-of-type(1):before { content: ""; }
	table#tblCertStatus td:nth-of-type(2):before { content: "Status:"; }
	table#tblCertStatus td:nth-of-type(3):before { content: "Immediate Email Delivery*:"; }
	table#tblCertStatus td:nth-of-type(4):before { content: "Order:"; }
	
	/*Order Documents Review*/
	table#tblOrderDocsReview td:nth-of-type(1):before { content: "Document:"; }
	table#tblOrderDocsReview td:nth-of-type(2):before { content: "Fee:"; }
	
	/*Order Documents Review Subtotal*/
	table#tblOrderDocsSubtotal td:nth-of-type(1):before { content: "Document:"; }
	table#tblOrderDocsSubtotal td:nth-of-type(2):before { content: "Fee:"; }
	table#tblOrderDocsSubtotal td:nth-of-type(3):before { content: "Expedited Service:"; }
	
	/*Order Personal Property Table*/
	table#tblPersProperty td:nth-of-type(1):before { content: "Item:"; }
	table#tblPersProperty td:nth-of-type(2):before { content: "Date Filed:"; }
	table#tblPersProperty td:nth-of-type(3):before { content: "Immediate Email Delivery*:"; }
	table#tblPersProperty td:nth-of-type(4):before { content: "Order Certified Copy:"; }
	table#tblPersProperty td:nth-of-type(5):before { content: "Order Non-Certified Copy:"; }
	
	/*Fees Table 1*/
	table#feesTable1 td:nth-of-type(1):before { content: "Document Orders:"; }
	table#feesTable1 td:nth-of-type(2):before { content: "Certified Fee:"; }
	table#feesTable1 td:nth-of-type(3):before { content: "Page Fee:"; }
	table#feesTable1 td:nth-of-type(4):before { content: "Expedited Fee:"; }
	table#feesTable1 td:nth-of-type(5):before { content: "Service Fee:"; }
	
	/*Fees Table 2*/
	table#feesTable2 td:nth-of-type(1):before { content: "Charter Filings:"; }
	table#feesTable2 td:nth-of-type(2):before { content: "Filing Fee:"; }
	table#feesTable2 td:nth-of-type(3):before { content: "Expedited Fee:"; }
	table#feesTable2 td:nth-of-type(4):before { content: "Service Fee:"; }
	
	/*Fees Table 3*/
	table#feesTable3 td:nth-of-type(1):before { content: "Personal Property Return:"; }
	table#feesTable3 td:nth-of-type(2):before { content: "Filing Fee:"; }
	table#feesTable3 td:nth-of-type(3):before { content: "Expedited Fee:"; }
	table#feesTable3 td:nth-of-type(4):before { content: "Service Fee:"; }
	
	/*COS Transaction Table*/
	table#cosTransReportTable td:nth-of-type(1):before { content: "Department ID:"; }
	table#cosTransReportTable td:nth-of-type(2):before { content: "Business Name:"; }
	table#cosTransReportTable td:nth-of-type(3):before { content: "Status:"; }
	table#cosTransReportTable td:nth-of-type(4):before { content: "Year:"; }
	table#cosTransReportTable td:nth-of-type(5):before { content: "Control Number:"; }
	table#cosTransReportTable td:nth-of-type(6):before { content: "Owner:"; }
	table#cosTransReportTable td:nth-of-type(7):before { content: "Certify Email:"; }
	
	/*Operational Metrics Reports Tables*/
	table.tblOpMetricsReports td:nth-of-type(1):before { content: "Reviewer:"; }
	table.tblOpMetricsReports td:nth-of-type(2):before { content: "Filing Type:"; }
	table.tblOpMetricsReports td:nth-of-type(3):before { content: "Submitted:"; }
	table.tblOpMetricsReports td:nth-of-type(4):before { content: "Approved:"; }
	table.tblOpMetricsReports td:nth-of-type(5):before { content: "Rejected"; }
	table.tblOpMetricsReports td:nth-of-type(6):before { content: "Pending Review:"; }
	table.tblOpMetricsReports td:nth-of-type(7):before { content: "Refunded:"; }
	table.tblOpMetricsReports td:nth-of-type(8):before { content: "Incomplete:"; }
	table.tblOpMetricsReports td:nth-of-type(9):before { content: "Total:"; }
	
	/*Payment Table: Expedited Fees*/
	table#paymentTableExp td:nth-of-type(1):before { content: "Item:"; }
	table#paymentTableExp td:nth-of-type(2):before { content: ""; }
	table#paymentTableExp td:nth-of-type(3):before { content: "Fee:"; }
	table#paymentTableExp td:nth-of-type(4):before { content: "Add Expedited Service - $50 per filing/$20 per copy:"; }
	table#paymentTableExp td.totalFee:nth-of-type(1):before { content: ""; }
	
	/*Document Review Order*/
	table#tblDocsFiledOnlineExp td:nth-of-type(1):before { content: "Item:"; }
	table#tblDocsFiledOnlineExp td:nth-of-type(2):before { content: "Pages:"; }
	table#tblDocsFiledOnlineExp td:nth-of-type(3):before { content: "Certified/ Non-Certified:"; }
	table#tblDocsFiledOnlineExp td:nth-of-type(4):before { content: ""; }
	table#tblDocsFiledOnlineExp td:nth-of-type(5):before { content: "Fee:"; }
	table#tblDocsFiledOnlineExp td:nth-of-type(6):before { content: "Add Expedited Service - $20 per copy plus page count fees:"; }
	
	/*My Businesses*/
	table#myBusinessesTable td:nth-of-type(1):before { content: "Business Name:"; }
	table#myBusinessesTable td:nth-of-type(2):before { content: "Department ID"; }
	table#myBusinessesTable td:nth-of-type(3):before { content: "Status:"; }
	
	/*My Saved Filings*/
	table#mySavedFilingsTable td:nth-of-type(1):before { content: "Business Name:"; }
	table#mySavedFilingsTable td:nth-of-type(2):before { content: "Department ID:"; }
	table#mySavedFilingsTable td:nth-of-type(3):before { content: "Filing Type:"; }
	table#mySavedFilingsTable td:nth-of-type(4):before { content: "Status:"; }
	
	/*My Businesses*/
	/*table.myPersonalPropertyFilings td:nth-of-type(1):before { content: "Department ID:"; }*/
	table.myPersonalPropertyFilings td:nth-of-type(2):before { content: "Tax Year:"; }
	table.myPersonalPropertyFilings td:nth-of-type(3):before { content: "Status"; }
	
	/*My Ordered Documents*/
	table#myOrderedDocsTable td:nth-of-type(1):before { content: "Business Name:"; }
	table#myOrderedDocsTable td:nth-of-type(2):before { content: "Department ID:"; }
	table#myOrderedDocsTable td:nth-of-type(3):before { content: "Document Type:"; }
	table#myOrderedDocsTable td:nth-of-type(4):before { content: "Date Filed:"; }
	
	/*My Saved Filings*/
	table#savedFilingsTable td:nth-of-type(1):before { content: "Filing Type:"; }
	table#savedFilingsTable td:nth-of-type(2):before { content: "Status"; }
	
	/*Resolution: Resident Agent*/
	table#tblResidentAgent td:nth-of-type(1):before { content: "Name:"; }
	table#tblResidentAgent td:nth-of-type(2):before { content: "Address:"; }
	table#tblResidentAgent td:nth-of-type(3):before { content: "Phone:"; }
	table#tblResidentAgent td:nth-of-type(4):before { content: "Email:"; }
	
	/*Resolution: Resident Agent*/
	table#tblResidentAgent2 td:nth-of-type(1):before { content: "Name:"; }
	table#tblResidentAgent2 td:nth-of-type(2):before { content: "Address:"; }
	table#tblResidentAgent2 td:nth-of-type(3):before { content: "Phone:"; }
	table#tblResidentAgent2 td:nth-of-type(4):before { content: "Email"; }
	table#tblResidentAgent2 td:nth-of-type(5):before { content: "Keep:"; }
	table#tblResidentAgent2 td:nth-of-type(6):before { content: "Change:"; }
	table#tblResidentAgent2 td:nth-of-type(7):before { content: "Delete"; }
	
	/*Resolution: Resident Agent*/
	table#tblResidentAgent3 td:nth-of-type(1):before { content: "Name:"; }
	table#tblResidentAgent3 td:nth-of-type(2):before { content: "Address:"; }
	table#tblResidentAgent3 td:nth-of-type(3):before { content: "Phone:"; }
	table#tblResidentAgent3 td:nth-of-type(4):before { content: "Email:"; }
	table#tblResidentAgent3 td:nth-of-type(5):before { content: "Changes:"; }
	
	/*Resolution: Business Search*/
	table#tblBusSearchRes td:nth-of-type(1):before { content: "Dept. ID:"; }
	table#tblBusSearchRes td:nth-of-type(2):before { content: "Business Name:"; }
	table#tblBusSearchRes td:nth-of-type(3):before { content: "Status:"; }
	
	/*Resolution: Payment Ready*/
	table#tblResolutionPayment td:nth-of-type(2):before { content: "Fee:"; }
	table#tblResolutionPayment td.totalFee:nth-of-type(1):before { content: ""; }
	table#tblResolutionPayment td.totalFee:nth-of-type(2):before { content: "Total:"; }
	
	/*Cancellation: Add Member*/
	table#tblAddMember td:nth-of-type(1):before { content: "Name:"; }
	table#tblAddMember td:nth-of-type(2):before { content: "Address:"; }
	
	/*Cancellation: Resident Agent Summary*/
	table#tblResAgent td:nth-of-type(1):before { content: "Type:"; }
	table#tblResAgent td:nth-of-type(2):before { content: "Corporation/LLC:"; }
	table#tblResAgent td:nth-of-type(3):before { content: "Name:"; }
	table#tblResAgent td:nth-of-type(4):before { content: "Address:"; }
	
	/*Cancellation: Member Summary*/
	table#tblMember td:nth-of-type(1):before { content: "Name:"; }
	table#tblMember td:nth-of-type(2):before { content: "Address:"; }
	
	/*Personal Property Life Cycle*/
	table.tblPPLifeCycle td:nth-of-type(1):before { content: "Department ID:"; }
	table.tblPPLifeCycle td:nth-of-type(2):before { content: "Business Name:"; }
	table.tblPPLifeCycle td:nth-of-type(3):before { content: "Status:"; }
	table.tblPPLifeCycle td:nth-of-type(4):before { content: "Year"; }
	table.tblPPLifeCycle td:nth-of-type(5):before { content: "Control Number:"; }
	table.tblPPLifeCycle td:nth-of-type(6):before { content: "Owner:"; }
	table.tblPPLifeCycle td:nth-of-type(7):before { content: "Certify Email"; }
	
	/*Personal Property Op Metrics All PP Filings*/
	table.tblPPFallFilings td:nth-of-type(1):before { content: "Incomplete:"; }
	table.tblPPFallFilings td:nth-of-type(2):before { content: "Submitted"; }
	
	/*Personal Property Op Metrics PP Filings*/
	table.tblPPFfilings td:nth-of-type(1):before { content: "Business Name:"; }
	table.tblPPFfilings td:nth-of-type(2):before { content: "Department ID:"; }
	table.tblPPFfilings td:nth-of-type(3):before { content: "Filing Year:"; }
	table.tblPPFfilings td:nth-of-type(4):before { content: "Status"; }
	
	/*Personal Property Payments*/
	table.tblPPFpayments td:nth-of-type(1):before { content: "Department ID:"; }
	table.tblPPFpayments td:nth-of-type(2):before { content: "Local Ref ID:"; }
	table.tblPPFpayments td:nth-of-type(3):before { content: "Year:"; }
	table.tblPPFpayments td:nth-of-type(4):before { content: "Control Number"; }
	table.tblPPFpayments td:nth-of-type(5):before { content: "Order ID:"; }
	table.tblPPFpayments td:nth-of-type(6):before { content: "Payment Token:"; }
	table.tblPPFpayments td:nth-of-type(7):before { content: "Date Created"; }
	
	/*Document Payment Confirm*/
	table#docsPaymentComplete td:nth-of-type(1):before { content: "Business Name:"; }
	table#docsPaymentComplete td:nth-of-type(2):before { content: "Department ID:"; }
	table#docsPaymentComplete td:nth-of-type(3):before { content: "Filing Number:"; }
	table#docsPaymentComplete td:nth-of-type(4):before { content: "Document Type"; }
	table#docsPaymentComplete td:nth-of-type(5):before { content: "Number of Pages:"; }
	
	/*Filings Submitted*/
	table#PPR-Previous td:nth-of-type(1):before { content: "Filing:"; }
	table#PPR-Previous td:nth-of-type(2):before { content: "Status:"; }
	
	table#PPR-PreviousPenalty td:nth-of-type(1):before { content: "Filing:"; }
	table#PPR-PreviousPenalty td:nth-of-type(2):before { content: "Status:"; }
	table#PPR-PreviousPenalty td:nth-of-type(3):before { content: "Penalty:"; }
	
	/*Pending Filings*/
	table#tablePendFilings td:nth-of-type(1):before { content: "Last Modified:"; }
	table#tablePendFilings td:nth-of-type(2):before { content: "Name:"; }
	table#tablePendFilings td:nth-of-type(3):before { content: "Filing Type:"; }
	table#tablePendFilings td:nth-of-type(4):before { content: "Online Filing Status:"; }
	
	/*Business Filings*/
	table#tableBusFilings td:nth-of-type(1):before { content: "Name:"; }
	table#tableBusFilings td:nth-of-type(2):before { content: "Business Type:"; }
	table#tableBusFilings td:nth-of-type(3):before { content: "Department ID:"; }	
	
	/*Business Filings*/
	table#tablePPF td:nth-of-type(1):before { content: "Name:"; }
	table#tablePPF td:nth-of-type(2):before { content: "Department ID:"; }
	table#tablePPF td:nth-of-type(3):before { content: "Tax Year:"; }
	table#tablePPF td:nth-of-type(4):before { content: "Status:"; }	
	
	/*Business Filings*/
	table#tblOrderedDocs td:nth-of-type(1):before { content: "Name:"; }
	table#tblOrderedDocs td:nth-of-type(2):before { content: "Department ID:"; }
	table#tblOrderedDocs td:nth-of-type(3):before { content: "Document Type:"; }
	table#tblOrderedDocs td:nth-of-type(4):before { content: "Date Filed:"; }	
	
	/*Filing History*/
	table#tblFilingHistory td:nth-of-type(1):before { content: "Item:"; }
	table#tblFilingHistory td:nth-of-type(2):before { content: "Date/Time Filed:"; }
	table#tblFilingHistory td:nth-of-type(3):before { content: "Film:"; }
	table#tblFilingHistory td:nth-of-type(4):before { content: "Folio:"; }
	table#tblFilingHistory td:nth-of-type(5):before { content: "Pages:"; }	
	
	/*Account Contacts*/
	table#tblaccountContacts td:nth-of-type(1):before { content: "Business Name:"; }
	table#tblaccountContacts td:nth-of-type(2):before { content: "Contact Person:"; }
	table#tblaccountContacts td:nth-of-type(3):before { content: "Phone:"; }
	table#tblaccountContacts td:nth-of-type(4):before { content: "Email:"; }
	table#tblaccountContacts td:nth-of-type(5):before { content: "Address:"; }
	
	/*Trade Name Results*/
	table.tblTNSearch td:nth-of-type(1):before { content: "Department ID:"; }
	table.tblTNSearch td:nth-of-type(2):before { content: "Trade Name:"; }
	table.tblTNSearch td:nth-of-type(3):before { content: "Status:"; }
	  
	/*Processing Times Tables*/
	table.ptTable-2 td:nth-of-type(1):before { content: "Filing:"; }
	table.ptTable-2 td:nth-of-type(2):before { content: "Online Submission Date:"; }
	table.ptTable-2 td:nth-of-type(3):before { content: "Online Resubmission Date:"; }
	
	table.ptTable-3 td:nth-of-type(1):before { content: "Filing:"; }
	table.ptTable-3 td:nth-of-type(2):before { content: "Online Submission Date:"; }
	table.ptTable-3 td:nth-of-type(3):before { content: "Online Resubmission Date:"; }
	  
	table.ptTable-4 td:nth-of-type(1):before { content: "Filing:"; }
	table.ptTable-4 td:nth-of-type(2):before { content: "Online Submission Date:"; }
	table.ptTable-4 td:nth-of-type(3):before { content: "Online Resubmission Date:"; }
	
	table.ptTable-6 td:nth-of-type(1):before { content: "Order:"; }
	table.ptTable-6 td:nth-of-type(2):before { content: "Online Order Date:"; }
	
	
	
}