/* news-table */
table {
	margin-top: 25px;
    color: #444;
    text-align: center;
}

table tr th,
table tr td {
    padding: 8px;
    line-height: 1.6;
    font-size: 16px;
    border: 1px solid #ddd;
    vertical-align: middle;	
}

table tr th {
    font-size: 18px;
}

table > tbody > tr:hover > th,
table > tbody > tr:hover > td {
	background: #fbfbfb;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
}
/* end news-table */