* {
	margin: 0;
	padding: 0;
}

body {
	background-color: #dddde4;
}
#main {
	width: 940px;
	margin: auto;
	margin-top: 32px;

	border-top-left-radius: 12px 32px;
	border-top-right-radius: 12px 32px;

	box-shadow: 0 12px 32px #888, inset 0 -12px 32px #888;
}
#main-bkg {
	width: 820px;

	padding: 60px;
	margin-bottom: 60px;
	margin-top: 0;
	padding-top: 32px;

	background-color: #fff;

	position: relative;
}

hr {
	margin: 0;
	height: 3px;
	background-color: #36f;
	border: 2px solid #000;
	border-radius: 3px;
}

#nav {
	width: 940px;
	display: flex;
}
#nav a {
	flex-grow: 1;
	padding: 8px;
	text-decoration: none;
	color: navy;
	font-size: 16px;
	text-align: center;

	background-color: #ccc;
	background-image: linear-gradient(#ddd, #ccc);

	transition: all 0.33s;
	border: 2px solid #fff;
	border-bottom: 2px solid #eee;

	border-top-left-radius: 12px 32px;
	border-top-right-radius: 12px 32px;
}
#nav a.active {
	background-color: #fff;
	background-image: none;
	border-bottom: 2px solid #fff;
	flex-grow: 1.5;
}
#nav a:hover {
	color: #36f;
	background-image: linear-gradient(#eee, #ddd);
	flex-grow: 1.33;
}
#nav a.active:hover {
	background-image: none;
	flex-grow: 1.5;
}
#nav a:active {
	color: #36f;
	background-image: linear-gradient(#ccc, #ddd);
	flex-grow: 1.33;
}
#nav a.active:active {
	background-image: linear-gradient(#eee, #fff);
	flex-grow: 1.5;
}

.about {
  cursor: pointer;
}
#dropdown {
	display: none;
	position: absolute;
	right: 0px;
	background-color: #f0f0f0;
	box-shadow: 0px 8px 16px 0px #888;
	font-size: 18px;
	z-index: 10;
}
#dropdown a {
	color: navy;
	padding: 16px 32px;
	padding-left: 8px;
	text-decoration: none;
	display: block;
}
#dropdown a:hover {background-color: #ddd}
#dropdown.show {display:block;}


a img, img.hover {
	cursor: pointer;
	transition: all 0.29s;
}
a img:hover, img.hover:hover {
	transform: scale(1.033);
	filter: opacity(0.9);
}

.title {
	vertical-align: bottom;
	padding-left: 8px;
}
.logo {
	width: 261px;
	height: 51px;
	padding: 32px;
	padding-top: 0;
	float: right;
	height: 100px;

	transition: all 0.33s;
}
.logo img {
	width: 261px;
	height: 51px;
}


:target::before {
	content: "";
	display: block;
	height: 70px;
	margin-top: -70px;
}

:target {
	-webkit-animation-name: target-animation;
	-moz-animation-name: target-animation;
	-o-animation-name: target-animation;
	animation-name: target-animation;

	-webkit-animation-duration: 2s;
	-moz-animation-duration: 2s;
	-o-animation-duration: 2s;
	animation-duration: 2s;
}
@-webkit-keyframes target-animation {
	from { color: #fff; }
	to { color: default; }
}
@-moz-keyframes target-animation {
	from { color: #fff; }
	to { color: default; }
}
@-o-keyframes target-animation {
	from { color: #fff; }
	to { color: default; }
}
@keyframes target-animation {
	from { color: #fff; }
	to { color: default; }
}



#bottom-text {
	padding: 25px;
}

h2, h3, h4 {
	margin-bottom: 8px;
}

.unselectable {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.elevated {
	box-shadow: 0 0 15px #888;
	border-radius: 12px;
	padding: 12px;
	margin: 6px;
	overflow: hidden; /* for image zoom */
}
.elevated img {
	border-radius: 6px;
	width: inherit;
	height: inherit;
}

.img250 img {
	width: 250px;
	height: 250px;
}
.img250 {
	width: 250px;
	height: 250px;
	margin: 4px 16px;
}

form input {
	font-size: 12px;
	margin: 6px 0px;
	padding: 6px 12px;
	cursor: pointer;
	background-color: #eee;
	border: 1px solid gray;
	box-shadow: 0 0 2px #ccc;

	border-top-left-radius    : 6px 4px;
	border-top-right-radius   : 6px 4px;
	border-bottom-left-radius : 6px 4px;
	border-bottom-right-radius: 6px 4px;
}
form input:hover {
	background-color: #ddd;
	border-color: #666;
}
form input:active {
	background-color: #fff;
	border-color: gray;
}

ul {
	margin-left: 35px;
}

.card {
	width: 37px;
	height: 21px;
	margin-right: 4px;
}
.paypal {
	width: 41px;
	height: 20px;
	margin-right: 16px;
	border: 1px solid #bbb;
}

.top-left { border-top-left-radius: 10px; }
.top-right { border-top-right-radius: 10px; }
.bottom-left { border-bottom-left-radius: 10px; }
.bottom-right { border-bottom-right-radius: 10px; }


.grid {
	width: 100%;
	table-layout: fixed;
}
.grid td {
	text-align: center;
	vertical-align: baseline;
	padding: 25px;
}
.grid td a {
	font-size: large;
	text-decoration: none;
	margin-bottom: 8px;
}
.grid td p {
	text-align: left;
}
.grid td ul {
	text-align: left;
	margin-left: 90px;
}
.grid div {
	margin: auto;
	width: 250px;
	margin-bottom: 8px;
}

sup {
	font-size: 0.67em;
}

#click-tabs {
	text-align: center;
	font-size: larger;
	transition: transform 0.33s;
}
#click-tabs sub {
	font-size: xx-large;
}
#click-tabs b {
	text-decoration: underline;
}

#orderTable td {
	padding: 2px;
}
