/*
Item Name : Pure CSS3 Sticky Footer
Author URI : http://themeforest.net/user/Keliah
Item URI : http://codecanyon.net/item/pure-css3-sticky-footer/128701
Version : 1.4
*/

/*

TABLE OF CONTENTS

01 FOOTER - GENERAL STYLES
02 FOOTER - DROP DOWN MENU (DROP UP)
03 FOOTER - COLUMNS CONTENT

*/



/*  _______________________________________

	01 FOOTER - GENERAL STYLES
    _______________________________________  */



/* The #footer must stick to the bottom of the page, the fixed positionning is here necessary. 

*/

#PDLStickyFooter {
    position: fixed;
    bottom: 0px;
    margin: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 980px;
    height: 33px;
    background: #161616;
    border-top: 1px solid #333333;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    /*text-shadow: 1px 1px 1px #000;*/
    /* CSS3 Stylings - Creates the double top border */
    -moz-box-shadow: 0px -1px 0px #161616;
    -webkit-box-shadow: 0px -1px 0px #161616;
    box-shadow: 0px -1px 0px #161616;
    /* CSS3 Stylings - Creates the gradient background */
    background: -moz-linear-gradient(top, #222222, #111111);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#222222), to(#111111));
    z-index: 9999999;
}

    /* General typography stylings, paragraphs and H2 tags */

    #PDLStickyFooter h2 {
        font-size: 24px;
        line-height: 24px;
        color: #FF6600;
        letter-spacing: -1px;
        font-weight: 400;
        padding: 0px 10px 0px 10px;
        margin: 12px 0;
    }

    #PDLStickyFooter p {
        color: #cccccc;
        font-size: 12px;
        padding: 0 10px 0 10px;
        line-height: 18px;
        float: left;
        margin: 10px 0;
    }

    #PDLStickyFooter tr {
        background: unset;
    }

    #PDLStickyFooter img {
        border: none;
    }

    #PDLStickyFooter a {
        /*color: #FF6600;*/
        text-decoration: none;
    }

    #PDLStickyFooter li ul {
        list-style: none;
        padding: 0;
        margin: 0 0 12px 0;
    }

    #PDLStickyFooter .strong { /* Forcing a bold text */
        font-weight: bold;
    }

    #PDLStickyFooter .italic { /* Forcing an italic text */
        font-style: italic;
    }

.psm-clear { /* Use this class between rows of content when you use columns */
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

/* Images containers */

#PDLStickyFooter .imgshadow { /* Better style on dark background */
    background: #FFFFFE;
    padding: 4px; /* Makes the light borders thanks to the background color */
    border: 1px solid #333333;
    margin-top: 5px;
    /* CSS3 shadow */
    -moz-box-shadow: 0px 0px 5px #000000;
    -webkit-box-shadow: 0px 0px 5px #000000;
    box-shadow: 0px 0px 5px #000000;
}

#PDLStickyFooter .img_left { /* Image sticks to the left */
    width: auto;
    float: left;
    margin: 5px 15px 5px 0px;
}

#PDLStickyFooter .img_right { /* Image sticks to the right */
    width: auto;
    float: right;
    margin: 5px 0px 5px 15px;
}

/* Black background text box */

#PDLStickyFooter .black_box {
    background-color: #111111;
    padding: 4px 6px 4px 6px;
    margin-bottom: 6px;
    /* CSS 3 Rounded Corners */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    /* CSS 3 Inset Shadow */
    -webkit-box-shadow: inset 0 0 5px #000000;
    -moz-box-shadow: inset 0 0 5px #000000;
    box-shadow: inset 0 0 5px #000000;
}

/* Social Icons */

#PDLStickyFooter #social {
    float: right; /* Positionning of the social icons container */
    width: auto;
    margin: 5px 15px 0px;
    padding: 0px;
    overflow: hidden;
}

    #PDLStickyFooter #social li {
        margin-right: 12px; /* 12px is the space between each one of them */
        _margin-right: 0px; /* IE6 only */
        float: left;
        width: 24px;
        padding: 0px;
        height: 32px;
        list-style: none;
    }

        #PDLStickyFooter #social li:hover {
            margin-top: -1px; /* Icons move 1px up on hover, you can remove this if you don't 

like */
        }

