#slnToolBar {
	position: fixed;
	float: left;
	right:280px;
	top: 2px;
	border-top-left-radius: 5px;
	overflow: hidden;
/*	height: 65px;
	border-bottom-left-radius: 5px;
	width: 320px;*/
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.8), 0 5px 20px 0 rgba(0, 0, 0, 0.8);
	z-index:1030;
}

.slnNavbar {
	/*height: 65px;
	width: 320px;
	position: relative;
	left: 8px;*/
	padding: 0px 20px;
	cursor: move;
	text-align: center;
	background-color: #5c5c5c;
	white-space: nowrap;
}

#slnUndoRedoDragHandle {
	top: 0px;
	left: 3px;
	position: absolute;
	display: inline-block;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	font-size: 26px;
	line-height: 20px;
}

#slnChanges.slnClosed {
	max-height: 0px;
	overflow-y: hidden;
}

#slnChanges {
	width:320px;
	max-height: 160px;
	background-color: white;
	overflow-x: hidden;
	overflow-y: auto;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.8), 0 5px 20px 0 rgba(0, 0, 0, 0.8);
    -webkit-transition: max-height .5s; /* Safari */
    transition: max-height .5s;
}

#slnChanges::-webkit-scrollbar {
		-webkit-appearance: none;
		width: 7px;
}
#slnChanges::-webkit-scrollbar-thumb {
		border-radius: 4px;
		background-color: rgba(0,0,0,.5);
		-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

#slnChangeList {
	display:block;
	padding:0px 0px;
	background-color: white;
	color: black;
}

#slnChangeList li{
	display: block;
	padding: 5px;
	font-size: 12px;
}

.sln-undo-pointer {
	background: lightblue;
}

.sln-undo-pointer:before {
	font-family: FontAwesome;
	content: "\f061";
	padding-left: 5px;
	padding-right: 5px;
}

.sln-redo {
	display: block;
	background-color: lightgrey;
	color: black;
	padding: 5px;
	font-size: 12px;
	font-style: italic;
}

.sln-navbar-btn {
	padding: 2px;
	background: transparent;
	text-align: center;
	display: inline-block;
	cursor: pointer;
	color: lightGrey;
	font-size: 10px;
	text-decoration: none;
	border: none;
	margin: 5px 10px 2px 10px;
}

.sln-navbar-btn:hover {
	color: white;
}

.sln-navbar-btn .fa{
	padding: 2px;
	font-size: 20px;
	display: block;
}

.sln-nochanges {
	color: darkred;
}