.Panel{
    position: fixed;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    z-index: 200;
}
.PanelHeadline{
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    background-color: #E28500;
    line-height: 25px;
}
.PanelHeadline{
    cursor: pointer;
}
.PanelHeadline:active{
    cursor: move;
}
.PanelTitle{
    display: inline-block;
    padding-left: 5px;
    padding-right: 55px;
}
.PanelCloser, .PanelMinimizer{
    width: 25px;
    height: 25px;
    background-color: #E23B3B;
    text-align: center;
    line-height: 25px;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
}
.PanelMinimizer{
    right: 25px;
    background: rgba(255,255,255,0.2);
}
.PanelMinimizer:after{
    content: "-";
}
.PanelCloser:after{
    content: "×";
}
.PanelMenu{
    background-color: #333;
    color: white;
    border-left: 5px solid #E28500;
    border-right: 5px solid #E28500;
}
.PanelMenu ul{
    padding: 0;
    margin: 0;
    background-color: #333;
    border-bottom: 2px solid #444;
}
.PanelMenu ul li{
    padding: 5px;
    font-size: 16px;
    display: inline-block;
    position: relative;
    cursor: default;
}
.PanelMenu ul li ul{
    display: none;
    position: absolute;
    z-index: 2;
    top: 29px;
    left: 0;
    border: none;
}
.PanelMenu ul li:hover > ul{
    display: block;
}
.PanelMenu ul li ul li {
    display: block;
    border-bottom: 2px solid #444;
}
.PanelContent{
    background-color: white;
    border: 5px solid #E28500;
    border-top: none;
    min-width: 100px;
    min-height: 100px;
    position: relative;
}
#tray{
    text-align: left;
}
.trayElement{
    width: 50px;
    height: 50px;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-position: center center;
    display: inline-block;
    vertical-align: top;
    cursor:pointer;
    background-color: rgba(255,255,255,0.1);
    transition: box-shadow 0.1s linear;
}
.trayElement.opened{
    box-shadow: 0 2px 10px rgba(255,255,255,0.5) inset;
}
.App-Browser{
    background-color: white;
}
.App-Browser .PanelConent{
}
.App-Browser .cmsfb_window{
    width: 400px;
    height: 220px;
    overflow-y: auto;
}
.App-Browser .cmsfb_toolbar, .App-Browser .cmsfb_footer{
    display: none
}
.App-Browser-Toolbar{
    background-color: #eee;
    width: 100%;
    height: 42px;
}
.App-Browser-Toolbar .basicly{
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
}
.App-Browser-Toolbar .unselectable{
    cursor: pointer;
}