/*
 *
 * Version: 1.2.0 (20190215)
 * Requires:
 *
 * Copyright &copy; 2015-2024 Tod W. McNamara. All Rights Reserved
 *
 *
 */
@charset "utf-8";

.doc-container {
	height:100%;
	width: 80%;
	left: 10%;
	top: 100%;
	display: none;
	background:url(/media/img/overlays/01.png);
	border-radius:10px;
  	z-index:100;
	background-color: lemonchiffon;
  	position:fixed;
 	transition: all 0.5s  ease-in-out;
	padding-top: 5px;
	padding-bottom: 12px;
  	-webkit-overflow-scrolling: touch;
  	overflow:auto;
 }
.doc-content {
	display: block;
	position:absolute;
	width:96%;
	margin:2%;
	height: 91%;
	top:48px;
	border-style:solid;
	border-width:3px;
	border-radius:10px;
	border-color: black;
	color: black;
  	text-align: left;
  	background-color: white;
  	overflow-x: hidden;
  	overflow-y: auto;
}
.doc-content  a {
	float: none;
	color: white;
  	background-color: #111;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

#docbar {
	background-color: rgba(0, 0, 0, 0);
	position: relative;
	margin-left:12px;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	transition: top 0.3s;
  	z-index:100;
	padding-bottom: 1%;
	overflow: hidden;
}
@media (hover: hover) {
#docbar a:hover {
  background-color: black;
  color:white;
  /* background-color: #0099CC; /* blue */
  }
}
#docbar a {
  float: left;
  display: block;
  font-size: 16px;
  color:rgba(0,0,0,0.5);
  /*color: white;*/
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

#docbar-right {
	background-color: rgba(0, 0, 0, 0);
	position: relative;
	overflow: hidden;
	width: auto;
	margin-right:12px;
	float: right;
}
#docbar-left {
	position: relative;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0);
  	float: left;
  	width: auto;
}
#docbar-href {
	border-radius:10px;
	position:absolute;
	right: 33%;
	text-align:center;
	float: none;
	overflow:hidden;
	width:33%;
	background-color: rgba(0, 0, 0, 0);
}
#doc-title {
	position: relative;
	color:black;
   display: block;
}

