
/* Table
================================================== */
table{
	border-collapse: collapse;
	width: 100%;
}

.table td, .table th{
	padding:8px;
	text-align: left;
}

.table td{	
	border-bottom:1px solid #edf1f3;
	-webkit-transition: background-color .2s linear;
	-moz-transition: background-color .2s linear;
	-o-transition: background-color .2s linear;
	transition: background-color .2s linear;	
}

.table th{
	background-color:#edf1f3;
	border-bottom:1px solid #ccd7dd;
}

.striped tbody > tr:nth-child(odd) > td{
	background-color:#f7f9fa
}

.table tr:hover td, .table tr.active td{
	background-color: #d4edff !important;
}

.table tr.active td {
	font-weight: bold;
}



section.table {
	padding: 20px;
}

section.table table th {
	border-bottom: 0;
	background: #f65543;
	color: #fff;
	font-weight: bold;
}

section.table table th:first-child {
	-webkit-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px;
}

section.table table th:last-child {
	-webkit-border-radius: 0 5px 5px 0;
	border-radius: 0 5px 5px 0;
}


