/*********************************************/

:root {
	--page-width: 1200px;
	--header-height: 320px;
	/*--bg-color-dark: rgb(191,215,224);*/
	--bg-color-light: rgb(201,220,227);
	--menu-bg-color: rgb(229,238,241);
	--header-text: rgb(80,96,128);
	--link-text: rgb(221,53,53);
}

@font-face {
	font-family: artane;
	src: url('../common/ArtaneElongatedBT-Regular-150.ttf');
}

/*********************************************/

.enable-select {
    user-select: text; /* Chrome and Opera */
	-webkit-user-select: text; /* Safari */
	-khtml-user-select: text; /* Konqueror HTML */
	-moz-user-select: text; /* Firefox */
	-ms-user-select: text; /* Internet Explorer/Edge */
}
.disable-select {
    user-select: none; /* Chrome and Opera */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
}

/*********************************************/

body {
	min-width: 320px;
	margin: 10px;
	padding-top: 0px;
	background-color: var(--bg-color-light);
	font-family: Verdana, helvetica, Arial, Sans-Serif;
	font-size: 16px;
	line-height: 1.875em;
}
h1 {
	margin-top: 0px;
	font-size: 2em;
	line-height: 1.3em;
	font-weight: normal;
	color: var(--header-text);
}
h2 {
	font-size: 1.125em;
	font-weight: bold;
	color: var(--header-text);
}
a {
	color: var(--link-text);
	text-decoration:underline;
}
a:hover {
	text-decoration: none;
}
ul {
	/*list-style-type: none;*/
	padding-left: 20px;
}
button, input, select, textarea {
	font-size: 1rem;
}

/*********************************************/

#header {
	position: relative;
	width: var(--page-width);
	height: var(--header-height);
	margin: 0px auto 0px auto;
	background-image: url('header-back-3.jpg');
	background-repeat: no-repeat;
	background-clip: content-box;
	background-size: var(--page-width) var(--header-height);
	background-position: center;
}
#header-title {
	position: absolute;
	top:30px;
	right: 40px;
	width: 371px;
	height: 76px;
	background: url('david-matthews-4.png') no-repeat;
}

/*********************************************/

#menu {
	position: absolute;
	z-index: 10;
	left: 0px;
	right: 0px;
	bottom: 0px;
	margin: 0px auto 0px auto;
	padding: 0px;
	line-height: 60px;
	font-family: artane;
	font-size: 30px;
	font-weight: bolder;
	color: var(--header-text);
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: stretch;
	cursor: pointer;
}
#menu-compact-header,
#menu-search-dummy,
#menu-search {
	display: none;
}
.menu-item {
	position: relative;
	display: inline-block;
	line-height: 60px;
	margin-left: -25px;
}
.menu-item-sub {
	position: absolute;
	z-index: 20;
	background-color: var(--bg-color-light);
	top: 60px;
	left: 12px;
	font-size: 0.8em;
	line-height: 0.6em;
	white-space: nowrap;
	border-radius: 15px;
	border: 4px white solid;
}
.menu-item .menu-item-sub {
	display: none;
	padding: 0px;
}
#menu-item-first {
	margin-left: 0px;
}
.menu-item div {
	display: inline-block;
}
.menu-item-sub div {
	display: block;
	padding: 15px 25px;
}
.menu-item:hover {
	font-weight: bold;
}
.menu-item .menu-item-mid:hover,
.menu-item-sub div:hover {
	color: var(--link-text);
}
.menu-item-sub div:hover {
	border-radius: 10px;
	background-clip: padding-box;
	background-color: var(--menu-bg-color);
}
.menu-item-left,
.menu-item-right {
	width: 40px;
}
.menu-item-selected .menu-item-left {
	background-image: url('menu-tab-3.png');
	background-clip: content-box;
	background-origin: content-box;
	background-position: 0px 0px;
}
.menu-item-selected .menu-item-mid {
	background-image: url('menu-tab-3.png');
	background-clip: content-box;
	background-origin: content-box;
	background-position: -40px 0px;
	color: var(--link-text);
}
.menu-item-selected .menu-item-right {
	background-image: url('menu-tab-3.png');
	background-clip: content-box;
	background-origin: content-box;
	background-position: -260px 0px;
}

/*********************************************/

#body-columns {
	width: var(--page-width);
	margin: 0px auto 0px auto;
	padding: 0px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
#main-column {
	width: 718px;
	margin: 20px 20px 10px 0px;
	padding: 1.875em;
	background-color: white;
	border: 1px black solid;
}
#side-column {
	position: relative;
	width: 400px;
	margin: 0px;
	padding: 0px;
}
.side-column-item {
	position: relative;
	width: 358px;
	margin: 20px 0px 0px 0px;
	padding: 20px;
	border: 1px black solid;
	background-color: white;
}

/*********************************************/

#on-this-page {
	display: none;
}
#on-this-page-side {
	display: block;
}

/*********************************************/

.site-search {
	position: relative;
	display: inline-block;
	width: 100%;
	vertical-align: middle;
}
.search-field {
	display: block;
	box-sizing: border-box;
	width: 100%;
	margin: 0px;
	padding: 0.5em 1.5em 0.5em 0.7em;
}
.search-submit {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background-color:  white;
}
.search-icon {
	width: 20px;
	height: 20px;
}

/*********************************************/

.icon-menu-compact {
	display: inline-block;
	width: 30px;
	height: 30px;
	background: url("icons.gif") 0px 0px / 120px 30px no-repeat;
	background-clip: content-box;
	vertical-align: middle;
}
.icon-search {
	display: inline-block;
	width: 30px;
	height: 30px;
	background: url("icons.gif") -30px 0px / 120px 30px no-repeat;
	background-clip: content-box;
	vertical-align: middle;
}
.icon-search-small {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url("icons.gif") -20px 0px / 80px 20px no-repeat;
	background-clip: content-box;
	vertical-align: middle;
}

/*********************************************/
