@CHARSET "US-ASCII";

/* 
 * This stylesheet contains CSS rules wich should only be applied when 
 * JavaScript is diabled. For this purpose 'body.noscript' can be used.
 */


/* nice tables withous JavaScript/DataTables */

body.noscript div.resizable {
	outline: 1px solid black;
}

body.noscript table.datatable th,
body.noscript table.datatable td {
	padding: 0.5em 0.7em;
}

body.noscript table.datatable thead th,
body.noscript table.datatable thead td {
	border-bottom: 0.1em solid #222;
}

body.noscript table.datatable tfoot th,
body.noscript table.datatable tfoot td {
	border-top: 0.1em solid #222;
}

body.noscript table.datatable tbody tr td {
	border-bottom: 0.1em solid #ddd;
}

body.noscript table.datatable tbody tr {
	transition-property: background-color;
	transition-duration: 0.1s;
	transition-timing-function: linear;
}

body.noscript table.datatable tbody tr:nth-of-type(odd) {
	background-color: rgba(170,170,170,0.08);
}

body.noscript table.datatable tbody tr:hover {
	background-color: rgba(170,170,170,0.2);
	transition-duration: 0.02s;
	transition-timing-function: ease-in;
}

body.noscript .notforjs {
	display: inline;
}

body.noscript *[name='jsapplyasbutton']{
	display:none;
}
