/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('../fonts/open-sans-v17-latin-regular.woff2') format('woff2'),
       url('../fonts/open-sans-v17-latin-regular.woff') format('woff');
}

/* open-sans-italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: local('Open Sans Italic'), local('OpenSans-Italic'),
       url('../fonts/open-sans-v17-latin-italic.woff2') format('woff2'),
       url('../fonts/open-sans-v17-latin-italic.woff') format('woff');
}

/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'),
       url('../fonts/open-sans-v17-latin-700.woff2') format('woff2'),
       url('../fonts/open-sans-v17-latin-700.woff') format('woff');
}

/* open-sans-700italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'),
       url('../fonts/open-sans-v17-latin-700italic.woff2') format('woff2'),
       url('../fonts/open-sans-v17-latin-700italic.woff') format('woff');
}

html {
	width:100%;
	height:100%;
}
body {
	font-family: "open sans";
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	color: #000000;
	background-color: #FFFFFF;
}
* {
    box-sizing: border-box;
}
.Row {
	padding:0;
	margin:0 0 1.0em 0;
}
.Row::after {
    content: "";
    clear: both;
    display: block;
}
[class*="Col-"] {
    float:left;
    padding:2%;
    margin:0;
 }
.SectionOuter {
	position: relative;
	background-color: #5A4D57;
	margin: 0;
	padding: 0;
}
.SectionInner {
	position: relative;
	width:100%;
	max-width:1400px;
	margin:0 auto 0 auto;
	padding:0;
}

/* Header layout */
header {
	display: block;
	flex-shrink: 0;
	padding: 0;
	margin: 0;
	background-color: #5A4D57;
}
#Logo {
	position:absolute;
	top:3%;
	left:3%;
	width:20%;
	max-width:200px;
	height:auto;
}
/* End of banner */


/* Main Navigation Bar */

 /* Full width banner container */

#NavBarOuter {
	padding: 0;
	margin: 0;
	width: 100%;
	position: sticky;
	top:0;
	z-index:3000;
	display: block;
	border-bottom: 1px ridge #781624;
	background-color: #5A4D57;
	flex-shrink: 0;
}

/* Navigation bar area */

#NavBarInner {
	margin:0 auto 0 auto;
	padding:5px;
	width:100%;
	max-width:1400px;
	z-index:1000;
}
nav ul {
	padding:0;
	margin:0;
	list-style: none;
	display: -webkit-flex;
	display: flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
nav ul li {
	margin: 0;
	padding:0;
	cursor: pointer;
	position:relative;
}
nav ul li a {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	display: block;
	color: #FFFFFF;
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	background-image: none;
	background-color: #5A4D57;
	padding: 6px 32px 6px 32px;
	border: none;
	font-size:16px;
}
nav ul li a:hover {
	color: #FCB034;
}
nav .Highlight {
	border-color:#FFFFFF;
}

/* Dropdown box */
nav ul li ul {
	padding: 10px;
	margin:0;
	background-color: #5A4D57;;
	position: absolute;
	top: -1000px;
	left: 0px;
	width:95%;
	max-width: 300px; /*Width of dropdown box */
	border:none; /* Border round dropdown */
	border-top:none;
	opacity: 0;
	-webkit-transiton: opacity 1s;
	-moz-transition: opacity 1s;
	-ms-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
	z-index:1000;
}
nav ul li:hover ul {
	opacity: 1;
	top: 32px;
}
nav ul li ul li { 
	display: block; 
	padding:0;
	margin:2px 0 2px 0;
	width:100%;
	/*border:1px solid #FCACC7; Border round dropdown buttons */
}
nav ul li ul li a {
	font-size:16px;
	font-weight:400;
	padding:2px 0 2px 5px;
	color: #FFFFFF;
	text-align:left;
}
nav ul li ul li a:hover {
	color: #FCB034;
}
#MobileMenuButton {
	display:none;
	padding: 10px 2px 10px 2px;
}

/* End of main navigation bar */

#Wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
#Layout {
	padding: 15px;
	background-color:#FFFFFF;
	flex-shrink: 0;
	flex-grow: 1;
}
#Footer {
	padding: 20px 20px 10px 20px;
}
#Footer p {
	text-align: center;
	color:#FFFFFF
}
#Footer a {
	text-decoration: none;
	color:#FFFFFF;
}
.FooterSectionHeader {
	font-weight:bold;
	font-size:18px;
}
.ClearFloat {
	clear: both;
}
p {
	font-size: 16px;
	margin: 0;
	padding: 0 0 10px 0;
}
.SmallText {
	font-size:0.9em;
}
.Quote {
	font-style:italic;
}

