/*
table {
	text-decoration: none;
	width: 100%;
	/*border-collapse:collapse; */
	/*text-align: center;
	
	border-color: black;
	border-width: 1px;
	border-style: solid;
	*/
	/*
	border: 1px solid black;
	}
/*	
h2 {
	text-align: center;
	}
	
th {
	border: 1px solid black;
}


*/
	/*
table {
	border-color: black; 
	border-width: 1px; 
	border-style: solid; 
	border-collapse: collapse; 
	width: 100%;
}
*/

h2 {
	text-align: center;
	}
	
table {
	/*border-collapse: collapse;*/
	border-spacing: 0;
	overflow: hidden;
}


table tbody{
	width: 100%;
	border: none;
	/*border-style: solid;*/
	/*border-collapse: collapse;*/
	margin-bottom: 20px;
	font-size: 15pt;
	
}

table tbody tr:first-child th, tbody tr:nth-child(2) th, tbody tr:nth-child(3) th, tbody tr:nth-child(4) th {
	font-weight: bold;
	text-align: center;
	/*border: none;*/
	border-color: black;
	border-width: 1px;
	border-style: solid;
	padding: 10px 15px;
	background: #EDEDED;
	box-shadow: 0 0 1px #000;
	/*border-top: 1px solid #ddd;*/
}

/*\
.table tr th:first-child, .table tr th:first-child {
	border-left: 1px solid #ddd;
}

.table tr th:last-child, .table tr th:last-child {
	border-right: 1px solid #ddd;
}
*/
table tbody tr:first-child th:first-child {
	border-radius: 20px 0 0 0;
}

table tbody tr:first-child th:last-child {
	border-radius: 0 20px 0 0;
}

table tbody td {
	font-weight: normal;
	text-align: left;
	/*border: none;*/
	padding: 10px 15px;
	vertical-align: top;
	text-align: center;
	border-color: black;
	border-width: 1px;
	border-style: solid;
	position: relative;
	
}

table tbody tr:nth-child(even) th {
	/*background: #F8F8F8;*/
}


table tbody tr:last-child th{
	/*border-collapse: separate;
	border-bottom: 1px solid #ddd;
	border: none;*/
	/*border: none;*/
	padding: 10px 15px;
	/*background: #EDEDED;*/
	border-color: black;
	border-width: 1px;
	border-style: solid;
	
}


table tbody tr:last-child td:first-child {
	border-radius: 0 0 0 20px;
}

table tbody tr:last-child td:last-child {
	border-radius: 0 0 20px 0;
}

/*
table tbody tr:hover td {
    background: #ddd;
    -o-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;     
}
*/

table tbody tr td:hover:before { 
	background-color: #eee;
	content: '';  
	height: 100%;
	left: -5000px;
	position: absolute;  
	top: 0;
	width: 10000px;   
	z-index: -2;        
}

table tbody tr td:hover:after { 
	background-color: #eee;
	content: '';  
	height: 10000px;    
	left: 0;
	position: absolute;  
	top: -5000px;
	width: 100%;
	z-index: -1;        
}

table tbody tr td:hover {
	background: #fffabe;
}