/* ================================ */
/* By Atypic - www.atypic.be
/* ================================ */

#powered-by-atypic {
    position:fixed;
    z-index:99999999999;
    right:20px;
    bottom: 0;
}
#powered-by-atypic a {
    opacity: .9;
    color: #999999;
    background: #333333;
    display: inline-block;
    padding: 6px;
    line-height: normal;
    text-decoration: none;
    border-radius: 2px 2px 0 0;
    font-family: Arial, Helvetica, sans serif;
    font-size: 11px;
    position: relative;

    -webkit-transition: all 0.3s ease; 
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#powered-by-atypic a:before {
    background: #aaaaaa;
    bottom: 3px;
    content: "";
    height: 1px;
    position: absolute;
    width: 90%;
    opacity: 0;

    -webkit-transform: scaleX(0); 
    -moz-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);

    -webkit-transition: all 0.3s ease; 
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#powered-by-atypic a:hover:before {
    background: #fff;
    opacity: .8;

    -webkit-transform: scaleX(1); 
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
#powered-by-atypic a:hover {
    color: #fff;
    background: #ce0000;
    text-decoration: none;
    opacity: 1;
}