/*the style that select all elements*/
* {
	margin: 0;
	padding: 0;
}
/*the style for the html document*/
html {
	background-color: #F5F5F5;
}
/*the style for the body*/
body{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	margin: 0 auto;
	max-width: 1200px;    /*31.75cm*/
	width: 96%;
	background-color: #fffded; 
	padding:2%;  
	border-radius:2%;
}
/*the style for the header*/
header {
	width: 100%;
	max-width: 1200px;
	padding: 0 0 2em 0;
	background-image: -moz-linear-gradient(30deg, #fffded 0%, #fffded 30%, white 50%, #fffded 80%, #fffded 100%);
	background-image: -webkit-linear-gradient(30deg, #fffded0%, #fffded 30%, white 50%, #fffded 80%, #fffded100%);
	background-image: -o-linear-gradient(30deg, #fffded 0%, #fffded 30%, white 50%, #fffded 80%, #fffded 100%);
	background-image: linear-gradient(30deg, #fffded 0%, #fffded 30%, white 50%, #fffded 80%, #fffded 100%);
}
/*the style for the header h2*/
header h2 {
	font-size: 175%;
	color: #800000;
	margin-left: 40%;
	text-shadow: 2px 2px 2px #800000;
}
/*the style for the header h3*/
header h3 {
	font-size: 130%;
	font-style: italic;
	margin-left: 37%;
	text-shadow: 0px 1px 3px black;
}
/*the style for the header img*/
header img {
	width: 11.25%;
	max-width: 136px;
	min-width: 40px;
	float: left;
	padding: 0 3.75%;            
}
/*the style for the header #data id*/
header #dater{
	font-size: 100%;
	padding-left: 73%;
	margin-top: -4%;
	font-weight: bold;
}
/*the style for the header #timer id*/
header #timer{
	font-size: 100%;
	padding-left: 88%;
	padding-top: 2.5%;
	margin-top: -4%;
	font-weight: bold;
}
/*the style for the header #search id*/
header #search{
	font-size: 100%;
	padding-left: 73%;
	padding-top: 2.5%;
	margin-top: -1%;
}
/*the style for the all link elements beside those in the #nav_menu*/
a{
	font-weight: bold;
	text-decoration: none;
}
/*the style for the link elements color and visited links beside those in the #nav_menu*/
a:link, a:visited{
	/*color: #931420 !important;*/
}
/*the style for the link elements in #nav_menu only*/
#nav_menu a{
	font-weight: bold;
	text-decoration: none;
	color: white;
}
/*the style for the link element color and visited links in the #nav_menu*/
#nav_menu a:link{
	color: WhiteSmoke !important;
}
/*the style for the the #nav_menu id*/
#nav_menu{
	background-color: #3b3c3d;
	width: 100%;
	padding-top: 0.5%;
	padding-bottom: 0.5%;
	margin-top: 0;
	margin-bottom: 2%;
	border-radius: 10px;
}
/*the style for the #nav_menu ul*/
#nav_menu ul{
	width: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative;
}
/*the style for the #nav_menu ul li*/
#nav_menu ul li{
	width: 14.28%;
	float: left;
	z-index: 99999;
}
/*the style for the #nav_menu ul ul*/
#nav_menu ul ul{
	display: none;
	position: absolute;
	top: 100%;
}
/*the style for the #nav_menu ul ul li*/
#nav_menu ul ul li{
	float: none;
	position: relative;
}
/*the style for the #nav_menu ul ul li ul*/
#nav_menu ul ul li ul{
	position: absolute;
	left: 100%;
	top: 0;
}
/*the style for the #nav_menu ul li.lastitem ul li ul*/
#nav_menu ul li.lastitem ul li ul{
	position: absolute;
	left: -100%;
	top: 0;
}
/*the style for the li:hover > ul*/
#nav_menu ul li:hover > ul{
	display: block;
}
/*the style for the #nav_menu > ul:: after*/
#nav_menu > ul::after{
	content: "";
	clear: both;
	display: block;
}
/*the style for the #nav_menu ul li a*/
#nav_menu ul li a{
	text-align: center;
	display: block;
	padding: .7em 0;
	background-color: #3b3c3d;
	color: white;
}
/*the style for #nav_menu ul li:hover ul*/
#nav_menu ul li:hover ul{
	width: 100%;
}
/*the style for #nav_menu ul li:hover ul li:hover ul li*/
#nav_menu ul li:hover ul li:hover ul li{
	width: 100%;
}
/*the style for #nav_menu a:hover a:focus*/
#nav_menu a:hover, #nav_menu a:focus{
	background-color: #931420;
	color: white;
	font-style: italic;
}
/* the styles for the main content */
main{
	clear: both;
}
#booking_info{
	float: left;
	width: 30%;
	margin: 2%;
	padding: 1%;
	background-color: #DAD5C1;
	border-radius:10px;
}
#booking_info h3{
	color: #931420;
	padding-bottom: 1%;
}
#booking_info p{
	padding: 1.5%;
}
table{
	width: 65%;
	float: left;
	border-collapse: collapse;
	border: 1px solid black;
	margin: 10px auto;							/*10px top, 10px bottom, auto right, auto left*/
	/*border-collapse: separate;*/
}
/*the style for the th,td*/
th, td{
	border: 1px solid black;
	padding: .2em .7em;
	text-align: center;
}
th{
	color: #931420;
}
/*the style for the th:first-child, td:first-child*/
th:first-child,td:first-child{
	text-align: left;
}
th:nth-child(2), td:nth-child(2){
	text-align: center;
}