blockquote {
 	font-size:16px;;
 	margin:0;
	padding:0 20px 20px 20px;
}

.Quote::before {
	content: open-quote;
}

.Quote::after {
	content: close-quote;
}
a {
	font-family: "open sans";;
	font-size: 1em;
	font-weight: normal;
	color: #000000;
	text-decoration: underline;
}
a:hover {
	color:#7B1624;
}
#Layout a {
	font-weight:bold;
}
h1, h2, h3, h4 {
	margin: 0;
	font-weight: 700;
}
h1 {
	font-size: 22px;
	padding: 15px 0 15px 0;
}
h2 {
	font-size: 19px;
	padding: 10px 0px 15px;
}
h3 {
	font-size: 18px;
	padding: 20px 0px 10px;
}
h4 {
	font-size: 15px;
	padding: 15px 0 5px 0;
}
.CenterText {
	text-align:center;
}
ul {
	margin: 0px;
	padding: 10px 0px 10px 10px;
	list-style-type: circle;
}
li {
	margin: 0 0 10px 0;
	font-size:16px;
}
#AddressPanel a {
	font-weight:normal !important;
	padding:0;
	margin:0;
}
#KeyPoints ul {
	margin: 0;
	padding: 5px 0 20px 20px;
	list-style-type: none !important;
}
#KeyPoints li {
	margin: 0px 0px 10px;
	font-size: 16px;
	list-style-type: none !important;
}

img {
	border:none;
}
.DisplayPanel {
	border: 1px solid #712C8B;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
	padding: 10px;
	margin:15px 0 15px 0;
	width: 100%;
}
.DisplayPanelHeader {
	font-size:1.2em;
	font-weight: bold;
	padding: 0px;
	margin: 10px 0 15px 0;
	color: #712C8B;
	text-align:center;
}
.DisplayPanel p {
	text-align:center;
}
.Button {
	font-family: "open sans";
	cursor: pointer;
	text-decoration: none;
	border: 1px solid #5A4D57;
	text-align: center;
	display: block;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: normal;
	border-radius: 10px;
	width:220px;
	padding: 4px 8px 4px 8px;
	background-color: #712C8B;
}
.Button:hover {
	color: #FCB034;
}
.CenterButton {
	font-family: "open sans";
	cursor: pointer;
	text-decoration: none;
	border: 1px solid #5A4D57;
	text-align: center;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: normal;
	border-radius: 5px;
	padding: 2px;
	background-color: #712C8B;
	margin:10px auto 10px auto;
	display:block;
}
.CenterButton:hover {
	color: #FCB034;
}
.DateButton {
	font-family: "open sans";
	cursor: pointer;
	text-decoration: none;
	border: 1px solid #5A4D57;
	text-align: center;
	color: #FFFFFF;
	font-size: 13px;
	font-weight: normal;
	border-radius: 5px;
	padding: 2px;
	background-color: #712C8B;
	margin:10px 0 0 10px;
	width:70px;
}
.DateButton:hover {
	color: #FCB034;
}
.FormTextBox {
	font-family: "open sans";
	font-size: 0.9em;
	color: #000000;
	width:90%;
}
.FormDropdown {
	font-family: "open sans";
	font-size: 0.9em;
	color: #000000;
}
.DateField {
	font-family: "open sans";
	font-size: 0.9em;
	color: #000000;
	width:30px;
}
.DateDivider {
	font-weight:bold;
	font-size:1.5em;
	margin:0 5px 0 5px;
}
/* Contact Forms */
.FormPanel {
	border:1px solid #6F2A8E;
	padding:15px;
	background-color:#F4F4F4;
}
#ContactForm p {
	margin-bottom:5px;
	color:#FFFFFF;
}
#FormMessage {
	height:50px;
}
.MessageTextError {
	color:#7E0B0D;
	text-align:center;
	padding:5px 0 10px 0;
	font-weight:bold;
}
.MessageTextOK {
	color:#2B781F;
	text-align:center;
	padding:5px 0 10px 0;
	font-weight:bold;
}
iframe {
	height:0;
	width:0;
	display:none;
}
.Picture {
	width:100%;
	height:auto;
	border:none;
}
hr {
	margin: 10px 0 10px 0;
	padding:1px;
	color: #6F2A8E;
	background-color:#6F2A8E;
}
#Credit p{
	text-align: center;
	margin: 20px 0px 0px 0px;
}
.FloatLeft {
	float:left;
}
.FloatRight {
	float:right;
}
.ContactIcon {
	vertical-align:middle;
	width:50px;
	height:auto;
	margin:0 10px 0 0;
}
#RoomSummary {
	display: -webkit-flex;
	display: flex;
	flex-wrap:wrap;
	justify-content:space-around;
}
#RoomSummary table {
	border:1px solid #5A4D57;
	width:90%;
	max-width:300px;
	margin:15px auto 10px auto;
}
#RoomSummary td {
	border:none;
	padding:2px 10px 2px 10px;
	font-size: 15px;
}
.RoomDetails {
	border: 1px solid #712C8B;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
	padding: 10px;
	margin:15px 0 15px 0;
	width: 100%;
}
.RoomDetails table {
	border-collapse: collapse;
	width:100%;
	max-width:600px;
	margin:0 0 20px 0;
}
.RoomDetails th {
	border:none;
	padding:4px 5px 3px 5px;
	font-size: 15px;
	color:#FFFFFF;
	font-weight:700;
	text-align:center;
	background-color:#712C8B;
}
.RoomDetails td {
	border:1px solid #5A4D57;
	padding:2px 5px 2px 5px;
	font-size: 15px;
	text-align:center;
}
.RoomDetails h2 {
	font-size:20px;
	color:#712C8B;
}
.RoomDetails h4 {
	color:#712C8B;
}
.RoomDetailsColumns {
    float:right;
   	padding:2%;
   	margin:0;
}


