﻿

/*  Style for text  */
strong {
	font-weight: bold; 
}

em {
	font-style: italic; 
}

/*  Style for the Table*/
table {
	background: #111;
	border-collapse: separate;
    border-radius: 25px 25px 0px 0px;
    -moz-border-radius: 25px 25px 0px 0px; 
	box-shadow: inset 0 1px 0 #ffffff;
	font-size: 12px;
	line-height: 24px;
	margin: 30px auto;
	text-align: left;
	width: 800px;
}	

/*  Style for the Headings  */
th {
	background: #111;
    background: -moz-linear-gradient(#444, #111);
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #111),color-stop(1, #444));
    background: -webkit-linear-gradient(#444, #111);
    background: -o-linear-gradient(#444, #111);
    background: -ms-linear-gradient(#444, #111);
    background: linear-gradient(#444, #111);
    -moz-box-shadow: 0 2px 1px #9c9c9c;
    -webkit-box-shadow: 0 2px 1px #9c9c9c;
    box-shadow: 0 2px 1px #9c9c9c;
	border-left: 1px solid #555;
	border-right: 1px solid #777;
	border-top: 1px solid #555;
	border-bottom: 1px solid #333;
	box-shadow: inset 0 2px 1px #9c9c9c;
	color: #fff;
    font-weight: bold;
	padding: 10px 15px;
	position: relative;
	text-shadow: 0 1px 0 #000;	
}

th:after {
	background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.08));
	content: '';
	display: block;
	height: 25%;
	left: 0;
	margin: 1px 0 0 0;
	position: absolute;
	top: 25%;
	width: 100%;
}

th:first-child {
    -moz-border-radius: 25px 0px 0px 0px;
    border-radius: 25px 0px 0px 0px;
	border-left: 1px solid #777;	
	box-shadow: inset 1px 1px 0 #999;
}

th:last-child {
    -moz-border-radius: 0px 25px 0px 0px;
    border-radius: 0px 25px 0px 0px;
	box-shadow: inset -1px 1px 0 #999;
}

/*  Style for the Columns  */
td {
    border-collapse: collapse;
	border-right: 1px solid #ffffff;
	border-left: 1px solid #e8e8e8;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #e8e8e8;
	padding: 10px 15px;
	position: relative;
	transition: all 300ms;
}

td:first-child {
	box-shadow: inset 1px 0 0 #ffffff;
}	

td:last-child {
	border-right: 1px solid #e8e8e8;
	box-shadow: inset -1px 0 0 #ffffff;
}	

/*  Style for the Rows*/
tr {
	background: #f1f1f1;	
}

tr:nth-child(odd) td {
	background: #f1f1f1 ;	
}

tr:last-of-type td {
	box-shadow: inset 0 -1px 0 #ffffff; 
}

tr:last-of-type td:first-child {
	box-shadow: inset 1px -1px 0 #ffffff;
}	

tr:last-of-type td:last-child {
	box-shadow: inset -1px -1px 0 #ffffff;
}	

/*  Fade and Blur  */
tbody:hover td {
	color: transparent;
	text-shadow: 0 0 3px #aaa;
}

tbody:hover tr:hover td {
	color: #444;
	text-shadow: 0 1px 0 #ffffff;
}