/* **** Discovery Award CSS **** */

@charset "UTF-8";
@import "defines.css";
@import "menus4.css";

*
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body
{
	padding: 10px;
	color: black;
	text-align: left;
	font-family: /*'Century Gothic',*/ Arial, sans-serif;
	font-size: var(--font-size);
    height: 100%;
    margin: 0;
}

input, textarea, td
{
	font-family: Arial, sans-serif;
	font-size: var(--font-size);
}

input[type=range]:focus
{
	outline: none;
}

/* **** Main Layout **** */

#main
{
	width: clamp(800px,80%,1200px);
	margin: 0 auto 16px auto;
	background-color: white;
}

/* **** Site Messages **** */

#siteupdate
{
	color: white;
	border: 2px solid red;
	padding: 3px 8px;
	background-color: red;
	font-size: 15px;
	margin-bottom: 5px;
}

#siteupdatebold
{
	font-weight: bold;
}

#sitemsg
{
	color: white;
	border: 2px solid green;
	padding: 3px 8px;
	background-color: #060;
	font-size: 15px;
	margin-bottom: 5px;
}

#oldbrowser
{
	padding: 10px;
	border: 2px solid red;
	text-align: left;
	background: url("/dlib/images/browsers/warning.png") no-repeat yellow 5px 5px;
	margin: 5px 0;
}

#oldbrowser .browser
{
	float: right;
	width: 50px;
	text-align: right;
	padding-right: 10px;
}

#oldbrowser .message
{
	font-size: 16px;
	margin: 3px 0 0 100px;
	color: #400;
}

#oldbrowser a, #oldbrowser a img
{
	border: none;
}

/* **** Logo Area **** */

#logo
{
	height: 250px;
	background-image: url("/images/site/logo.jpg");
	background-size: cover;
	background-position: center;
	display: grid;
	grid-template-columns: 250px auto;
	grid-template-rows: auto 75px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	cursor: pointer;
}

#dalogo
{
	grid-area: 1 / 1 / 3 / 2;
	background-image: url("/images/site/dalogo.png");
	height: 200px;
	width: 200px;
	height: clamp(190px,15vw,220px);
	width: clamp(190px,15vw,220px);
	background-size: contain;
	justify-self: center;
	align-self: center;
}

#daname
{
	grid-area: 1 / 2 / 2 / 3;
	font-size: 6vw;
	font-size: clamp(20px,6.2vw,120px);
	color: white;
	font-weight: bold;
	letter-spacing: 0.02em;
	justify-self: center;
	align-self: center;
	text-shadow: 3px 3px 3px black;
}

#datag
{
	grid-area: 2 / 2 / 3 / 3;
	font-size: 2vw;
	font-size: clamp(16px,2vw,60px);
	color: white;
	justify-self: center;
	align-self: center;
	font-weight: bold;
	letter-spacing: 0.05em;
	text-shadow: 3px 3px 3px black;
}

/* **** Menu **** */
/*
#menuwrapper
{
}

#mainmenu
{
	margin-top: 4px;
	background-color: #f9e4b4;
	display: grid;
	grid-template-columns: 34px auto 34px;
	grid-template-rows: auto;
	grid-template-areas: "mhome stdmenus msearch";
	align-items: center;
	height: auto;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

#menu
{
	display: flex;
	margin-top: 4px;
	width: 100%;
	justify-content: center;
	align-items: center;
	height: auto;
	background-color: #f9e4b4;
	text-align: center;
	padding-top: 2px;
	font-size: 11px;
	font-weight: bold;
	_color: #ffe;
	transition: top 0.5s;
	z-index: 1100;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.topmenugroup
{
	display: inline-flex;
	align-items: center;
}

#homegroup
{
	grid-area: mhome;
	display: inline-block;
}

#homegroup
{
	padding: 0 6px 0 8px !important;
}

a #iconhome
{
	opacity: 0.8;
	width: 20px;
	height: 20px;
}

a #iconhome:hover
{
	opacity: 1;
}

#stdmenu
{
	grid-area: stdmenus;
	padding: 6px 4px;
	font-size: 18px;
	font-weight: bold;
	display: inline-flex;
	flex-wrap: nowrap;
	justify-content: center;
}

#stdmenu a, #stdmenu a:visited
{
	padding: 1px 6px 2px 4px;
	color: black;
	text-decoration: none;
	border-radius: 6px;
	margin: 2px 14px;
	white-space: nowrap;
}

#stdmenu a:hover
{
	color: white;
	background-color: #492902;
}

.submenublk
{
	margin: 2px 0 0 0;
	background-color: white;
	border: 1px solid #999;
	padding: 6px;
	position: absolute;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
	text-align: left;
	z-index: 20;
	border-radius: 10px;
}

.submenu, .submenuc
{
	font-size: 13px;
	font-weight: normal;
	color: black;
	background-color: white;
	cursor: pointer;
	padding: 4px 8px !important;
	border-radius: 6px;
	display: flex;
	justify-content: space-between;
}

.subname
{
	padding: 0 !important;
	margin: 0 !important;
	white-space: nowrap;
}

.submenu a, .submenu a:visited, .submenuc a, .submenuc a:visited
{
	padding: 0 !important;
	color: #381e0b;
	font-size: 16px;
	font-weight: normal;
	text-decoration: none;
	white-space: nowrap;
	border-radius: 6px;
}

.submenu:hover, .submenuc:hover, .submenu:hover a, .submenuc:hover a
{
	color: white !important;
	background-color: #072a69 !important;
}

.subind
{
	display: inline-block;
	font-size: 12px !important;
	margin-left: 20px !important;
}

#mobmenu, .submenuback
{
	display: none !important;
}
*/