/* Message Popup */

#TableLayoutPopup, #RefreshmentsPopup {
	opacity:0;
	position: fixed;
	top:-1000px;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: scale(1) translate(-50%, -50%);
	overflow: hidden;
	-webkit-transition: opacity 2s;
	transition: opacity 2s;
	z-index:6000;
	padding:0;
	cursor: default;
	width:100%;
	max-width:600px;
	border:4px solid #5A4D57;
	background-color:#FFFFFF;
}
#RefreshmentsPopup {
	padding:10px !important;
}
#RefreshmentsPopup li {
	margin-bottom:2px;
}
#RefreshmentsPopup ul {
	padding-top:0;
}
#MessagePopup {
	opacity:0;
	position: fixed;
	top:-1000px;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: scale(1) translate(-50%, -50%);
	overflow: hidden;
	-webkit-transition: opacity 2s;
	transition: opacity 2s;
	z-index:6000;
	padding:20px;
	cursor: default;
	width:90%;
	max-width:400px;
	background-color:#384F5F;
	border:6px solid #C0C0C0;
	
}
#MessagePopup p {
	text-align:center;
	margin-top:15px;
	color:#FFFFFF;
}
.CloseModal {
	position:absolute;
	top:5px;
	right:5px;
	font-size:25px;
	font-weight:700;
	color:#000000;
	cursor:pointer;
}

/* Mobile */

