/*
 *  File:         demo_table.css
 *  CVS:          $Id$
 *  Description:  CSS descriptions for DataTables demo pages
 *  Author:       Allan Jardine
 *  Created:      Tue May 12 06:47:22 BST 2009
 *  Modified:     $Date$ by $Author$
 *  Language:     CSS
 *  Project:      DataTables
 
 *  Copyright 2009 Allan Jardine. All Rights Reserved.
 *
 * ***************************************************************************
 * DESCRIPTION
 *
 * The styles given here are suitable for the demos that are used with the standard DataTables
 * distribution (see www.datatables.net). You will most likely wish to modify these styles to
 * meet the layout requirements of your site.
 *
 * Common issues:
 *   'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
 *     no conflict between the two pagination types. If you want to use full_numbers pagination
 *     ensure that you either have "example_alt_pagination" as a body class name, or better yet,
 *     modify that selector.
 *   Note that the path used for Images is relative. All images are by default located in
 *     ../images/ - relative to this CSS file.
 */

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables features
 */

table.tabelle3 .link .linksKlein a:link, table.tabelle3 .link .linksKlein a:active, table.tabelle3 .link .linksKlein a:visited {
	font-weight: normal;
}

.dataTables_wrapper {
	position: relative;
	clear: both;
	zoom: 1;
	padding-bottom: 30px;
}

.dataTables_processing {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 250px;
	height: 30px;
	padding: 14px 0 2px 0;
	border: 1px solid #ddd;
	text-align: center;
	color: #999;
	font-size: 14px;
	background-color: white;
}

.dataTables_length {
	width: 40%;
	float: left;
}

.dataTables_filter {
	width: 100%;
	text-align: right;
	color: white;
	font: bold 12px/20px Verdana, Arial, Helvetica, sans-serif;
    background-color:#808080;
    border-bottom:1px #fff solid;
    color:#fff;
    font-weight:700;
    height:auto;
    line-height:20px;
	overflow: visible;
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 30px;
	left: 10px;
}

.dataTables_info {
	width: 50%;
	float: left;
	background-color: white;
	padding-bottom: 10px;
}

.dataTables_paginate {
	width: 100%;
	text-align: center;
	line-height: 17px;
	margin-top: 15px;
	background-color: white;
}

.toolbarAktuelles, .toolbarNews {
	font: bold 12px/20px Verdana, Arial, Helvetica, sans-serif;
    background-color:#808080;
    border-bottom:1px #fff solid;
    color:#fff;
    font-weight:700;
    height:auto;
    line-height:20px;
    padding:0 6px;
    text-align:left;
	/*width: 300px;*/
	width: 100%;
	float: left;
}

/* Pagination nested */
.paginate_disabled_next, .paginate_enabled_next, .paginate_disabled_last, .paginate_enabled_last {
	color: #20a391;
	padding-left: 15px;
	line-height: 17px;
	font-size: 12px;
	font-weight: bold;
	float: right;
}

.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_first, .paginate_enabled_first {
	text-align: left;
	padding-right: 15px;
	color: #20a391;
	line-height: 17px;
	font-size: 12px;
	font-weight: bold;
	float: left;
}

.paginate_disabled_previous {
	color: #d9efec;
	/*background-image: url('../images/back_disabled.jpg');*/
}

.paginate_enabled_previous {
	color: #20a391;
	/*background-image: url('../images/back_enabled.jpg');*/
}

.paginate_enabled_previous:hover {
	text-decoration: underline;
}

.paginate_disabled_first {
	color: #d9efec;
	/*background-image: url('../images/back_disabled.jpg');*/
}

.paginate_enabled_first {
	color: #20a391;
	/*background-image: url('../images/back_enabled.jpg');*/
}

.paginate_enabled_first:hover {
	text-decoration: underline;
}

.paginate_disabled_next {
	color: #d9efec;
	/*background-image: url('../images/forward_disabled.jpg');*/
}

.paginate_enabled_next {
	color: #20a391;
	/*background-image: url('../images/forward_enabled.jpg');*/
}

.paginate_enabled_next:hover {
	text-decoration: underline;
}

.paginate_disabled_last {
	color: #d9efec;
	/*background-image: url('../images/forward_disabled.jpg');*/
}

.paginate_enabled_last {
	color: #20a391;
	/*background-image: url('../images/forward_enabled.jpg');*/
}