/* **** Search **** */

#searchicon
{
	opacity: 0.8;
	color: black;
	font-size: 30px;
	font-weight: bold;
	margin: 0 8px 0 30px;
	cursor: pointer;
	text-decoration: none;
	opacity: 0.8;
}

#searchicon:hover
{
	opacity: 1;
	text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}

#searchfield
{
	display: none;
	justify-content: center;
	align-items: center;
	padding: 8px;
	background-color: #05346a;
	border-radius: 5px;
	color: white;
	font-size: 18px;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
	z-index: 100;
}

#searchform
{
}

#searchform input
{
	font-size: 16px;
	margin-left: 10px;
	padding: 3px;
	border-radius: 5px;
	border: none;
}

#searchsubmit
{
	width: 1px;
	height: 1px;
}

img#searchclose
{
	width: 14px !important;
	height: 14px !important;
	cursor: pointer;
	border: 2px solid #800;
	border-radius: 4px;
}

img#searchclose:hover
{
	cursor: pointer;
	filter: brightness(2);
}

.searchres
{
	background-color: var(--primary-bg);
	padding: 3px 8px;
	margin: 5px 0;
	border-radius: 5px;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.searchres a
{
	color: var(--primary-highlight) !important;
}

/* **** Content area **** */

#wrapper
{
	background: url("/images/site/wrapper_bg.jpg");
}

#content
{
	color: #333;
	background-color: rgba(255, 255, 255, 0.3);
	padding: 10px 50px 20px 50px;
	min-height: 400px;
	text-align: left;
	font-size: var(--font-size);
	z-index: 12;
}

/* **** 2-Column Content **** */

#content.twocollayout
{
	display: flex;
	justify-content: space-between;
}

#leftcol
{
	display: inline-block;
}

#rightcol
{
	margin-left: 20px;
	display: inline-block;
}

/* **** 3-Block Layout **** */

#content.threeblocklayout h1
{
	grid-area: b3titleh1
}

#content.threeblocklayout .leftblock
{
	grid-area: b3left;
}

#content.threeblocklayout .rightblock
{
	grid-area: b3right;
}

#content.threeblocklayout .bottomblock
{
	grid-area: b3bottom;
	display: flex;
	justify-content: space-between;
}

#content.threeblocklayout
{
	display: grid;
	grid-gap: 10px;
	grid-template-columns: calc(100% - 280px) 300px;
	grid-template-rows: auto auto auto;
	grid-template-areas: "b3titleh1 b3titleh1"
		"b3left b3right"
		"b3bottom b3bottom";
}

.socialfeed:first-child
{
	margin-right: 25px;
}

.socialfeed
{
	display: inline-block;
	overflow: auto;
}

/* **** 1+2 Block Layout **** */

#content.onetwoblocklayout
{
	display: grid;
	grid-gap: 10px 30px;
	grid-template-columns: 50% 50%;
	grid-template-rows: auto auto;
}

#content.onetwoblocklayout .topblock
{
	grid-area: 1 / 1 / 2 / 3;
	display: block;
	justify-content: space-between;
}

#content.onetwoblocklayout .leftblock
{
	grid-area: 2 / 1 / 3 / 2;

}

#content.onetwoblocklayout .rightblock
{
	grid-area: 2 / 2 / 3 / 3;
}

/* **** General content **** */

#content p
{
	font-size: var(--font-size);
	margin: 5px 0 11px 0;
	line-height: 1.52em;
	text-align: justify;
}

#content ul, #content ol
{
	margin-left: 20px;
	margin-right: 20px;
}

#content li
{
	line-height: 1.5em;
	font-size: var(--font-size);
}

#content ul
{
	margin-bottom: 10px;
}

#content h1
{
	color: #063d7b;
	font-size: 32px;
	letter-spacing: 0.05em;
	margin: 4px 0 15px 0;
	padding: 4px 0 6px 10px;
	text-align: center;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	background-color: #fffef9;
	background: linear-gradient(to right, #ffffff 0%,#fffcef 25%,#fffcef 75%,#ffffff 100%);
}

h2.h2subtitle
{
	color: #063d7b;
	font-size: 20px;
	font-weight: bold;
	margin: 20px 0 10px 0;
}

h3.h3smalltitle
{
	color: #063d7b;
	font-size: 18px;
	font-weight: bold;
	margin: 18px 0 8px 0;
}

#content h3.apih3
{
	margin: 4px 0 6px 0;
}

h3.h3smalltitle a
{
	color: #973c0b !important;
}

h3.h3smalltitle a:hover
{
	text-decoration: none !important;
}

#content a, #content a:visited
{
	color: blue;
	font-weight: bold;
	text-decoration: none;
}

#content a:hover
{
	color: red;
	text-decoration: underline;
}

#content a.letterahref, #content a.letterahref:visited
{
	color: #0a8206;
}

#content a.letterahref:hover
{
	color: #1e9264;
}

summary, details
{
	outline: 0 !important;
}

summary
{
	margin-bottom: 10px;
	cursor: pointer;
}

.optbr
{
	display: none;
}

/* **** News Pages **** */

.newscontainer
{
	margin: 5px 0 10px 0;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.newstitle
{
	background-color: #f9e4b4;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	padding: 3px 8px;
	color: #492902 !important;
}

.newstitle a, .newstitle a:hover
{
	color: #492902 !important;
	text-decoration: none;
}

.news
{
	margin: 8px;
}

.newstext
{
}

.newspub
{
	margin-top: 5px;
	text-align: right;
	color: #999;
	font-style: italic;
}

/* **** Other general settings **** */

li
{
	margin: 4px 0 4px 30px;
}

.dslist li
{
	margin: 10px 0 10px 30px;
}

.highlightbox
{
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
	padding: 10px;
	font-size: var(--font-size);
	text-align: center;
	color: white;
	background-color: #333333;
	font-weight: bold;
}

.highlightbox a
{
	color: yellow !important;
}

/* **** Footer area **** */

#footer
{
	background-color: #05346a;
	width: 100%;
	display: flex;
	justify-content: space-around;
	flex-wrap: nowrap;
	margin: 1px 0 10px 0 !important;
	font-size: var(--font-size);
	color: white;
	padding: 10px 20px 10px 20px;
	border-radius: 10px;
}

.footer a, .footer a:visited
{
	color: yellow;
	text-decoration: none;
}

.footer a:hover
{
	color: red;
	text-decoration: none;
}

.footer ul li
{
	list-style: none;
	margin-left: 0;
	padding-left: 8px;
}

/* **** Social **** */

.soclink
{
	width: 40px;
	height: 40px;
	text-align: center;
	margin: 10px 0 20px 0;
	background-color: #0584bb;
	display: block;
}

.soclink img
{
	border: 0;
}

.soclink.socfb
{
	background-color: #3b5998;
}

.soclink.soctw
{
	background-color: #1da1f2;
}

.soclink.socfb:hover
{
	background-color: #4b69a8;
}

.soclink.soctw:hover
{
	background-color: #2db1ff;
}

/* **** Page Images **** */

.img
{
	padding: 5px;
	text-align: center;
}

.imgl
{
	float: left;
	display: inline-block;
	padding: 0 30px 20px 0;
}

.imgr
{
	float: right;
	display: inline-block;
	padding: 0 0 20px 30px;
}

.imgr.imgt, .imgl.imgt
{
	padding-bottom: 5px !important;
}

.imgb, .imgbt
{
	padding: 10px;
	background-color: white;
	margin: 10px;
	border: 1px solid #ccc;
	border-radius: 7px;
	box-shadow: 2px 2px 4px #999;
}

.imglb, .imglbt
{
	float: left;
	padding: 10px;
	margin: 0 10px 10px 0;
	background-color: white;
	border: 1px solid #ccc;
	border-radius: 7px;
	box-shadow: 2px 2px 4px #999;
	font-size: 12px;
	text-align: center;
}

.imglt
{
	float: left;
	padding: 10px;
	margin: 0 10px 10px 0;
	font-size: 12px;
	text-align: center;
}

.imgrb, .imgrbt
{
	float: right;
	padding: 10px;
	margin: 0 5px 10px 10px;
	background-color: white;
	border: 1px solid #ccc;
	border-radius: 7px;
	box-shadow: 2px 2px 4px #999;
	font-size: 12px;
	text-align: center;
}

.imgrt
{
	float: right;
	padding: 10px;
	margin: 0 5px 10px 10px;
	background-color: white;
	font-size: 12px;
	text-align: center;
}

.imgcb, .imgcbt
{
	padding: 10px;
	margin: 0 auto;
	background-color: white;
	border: 1px solid #ccc;
	border-radius: 7px;
	box-shadow: 2px 2px 4px #999;
	font-size: 12px;
	text-align: center;
}

.imgct
{
	padding: 10px;
	margin: 0 auto;
	background-color: white;
	font-size: 12px;
	text-align: center;
}

.imglbt, .imgrbt, .imgcbt, .imgbt
{
	padding: 10px 10px 2px 10px;
}

.img p
{
	margin: 2px 0 !important;
}

.imgclr
{
	clear: both;
}

/* **** Media Images **** */

.medialeft
{
	float: left;
	padding: 0 10px 10px 0;
	text-align: center;
}

.mediaright
{
	float: right;
	padding: 0 0 10px 10px;
	text-align: center;
}

.media
{
	padding: 5px;
	text-align: center;
}

/* **** Tables **** */

table.awardlevel
{
	background-color: #f9e4b4;
	border-radius: 5px;
	padding: 3px;
	border-spacing: 5px;
}

table.awardlevel th
{
	font-size: var(--font-size-table);
	background-color: #05346a;
	color: white;
	padding: 3px 8px;
	border-radius: 3px;
}

table.awardlevel td
{
	padding: 5px;
	font-size: var(--font-size-table);
	color: black;
	background-color: white;
	border-radius: 3px;
}

table.awardlevel td input
{
	padding: 3px;
	font-size: var(--font-size-table);
}

.radiotext
{
	display: inline-block !important;
	padding: 2px 0 5px 8px;
}

table.crstbl
{
	background-color: #fef7bc;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
	border-radius: 2px;
	padding: 5px;
}

table.crstbl th
{
	background-color: #492902;
	color: white;
	padding: 5px;
	font-size: 14px;
}

table.crstbl td
{
	padding: 5px;
	font-size: 14px;
	background-color: white;
}

table.crstbl td input
{
	padding: 3px;
	font-size: 15px;
}

table.subscription
{
	background-color: #eee;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
	border-radius: 2px;
}

table.subscription td
{
	padding: 5px;
	font-size: 14px;
}

table.subscription td input
{
	padding: 3px;
	font-size: 15px;
}

table.mapinfo
{
	width: 100%;
	background-color: #fef7bc;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
	border-radius: 2px;
	padding: 5px;
}

table.mapinfo th
{
	background-color: #492902;
	color: white;
	padding: 5px;
	font-size: 14px;
}

table.mapinfo td
{
	padding: 5px;
	font-size: 14px;
	background-color: white;
}

/* **** Cookie Push-down bar **** */

#cklbox
{
	font-family: "Century Gothic", Verdana, Arial, sans-serif;
	background-color: #d00;
	background-color: #333;
	box-shadow: 0 2px 4px #555;
	display: none;
	position: fixed;
	text-align: left;
	font-size: 16px;
	z-index: 999;
	width: calc(100% - 2px);
	left: 0;
	top: 0;
	color: white;
	padding: 5px 20px;
	font-weight: normal;
}

#cklbox a, #cklbox a:visited
{
	color: yellow;
	font-size: 16px;
	text-decoration: none;
	font-weight: bold;
}

#cklbox a:hover
{
	text-decoration: underline;
}

#cklhide
{
	display: inline-flex;
	min-width: 80px !important;
	justify-content: center;
	align-items: center;
	margin: 3px 25px 0 60px;
	font-weight: bold;
	padding: 4px;
	border-radius: 2px;
	font-size: 20px;
	background-color: #f0d800;
	cursor: pointer;
	color: black;
}

#cklhide:hover
{
	background-color: yellow;
}

table.ckl th
{
	background-color: #503003;
	color: white;
	border-radius: 2px;
	border-right: 1px solid #032;
	border-bottom: 1px solid #032;
	padding: 2px 5px;
}

table.ckl td
{
	background-color: #fcfffc;
	border-radius: 2px;
	border-right: 1px solid #003125;
	border-bottom: 1px solid #003125;
	padding: 2px 5px;
	color: black;
}

table.ckl tr:hover td
{
	background-color: #f0fff0;
}

/* **** Popup Tooltip **** */

#popuptooltip
{
	text-align: left;
	border: 1px solid black;
	border-radius: 7px;
	font-size: 12px;
	padding: 10px;
	line-height: 1.4em;
	background-color: #ffe;
	color: black;
	z-index: 5000;
	box-shadow: 3px 3px 3px #222;
}

/* **** HotSpots Picture popup **** */

#hotspotbox
{
	position: absolute;
	text-align: left;
	border: 1px solid black;
	border-radius: 7px;
	font-size: 12px;
	padding: 8px;
	background-color: #ffe;
	color: black;
	z-index: 1100;
	box-shadow: 3px 3px 3px #222;
	max-width: 500px;
}

/* **** User Log On/Registration **** */

#logontbl, #logontblpaston
{
	background-color: #efd9aa;
	padding: 3px;
	border-radius: 1px;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
	border-spacing: 4px;
}

#logontbl td
{
	padding: 3px 7px;
	font-size: 16px;
}

#logontbl td input
{
	padding: 2px 5px;
	font-size: 16px;
}

#logontblpaston td input
{
	padding: 2px 5px;
	font-size: 16px;
	width: 190px !important;
}

/* **** Gallery Scroller **** */

#galscrouter
{
	overflow: hidden;
}

#galscrinner
{
	white-space: nowrap;
	position: relative;
	left: 0;
	transition-duration: 1.3s;
	transition-property: left;
	transition-timing-function: ease-in-out;
}

.gscrpic
{
	border: 1px solid black;
	margin: 1px;
}

/* **** Feedback **** */

.feedbacktbl
{
	background-color: #fffcef;
	padding: 5px;
	box-shadow: 2px 2px 4px #333;
	border-radius: 8px;
}

.feedbacktbl input
{
	font-size: 15px;
	padding: 3px;
}

.feedbacktbl td
{
	line-height: 1.6em;
	font-size: 15px;
}

.feedbacktbl td .radiotext
{
	padding: 2px 0 2px 5px;
	cursor: pointer;
}

.feedbackseccodetext
{
	padding: 6px;
}

.feedbackseccode
{
	float: left;
	margin: 0 10px 10px 0;
}

.feedbackemonscreen
{
	background-color: #8df;
	padding: 0 10px 10px 10px;
	color: #006;
	font-size: 11px;
	border: 1px solid #006;
	border-radius: 5px;
}

#fbspdat
{
	color: #ddd;
}

/* **** Clearfix **** */

.clearfix:after
{
	content: "";
	display: table;
	clear: both;
}

/* **** Misc **** */

.rangeshow
{
	display: inline-block;
	width: 30px;
	margin-left: 5px;
	text-align: right;
}

.spicctrl
{
	display: flex;
	align-items: center;
}

.errormessage
{
	border-radius: 4px;
	padding: 8px;
	background-color: #c00;
	color: white;
	font-weight: bold;
	margin: 8px 20px 8px 0;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.rangewrapper
{
	display: inline-flex;
}

.emaildisplay
{
	background-color: white;
	padding: 20px;
	border: 1px solid black;
}

/* **** Picture documents (Style 2) **** */

#docpictureblock
{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap !important;
	width: 100%;
	box-sizing: border-box;
}

.docpicbox
{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 300px;
	height: 420px;
	padding: 0;
	margin: 0 10px 10px 0;
	border: 1px solid transparent;
	cursor: pointer;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
	opacity: 0.75;
}

.docpicbox .doctitle
{
	display: inline-block;
	font-size: 15px;
	font-style: italic;
	color: black;
	align-self: flex-start;
	text-align: center;
	margin: 5px auto;
}

.docpicbox:hover
{
	opacity: 1;
	border: 1px solid #333;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

.docpicbox .docpicsize
{
	align-self: flex-end;
	background-color: black;
	font-size: 12px;
	color: white;
	padding: 3px 5px;
	border-top-left-radius: 3px;
	border-bottom-right-radius: 2px;
}

/* **** Picture documents (Style 4) **** */

.doctextpicbox
{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	background-color: rgba(0, 0, 0, 0.05);
	padding: 10px;
}

.doctext
{
	margin-right: 20px;
	display: inline-block;
}

.doctexttitle
{
	font-size: 17px;
	font-weight: bold;
	color: black;
}

.doctextpic
{
	display: inline-flex;
	flex-shrink: 0;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
	opacity: 0.75;
}

.doctextpic:hover
{
	cursor: pointer;
	opacity: 1;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

.doctextpic .docpicsize
{
	align-self: flex-end;
	background-color: black;
	font-size: 12px;
	color: white;
	padding: 3px 5px;
	border-top-left-radius: 3px;
	border-bottom-right-radius: 2px;
}

/* **** Columns **** */

#content .pagecolumns ol
{
	margin: 0 !important;
}

/* **** Documents **** */

.docbox
{
	margin: 0 0 20px 0;
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.2);
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
		-1px -1px 5px rgba(0, 0, 0, 0.1);
}

.docbox:hover
{
	background-color: rgba(255, 255, 255, 0.4);
}

.doctitle
{
	display: flex;
	align-items: center;
}

.docicon
{
	display: inline-block;
	margin-right: 10px;
}

.docsize
{
	display: inline-block;
	margin-right: 10px;
	width: 40px;
	text-align: center;
}

/* **** UDForm **** */

.udline
{
	background-color: #f6f3e9;
	padding: 10px 20px;
	margin: 5px 0;
}

.udfcheckboxes
{
	margin: 10px 0 0 40px;
	line-height: 1.6em;
}

.udfsliderheads
{
	display: inline-flex;
	justify-content: space-between;
}

.udfsliderhead
{
}

.udfsliderwrapper
{
	margin: 15px auto 0 auto;
	text-align: center;
}

.udfslider
{
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
}

.udfsliderpre
{
	width: 80px;
	text-align: right;
	margin-right: 10px;
}

.udfsliderpost
{
	width: 80px;
	text-align: left;
	margin-left: 10px;
}

.udfsubmitline
{
	text-align: center;
	margin-top: 10px;
}

.piclose
{
	float: right;
	margin: 2px 2px 0 0;
	width: 14px;
	height: 14px;
	background: url("/dlib/images/popcalclose.png") no-repeat;
}

.piclose:hover
{
	background: url("/dlib/images/popcalclosehover.png") no-repeat;
	cursor: pointer;
}

.pilink
{
	display: inline-flex;
	width: 24px;
	height: 20px;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: bold;
	padding: 1px 6px 2px 3px;
	border-radius: 50%;
	margin: 0 10px;
	font-style: italic;
	filter: brightness(70%);
}

.pilink:hover
{
	filter: brightness(100%);
}

.pilink a
{
	border-radius: 50%;
	text-decoration: none !important;
}

.pilinki, .pilinki a
{
	background-color: blue;
	color: white !important;
}

.pilinkw, .pilinkw a
{
	background-color: #ddd;
	color: black !important;
}

.pilinkp, .pilinkp a
{
	background-color: red;
	color: yellow !important;
}

.pilinko, .pilinko a
{
	background-color: #006;
	color: white !important;
}

.pilinkd, .pilinkd a
{
	background-color: #777;
	color: white !important;
}

.pilinkb, .pilinkb a
{
	background-color: #040;
	color: white !important;
}

/* **** Picture DB DBPIC command **** */

.dbpicblock
{
	display: flex;
	flex-wrap: wrap;
}

.dbpicthumb
{
	margin: 10px;
	display: inline-block;
	background-size: contain;
}


/* **** ScrollPic **** */

.scptext
{
	padding: 10px;
	box-sizing: border-box;
	overflow: hidden;
}

.scpbox
{
	padding: 0 !important;
}

.scpdbpic
{
	cursor: pointer;
}

.scpmarker
{
	border-radius: 50%;
	border: 3px dashed yellow;
	animation-iteration-count: infinite;
	animation-duration: 16s;
	animation-name: scprotate;
	animation-timing-function: linear;
	opacity: 0.75;
}

@keyframes scprotate
{
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
}

/* **** Media Settings **** */

@media only screen and (max-width: 950px)
{
	body
	{
		padding: 0;
	}

	#main
	{
		margin: 0 !important;
		width: 100%;
	}

	#mainmenu
	{
		display: none;
	}

	#mobmenu
	{
		display: grid !important;
		grid-template-columns: 35% 20% 45%;
		grid-template-rows: auto;
		box-sizing: border-box;
	}

	.mobmenu
	{
		display: inline-flex !important;
		box-sizing: border-box;
		justify-content: center;
		align-items: center;
		font-size: 5vw;
		font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
		margin: 2px;
		cursor: pointer;
	}

	.mobmenu:hover
	{
		color: white;
		background-color: #492902;
	}

	#mobmenumore
	{
		justify-content: space-between;
	}

	#mobmenumore #mobmenudots
	{
		width: 20px;
		margin-right: 15px;
		height: 100%;
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
	}

	.dot
	{
		display: inline-block;
		width: 20px;
		height: 4px;
		border-radius: 3px;
		background-color: black;
		margin: 2px 0 3px 0;
		padding: 0;
	}

	.mobmenu:hover .dot
	{
		background-color: white;
	}

	#stdmenu
	{
		display: block;
		background-color: #faecd2;
	}

	#menu
	{
		display: block;
	}

	#menu a
	{
		display: flex;
		font-size: 28px;
		margin-bottom: 3px;
		padding: 10px 0;
		justify-content: space-between;
	}

	#mobmenusearch
	{
		font-weight: bold;
		font-size: 5.5vw;
	}

	#searchicon
	{
		display: none;
	}

	#searchfield
	{
		width: 100%;
		border-radius: 0;
	}

	#searchform
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 22px;
	}

	#searchform input
	{
		font-size: 26px;
		width: 100%;
	}

	img#searchclose
	{
		width: 28px !important;
		height: 28px !important;
		cursor: pointer;
		border: 2px solid #800;
		border-radius: 4px;
	}

	.submenublk
	{
		width: 100%;
		margin-top: 0;
		position: static !important;
		padding: 0;
	}

	.submenu, .submenuc
	{
		display: flex;
		padding: 10px 20px !important;
		background-color: #f8f3e4 !important;
		justify-content: space-between;
		font-size: 26px !important;
		width: 100%;
	}

	.submenu a, .submenuc a
	{
		font-size: 26px !important;
	}

	.submenuback
	{
		display: block !important;
	}

	.subind
	{
		font-size: 30px !important;
	}

	img
	{
		max-width: 100%;
	}

	img.img
	{
		width: 100% !important;
		text-align: center;
		float: none;
		clear: both;
		display: block;
		margin: 40px 0 0 0 !important;
	}

	.piccaption
	{
		width: 90% !important;
		margin-bottom: 20px;
	}

	#content
	{
		padding: 10px 20px 20px 20px;
		font-size: 18px;
	}

	#content h1
	{
		margin: 0 0 15px -20px !important;
	}

	#content p
	{
		font-size: var(--font-size-mobile);
	}

	#popuptooltip
	{
		font-size: 15px;
	}

	/* **** Scaling Embedded Video **** */

	#videowrap
	{
		float: none;
		clear: both;
		position: relative;
		padding-bottom: 56.25%;
		padding-top: 30px;
		height: 0;
		width: 100%;
		overflow: hidden;
	}

	#videowrap iframe
	{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	.psnletterlist
	{
		white-space: normal;
	}
}

@media only screen and (max-width: 650px)
{
	#logo
	{
		grid-template-rows: auto auto;
	}

	.submenu, .submenuc
	{
		padding: 10px 10px !important;
		font-size: 20px !important;
	}

	.submenu a, .submenuc a
	{
		font-size: 20px !important;
	}

	#searchfield input
	{
		font-size: 20px;
	}

	#footer
	{
		flex-wrap: wrap;
		border-radius: 0;
	}

	.footer
	{
		display: block;
	}
}

