@charset "UTF-8";


@font-face {
	font-family: Roboto;
	src: url(https://mystcollection.com/roboto.ttf);
}

@font-face {
	font-family: Bitter;
	src: url(https://mystcollection.com/bitter.ttf);
}

html {
	height: 100%; 
	min-height: 100%;/*force the page to extend to the edges of the viewport on mobile browsers*/

	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	overflow-y: scroll;
}

html  *{ 
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* on small screens, change the size of an EM to scale the content */
html  { 
	font-size: 1.6vw;
}
@media only screen and (min-width: 960px) {
html  {
	font-size: 1em;
}
}


a {
	color: #ec9815;
}

a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
	color: #ffffff;
}
a:active {
    text-decoration: underline;
}


body {
	background-color: #040b0d;
	color: #c6ced2;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	margin: 0;
}

.title {
	display: inline-block;
	padding: 0.25em;
	color: #f1faff;
	font-family: 'Bitter', serif;
	font-size: 2.5em;
	width: 100%;
	text-align: center;
}
.subtitle {
	display: inline-block;
	color: #f1faff;
	font-family: 'Bitter', serif;
	font-size: 1.5em;
	font-style: italic;
	width: 100%;
	text-align: center;
}


.contentWrapper {
	display: block;
	width: 60em;
	margin: 0 auto;
}

.contentCell {
	display: block;
	padding: 0.5em 1.5em 1em 1.5em;
	background-color: #0a1820;
	margin-bottom: 1em;
}

.contentCell p {
	margin: 1em 0;
	text-indent: 2em;
	text-align: justify;
}

.headerLogoCell {
	padding: 0.25em 0 0.25em 0;
	text-align: center;
}
.headerLogoCell img {
	display: block;
	padding: 0;
	margin: 0 auto;
	height: 15.625em;
	width: 15.625em;
}
.headerLogoCell form {
	text-align: center;
	display: inline-block;
}
.headerLogoCell form input[type="submit"] {
	background-color: #0f2531;
	/*background-color: #040b0d;*/
	color: #f1faff;
	border-color: #0a1820;
	padding: 0.25em 1em;
	border-radius: 1em;
	white-space: nowrap;
	font-style: italic;
}
.headerLogoCell form input[type="submit"]:hover {
	background-color: #183b4e;
	border-color: #f1faff;
}
.headerLogoCell form input[type="text"] {
	background-color: #0f2531;
	/* background-color: #0a1820; */
	color: #f1faff;
	border-color: #0a1820;
	width: 16em;
}
.headerLogoCell form input[type="text"]:hover {
	background-color: #183b4e;
}

.searchBarContainer {
	width: 100%;
}




/* bare messages not displayed inside of contentCells */
.contentMessage {
	width: 100%;
	text-align: center;
}


.tagLink {
	background-color: #0f2531;
	padding: 0 0.25em;
	border-radius: 1em;
	white-space: nowrap;
}
.tagLink:before {
	content: "｢ ";
}
.tagLink:after {
	content: " ｣";
}
.tagLink:hover {
	background-color: #183b4e;
}


.artLink {
	display: inline-block;
	height: 7.8125em;
	width: 100%;
	background-color: #0f2531;
	padding: 0;
	border-radius: 1em;
	white-space: nowrap;
	text-align: left;
	vertical-align: middle;
	margin: 0.125em 0 0.125em 0;
}
.artLinkNumber {
	font-family: "Lucida Console", Monaco, monospace;
	font-size: 2em;
	vertical-align: middle;
}
.artLink:hover {
	background-color: #183b4e;
}
.artThumb {
	height: 7.8125em;
	width: 7.8125em;
	border-radius: 1em;
	vertical-align: middle;
}

.inlineLink {
	background-color: #0f2531;
	padding: 0 0.25em;
	border-radius: 1em;
	white-space: nowrap;
}



/* the big header art displayed at the top of each artifact page */
.artBanner {
	width: 100%;
	height: auto;
}

/* legal disclaimers */
.stdLegal {
	font-family: Verdana,Geneva,sans-serif; 
	font-size: .6em;
	text-align: center;
	color: white;
	background-color: black;
	margin: 0em 0;
}
.stdLegal a { font-size: 1em; }

/* metadata, visible on hover */
.stdMetadata {
	opacity: 0;
	font-family: Verdana,Geneva,sans-serif; 
	font-size: .75em;
	text-align: center;
	color: #888888;
	margin: 0em 0;
}
.stdMetadata:hover {
	opacity: 1;
}
