
.divHistoryContainer {
	display: none;
	position: fixed;
	top: 100px;
	left: 100px;
	min-height: 100px;
	max-height: 750px;
	width: 250px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 0;
	border: 1px solid #ccc;
	box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
	background-color: whitesmoke;
	overflow-y: auto;
	}
.divHistoryContainer:focus {
	border-color: rgba(82, 168, 236, 0.8);
	outline: 0;
	outline: thin dotted \9;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
	background-color: white;
	}
.ulHistoryItems {
	list-style-type: none;
	margin-left: 0;
	}
.ulHistoryItems li {
	font-family: Ubuntu;
	font-size: 15px;
	cursor: pointer;
	margin-bottom: 7px;
	padding-left: 3px;
	line-height: 20px;
	}
.ulHistoryItems li .divDescription {
	padding-left: 13px;
	padding-right: 10px;
	}
.ulHistoryItems li.hasCursor {
	background-color: gainsboro; 
	opacity: 0.7;
	}
.divHistoryContainer:focus .ulHistoryItems li.hasCursor {
	background-color: #086DD6; /* dodger-ish blue */
	color: white;
	opacity: 1;
	}
.popover .draftInfoTable td {
	font-size: 14px;
	padding: 1px;
	border: none;
	}
.popover .draftInfoTable a {
	cursor: pointer;
	color: inherit;
	}
.popover .draftInfoTable .tdRight {
	text-align: right;
	}


.divSidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: 250px;
	height: 100%;
	background-color: black;
	overflow-y: auto;
	transition: transform 0.3s ease;
	transform: translateX(-100%);
	z-index: 1000;
	}
.divHamburger {
	position: fixed;
	top: 0;
	left: 0;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 30px;
	cursor: pointer;
	background-color: black;
	border-radius: 0;
	z-index: 9999;
	}
.sidebarOpen .divSidebar {
	transform: translateX(0);
	}
.divMenubarAndEditor {
	position: relative;
	transition: margin-left 0.3s ease;
	}
.sidebarOpen .divMenubarAndEditor {
	margin-left: 250px;
	transition: margin-left 0.3s ease;
	}

.navbar-fixed-top, .navbar-fixed-bottom {
	position: relative !important;
	}

