@charset "utf-8";
/* CSS Document */

#panel {
    position: fixed;
    top: 35px;
    right: -222px;
    z-index: 99999;
    transition: right 0.5s ease-out 0s;
}
 
#panel:hover {
    right: 0;
}
 
#panel #content {
    width: 200px;
    height: 300px;
    padding: 10px;
    border-top: 2px solid #706b6b;
    border-right: none;
    border-bottom: 2px solid #706b6b;
    border-left: 2px solid #706b6b;
    z-index: 20;
    background: #000000;
    position: relative;
    border-radius: 10px 0 0 10px;
}
 
#panel #title {
    width: 150px;
    border: 2px solid #706b6b;
    background: #000000;
    color: #FFFFFF;
    font-weight: bold;
    border-radius: 10px;
    padding: 5px 5px 25px 5px;
    text-align: center;
    position: relative;
    top: 140px;
    left: -90px;
    transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
    z-index: 1;
}
