/* mise en forme de la table */

body {
	background-color: #000000;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    font-family: 'Roboto', sans-serif;
	color: #ffffff;
}

.reserve {
	color: red;
}

.attribue {
	color: #888888;
}

.disponible {
	color: #BFA152;
}

/* mise en forme du texte */


a {
	text-decoration: none;
}


/**************************************************************

	Sortable Table
	v 1.4

**************************************************************/

table {
	border: thin solid #BFA152;
	width: 100%;
}

th {
	background: #ffffff url(images/icon-table-sort.png) no-repeat 2px 8px;
	padding: 4px 4px 4px 14px;
	border-bottom: 2px solid #BFA152;
	text-align: left;
}


tr {
	background-color: #ffffff;
	padding: 4px;
	color: #000000;
}

tr.altRow {
	background-color: #989999;
	color: #000000;
}

td {
	padding: 0 2px;
}

.rightAlign {
	text-align: right;
}



.sortedASC {
	background: url(images/icon-table-sort-asc.png) no-repeat 2px 4px #ffffff;
}

.sortedDESC {
	background: url(images/icon-table-sort-desc.png) no-repeat 2px 10px #ffffff;
}

.tableHeaderOver {
	cursor: pointer;
	color: #000000;
}


/*tr.selected {
	background-color: gold;
	color: #000000;
}*/

tr.over {
	background-color: #BFA152;
	color: #000000;
	cursor: pointer;
}

tr.hide {
	display: none;
}

/***************************/
.tableFilter {
	border: thin solid #ccc;
	padding: 2px;
	margin: 5px 0 10px 0;
}

.tableFilter input {
	border: 1px solid #ccc;
}

.tableFilter select {
	border: thin solid #ccc;
}


/*************************************************************/
