﻿.slideOutPanel{
	position:fixed;
	right:-275px;
	transition: right .25s ease-in;
	z-index:100;
}
.slideOutPanel fieldset {            
	border: thick solid #000000; 
	width: 250px; 
	color: #ffffff; 
	line-height: 1.6em; 
	background-color: rgba(64,64,64,.90);
}
.slideOutPanel legend{            
	transform:translate(-75px, 50px) rotate(-90deg);
	transition: transform 0.1s ease-in;
	transition-delay:0.15s;
	padding: 5px;
	color: #ffffff;
	font-size: 1.1em;            
	background: linear-gradient(to bottom,  rgb(78,82,91) 0%, rgba(64, 64, 64, 1) 100%);
	border-top: 1px solid rgba(255, 255, 255, .2);
	border-bottom: 1px solid rgba(0, 0, 0, .5);
}
.slideOutPanel:hover legend {            
	transform: translate(0,0) rotate(0deg);
	transition: transform 0.25s ease-out;
}
.slideOutPanel:hover, .slideOutPanel *:hover {
	right:-10px;
	transition: right .35s ease-out;
}


