body {
}


a:link {
	color: #af885f;
	text-decoration-line: none;
	font-weight: bold;
}
a:visited {
	color: #af885f;
	text-decoration-line: none;
	font-weight: bold;
}
a:hover {
	color: #0000D0;
	text-decoration-line: underline;
	font-weight: bold;
}
a.nolink:link {
	color: black;
	text-decoration-line: none;
	font-weight: 100;
}

a.nolink:visited {
	color: black;
	text-decoration-line: none;
	font-weight: 100;
}

div.header {
	grid-column: 1/span 3;
	grid-row: 1/span 1;
	padding: 2px 10px 0px 10px;
	display: block;
	z-index: 20;
}

div.headerItem {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.note {
	text-color: rgb(10, 10, 10);
	font-size: medium;
	font-family: Courier New;
}

div.headerBottom {
	padding-top: 4px;
}

div.list {
	display: flex;
	padding-left: 50px;
}

div.clickableBg:hover {
	background-color: #BBBBBB;
}


div.grid {
	display: grid;
	grid-template-columns: max-content auto max-content;
	grid-template-rows: 75px auto 100px;
}

div.mainBody {
}

div.top {
	grid-column: 1/span 3;
	grid-row: 1/span 1;
	padding: 10px;
	text-align: center;
}

div.left {
	grid-column: 1/span 1;
	grid-row: 2/span 1;
	padding: 0px 10px 10px 0px;
	min-width: 25px;
	max-width: 300px;
}

div.main {
	grid-column: 2/span 1;
	grid-row: 2/span 1;
	display: block;
	padding: 10px 10px 10px 2px;
}

div.right {
	grid-column: 3/span 1;
	grid-row: 2/span 1;
	max-width: 300px;
}

div.footer {
	grid-column: 1/span 3;
	grid-row: 3/span 1;
	padding: 10px;
	text-align: center;
}

div.pageTitle {
	font-family: papyrus, bookman;
	font-weight: 600;
	text-align: center;
}

@keyframes loading { 
	0% {clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);}
	50% {clip-path:polygon(0% 0%,0% 0%,0% 100%,0% 100%);}
	100% { clip-path:polygon(0% 0%,100% 0%,100% 100%,0% 100%);}
}

@keyframes loadingBarAnimation { 
	0%   { opacity: 1;}
	50%  { opacity: 0;}
	100% { opacity: 1;}
}

div.loadingBar {
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(204, 204, 153, 1), rgba(0, 0, 0, 0));
	height: 30px;
	padding-top: 5px;
	text-align: center;
	animation-name: loadingBarAnimation;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	transition: opacity 1s;
	width: 100%;
}


div.status {
	padding: 25px;
}

div.statusMessagePending {
	display: inline;
	margin-top: 10px;
	animation-name: loading;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

div.statusMessageComplete {
	display: inline;
}


div.toggleHide {
	display: inline-block;
	padding: 0px 2px 0px 2px;
	min-width: 20px;
	cursor: pointer;
}


.warn {
	font-weight: bold;
	color: rgb(200, 00, 00, 1);
}

.bold {
	font-weight: bold;
}

.floatRight {
	float: right;
}

.center {
	text-align: center;
}

.italic {
	font-style: italic;
}

.padTop10 {
	padding-top: 10px;
}

.centerBlock {
	margin: 0 auto;
}

.none {
	display: none;
}
.hidden {
	visibility: hidden;
}

div.spacerSmall {
	height: 20px;
}

div.spacerMedium {
	height: 50px;
}

div.spacer {
	height: 100px;
}

div.upcomingScheduleParent {
	border-top: 1px solid #777777;
	border-bottom: 1px solid #777777;
}

div.scheduledEventTitle {
	border-top: 1px solid #777777;
	font-weight: bold;
}

div.scheduledEventDates {
}

div.scheduledEventDescription {
}

div.scheduledEventLink {
}

div.featuredProducts {
}

div.featuredProductSpacer {
	padding: 10px;
}

div.product {
	display: block;
	text-align: center;
	border: 1px solid #777777;
	border-radius: 15px;
}

a.featuredProductLink {
}

img.featuredProductImage {
	border-color: #777777;
	border-style: solid;
}

div.featuredProductParent {
}

img.productImageSmall {
	opacity: 0.3;
	cursor: pointer;
}

img.productImageHover {
	opacity: 1;
}
