@charset "utf-8";
/* CSS Document */
.error{
    background-color: #663300;
    padding: 6px 12px;
    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 #663300;
    border-left: 8px solid transparent;
    left: -16px;   
    top: 4px;
    position: absolute;
}
.defaultText{ color: #999999; }
.defaultNewText{ color: #000; }
.loader{  
    position: absolute;
    display: none;
}
.confirmation{
    border:solid 1px #063;
    background:#3F6;
    color:#063;
    font-family: "Century Gothic";
    font-size: 14px;
    padding:10px;
    display: none;
}