
.contactPanel {
	position: fixed;
	top: 0;
	height: 100%;
	overflow: hidden;
	width: 18em;
	right: -20em;
	font-family: "robotoCondensed";
	font-weight: 800;
	box-shadow: 5px 0 32px 4px rgba(86, 86, 86, 0.567);
	z-index: 1000;
}

.contactHd {
	width: 18em;
	font-size: 110%;
	font-weight: 800;
	height: var(--d48);
	background-color: var(--panelHdBck);
}

.contactHd a {
	height: inherit;
	display: inline-block;
	float: left;
	/* to avoid gap due to carriage return in the source code */
}

.contactIcon {
	width: inherit;
	height: var(--d48);
	background-color: var(--closeImgBck);
}

.contactTitle {
	font-family: 'robotoCondensed';
	color: var(--white);
	float: left;
	padding-left: 1em;
	line-height: var(--d48);
}

.contactBody {
	font-family: "robotoCondensed";
	padding-bottom: 1em;
	width: 16.5em;
	padding-top: 1em;
	padding-left: 1em;
	padding-right: 0.5em;
	background-color: var(--white);
	height: calc(100% - 3em);
	overflow-y: scroll;
/* to ensure momentum scrolling in IOs */
	-webkit-overflow-scrolling: touch;
}

#contactForm {
	width: 14em;
}

#contactForm label {
	font-weight: 400;
}
#contactForm input, #contactMessage {
	border: 1px solid #a8a8a8;
	border-radius: 4px;
	padding: 0;
	width: 100%;
	margin-bottom: 16px;
	margin-top: 4px;
	font-size: 0.95em;
	color: #676767;
	line-height: 22px;
	font-family: "robotoMono"
}

#contactTo {
	display: none
}

#contactMessage {
	height : 350px;
	resize : none;
	overflow: auto;
}

#contactForm input[type=submit] {
	background-color: rgba(35, 161, 30, 0.7);
	color: #ffffff;
	border: 1px solid #00921d ;
	border-radius: 4px;
	margin: 0;
	font-size: 16px;
	float: right;
	width: auto;
	padding: 4px 12px;
	font-family: "robotoCondensed";
}

#contactForm input[type=submit]:hover {
	cursor: pointer
}

#contactForm input[type=reset] {
	visibility: hidden;
}
