/**
 * This CSS defines the general Footer shown on all modules/sites.
 *
 * @project     OTRS (http://www.otrs.org) - Agent Frontend
 * @copyright   OTRS AG
 * @license     AGPL (http://www.gnu.org/licenses/agpl.txt)
 */

/**
 * @package     Skin "Default"
 * @section     Footer
 */

@media screen,projection,tv,handheld {

#Footer {
    margin-top: 1px;
    min-height: 15px;
    padding: 12px 9px 8px;
    font-size: 10px;
    clear: both;
    border-top: 1px solid #eee;
    text-align: center;
    position: relative;
}

#Footer a,
#Footer ul li a {
    color: #bbb;
}

#Footer a:hover,
#Footer ul li a:hover {
    text-decoration: underline;
}

#Footer ul {
    position: absolute;
    top: 12px;
    left: 212px;
    right: auto;
}

.RTL #Footer ul {
    left: auto;
    right: 212px;
}

#Footer ul li {
    float: left;
    padding: 0 4px 0 4px;
    border-left: 1px solid #9E9E9E;
}

.RTL #Footer ul li {
    float: right;
    border-left: none;
    border-right: 1px solid #9E9E9E;
}

#Footer ul li:first-child {
    border: none;
}

} /* end @media */