@charset "utf-8";
/* CSS Document */
/*style the table tag*/
		.nicetable {
			border-collapse: collapse;
			width: 750px;
			margin: 20px auto;
			font: 13px Helvetica,Arial;
		}

	/*style the <td> and <th>*/
		.nicetable td, .nicetable th  {
			border: 1px dotted #0468b5;
			padding: 5px;
		}

	/*use the attribute selector [scope] to precisely style heading cells*/
		.nicetable th[scope=col] {
			background: #0468b5;
			color: white;
			border-bottom: 5px solid orange;
			text-align: left;
		}
		.nicetable th[scope=row] {
			text-align: left;
			padding-left: 5px;
			background: url('../images/icons/icon_arrow_right.gif') no-repeat -3px center;
		}

	/*use an adjacent sibling selector to center the text inside <th> except for the first one*/
		.nicetable th+th[scope=col] {
			text-align: center;
		}


	/*Table-striping using :nth-child*/
	    .nicetable tr:nth-child(2n) {
	        background: #efefef;
	    }

	/*change bg-color of rows on hover*/
		.nicetable tr:hover {
		  background-color: #ddd;
		}

	-->
</style>
