/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 06.01.2016, 20:22:04
    Author     : oli
*/

.bookingTable {
	margin:0px;padding:0px;
	width:100%;
        font-size:13px;
	box-shadow: 10px 10px 5px #888888;
	border:1px solid #888888;
	
        /*
	-moz-border-radius-bottomleft:5px;
	-webkit-border-bottom-left-radius:5px;
	border-bottom-left-radius:5px;
	
	-moz-border-radius-bottomright:5px;
	-webkit-border-bottom-right-radius:5px;
	border-bottom-right-radius:5px;
	
	-moz-border-radius-topright:5px;
	-webkit-border-top-right-radius:5px;
	border-top-right-radius:5px;
	
	-moz-border-radius-topleft:5px;
	-webkit-border-top-left-radius:5px;
	border-top-left-radius:5px;*/
}.bookingTable table{
    /* border-collapse: collapse; */
        border-spacing: 0;
	width:100%;
	height:100%;
	margin:0px;padding:0px;
}.bookingTable tr:last-child td:last-child {
	/*-moz-border-radius-bottomright:5px;
	-webkit-border-bottom-right-radius:5px;*/
	border-bottom-right-radius:5px;
}
.bookingTable table tr:first-child td:first-child {
	/*-moz-border-radius-topleft:5px;
	-webkit-border-top-left-radius:5px;*/
	border-top-left-radius:5px;
}
.bookingTable table tr:first-child td:last-child {
	/*-moz-border-radius-topright:5px;
	-webkit-border-top-right-radius:5px;*/
	border-top-right-radius:5px;
}.bookingTable tr:last-child td:first-child{
	/*-moz-border-radius-bottomleft:5px;
	-webkit-border-bottom-left-radius:5px;*/
	border-bottom-left-radius:5px;
}
.bookingTable tr:nth-child(odd) { background-color:#e0e0e0; }
.bookingTable tr:nth-child(even) { background-color:#f0f0f0; }
.bookingTable th{
    text-align: left;
    border:1px solid #888888;
    padding:7px;
    color:#000000;
}
.bookingTable td{
	vertical-align:middle;
	
	border:1px solid #888888;
	text-align:left;
	padding:7px;
	color:#000000;
}

#spacer {
    height:1px;
    padding:0px;
    margin: 0 0 0 0;
    line-height: 0px;
}

#spacerLine {
    height:1px;
    padding:0px;
    margin: 0 0 0 0;
    line-height: 2px;
}