* {
    font-family: helvetica, verdana, arial, sans-serif, tahoma, geneva;
    font-size: 12px;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 580px) {


}

@media print {
    p {
        font-size: 20px;
        color: red;
    }
}

html {
    font-family: helvetica, verdana, arial, sans-serif, tahoma, geneva;
    font-size: 12px;
    border: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    border: 0;
    padding: 0;
    margin: 0;
    background-color: #FFF;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    min-width: 550px;
    min-height: 380px;
    overflow: auto;
}

.clear {
    float: none;
    clear: both;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;      
}

#contains {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
}

.login {
    display: block;
    position: relative;
    color: black;
    margin: auto;
    width: 500px;
    height: 300px;
    background: #FFF;
    border-radius: 4px;
    padding: 40px 30px 30px 30px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 7px rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 7px rgba(0,0,0,.3);
    -webkit-box-shadow: 0 0 7px rgba(0,0,0,.3);
}

.login h1 {
    display: block;
    font-size: 40px;
    line-height: 56px;
    color: #333;
    text-align: center;
    border-bottom: 0px solid #666;
    font-weight: 400;
}     
.login .line-seperator {
    display: block;
    border: 0;
    outline: 0;
    height: 1px;
    margin-top: 30px;
    background: linear-gradient(to right, rgba(219,219,219,.01) 0, #dbdbdb 7%, #dbdbdb 93%, rgba(219,219,219,0) 100%); 
}        
.login .frm_input {
    display: block;
    position: relative;
    border: 0px solid black;
    width: 400px;
    height: 40px;
    margin: auto;
    top: 20px;
}
.login .frm_input input[type=text], .login .frm_input input[type=password] {
    width: 296px;
    height: 36px;
    padding-left: 50px;
    padding-right: 50px;
    font-size: 18px;
    font-weight: normal;
    margin-top: 8px;
    border: 1px solid #dbdbdb;
    outline: 0;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,.1) inset;
    text-shadow: 0 1px 0 #fff;            
    color: #999;
}
.login .frm_input input[type=text]:focus, .login .frm_input input[type=password]:focus {
    background-color: #f8fbff;
    border: 1px solid #2b88f6;
    color: #000;
}
.login .frm_input input[type=text]:focus::-webkit-input-placeholder, .login .frm_input input[type=password]:focus::-webkit-input-placeholder {
    color:    #c6deff;
}
.login .frm_input input[type=text]:focus:-moz-placeholder, .login .frm_input input[type=password]:focus:-moz-placeholder {
    color:    #c6deff;
}
.login .frm_input input[type=text]:focus::-moz-placeholder, .login .frm_input input[type=password]:focus::-moz-placeholder {
    color:    #c6deff;
}
.login .frm_input input[type=text]:focus:-ms-input-placeholder, .login .frm_input input[type=password]:focus:-ms-input-placeholder {
    color:    #c6deff;
} 
.login .frm_input button {
    width: 396px;
    height: 50px;
    font-size: 18px;
    font-weight: normal;
    margin-top: 20px;
    border: 1px solid #063d00;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,.1) inset;
    text-shadow: 0 1px 0 #000;            
    color: #FFF;
    background: #109b00;
    cursor: pointer;
    outline: none;
}        
.login .frm_input button:hover {
    background-color: #19a707;
}
.login .frm_input button:active {
    background-color: #0e8800;
}

/*
{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  background-color: rgba(0,0,0,0.6);
}
*/


/* .modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    line-height: 200px;
    height: 200px;
    margin-left: -150px;
    margin-top: -100px;
    background-color: #f1c40f;
    text-align: center;

    z-index: 10; 
    outline: 9999px solid rgba(0,0,0,0.4);
}*/

.notification-box {
    display: none;
    position: absolute;
    color: black;
    max-width: 800px;
    min-width: 550px;
    min-height: 40px;
    background: rgba(0,180,50,0.8);
    border-radius: 4px;
    padding: 8px 4px 8px 4px;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 7px rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 7px rgba(0,0,0,.3);
    -webkit-box-shadow: 0 0 7px rgba(0,0,0,.3);
    color: #fff;
    text-align: center;
    z-index: 10;
}

.notification-box-error {
    background: rgba(255,0,0,0.8);
}

.notification-box-show {
    display: block;
}

.notification-box .notification {
    color: #fff;
}