/* Tooltips for social icons */

a.PDLtooltip:hover {
    text-decoration: none;
}
/* The "span" defines the text appearing on mouse hover, these are basic stylings */
a.PDLtooltip span {
    display: none;
    padding: 5px;
    bottom: 44px;
    position: relative;
    width: 55px;
    text-align: center;
    /* CSS3 Rounded Corners */
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    opacity: 100;
}

a.PDLtooltip:hover span {
    display: block;
    position: absolute;
    border: 1px solid #333333;
    background: #181818;
    color: #dddddd;
    font-size: 12px;
    margin-left: -20px;
}



/*  _______________________________________

	02 PDLStickyFooter - DROP DOWN MENU (DROP UP)
    _______________________________________  */



#foooter_menu {
    margin: 0;
    padding: 0;
    width: auto;
}

    #foooter_menu li {
        list-style: none;
        float: left;
        font-size: 12px;
        padding: 12px 14px 14px 14px;
        border-right: 1px solid #111111;
        /*border-left: 1px solid #444444;*/
        background: #161616;
        /* CSS3 Stylings - Creates the gradient background */
        background: -moz-linear-gradient(top, #222222, #111111);
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#222222), to(#111111));
    }

        #foooter_menu li:hover {
            background: #313131;
            /* CSS3 Stylings - Creates the gradient background */
            background: -moz-linear-gradient(top, #313131, #3E3E3E);
            background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#313131), to(#3E3E3E));
        }

        #foooter_menu li a {
            display: block;
            color: #cccccc;
            text-decoration: none;
        }

            #foooter_menu li a:hover {
                color: #ffffff;
            }

    #foooter_menu .imgmenu { /* Used for the home item, text is here hidden and replaced by an image */
        padding: 5px 8px 0px 14px;
        border: none;
        background: none;
    }

        #foooter_menu .imgmenu a { /* Used for the home item, text is here hidden and replaced by an image */
            /*background: url("http://psm.blob.core.windows.net/psmdata/Images/PDLCertified.png") top left no-repeat;*/
            height: 28px;
            width: 84px;
        }

    #foooter_menu li.imgmenu:hover {
        background: none;
    }

    #foooter_menu li.imgmenu a:hover {
        /*background: url("http://psm.blob.core.windows.net/psmdata/Images/PDLCertified.png") top left no-repeat;*/
    }

    /* Drop Up */

    /* You may have heard about drop down menus, the principle is here the same except that
   the content is going up instead of down */

    #foooter_menu li ul.dropup {
        display: none;
        width: 10em; /* Width for Opera */
    }

    #foooter_menu li:hover ul.dropup {
        display: block;
        position: absolute;
        margin: 0 0 0 -16px;
        bottom: 34px; /* Distance to the bottom of the browser */
        background-color: #222222;
        border: 1px solid #111111;
        border-bottom: none;
        /* CSS3 Stylings - Rounded Corners */
        -moz-border-radius: 7px 7px 0px 0px;
        -webkit-border-radius: 7px 7px 0px 0px;
        border-radius: 7px 7px 0px 0px;
        z-index: 99999999;
    }

    #foooter_menu li:hover li { /* Drop up default lists */
        float: none;
        background: none;
        border: none;
        border-bottom: 1px solid #161616;
        padding: 12px 10px 12px 10px;
    }

    #foooter_menu li:hover a {
        color: #aaaaaa;
    }

        #foooter_menu li:hover a:hover {
            color: #eeeeee;
        }

    #foooter_menu li:hover p {
        margin: 6px 0;
    }

    /* Right Panel */

    #foooter_menu .right { /* Use the right class to push the content to the right */
        float: right;
        right: 0px;
        margin-right: 2px;
    }



