@import url('https://fonts.googleapis.com/css?family=Sarpanch:400,700&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i');

html {
	background-color: #eee;
}
body {
	background-color: #fff;
	font-family: "Arial", sans-serif;
	font-size: medium;
	width: 960px;
	margin: 0 auto;
}

h1 {
	/*font-family: Sarpanch;*/
	font-size: 200%;
	font-weight: bold;
}
h2 { font-size: 150%; }
table {
	width: 100%;
	border: 1px solid #111;
	border-collapse: collapse;
}
th, td {
	border: 1px solid #111;
}
ul {
	list-style-position: inside;
	padding: 0;
	margin: 0;
}

a {
	color: #063254;
}

#header {
	background-color: #000;
	color: #fff;
	min-height: 80px;
	padding: 4px;
	position: relative;
	cursor: pointer;
}
#header a {
	color: #fff !important;
}
#header h1 {
	font-size: 300%;
	margin: 0;
}
#header h1 img {
	vertical-align: bottom;
}

#header .logo {
	max-height: 100px;
	max-width: 952px;
}

#header #sponsor {
	background-color: #fff;
	position: absolute;
	top: 0;
	right: 0;
}

#header.scroll {
	height: 92px;
	animation-name: headershow;
	animation-duration: 150s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
@keyframes headershow {
	0% {
		background-position: 0px;
	}
	100% {
		background-position: -3112px;
	}
}


.sponsors {
	float: right;
	box-sizing: border-box;
}
.sponsor {
	background-color: #fff;
	border: 1px solid #000;
}
.sponsors img {
}

#media {
	background-color: #bfd5e6;
	color: #000;
	font-size: x-large;
	font-weight: 700;
	padding: 4px;
	border: 0px solid #000;
	border-width: 1px 0;
}
#media audio {
	vertical-align: bottom;
}

#nav-l, #nav-r, #content {
	box-sizing: border-box;
}

#nav-l, #nav-r {
	float: left;
	width: 19.1%;
	border: 1px solid #000;
	border-width: 0 1px 0 0;
	padding: 4px;
}
#nav-l {
	float: left;
	border-width: 0 1px 0 0;
}
#nav-r {
	float: right;
	border-width: 0 0 0 1px;
}

#nav-l ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

#nav-l button {
	border: 0;
	background: none;
	display: block;
	/*font-size: medium;
	line-height: 150%;*/
	padding: 0;
	text-decoration: underline;
	color: #063254;
	font-weight: 700;
	cursor: pointer;
}

#nav-l h2.boxed {
	background-color: #063254;
	color: #fff;
	text-align: center;
	padding: 6px;
	border-radius: 2px;
	margin: 0;
}
#nav-l h2.boxed a {
	color: #fff;
}

#container {
	background-color: #eee;
	background-color: #fff;
	color: #111;
	
	display: grid;
	grid-template-rows: [unified] auto;
	grid-template-columns: [unified] auto;
}
#content {
	grid-row: unified;
	grid-column: unified;

	padding: 4px;
}
#content h1 {
	text-transform: capitalize;
	margin: 0 0 1em;
}

.clear {
	clear: both;
	height: 0px;
}

#overlay {
	background-color: #000000c0;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
}
#holder {
	width: 640px;
	height: 336px;
	border: 0;
}

iframe#frame_file {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}


/************
** CLASSES **
************/
.center {
	text-align: center;
}
.right {
	text-align: right;
}

table.pg {
	border: 0;
	border-collapse: separate;
}
table.pg th, table.pg td {
	color: #0d3c60;
	vertical-align: top;
	padding: 8px 15px;
	border: 0;
	border-spacing: 2px;
}
table.pg th {
	background-color: #0d3c60;
	color: #fff;
}
table.pg tr:nth-child(odd) td {
	background-color: #a1a1a1;
}
table.pg tr:nth-child(even) td {
	background-color: #ebebeb;
}
table.pg ul {
	padding: 0;
	padding-left: 16px;
	margin: 0;
}





#menu {
	background-color: brown;
}
#menu a {
	color: #fff;
	font-weight: bold;
}
#menu_headings, #menu_display {
  padding: 8px;
}
#menu_headings {
	font-size: large;
}
#menu_display {
	background-color: #0008;
}
#menu_display ul {
	list-style-type: none;
	column-count: 3;
}

#menu {
  display:  grid;
  grid-template: 1fr / 1fr 3fr; 
}


.hidden {
	display: none;
}

.grid {
	display: grid;
}

.large {
	font-size: large;
}


#content *:first-child { margin-top: 0; }
#content *:last-child { margin-bottom: 0; }



.decorative {
	background-image: url('./images/decoration/luxuryhome.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	color: #000;
	font-family: 'Noto Sans', sans-serif;
	text-align: center;
	height: 420px;
	padding: 12px 0;
	border: 1px solid #000;
	margin: 1em 0;
	
	display: grid;
	grid-template-rows: 1fr [heading] auto 0.65fr [content] auto 1fr;
}
.decorative h2, .decorative p {
	background-color: #fffc;
	padding: 24px 0;
	margin: 0;
}
.decorative h2 {
	grid-row: heading;
}
.decorative p {
	grid-row: content;
	letter-spacing: 0.2em;
	font-size: x-large;
}
