﻿.errorMSG {
    padding: 1%;
    margin: 0;
    border: 1px solid #FF3333;
    margin-top: 75px;
    text-align: -webkit-center;
    border-radius: 3px;
    top: 109px;
    left: 450px;
    width: 350px;
    display: block;
    position: fixed;
    z-index: 9999999999;
    /*background-color: orangered;*/
}
.errorMSG img
{
    margin: 5px 10px 3px 5px;
    float:right; cursor:pointer;
}
.errorMSG span
{
    color:#000;
    padding:0 0 0 40px;
    font-size: 12pt; text-align:left; vertical-align:bottom;
} 

.successMSG 
{
 padding:1%; 
    margin:0;
     
	border:1px solid #4DB84D;
	margin-top:0px;text-align:left;   
	border-radius: 3px;
   
    top: 0px; /* 109px;*/
      left: 0px; /* 109px;*/
    width: 100%; /* 749px;*/
    display:block;
         position:  fixed;
	z-index:  9999999999;
}
.successMSG  img
{
    margin: 5px 10px 3px 5px;
    float:right; cursor:pointer;
}

.successMSG span
{
    color:#000; 
     padding:0 0 0 40px;
    font-size: 12pt; text-align:left; vertical-align:bottom;
} 

.alert 
{
 padding:1%; 
    margin:0;
    width:98%;
	border:1px solid #E68A2E;
	text-align:left;   
	border-radius: 3px;
     top: 0px; /* 109px;*/
     left: 0px; /* 109px;*/
    width: 100%; /* 749px;*/display:block;
    position:  fixed;
	z-index:  9999999999;
}
.alert  img
{
    margin: 5px 10px 3px 5px;
    float:right; cursor:pointer;
}

.alert span
{
    color:#000; 
     padding:0 0 0 40px;
    font-size: 12pt; text-align:left; vertical-align:bottom;
} 
.blink{
    -webkit-animation: blink 1500ms infinite alternate;
    -moz-animation: blink 1500ms infinite alternate;
    -o-animation: blink 1500ms infinite alternate;
    animation: blink 1500ms infinite alternate;
}
@-webkit-keyframes blink {
	from {background-color: red;}
    to {background-color: yellow;}
}
@-o-keyframes blink {
	from {background-color: red;}
    to {background-color: yellow;}
}
@-moz-keyframes blink {
	from {background-color: red;}
    to {background-color: yellow;}
}
@keyframes blink {
	from {background-color: red;}
    to {background-color: yellow;}
}