@media only screen and (max-width: 850px){

	.Col-m-1 {width: 8.33%;}
	.Col-m-2 {width: 16.66%;}
	.Col-m-3 {width: 25%;}
	.Col-m-4 {width: 33.33%;}
	.Col-m-5 {width: 41.66%;}
	.Col-m-6 {width: 50%;}
	.Col-m-7 {width: 58.33%;}
	.Col-m-8 {width: 66.66%;}
	.Col-m-9 {width: 75%;}
	.Col-m-10 {width: 83.33%;}
	.Col-m-11 {width: 91.66%;}
	.Col-m-12 {width: 100%;}

	.M-none {
		display:none;
	}

	.RoomDetailsColumns {
		width:100%;
	}

	.MeetingDateFormBox {
		width:100%;
	}

	/* Menu bar */

	#NavBarOuter {
		height:38px;
	}
	#NavBarInner {
		position:absolute;
		margin:0;
		padding:0;
		height:38px;
		overflow:hidden;
		-webkit-transiton: height 1s;
		-moz-transition: height 1s;
		-ms-transition: height 1s;
		-o-transition: height 1s;
		transition: height 1s;
		background-color:#5A4D57;
	}
	nav ul {
		display:block;
	}
	#NavBarInner:hover {
		height: 350px;
		overflow-y:auto;
	}
	nav ul li a {
		margin:0 0 5px 5px;
		padding:5px;
		width:95%;
		font-size: 18px;
		border:none;
		text-align:left;
	}
	nav ul li ul {
		margin-left:10px;
		border:1px solid #FFFFFF; /* Border round dropdown */
		/* display:none;  Hide dropdowns */
	}
	nav ul li ul li a {
		font-size:18px;
	}
	nav ul li:hover ul {
		top: 26px;
	}
	nav .Highlight {
		border:none;
	}
	/*
	#WelcomeButton {
		display:none;
	}
	*/
	#MobileMenuButton {
		display:block;
	}
	.MenuIcon {
		float:left;
		margin:0 20px 0 0;
		padding:0;
	}
	.MenuIconBar {
 		width: 35px;
 		height: 3px;
 		background-color: #FFFFFF;
 		margin:0 0 4px 0;
		padding:0;
	}
	.NavMobileOnly {
		display:block;
	}

	/* End of menu bar */

	.FormTextBox {
		width:95%;
	}
	#FooterNav li {
		margin:0 0 5px 0;
	}
	.CheckoutButton {
		display:block;
	}
	.ContactIcon {
		width:30px;
	}
	#RoomSummary .DisplayPanel {
		width:90%;
		margin:2%;
	}
	.PhoneNoLink {
		display:none;
	}
	.PhoneLink {
		display:inline;
	}
}


/* Tablet */
@media only screen and (min-width: 851px) and (max-width: 1050px){

	.Col-t-1 {width: 8.33%;}
	.Col-t-2 {width: 16.66%;}
	.Col-t-3 {width: 25%;}
	.Col-t-4 {width: 33.33%;}
	.Col-t-5 {width: 41.66%;}
	.Col-t-6 {width: 50%;}
	.Col-t-7 {width: 58.33%;}
	.Col-t-8 {width: 66.66%;}
	.Col-t-9 {width: 75%;}
	.Col-t-10 {width: 83.33%;}
	.Col-t-11 {width: 91.66%;}
	.Col-t-12 {width: 100%;}

	.T-none {
		display:none;
	}

	.RoomDetailsColumns {
		width:50%;
	}

	.MeetingDateFormBox {
		width:40%;
		float:left;
		margin-right:5%;
	}

	/* Menu Bar */

	nav ul li a {
		padding: 6px 32px 6px 32px;
	}
	/*
	#WelcomeButton {
		display:none;
	}
	*/
	.NavMobileOnly {
		display:none;
	}
	#FooterNav li {
		float:left;
		margin:0 10px 0 10px;
	}
	#RoomSummary .DisplayPanel {
		width:29%;
		margin:2%;
	}
	.PhoneNoLink {
		display:inline;
	}
	.PhoneLink {
		display:none;
	}
}

/* Desktop */
@media only screen and (min-width: 1051px){

	.Col-d-1 {width: 8.33%;}
	.Col-d-2 {width: 16.66%;}
	.Col-d-3 {width: 25%;}
	.Col-d-4 {width: 33.33%;}
	.Col-d-5 {width: 41.66%;}
	.Col-d-6 {width: 50%;}
	.Col-d-7 {width: 58.33%;}
	.Col-d-8 {width: 66.66%;}
	.Col-d-9 {width: 75%;}
	.Col-d-10 {width: 83.33%;}
	.Col-d-11 {width: 91.66%;}
	.Col-d-12 {width: 100%;}
   
	.D-none {
		display:none;
	}

	.RoomDetailsColumns {
		width:50%;
	}

	.MeetingDateFormBox {
		width:40%;
		float:left;
		margin-right:5%;
	}

	/* Menu Bar */

	.NavMobileOnly {
		display:none;
	}
	#FooterNav li {
		float:left;
		margin:0 10px 0 10px;
	}
	#RoomSummary .DisplayPanel {
		width:29%;
		margin:2%;
	}
	.PhoneNoLink {
		display:inline;
	}
	.PhoneLink {
		display:none;
	}
}

/* Overrides for small screens */

@media only screen and (max-width: 400px){
	.RoomDetails {
		border-left: none;
		border-right: none;
		padding-left: 0;
		padding-right: 0;
		-moz-border-radius:0;
		-webkit-border-radius:0;
		border-radius:0;
	}
	.RoomDetails td {
		padding:2px 2px 2px 2px;
	}
}