.paginate_enabled_last:hover {
	text-decoration: underline;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables display
 */
table.tabelle3 {
	margin: 0 auto;
	clear: both;
	width: 100%;
	
	/* Note Firefox 3.5 and before have a bug with border-collapse
	 * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 ) 
	 * border-spacing: 0; is one possible option. Conditional-css.com is
	 * useful for this kind of thing
	 *
	 * Further note IE 6/7 has problems when calculating widths with border width.
	 * It subtracts one px relative to the other browsers from the first column, and
	 * adds one to the end...
	 *
	 * If you want that effect I'd suggest setting a border-top/left on th/td's and 
	 * then filling in the gaps with other borders.
	 */
}

/*
table.tabelle3 thead th {
	padding: 4px 5px 5px;
	border-bottom: 1px solid white;
	border-top: 1px solid white;
	cursor: pointer;
	* cursor: hand;
	background-color: #d1d1d1;
	margin: 0;
	font: bold 12px/15px Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
}

table.tabelle3 tfoot th {
	padding: 3px 18px 3px 10px;
	border-top: 1px solid black;
	font-weight: bold;
}

table.tabelle3 tr.heading2 td {
	border-bottom: 1px solid #aaa;
}

table.tabelle3 td {
	padding: 3px 10px;
}

table.tabelle3 td.center {
	text-align: center;
}

*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables sorting
 */

.sorting_asc {
	background: url('../images/kit/sort_asc.png') no-repeat center right;
}

.sorting_desc {
	background: url('../images/kit/sort_desc.png') no-repeat center right;
}

.sorting {
	background: url('../images/kit/updown.png') no-repeat center right;
}

.sorting_asc_disabled {
	background: url('../images/sort_asc_disabled.png') no-repeat center right;
}

.sorting_desc_disabled {
	background: url('../images/sort_desc_disabled.png') no-repeat center right;
}





/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables row classes
 */


tr.odd {
	background-color: white;
}

tr.even {
	background-color: #e5e5e5;
}





/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Misc
 */
.dataTables_scroll {
	clear: both;
}

.dataTables_scrollBody {
	*margin-top: -1px;
}

.top, .bottom {
	padding: 15px;
	background-color: #F5F5F5;
	border: 1px solid #CCCCCC;
}

.top .dataTables_info {
	float: none;
}

.clear {
	clear: both;
}

.dataTables_empty {
	text-align: center;
}

tfoot input {
	margin: 0.5em 0;
	width: 100%;
	color: #444;
}

tfoot input.search_init {
	color: #999;
}

td.group {
	background-color: #d1cfd0;
	border-bottom: 2px solid #A19B9E;
	border-top: 2px solid #A19B9E;
}

td.details {
	background-color: #d1cfd0;
	border: 2px solid #A19B9E;
}

/*
 * Sorting classes for columns
 */
/* For the standard odd/even */
tr.odd td.sorting_1 {
	background-color: white;
}

tr.even td.sorting_1 {
	background-color: #e5e5e5;
}


/* For the Conditional-CSS grading rows */
/*
 	Colour calculations (based off the main row colours)
  Level 1:
		dd > c4
		ee > d5
	Level 2:
	  dd > d1
	  ee > e2
 */


/*
 * Row highlighting example
 */
.ex_highlight #termineTable tbody tr.even:hover, 
#termineTable tbody tr.even td.highlighted,
.ex_highlight #newsTable tbody tr.even:hover, 
#newsTable tbody tr.even td.highlighted {
	background-color: #d9efec;
}

.ex_highlight #termineTable tbody tr.odd:hover, 
#termineTable tbody tr.odd td.highlighted, 
.ex_highlight #newsTable tbody tr.odd:hover, 
#newsTable tbody tr.odd td.highlighted {

	background-color: #d9efec;
}

.ex_highlight_row #termineTable tr.even:hover,
.ex_highlight_row #newsTable tr.even:hover {
	background-color: #d9efec;
}

.ex_highlight_row #termineTable tr.even:hover td.sorting_1,
.ex_highlight_row #newsTable tr.even:hover td.sorting_1 {
	background-color: #d9efec;
}

.ex_highlight_row #termineTable tr.odd:hover,
.ex_highlight_row #newsTable tr.odd:hover {
	background-color: #d9efec;
}

.ex_highlight_row #termineTable tr.odd:hover td.sorting_1, 
.ex_highlight_row #newsTable tr.odd:hover td.sorting_1{
	background-color: #d9efec;
}


/*
 * KeyTable
 */
table.KeyTable td {
	border: 3px solid transparent;
}

table.KeyTable td.focus {
	border: 3px solid #3366FF;
}