/*  _______________________________________

	03 FOOTER - COLUMNS CONTENT
    _______________________________________  */



/* Following the principles of the 960 grid, we define here 3 containers
   which can contain from 1 to 3 columns */

#PDLStickyFooter .dropdown_1column,
#PDLStickyFooter .dropdown_2columns,
#PDLStickyFooter .dropdown_3columns {
    margin: 4px auto;
    position: absolute;
    padding: 10px 5px 10px 5px;
    display: none;
    text-align: left;
}

/* Drop Downs Sizes */

#PDLStickyFooter .dropdown_1column {
    width: 140px;
}

#PDLStickyFooter .dropdown_2columns {
    width: 280px;
}

#PDLStickyFooter .dropdown_3columns {
    width: 500px;
}

/* Showing Drop Down on Mouse Hover - Left aligned */

#foooter_menu li:hover .dropdown_1column,
#foooter_menu li:hover .dropdown_2columns,
#foooter_menu li:hover .dropdown_3columns {
    display: block;
    position: absolute;
    margin: 0 0 0 -16px;
    bottom: 0px;
    background-color: #222222;
    border: 1px solid #111111;
    /* CSS3 Stylings - Rounded Corners */
    -moz-border-radius: 7px 7px 0px 0px;
    -webkit-border-radius: 7px 7px 0px 0px;
    border-radius: 7px 7px 0px 0px;
    z-index: 99999999;
}

/* Columns sizes, they have to be placed within a dropdown_columns DIV */

#PDLStickyFooter .col_1,
#PDLStickyFooter .col_2,
#PDLStickyFooter .col_3 {
    display: inline;
    float: left;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
}

#PDLStickyFooter .col_1 {
    width: 500px;
}

#PDLStickyFooter .col_2 {
    width: 270px;
}

#PDLStickyFooter .col_3 {
    width: 410px;
}

/* Lists stylings */

#foooter_menu li ul.simple { /* Reset stylings for other lists inside columns */
    margin-left: 5px;
    text-align: center;
}

    #foooter_menu li ul.simple li {
        border: none;
        padding: 0px;
        width: 120px;
        line-height: 24px;
        margin-left: 5px;
    }





#PSMLMOverlay {
    /*visibility: hidden;*/
    display: none;
    /*position: absolute;*/
    position: fixed;
    /*left: 0px;
    top: 0px;*/
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 999999;
    top: 50%;
    left: 50%;
    margin-left: -325px;
    margin-top: -325px;
}

    #PSMLMOverlay div#mainContent {
        width: 650px;
        /*margin: 100px auto;*/
        background-color: #000;
        border: 1px solid #536987;
        padding: 5px;
        text-align: right;
        -moz-box-shadow: 10px 10px 5px #888;
        -webkit-box-shadow: 10px 10px 5px #888;
        box-shadow: 10px 10px 5px #888;
        -moz-border-radius: 15px;
        border-radius: 15px;
        padding-bottom: 30px;
    }

    #PSMLMOverlay div#bottomContent {
        width: 630px;
        padding-left: 10px;
        padding-right: 10px;
    }

input[type="text"] {
    font-size: 12px;
}

#PDLButton {
    display: none;
    /*visibility: hidden;*/
    float: left;
    position: fixed;
    /*bottom: 30px;*/
    /*Old 7/31/14 removed to make the PopUp from Footer show on top... z-index: 9999998;*/
    z-index: 999998;
    /*left: 25px;*/
}

#PDLButtonClose {
    display: none;
    /*visibility: hidden;*/
    position: fixed;
    bottom: 30px;
    z-index: 999998;
    color: white;
    width: 100%;
    background-color: black;
    left: 0px;
    right: 0px;
}

#PDLDisablingDiv {
    /* Display it on the layer with index 1001.
       Make sure this is the highest z-index value
       used by layers on that page */
    z-index: 999998;
    /* make it cover the whole screen */
    position: absolute;
    top: 0;
    left: 0;
    height: 1000%;
}
