div.seatCharts-container {
	min-width: 1024px;
}
div.seatCharts-cell {

	height: 20px;
	width: 30px;
	margin: 2px;
	float: left;
	text-align: center;
	outline: none;
	font-size: 12px;
	line-height:20px;
	color: blue;

}
div.seatCharts-seat {
	background-color: green;
	color: white;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	cursor: crosshair;
}
div.seatCharts-seat:focus {
	border: none;
}
/*
.seatCharts-seat:focus {
	outline: none;
}
*/

div.seatCharts-space {
/*	background-color: black;*/
}
div.seatCharts-row {
	height: 26px;
}

div.seatCharts-row:after {
	clear: both;
}

div.seatCharts-seat.selected {
	background-color: aqua;
}

div.seatCharts-seat.focused {
	background-color: #6db131;
}

div.seatCharts-seat.available {
	background-color: green;
}

div.seatCharts-seat.unavailable {
	background-color: red;
	cursor: not-allowed;
}

div.seatCharts-seat.unavailable kind{
	background-color: #000001;
	cursor: not-allowed;
}

div.seatCharts-seat.kind_select {
	background-color: #ccddff;
}

div.seatCharts-seat.reserviert {
	background-color: blue;
}

div.seatCharts-seat.verifiziert {
	background-color: #aabbcc;
}

div.seatCharts-seat.bezahlt {
	background-color: brown;
}

div.seatCharts-seat.adminavailable {
	background-color: yellow;
}

div.seatCharts-seat.kind {
	background-color: #ffaaaa;
}

div.seatCharts-seat.admin {
	background-color: black;
}

div.seatCharts-seat.admin-kind {
	background-color: grey;
}

ul.seatCharts-legendList {
	list-style: none;
}
li.seatCharts-legendItem {
	margin-top: 10px;
	line-height: 2;
}
.res, .res-1, .res-2{
 margin-top: 15px;
}

.res-1{
 background-color:green;
}
.res-2{
 background-color:yellow;
}

div.seatCharts-seat.not-class {
	background-color: yellow ;
}
/*
Styling

JSC uses a few CSS classes that are pretty self explanatory:
.seatCharts-container

DIV container where seat chart's rendered.
.seatCharts-row

DIV element which serves as a row. You're most likely to edit its height.
.seatCharts-cell

This class is applied to both seats and spacers ( _ ).
.seatCharts-seat

Applied to all seats regardless of character.
.seatCharts-space

Applied to spacers.
.seatCharts-seat.selected

Selected seats.
.seatCharts-seat.focused

Focused seats.
.seatCharts-seat.available

Available seats.
.seatCharts-seat.unavailable

Unavailable seats.

Please note: if you need each of your seat type (indicated by character) look differently, this is the easiest way:

CSS: .seatCharts-seat.selected.vip { background-color: #ff4fff; }
*/