/*the style for the figcaption*/
figcaption{
	display: block;
	font-weight: bold;
	text-align: center;
	font-size: 120%;
}
/*the style for the scroll back to top button*/
#myBtn {
  display: none;
  position: fixed;
  bottom: 26px;
  right: 19px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #931420;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
}
#myBtn:hover {
  background-color: #3b3c3d;
}
/*breadcrumb*/
#breadcrumb{
	padding: 0;
	margin: 1%;
}
#breadcrumb ul{
	list-style-type: none;
	padding-top: 0;
	padding-bottom: 1%;
	margin-top: -1.5%;
	margin-right: 2%;
	margin-bottom: 0;
	margin-left: 2%;
}
#breadcrumb ul li{
float: left;
color: #01447e;
font-weight: bold;
font-style: normal;
font-size: 95%;
}
#breadcrumb li+li:before{
	color: black;
	content: "/\00a0";
}
#breadcrumb li a{
	color: #01447e;
	text-decoration: none;
}
#breadcrumb li a:hover{
	color: #931420;
	font-style: italic;
	font-size: 105%;
	text-decoration: underline;
}
#breadcrumb li a:focus{
	color: #931420;
	font-style: italic;
	font-size: 105%;
	text-decoration: underline;
}
/*breadcrumb*/
/*the style for the footer*/
footer {
	border-radius:10px;
	/*background-color: #901E1D;*/
	background-color: #3b3c3d;
	clear: both;
}
/*the style for the footer p*/
footer p{
	text-align: center;
	color: white;
	padding: 1em 0;
}
.slicknav_menu{
	display: none;
}
/*tablet portrait to standard 960*/
@media only screen and (max-width: 959px){
	
	#nav_menu ul li a{
	font-size: .875em;						
	}
	#timer{
		margin-left: 4%;
		
	}
	#booking_info{
	margin-top: 0;
	width: auto;
}
table{
	width: auto;
}
	#breadcrumb{
		display: none;
	}
	
}
/*mobile landscape to tablet portrait*/
@media only screen and (max-width: 767px){
	/*header*/
	header img {
		float: none;
		width: 100%;
		text-align: center;
		display: block;
		margin: 0 auto;
		}
	header h2{
		margin:2% 0 0 0;
		padding: 0;
		font-size: 120%;
		text-align: center;
	}
	header h3{
		float: none;
		margin:0;
		padding:0;
		font-size: 105%;
		text-align: center;
	}
	header #dater{
		margin: 5% 0 0 0;
		padding: 0;
		text-align: center;
	}
	
	header #timer{
		margin: 0;
		padding: 1%;
		text-align: center;
	}
	header #search{
		margin: 3% 0 0 0;
		padding: 0;
		text-align: center;
	}
/*end of header*/
	#nav_menu {
		display: none;
	}
	.slicknav_menu {
		display: block;
		background-color: #800000 !important;
	}
#booking_info{
	margin-top: 0;
	width: auto;
}
table{
	width: auto;
}
	#breadcrumb{
		display: none;
	}
	
}

/*mobile landscape to tablet portrait*/
@media only screen and (max-width: 479px){
	/*header*/
	header img {
		float: none;
		width: 100%;
		text-align: center;
		
		display: block;
		margin: 0 auto;
		}
		
	header h2{
		margin:2% 0 0 0;
		padding: 0;
		font-size: 120%;
		text-align: center;
	}
	header h3{
		float: none;
		margin:0;
		padding:0;
		font-size: 105%;
		text-align: center;
	}
	header #dater{
		margin: 5% 0 0 0;
		padding: 0;
		text-align: center;
	}
	
	header #timer{
		margin: 0;
		padding: 1%;
		text-align: center;
	}
	
	
	header #search{
		margin: 3% 0 0 0;
		padding: 0;
		text-align: center;
	}
/*end of header*/
	
#booking_info{
	margin-top: 0;
	width: auto;
}
#booking_info h3{
	font-size: 110%;
}
table{
display: none;
}
/*the style for the figure, figcaption*/
figcaption{
	display: none;
}
	#breadcrumb{
		display: none;
	}

}
