/* Table styling */
.msds-table{
    width: 100%;
    border-spacing: 0px;
    background-color: #f8f8f8;
}
.msds-table tr th {
    text-align: left;
    padding: 15px 8px;
	border-bottom: 1px solid #000000;
}
.msds-table tr td {
    border-bottom: 1px solid #000000;
    padding: 8px;
}

/* Alternating row colors */
.msds-table-striped > tbody > tr:nth-of-type(odd) > td {
    background-color: #EFF1F2   !important;
}

.msds-table-striped > tbody > tr:nth-of-type(even) > td {
    background-color: #ffffff   !important;
}

/* Additional styling */
.msds-blue {
    background-color: #ffffff;
}
/* Adjustments */
.msds-table th:last-child {
    border-right: 0!important;
}

.msds-msds-table > thead > tr > th {
    vertical-align: top;
}

.msds-table > tbody > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
}
