/*
 * Copyright (c) 2012. CloudGuard Software AG
 */

/* Override some defaults */

body, html {
    height: 100%;
}

h1 {
    color: #008EE8;
}

.brand:hover {
    color: #008EE8;
    text-decoration: underline;
}

.brand-small {
    font-size: 70%;
    color: #808080;
}

.spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -50px; /* half width of the spinner gif */
    margin-top: -50px; /* half height of the spinner gif */
    text-align: center;
    z-index: 1234;
    overflow: auto;
    width: 100px; /* width of the spinner gif */
    height: 102px; /*hight of the spinner gif +2px to fix IE8 issue */
}

i.xicon-sortable {
    display: inline-block;
    width: 14px;
    height: 14px;
    *margin-right: .3em;
    line-height: 14px;
    vertical-align: text-top;
    background-image: url("../../images/icon-sortable2.png");
    background-repeat: no-repeat;
}

#footer {

    background-image: -moz-linear-gradient(top, #f2f2f2, #ffffff);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#ffffff));
    background-image: -webkit-linear-gradient(top, #f2f2f2, #ffffff);
    background-image: -o-linear-gradient(top, #f2f2f2, #ffffff);
    background-image: linear-gradient(to bottom, #f2f2f2, #ffffff);
    background-repeat: repeat-x;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr = '#f2f2f2', endColorstr = '#ffffff', GradientType = 0);
    border-top: 1px solid #E5E5E5;
}

/* Wrapper for page content to push down footer */
#wrap {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    /* Negative indent footer by it's height */
    margin: 0 auto -160px;
}

/* Set the fixed height of the footer here */
#push,
#footer {
    height: 100px;
    padding-top: 40px;
    margin-top: 20px;
}

/* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) {
    #footer {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}


