/* @override http://localhost:8888/reservations/css/base.css */
.error {
	color: red;
}
.active-step {
	font-weight: bold;
}

/* @group Confirmation */
.details-table {
	border: thin solid #999;
	margin-bottom: 10px;
}
.details-table th {
	text-align: right;
	vertical-align: top;
}

#reservation-summary {
	width: 100%;
}
#reservation-summary thead tr th:first-child {
	width: 65%;
}
#reservation-summary thead tr th {
	text-align: left;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 20px;
	border-bottom: thin solid #666;
}

#reservation-summary tbody tr td {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 20px;
}

#reservation-summary tfoot td {
	padding-right: 10px;
	font-weight: bold;
	border-top: thin solid #ccc;
}

#reservation-summary tr.included-rooms td {
	padding-left: 20px;
}



/* @end */
#reservation-steps
{
	float: right;
	font-size: 120%;
}
#selection-summary {
	margin: 5px;
	margin-bottom: 15px;
}
#selection-summary ul {
	list-style: none;
}

#selection-summary li
{
	margin-left: 10px;
}

/* **** */

#reservationform  {
}

#reservationform label {
	clear: both;
	float: left;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #CCC;
	width: 800px;
}

#reservationform div.row {
	clear: both;
	float: left;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #CCC;
	width: 800px;
}

#reservationform div.row input {
	float: left;
	margin-right: 10px;
}

#reservationform div.row .details {
	float: left;
}

#reservationform div.row .price {
	float: right;
}

#reservationform h1,
#reservationform h2, 
#reservationform p {
	clear: both;
	float: left;
	display: block;
	margin-bottom: 20px;
	width: 800px;
}




#reservationform #calendars {
	clear: both;
	float: left;
	display: block;
	margin-bottom: 20px;
	height: 200px;
	width: 790px;
	overflow: hidden;
}

#reservationform #calendarsurround {
	clear: both;
	float: left;
	display: block;
	height: 200px;
	width: 800000px;
}

#reservationform .week {
	float: left;
	display: block;
	height: 192px;
	width: 392px;
	border-left: 1px solid #000;
}

#reservationform .day {
	display: block;
	float: left;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	border-right: 1px solid #000;
	height: 190px;
	width: 55px;
}

#reservationform .dayhead {
	display: block;
	border-bottom: 1px solid #000;
	height: 50px;
	clear: both;
	text-align: center;
}

#reservationform .dayfoot {
	float: left;
	display: block;
	height: 140px;
	width: 100%;
}

#reservationform .room {
	float: left;
	clear: both;
	display: block;
	height: 40px;
	width: 100%;
	border-bottom: solid 1px #000;
}

#reservationform .booked {
	background-color: #C03;
	color: #FFF;
}

#reservationform .selected {
	background-color: #FF0;
	color: #000;
}




/* located in demo.css and creates a little calendar icon
 * instead of a text link for "Choose date"
 */
a.dp-choose-date {
	float: left;
	width: 16px;
	height: 16px;
	padding: 0;
	margin: 5px 3px 0;
	display: block;
	text-indent: -2000px;
	overflow: hidden;
	background: url(calendar.png) no-repeat; 
}
a.dp-choose-date.dp-disabled {
	background-position: 0 -20px;
	cursor: default;
}
/* makes the input field shorter once the date picker code
 * has run (to allow space for the calendar icon
 */
input.dp-applied {
	width: 140px;
	float: left;
}