﻿/* TABLES
--------------*/

/*/---------
  STRIPED TABLE WITH BLUE HEADING
/*/
table.ms-rteTable-Striped {
  -ms-name:"OMB Striped";
}

.ms-rteTable-Striped th {
  background: #2d539d;
  color: #fff;
  text-align:left;
}

.ms-rteTable-Striped tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}

.ms-rteTable-Striped td {
  padding: 8px;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}

.ms-rteTable-Striped tbody > tr:nth-child(odd) > td, .table-striped tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

/*/---------
  LIGHT BORDERED TABLE WITH BLUE HEADING
/*/
table.ms-rteTable-Clarity {
  -ms-name:"OMB Clarity";
}

.ms-rteTable-Clarity th {
  background: #fff;
  border-right: 1px solid #dddddd;
  color: #2d539d;
  text-align:center;
  font-weight:bold;
}

.ms-rteTable-Clarity tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}

.ms-rteTable-Clarity td {
  border-right: 1px solid #dddddd;
  padding: 8px;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.ms-rteTable-Clarity th:last-child, .ms-rteTable-Clarity td:last-child {
  border-right: none;
}