/**
 * 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;
    border-top: 1px solid #999;
    font-size: 10px;
    position: relative;
    clear: both;
}

#Footer a,
#Footer ul li a {
    color: #9E9E9E;
}

#Footer a:hover,
#Footer ul li a:hover,
#Footer div.TopOfPage 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;
}

#Footer div.TopOfPage {
    position: absolute;
    top: 12px;
    right: 33px;
}

.LoginScreen #Footer div.TopOfPage {
    display: none;
}

.RTL #Footer div.TopOfPage {
    left: 33px;
    right: auto;
}

#Footer div.TopOfPage a {
    padding-left: 0;
    padding-right: 16px;
    font-weight: bold;
    color: #333;
    position: relative;
    display: block;
}

.RTL #Footer div.TopOfPage a {
    padding-left: 16px;
    padding-right: 0;
}

#Footer div.TopOfPage a i {
    font-size: 17px;
    position: absolute;
    right: -3px;
    top: -4px;
}

#Footer div.TopOfPage a:hover i {
    text-decoration: none;
}
} /* end @media */