
/** notifications **/
.notify {
    background: #fff;
    width: 400px;
    height: 300px;
    position: absolute;
    left: 50%;
    top: 40%; 
    margin-left: -200px;
    margin-top: -200px;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px 0px;
    padding: 12px 18px;
    cursor: pointer;
}

.notify h1 { margin-bottom: 6px;display:block; }
h1::before, h1::after {
    background: #f0f0f0 none repeat scroll 0 0;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}
.successbox h1 { color: #678361; }
.errorbox h1 { color: #6f423b; }

.successbox h1:before, .successbox h1:after { background: #cad8a9; }
.errorbox h1:before, .errorbox h1:after { background: #d6b8b7; }

.notify .alerticon { 
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
.notify span
{
    border: 0 none;
    box-sizing: border-box;
    font: inherit;
    margin: 0;
    outline: medium none;
    padding: 0;
    vertical-align: baseline;
}


#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../../web/images/bgopa.png");
    background-image: no-repeat;
    z-index: 10000;
    display:none;
}



#errorbox, #successbox
{
    display:none;

}

#overlay .headline
{
    display: block;
    background-color: #eee;
    color: #333;
}

#overlay .Msg
{
    padding-top: 10px;
    display: block;
    font-size: 1.35em;
    line-height: 1.5em;
    margin-bottom: 22px;
    color:#333;
    text-align: center;
}

 .headline h2 {
   width: 100%; 
   text-align: center; 
   border-bottom: 1px solid #000; 
   line-height: 0.1em;
   margin: 10px 0 20px; 
} 

 .headline h2 span { 
    background:#fff; 
    padding:0 10px; 
}