.upcor-toolbar {
    height: 55px;
    width: 100%;
    background-color: #fff; 
}

.upcor-toolbar-container {
    height: 51px;
}

.upcor-toolbar-fixed {
    position: fixed;
    z-index: 9999;
    top: 0;
    background-color: #ddd; 
    box-shadow: 2px 5px 3px #aaa;
    /*
    -webkit-transition:background 0.5s;
	-moz-transition:background 0.5s;
	-o-transition:background 0.5s;
	*/
	transition:background 0.5s;
}

.upcor-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    /*
    filter:alpha(opacity=50);
    -moz-opacity:0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    */
    opacity: 0.5;
    display: none;
    z-index: 10000;
}

.upcor-overlay-inner {
    position: fixed;
    background-color: #fff;
    width: 40%;
    height: 50%;
    top: 20%;
    left: 30%;
    z-index: 10001;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.9;
    border: 2px #777 solid;
}

.upcor-overlay-inner img {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.upcor-overlay-msg {
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-size: 20px;
    text-align: center;
    padding-top: 10%;
}