:root {
	--titlebar:  #e9e9e9;
	--contback:  #faa8f0;
	--dispback:  #bf8040;
	--border:	 #777;
	--greybg:	 #eee;
	--txtshadow: #333;
	--calWidth:  300px;
	--Headerfont: roboto;
}
.prevent-select {
  -webkit-user-select: none;/* Safari */
  -ms-user-select: none;    /* IE 10 and IE 11 */
  user-select: none;        /* Standard syntax */
}
.layoutGrid {
	position: relative;
	display: grid;
	grid-template-rows: 102px 1fr 52px;
	min-height: 100%;
	height: auto;
}
.headerFrame {
	display: block;
	width: 100%;
	height: 102px;
	border: none;
	border-bottom: 1px solid #eee;
}
.headerTitle {
	display: inline-block;
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	font-size: 18;
	color: rgb(191,144,0);
}
.bodyGrid {
	position: relative;
	display: grid;
	grid-template-columns: 10% 1fr 10%;
	min-height: 300px;
	height: auto;
	margin-top: 3px;
	background-color: #a8eaf4;
}
.footerFrame {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 52px;
	border: none;
	overflow: clip;
}
.logolink {
	position: relative;
	display: inline-block;
	left: 15px;
	top: 5px;
	cursor: pointer;
	z-index: 2;
}
.logo {
	max-height: 80px;
}
.mainTitle {
	width: 100%;
	min-width: 800px;
	text-align: center;
	font-family: var(--Headerfont);
	text-shadow: 0px -1px var(--txtshadow);
}
.detailsGrid1 {
	position: relative;
	display: grid;
	grid-template-columns: 50px 1fr;
	min-width: 300px;
	min-height: 150px;
	height: auto;
	background-color: #a8eaf4;
}
.detailsGrid2 {
	position: relative;
	display: grid;
	grid-template-columns: 50px 1fr;
	min-width: 300px;
	min-height: 150px;
	height: auto;
	background-color: #a8eaf4;
}
/*
.detailsGrid2 {
	position: relative;
	display: grid;
	grid-template-columns: 150px 1fr;
	height: auto;
}*/
.kvpleft{
	display: inline-block;
	position: relative;
	min-width: 100px;
	vertical-align: top;
}
.kvpright{
	display: inline-block;
	position: relative;
	width: 200px;
	vertical-align: top;
	margin-bottom: 8px;
}
.glossyCard {
	position: relative;
	display: inline-block;
	border-radius: 100px;
	margin: 0px 0px 15px 5px;
	box-shadow: 3px 3px 3px 2px grey;
	min-width: 100px;
	max-width: 100px;
	min-height: 100px;
	max-height: 100px;
	padding: 25px;
	background-color: #21e3e3;
	font-size: 0px;
	/*cursor: pointer;*/
	text-decoration: none;
}
.glossyCard:after{
	content: '';
	position: absolute;
	border-radius: 100px;
	margin: 0px 0px 15px 5px;
	min-width: 100px;
	max-width: 100px;
	min-height: 100px;
	max-height: 100px;
	padding: 25px;

	top: 0px;
	left: 0px;
	width: 100%;
	height: 50%;
	background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.2));
}
.cardTitle {
    position: relative;
	margin-left: 120px;
	font-family: var(--Headerfont);
	font-size: 25px;
}
.cardDesc {
    position: relative;
	margin-left: 120px;
	margin-top: 10px;
	font-family: var(--Headerfont);
	font-size: 16px;
	margin-bottom: 20px;
}
@media only screen and (max-width: 500px) {
	.detailsGrid1 {
		position: relative;
		/*display: grid;
		grid-template-rows: 150px 150px;
		min-width: 300px;*/
		min-height: 500px;
		height: auto;
		background-color: #a8eaf4;
	}
	.glossyCard {
		position: relative;
		display: block;
		border-radius: 100px;
		margin: 0px 0px 15px 5px;
		box-shadow: 3px 3px 3px 2px grey;
		min-width: 100px;
		max-width: 100px;
		min-height: 100px;
		max-height: 100px;
		padding: 25px;
		background-color: #21e3e3;
		font-size: 0px;
		text-decoration: none;
	}
	.topblock {
		position: absolute;
		top: 150px;
		margin-top: 10px;
		min-height: 150px;
		height: auto;
	}
	.cardTitle {
		position: relative;
		margin-left: 10px;
		font-family: var(--Headerfont);
		font-size: 25px;
	}
	.cardDesc {
		position: relative;
		margin-left: 10px;
		margin-top: 10px;
		font-family: var(--Headerfont);
		font-size: 16px;
		margin-bottom: 20px;
	}
}
/*
.glossyCard:hover{
	background: linear-gradient(#337,#3af);
}
.glossyCard:active{
	transform: translateY(2px);
	box-shadow: none;
}
*/
.cardImg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	max-width: 100px;
	max-height: 100px;
}
.centered-div {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    text-shadow: 0px -1px var(--txtshadow);
	text-align: center;
}
.footerFrame {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 52px;
	border: none;
	overflow: clip;
}
.noMargin { margin: 0; }
