@charset "utf-8";
/* CSS Document */
.error{
    background-color: #ff6e01;
    padding: 11px 11px;
    border-radius:4px;
    font-size:12px;
    color:white;
    font-weight:bold;
    margin:0 0 0 50px;   
    -moz-box-shadow: 2px 2px 3px #000;
    -webkit-box-shadow: 2px 2px 3px #000;
    box-shadow: 2px 2px 3px #000;
    position:absolute;
    z-index:1;	
}
.error:before{ /* Este es un truco para crear una flechita */
    content: '';
    border-top: 7px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #ff6e01;
    border-left: 8px solid transparent;
    left: -16px;   
    top: 4px;
    position: absolute;
}
.defaultText{ color: #999999; }
.defaultNewText{ color: #000; }
.loader{  
    position: absolute;
    display: none;
}
.confirmation{
    display: none;
    font-family: "Century Gothic";
    font-size: 14px;
    color: #47bcc3;
}