body {
	background-image: url('../images/niteroicover.webp');
	background-repeat: repeat-y;
	background-color: #000;
	background-size: cover;
	font-family: Helvetica, Arial, sans-serif;
}
#mainHeading {
	position: absolute;
	top: 0;
	left:  100px;
	color: rgb(255,255,255,0.15);
	font-size: 70px;
}
#contents {
}
#searchBar {
	padding: 20px 15px;
	top:  100px;
	left:  100px;
	width:  35%;
	max-height: 125px;
	border-radius: 10px;
	background-color: rgb(255,255,255,0.8);
	display: flex;
	color:  #333;
	position: relative;
}
#searchBar a {
	text-decoration: none;
	color:  #9932cc;
	font-size:  16px;
}
#searchBar a:hover, #searchBar a:active {
	text-decoration: underline;
}
#common {
	width:  90px;
	border-right:  1px solid #333;
	margin-right:  20px;
	list-style: none;
}
#common a {
	display: block;
	line-height: 24px;
}
#searchLabel {
	margin-top:  5px;
	margin-bottom:  5px;
	flex:  1;
	font-size:  12px;
}
#searchLabel input {
	display: block;
	width:  100%;
	height: 40px;
	font-size:  18px;
	margin-top: 3px;
	padding-left:  5px;
}
#searchResults {
	margin-top:  10px;
	color:  #9932cc;
}
#searchResults a:not(:last-of-type) {
	margin-right:  5px;
	padding-right:  5px;
	border-right:  1px solid rgb(255,255,255,0.5);
}
#resultPage {
	background-color: rgb(255,255,255,0.8);
	position: fixed;
	padding:  20px 30px;
	height: 80%;
	top: 20px;
	left: 20px;
	right: 20px;
	border-radius: 10px;
	overflow-y: scroll;
}
#resultPage h1 {
	margin-bottom:  20px;
	padding-bottom:  10px;
	border-bottom:  1px solid #ccc;
}
#resultPage p {
	margin-bottom:  15px;
}
#resultPage a {
	color:  #9932cc;
}
#resultPage a:hover, #resultPage a:active {
	color: #000;
}
#closeButton {
	position: absolute;
	right:  20px;
	top:  20px;
	border: 1px solid #333;
	border-radius: 100%;
	width:  25px;
	height:  25px;
	font-size: 20px;
	line-height: 20px;
	text-align: center;
}
#closeButton:hover, #closeButton:active {
	cursor: pointer;
	border-color: #9932cc;
	color:  #9932cc;
}


#contact {
	position: fixed;
	padding:  5px 10px;
	right:  0;
	bottom: 40px;
	text-transform: uppercase;
	background-color: rgb(255,255,255,0.6);
}
#contact:hover, #contact:active {
	background-color: #9932cc;
	cursor: pointer;
	color:  #fff;
}
#contact:hover #contactBtn, #contact:active #contactBtn {
	display: none;
}
#contactDetails {
	display: none;
	padding:  5px;
	text-transform: initial;
}
#contact:hover #contactDetails, #contact:active #contactDetails {
	display: block;
}
#contactDetails li {
	list-style: none;
	line-height: 28px;
}
#contactDetails li i {
	margin-right:  5px;
}
#contactDetails li.divider {
	border-bottom:  1px solid rgb(255,255,255,0.6);;
	padding-bottom: 10px;
	margin-bottom:  15px;
	margin-left:  -15px;
	margin-right:  -15px;
}
#contactDetails a {
	color:  #fff;
	text-decoration: none;
}
#contactDetails a:hover, #contactDetails a:active {
	text-decoration: underline;
}



.isMobile #searchBar {
	right: 20px;
	width: 80%;
	left:  20px;
}
