@font-face
{
	font-family: GalacticoBasic;
	src: url("https://maplemart.net/resource/GalacticoBasic-r1ny.otf") format("opentype");
}
*
{
	cursor: default;
}
*:focus
{
	outline: none;
}
body
{
	background-color: rgba(180, 200, 240, 0.95);
	color: rgba(10, 10, 40, 0.95);
	text-shadow: 2px 2px 5px rgba(145, 85, 245, 0.8);
	font-family: sans-serif;
	font-size: 18px;
	margin: 2px;
	max-width: 100%;
	overflow: auto;
	transition: all 1s ease 0s;
}
a
{
	text-decoration: none;
	cursor: pointer;
	color: inherit;
	opacity: inherit;
	z-index: inherit;
	text-shadow: 1px 1px 5px rgba(25, 250, 250, 0.95);
}
a:hover
{
	cursor: pointer;
	text-shadow: 1px 1px 5px rgba(250, 25, 25, 0.95);
}
input
{
	margin: 2px;
	padding: 3px;
	border-radius: 8px;
	font-size: 15px;
	opacity: inherit;
	z-index: inherit;
	transition: all 1s ease 0s;
}
input[disabled]
{
	cursor: not-allowed;
}
input:focus
{
	text-shadow: 1px 1px 5px rgba(25, 250, 250, 0.95);
	box-shadow: 0px 0px 20px red;
	transition: all 1s ease 0s;
}
input[type=button], input[type=button]:focus
{
	border: 3px gold groove;
	border-radius: 5px;
	font-size: 13px;
	font-weight: bold;
	box-shadow: none;
	position: relative;
	transition: all 1s ease 0s;
}
input[type=button][disabled]
{
	border: 3px silver groove;
	background: silver !important;
	transition: all 1s ease 0s;
}
input[type=button]:not([disabled]):hover
{
	text-shadow: 1px 1px 5px rgba(25, 250, 250, 0.95);
	box-shadow: 0px 0px 10px red;
	cursor: pointer;
	transition: all 0.5s ease 0s;
}
input[type=button]:not([disabled]):active
{
	text-shadow: 1px 1px 5px rgba(250, 25, 25, 0.95);
	box-shadow: 0px 0px 20px red;
	transition: all 0.2s ease 0s;
}
input[type=text]:not([disabled]), input[type=password]:not([disabled])
{
	border: 2px #404040 inset !important;
	cursor: text;
}
table
{
	color: inherit;
	opacity: inherit;
	z-index: inherit;
}
table > thead > tr > th > div
{
	box-shadow: 5px -5px 6px 1px rgba(240, 25, 25, 0.25);
	background: url("https://maplemart.net/resource/img/snow.gif"), rgba(125, 125, 225, 0.3);
	transition: all 0.5s ease 0s;
	cursor: pointer;
}
table > thead > tr > th > div:hover
{
	border-radius: 5px 5px 0 0;
	background: url("https://maplemart.net/resource/img/snow.gif"), rgba(125, 125, 225, 0.6);
	transition: all 0.5s ease 0s;
}
@media only screen and (max-width: 600px)
{
	#searchField
	{
		max-width: 250px;
	}
	.header
	{
		font-size: 30px;
	}
	.footer
	{
		font-size: 10px;
	}
	table
	{
		font-size: 12px;
	}
	.resultDisplay
	{
		max-height: 70%;
	}
}