#blackout,#blackout-2
{
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.windowBox
{
    width:400px;
    position: fixed;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    z-index: 1001;
    padding-bottom: 20px;
    /*background: #333;*/
    background: white;
    border: 1px solid #888;
    -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
       -moz-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
         -o-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
}

#boxTitle
{
    display: block;
    /*color: #fff;*/
    font-weight: bold;
    font-family: 'Open Sans', helvetica, arial, sans-serif;
}

.closeButton
{
    position: absolute;
    right: 10px;
    top: 10px;
    font-family: 'Open Sans', helvetica, arial, sans-serif;
    color: #FB4834;
}

.closeButton:visited
{
    /*color: #fff;*/
    color: #FB4834;
}

.windowBox #boxTitle
{
    position: static;
    margin-bottom: 20px;
    font-size: 200%;
    width: 100%;
    padding-left: 0;
    text-align: center;
    /*border-bottom: 1px solid #555;*/
    -webkit-border-top-left-radius: 3px;
       -moz-border-top-left-radius: 3px;
            border-top-left-radius: 3px; 
}

.windowBox #boxTitle, .windowBox .closeButton
{
    -webkit-border-top-right-radius: 3px;
       -moz-border-top-right-radius: 3px;
            border-top-right-radius: 3px;
}

.windowBox #boxTitle:after
{
    /*content: "";*/
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 38px;
    -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .5);
       -moz-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .5);
         -o-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .5);
            box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .5);
}

.windowBox .closeButton
{
    top: -30px;
    right: -30px;
    display: block;
    height: 27px;
    line-height: 27px;
    width: 27px;
    text-align: center;
	z-index:1;
	opacity: .5;
}
.windowBox .closeButton:hover, .windowBox .closeButton:focus{
opacity: 1;
}

.windowBox .closeButton:before
{
    /*content: "";*/
    display: block;
    width: 40px;
    height: 1px;
    position: absolute;
    top: 19px;
    left: -20px;
    -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .5);
       -moz-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .5);
         -o-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .5);
            box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .5);
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
}

.windowBoxContent:before
{
    /*content: "";*/
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: #777;
    -webkit-border-bottom-left-radius:  3px;
       -moz-border-bottom-left-radius:  3px;
            border-bottom-left-radius:  3px;
    -webkit-border-bottom-right-radius: 3px;
       -moz-border-bottom-right-radius: 3px;
            border-bottom-right-radius: 3px;
}

.windowBoxContent
{
    padding: 0 20px 0 20px;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Open Sans', helvetica, arial, sans-serif;
    text-align: justify;
    /*background: #777;
    color: #fff;
    border-bottom: 1px solid #aaa;*/
}

/*Webkit wont render the padding-bottom on bioHolder when the box scrolls - remove padding and add a div instead */
.webkitPaddingFix
{
    clear: both;
    width: 100%;
    height: 20px;
    padding: 0;
    margin: 0;
}

.windowBoxContent:after
{
    /*content: "";*/
    display: block;
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 100%;
    height: 1px;
    -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .5);
       -moz-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .5);
         -o-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .5);
            box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .5);
}

.move-handle{
	position:absolute;
	height:30px;
	width:100%;
	top:0px;
	left:0;
	cursor: pointer;
}	

#scrollText
{
    display: block;
    width: 250px;
    position: absolute;
    bottom: 0;
    left: 355px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.no-drag{
	-moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

div.wb-loading {
    background: transparent;
    border: none;
    box-shadow: none;
}

.wb-loading .windowBoxContent {
    overflow: hidden;
}

.wb-loading .closeButton {
    display: none;
}
