﻿/* divPrioritiesTable.com */
.divPrioritiesTable{
	display: table;
	width: 100%;
    max-width:1150px;
}
.divPrioritiesTableRow {
	display: table-row;
}
.divPrioritiesTableHeading {
	background-color: #EEE;
	display: table-header-group;
}
.divPrioritiesTableCell, .divPrioritiesTableHead {
	border-left: 2px solid #808ca2;
	display: table-cell;
	padding: 3px 10px;
    text-align:left;
}
.divPrioritiesTableHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}
.divPrioritiesTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
.divPrioritiesTableBody {
	display: table-row-group;
}


table , td, th {
	border-top: 1px solid;
    border-bottom: 1px solid;
	border-collapse: collapse;
    width:100%;
  
}
td, th {
	padding: 5px;
	width: 30px;
	height: 25px;
}
th {
	background: #f0e6cc;
}
.even {
	background: #fbf8f0;
}
.odd {
	background: #fefcf9;
}
