#content #maincontent .textwrap {
	padding: 10px;
}

.textwrap .sorting {
	display: block;
	color: #FF6600;
	padding: 0px 5px 20px 5px;
}

.table {
	display: table;
	width: 100%;
}

.table div.tr {
	display: table-row;
}

.table div.tr div.th,
.table div.tr div.td {
	display: table-cell;
	padding: 5px;
}

.table div.tr div.th {
	color: #000000;
	font-weight: bold;
	cursor: pointer;
}

.table div.tr div.th:hover {
	color: #FF6600;
}

.table div.tr div.th.sort {
	text-decoration: underline;
}

.table div.tr div.td {
	border-top: 1px solid #AAA;
}

.table div.tr:nth-of-type(even) div.td {
  	background: #f5f5f5; 
}

/* MOBILE 
 * * * * * * * * * * * * * * * * * * * * * * * * */
 
@media screen and (max-width: 780px) { 
	
	#content #maincontent {
		float: none;
		width: auto;
	}
	
	#sidebar {
		display: none;
	}
}

@media screen and (max-width: 500px) { 
	
	#content #maincontent .textwrap {
		padding: 0px;
	}

	.table {
		display: block;
		width: 100%;
	}

	.table div.tr {
		display: block;
	}

	.table div.tr div.td {
		display: block;
		border-top: 0px;
		padding: 0px;
		padding-left: 5px;
		padding-bottom: 5px;
	}
	
	.table div.tr div.td:first-child {
		display: block;
		padding-top: 5px;
		border-top: 1px solid #AAA;
	}
}