/* calendar style */
.reservation {
	font-family: "Century Gothic", Arial, sans-serif, Verdana;
	font-size: 12px;
	color: #FFF;
	width: 1000px;
	text-align: left;
	position: relative;
	background-repeat: repeat;
	padding-top: 5px;
	margin-right: auto;
	margin-left: auto;
}
.reservation h2 {
	font-size: 22px;
	text-transform: uppercase;
	color: #D9B200;
	font-weight: normal;
	font-style: normal;
	float: left;
	margin-right: 20px;
	padding-top: 5px;
	display: inline-block;
}
.reservation p {
	font-size: 14px;
	float: left;
	display: inline-block;
	margin-right: 20px;
}
.reservation img {
	border: 0;
	position: absolute;
}

.reservation input[type="text"] {
	width: 95px;
	border-radius: 3px;
	border: 1px solid #ccc;
	text-align: center
}
.reservation input[type="text"], .reservation select {
	line-height: 22px;
	font-size: 12px;
	height: 22px
}
.reservation span{display: block;}
.check-in {
	width: 150px;
	height: 20px;
	float: left;
}
.check-out {
	width: 150px;
	height: 20px;
	float: left;
}
.reservation input[type="image"] {
	float: left;
	margin-top:3px;
	margin-left: 20px;
}
.ddroom {
	width: 207px;
	height: 20px;
	float: left;
}
.ddadult {
	width: 50px;
	height: 20px;
	float: left;
}
.ddchild {
	width: 50px;
	height: 20px;
	float: left;
}
.access-code{float: left; width: 80px;}
/* calendar icon */
img.tcalIcon {
	cursor: pointer;
	margin: 0 0 1px 2px;
	vertical-align: bottom;
}
/* calendar container element */
div#tcal {
	position: absolute;
	visibility: hidden;
	z-index: 10000 !important;
	width: 180px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: -17px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}
/* all tables in calendar */
div#tcal table {
	width: 100%;
	border: 1px solid silver;
	border-collapse: collapse;
	background-color: white;
}
/* navigation table */
div#tcal table.ctrl {
	border-bottom: 0;
}
/* navigation buttons */
div#tcal table.ctrl td {
	width: 15px;
	height: 20px;
}
/* month year header */
div#tcal table.ctrl th {
	background-color: white;
	color: black;
	border: 0;
}
/* week days header */
div#tcal th {
	border: 1px solid silver;
	border-collapse: collapse;
	text-align: center;
	padding: 3px 0;
	font-family: "Century Gothic", Arial, sans-serif, Verdana;
	font-size: 13px;
	background-color: gray;
	color: white;
}
/* date cells */
div#tcal td {
	border: 0;
	border-collapse: collapse;
	text-align: center;
	padding: 2px 0;
	font-family: tahoma, verdana, arial;
	font-size: 11px;
	width: 22px;
	cursor: pointer;
	color: #333
}
/* date highlight
   in case of conflicting settings order here determines the priority from least to most important */
div#tcal td.othermonth {
	color: silver;
}
div#tcal td.weekend {
	background-color: #ACD6F5;
}
div#tcal td.today {
	border: 1px solid red;
}
div#tcal td.selected {
	background-color: #FFB3BE;
}
/* iframe element used to suppress windowed controls in IE5/6 */
iframe#tcalIF {
	position: absolute;
	visibility: hidden;
	z-index: 98;
	border: 0;
}
