﻿@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot');
    src: url('../fonts/icomoon.eot?#iefix') format('embedded-opentype'), url('../fonts/icomoon.woff') format('woff'), url('../fonts/icomoon.ttf') format('truetype'), url('../fonts/icomoon.svg#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Common styles of menus */

.dl-menuwrapper {
    /* width: 100%; */
    max-width: 300px;
    float: left;
    position: relative;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
    -webkit-perspective-origin: 50% 200%;
    -moz-perspective-origin: 50% 200%;
    perspective-origin: 50% 200%;
    z-index: 100;
}


    .dl-menuwrapper > a {
        padding-right: 16px;
    }

        .dl-menuwrapper > a.menu {
            background: url(../images/icn-menu-caron.gif) no-repeat center right;
        }

            .dl-menuwrapper > a.menu:hover {
                background: url(../images/icn-menu-caron-hover.gif) no-repeat center right;
            }

        .dl-menuwrapper > a.dl-active {
            background: url(../images/icn-menu-caron-active.gif) no-repeat center right;
        }




    .dl-menuwrapper:first-child {
        /*margin-right: 100px;*/
    }



    .dl-menuwrapper > ul {
        background: #fff;
        -moz-box-shadow: 0 -2px 20px 2px #dedede;
        -webkit-box-shadow: 0 -2px 20px 2px #dedede;
        box-shadow: 0 -2px 20px 2px #dedede;
    }

        .dl-menuwrapper > ul:after {
            position: absolute;
            top: -10px;
            left: 105px;
            display: inline-block;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-bottom: 10px solid #fff;
            content: '';
        }

/* msw */
.lt-ie9 .dl-menuwrapper > ul:after {
    /* border-bottom: 10px solid #dedede; */

    border-bottom: 0px solid #dedede;
}

.dl-menuwrapper button:after {
    content: '';
    position: absolute;
    width: 68%;
    height: 5px;
    background: #fff;
    top: 10px;
    left: 16%;
    box-shadow: 0 10px 0 #fff, 0 20px 0 #fff;
}

.dl-menuwrapper ul {
    padding: 0;
    list-style: none;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.dl-menuwrapper li {
    position: relative;
    filter: inherit;
}

    .dl-menuwrapper li a {
        display: block;
        position: relative;
        padding: 8px 10px;
        font-size: 14px;
        line-height: 20px;
        font-weight: 300;
        color: #ff8400;
        outline: none;
        text-transform: none;
    }

.no-touch .dl-menuwrapper li a:hover {
    background: #ff8400;
    color: #fff;
}

.dl-menuwrapper li.dl-back > a {
    padding-left: 30px;
    color: #747474;
}

/*
.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child):after {
	position: absolute;
	top: 0;
	line-height: 37px;
	font-family: 'icomoon';
	speak: none;
	-webkit-font-smoothing: antialiased;
	content: "\e000";
}*/

.dl-menuwrapper li > a:not(:only-child) {
    background: url(../images/arrow-right-orange.png) no-repeat 92% center;
}



.dl-menuwrapper li > a:hover:not(:only-child) {
    background: #ff8400 url(../images/arrow-right-orange-active.png) no-repeat 92% center;
}

.lt-ie9 .dl-menuwrapper li a:hover {
    background: #ff8400 url(../images/arrow-right-orange-active.png) no-repeat 92% center;
}

.dl-menuwrapper li.dl-back a {
    background: url(../images/arrow-left-grey.png) no-repeat 10px center !important;
    padding: 0 0 0 30px;
}

    .dl-menuwrapper li.dl-back a:hover {
        background: url(../images/arrow-left-grey.png) no-repeat 10px center !important;
        text-decoration: underline;
        color: #747474;
    }

.dl-menuwrapper li > a:after {
    right: 10px;
    color: rgba(0,0,0,0.15);
}

.dl-menuwrapper .dl-menu {
    margin: 12px 0 0 0;
    padding: 10px 0;
    position: absolute;
    left: -61%;
    /* left:41px; */
    width: 250px;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}


/* HIDE FOR IE 7/8 UNTIL FIXED */
.lt-ie9 .dl-menuwrapper .dl-menu {
    display: none;
    background-color: #efefef;
    border: 1px solid #dedede;
}


.dl-menuwrapper .dl-menu.dl-menu-toggle {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.dl-menuwrapper .dl-menu.dl-menuopen {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}

.lt-ie9 .dl-menuwrapper .dl-menu.dl-menuopen {
    display: block;
}

/* Hide the inner submenus */
.dl-menuwrapper li .dl-submenu {
    display: none;
    margin: 0;
    padding: 0;
}

/* 
When a submenu is openend, we will hide all li siblings.
For that we give a class to the parent menu called "dl-subview".
We also hide the submenu link. 
The opened submenu will get the class "dl-subviewopen".
All this is done for any sub-level being entered.
*/
.dl-menu.dl-subview li,
.dl-menu.dl-subview li.dl-subviewopen > a,
.dl-menu.dl-subview li.dl-subview > a {
    display: none;
}

    .dl-menu.dl-subview li.dl-subview,
    .dl-menu.dl-subview li.dl-subview .dl-submenu,
    .dl-menu.dl-subview li.dl-subviewopen,
    .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
    .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
        display: block;
    }

/* Dynamically added submenu outside of the menu context */
.dl-menuwrapper > .dl-submenu {
    padding: 10px 0;
    position: absolute;
    width: 250px;
    top: 34px;
    left: -61%;
    margin: 0;
}

/* Animation classes for moving out and in */

.dl-menu.dl-animate-out-1 {
    -webkit-animation: MenuAnimOut1 0.4s;
    -moz-animation: MenuAnimOut1 0.4s;
    animation: MenuAnimOut1 0.4s;
}

.dl-menu.dl-animate-out-2 {
    -webkit-animation: MenuAnimOut2 0.3s ease-in-out;
    -moz-animation: MenuAnimOut2 0.3s ease-in-out;
    animation: MenuAnimOut2 0.3s ease-in-out;
}

.dl-menu.dl-animate-out-3 {
    -webkit-animation: MenuAnimOut3 0.4s ease;
    -moz-animation: MenuAnimOut3 0.4s ease;
    animation: MenuAnimOut3 0.4s ease;
}

.dl-menu.dl-animate-out-4 {
    -webkit-animation: MenuAnimOut4 0.4s ease;
    -moz-animation: MenuAnimOut4 0.4s ease;
    animation: MenuAnimOut4 0.4s ease;
}

.dl-menu.dl-animate-out-5 {
    -webkit-animation: MenuAnimOut5 0.4s ease;
    -moz-animation: MenuAnimOut5 0.4s ease;
    animation: MenuAnimOut5 0.4s ease;
}

@-webkit-keyframes MenuAnimOut1 {
    50% {
        -webkit-transform: translateZ(-250px) rotateY(30deg);
    }

    75% {
        -webkit-transform: translateZ(-372.5px) rotateY(15deg);
        opacity: .5;
    }

    100% {
        -webkit-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut2 {
    100% {
        -webkit-transform: translateX(-100%);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut3 {
    100% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut4 {
    100% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }
}

@-webkit-keyframes MenuAnimOut5 {
    100% {
        -webkit-transform: translateY(40%);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut1 {
    50% {
        -moz-transform: translateZ(-250px) rotateY(30deg);
    }

    75% {
        -moz-transform: translateZ(-372.5px) rotateY(15deg);
        opacity: .5;
    }

    100% {
        -moz-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut2 {
    100% {
        -moz-transform: translateX(-100%);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut3 {
    100% {
        -moz-transform: translateZ(300px);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut4 {
    100% {
        -moz-transform: translateZ(-300px);
        opacity: 0;
    }
}

@-moz-keyframes MenuAnimOut5 {
    100% {
        -moz-transform: translateY(40%);
        opacity: 0;
    }
}

@keyframes MenuAnimOut1 {
    50% {
        transform: translateZ(-250px) rotateY(30deg);
    }

    75% {
        transform: translateZ(-372.5px) rotateY(15deg);
        opacity: .5;
    }

    100% {
        transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }
}

@keyframes MenuAnimOut2 {
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes MenuAnimOut3 {
    100% {
        transform: translateZ(300px);
        opacity: 0;
    }
}

@keyframes MenuAnimOut4 {
    100% {
        transform: translateZ(-300px);
        opacity: 0;
    }
}

@keyframes MenuAnimOut5 {
    100% {
        transform: translateY(40%);
        opacity: 0;
    }
}

.dl-menu.dl-animate-in-1 {
    -webkit-animation: MenuAnimIn1 0.3s;
    -moz-animation: MenuAnimIn1 0.3s;
    animation: MenuAnimIn1 0.3s;
}

.dl-menu.dl-animate-in-2 {
    -webkit-animation: MenuAnimIn2 0.3s ease-in-out;
    -moz-animation: MenuAnimIn2 0.3s ease-in-out;
    animation: MenuAnimIn2 0.3s ease-in-out;
}

.dl-menu.dl-animate-in-3 {
    -webkit-animation: MenuAnimIn3 0.4s ease;
    -moz-animation: MenuAnimIn3 0.4s ease;
    animation: MenuAnimIn3 0.4s ease;
}

.dl-menu.dl-animate-in-4 {
    -webkit-animation: MenuAnimIn4 0.4s ease;
    -moz-animation: MenuAnimIn4 0.4s ease;
    animation: MenuAnimIn4 0.4s ease;
}

.dl-menu.dl-animate-in-5 {
    -webkit-animation: MenuAnimIn5 0.4s ease;
    -moz-animation: MenuAnimIn5 0.4s ease;
    animation: MenuAnimIn5 0.4s ease;
}

@-webkit-keyframes MenuAnimIn1 {
    0% {
        -webkit-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }

    20% {
        -webkit-transform: translateZ(-250px) rotateY(30deg);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: translateZ(0px) rotateY(0deg);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn2 {
    0% {
        -webkit-transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn3 {
    0% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn4 {
    0% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
}

@-webkit-keyframes MenuAnimIn5 {
    0% {
        -webkit-transform: translateY(40%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn1 {
    0% {
        -moz-transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }

    20% {
        -moz-transform: translateZ(-250px) rotateY(30deg);
        opacity: 0.5;
    }

    100% {
        -moz-transform: translateZ(0px) rotateY(0deg);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn2 {
    0% {
        -moz-transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        -moz-transform: translateX(0px);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn3 {
    0% {
        -moz-transform: translateZ(300px);
        opacity: 0;
    }

    100% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn4 {
    0% {
        -moz-transform: translateZ(-300px);
        opacity: 0;
    }

    100% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
}

@-moz-keyframes MenuAnimIn5 {
    0% {
        -moz-transform: translateY(40%);
        opacity: 0;
    }

    100% {
        -moz-transform: translateY(0);
        opacity: 1;
    }
}

@keyframes MenuAnimIn1 {
    0% {
        transform: translateZ(-500px) rotateY(0deg);
        opacity: 0;
    }

    20% {
        transform: translateZ(-250px) rotateY(30deg);
        opacity: 0.5;
    }

    100% {
        transform: translateZ(0px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes MenuAnimIn2 {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes MenuAnimIn3 {
    0% {
        transform: translateZ(300px);
        opacity: 0;
    }

    100% {
        transform: translateZ(0px);
        opacity: 1;
    }
}

@keyframes MenuAnimIn4 {
    0% {
        transform: translateZ(-300px);
        opacity: 0;
    }

    100% {
        transform: translateZ(0px);
        opacity: 1;
    }
}

@keyframes MenuAnimIn5 {
    0% {
        transform: translateY(40%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
    -webkit-animation: SubMenuAnimIn1 0.4s ease;
    -moz-animation: SubMenuAnimIn1 0.4s ease;
    animation: SubMenuAnimIn1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-2 {
    -webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
    -moz-animation: SubMenuAnimIn2 0.3s ease-in-out;
    animation: SubMenuAnimIn2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-3 {
    -webkit-animation: SubMenuAnimIn3 0.4s ease;
    -moz-animation: SubMenuAnimIn3 0.4s ease;
    animation: SubMenuAnimIn3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-4 {
    -webkit-animation: SubMenuAnimIn4 0.4s ease;
    -moz-animation: SubMenuAnimIn4 0.4s ease;
    animation: SubMenuAnimIn4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-5 {
    -webkit-animation: SubMenuAnimIn5 0.4s ease;
    -moz-animation: SubMenuAnimIn5 0.4s ease;
    animation: SubMenuAnimIn5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimIn1 {
    0% {
        -webkit-transform: translateX(50%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn2 {
    0% {
        -webkit-transform: translateX(100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn3 {
    0% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn4 {
    0% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }
}

@-webkit-keyframes SubMenuAnimIn5 {
    0% {
        -webkit-transform: translateZ(-200px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn1 {
    0% {
        -moz-transform: translateX(50%);
        opacity: 0;
    }

    100% {
        -moz-transform: translateX(0px);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn2 {
    0% {
        -moz-transform: translateX(100%);
        opacity: 0;
    }

    100% {
        -moz-transform: translateX(0px);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn3 {
    0% {
        -moz-transform: translateZ(-300px);
        opacity: 0;
    }

    100% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn4 {
    0% {
        -moz-transform: translateZ(300px);
        opacity: 0;
    }

    100% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }
}

@-moz-keyframes SubMenuAnimIn5 {
    0% {
        -moz-transform: translateZ(-200px);
        opacity: 0;
    }

    100% {
        -moz-transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn1 {
    0% {
        transform: translateX(50%);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn2 {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn3 {
    0% {
        transform: translateZ(-300px);
        opacity: 0;
    }

    100% {
        transform: translateZ(0px);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn4 {
    0% {
        transform: translateZ(300px);
        opacity: 0;
    }

    100% {
        transform: translateZ(0px);
        opacity: 1;
    }
}

@keyframes SubMenuAnimIn5 {
    0% {
        transform: translateZ(-200px);
        opacity: 0;
    }

    100% {
        transform: translateZ(0);
        opacity: 1;
    }
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
    -webkit-animation: SubMenuAnimOut1 0.4s ease;
    -moz-animation: SubMenuAnimOut1 0.4s ease;
    animation: SubMenuAnimOut1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-2 {
    -webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
    -moz-animation: SubMenuAnimOut2 0.3s ease-in-out;
    animation: SubMenuAnimOut2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-3 {
    -webkit-animation: SubMenuAnimOut3 0.4s ease;
    -moz-animation: SubMenuAnimOut3 0.4s ease;
    animation: SubMenuAnimOut3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-4 {
    -webkit-animation: SubMenuAnimOut4 0.4s ease;
    -moz-animation: SubMenuAnimOut4 0.4s ease;
    animation: SubMenuAnimOut4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-5 {
    -webkit-animation: SubMenuAnimOut5 0.4s ease;
    -moz-animation: SubMenuAnimOut5 0.4s ease;
    animation: SubMenuAnimOut5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimOut1 {
    0% {
        -webkit-transform: translateX(0%);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(50%);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut2 {
    0% {
        -webkit-transform: translateX(0%);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut3 {
    0% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(-300px);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut4 {
    0% {
        -webkit-transform: translateZ(0px);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(300px);
        opacity: 0;
    }
}

@-webkit-keyframes SubMenuAnimOut5 {
    0% {
        -webkit-transform: translateZ(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(-200px);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut1 {
    0% {
        -moz-transform: translateX(0%);
        opacity: 1;
    }

    100% {
        -moz-transform: translateX(50%);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut2 {
    0% {
        -moz-transform: translateX(0%);
        opacity: 1;
    }

    100% {
        -moz-transform: translateX(100%);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut3 {
    0% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }

    100% {
        -moz-transform: translateZ(-300px);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut4 {
    0% {
        -moz-transform: translateZ(0px);
        opacity: 1;
    }

    100% {
        -moz-transform: translateZ(300px);
        opacity: 0;
    }
}

@-moz-keyframes SubMenuAnimOut5 {
    0% {
        -moz-transform: translateZ(0);
        opacity: 1;
    }

    100% {
        -moz-transform: translateZ(-200px);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut1 {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }

    100% {
        transform: translateX(50%);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut2 {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut3 {
    0% {
        transform: translateZ(0px);
        opacity: 1;
    }

    100% {
        transform: translateZ(-300px);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut4 {
    0% {
        transform: translateZ(0px);
        opacity: 1;
    }

    100% {
        transform: translateZ(300px);
        opacity: 0;
    }
}

@keyframes SubMenuAnimOut5 {
    0% {
        transform: translateZ(0);
        opacity: 1;
    }

    100% {
        transform: translateZ(-200px);
        opacity: 0;
    }
}

/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu {
    position: relative;
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
}

.no-js .dl-menuwrapper li .dl-submenu {
    display: block;
}

.no-js .dl-menuwrapper li.dl-back {
    display: none;
}

.no-js .dl-menuwrapper li > a:not(:only-child) {
    background: rgba(0,0,0,0.1);
}

    .no-js .dl-menuwrapper li > a:not(:only-child):after {
        content: '';
    }

/* Colors for demos */

/* Demo 1 */
/*
.demo-1 .dl-menuwrapper button {
	background: #c62860;
}

.demo-1 .dl-menuwrapper button:hover,
.demo-1 .dl-menuwrapper button.dl-active,
.demo-1 .dl-menuwrapper ul {
	background: #9e1847;
}
*/
/* Demo 2 */
.demo-2 .dl-menuwrapper button {
    background: #e86814;
}

    .demo-2 .dl-menuwrapper button:hover,
    .demo-2 .dl-menuwrapper button.dl-active,
    .demo-2 .dl-menuwrapper ul {
        background: #D35400;
    }

/* Demo 3 */
.demo-3 .dl-menuwrapper button {
    background: #08cbc4;
}

    .demo-3 .dl-menuwrapper button:hover,
    .demo-3 .dl-menuwrapper button.dl-active,
    .demo-3 .dl-menuwrapper ul {
        background: #00b4ae;
    }

/* Demo 4 */
.demo-4 .dl-menuwrapper button {
    background: #90b912;
}

    .demo-4 .dl-menuwrapper button:hover,
    .demo-4 .dl-menuwrapper button.dl-active,
    .demo-4 .dl-menuwrapper ul {
        background: #79a002;
    }

/* Demo 5 */
.demo-5 .dl-menuwrapper button {
    background: #744783;
}

    .demo-5 .dl-menuwrapper button:hover,
    .demo-5 .dl-menuwrapper button.dl-active,
    .demo-5 .dl-menuwrapper ul {
        background: #643771;
    }

/* msw added for ie8 implementation */

.lt-ie9 .dl-menuwrapper .dl-menu {
    padding-top: 0px;
    padding-bottom: 0px;
    border-top: 0px !important;
    border-left: 0px !important;
    border-right: 0px !important;
    border-bottom: 1px solid #dedede !important;
    margin-top: -5px;
}

    .lt-ie9 .dl-menuwrapper .dl-menu li {
        padding-top: 0px;
        border-left: 1px solid #dedede;
        border-right: 1px solid #dedede;
    }

.lt-ie9 .dl-submenu {
    padding-top: 0px;
    padding-bottom: 0px;
    border: 0px !important;
    border-top: 0px !important;
    border-left: 0px !important;
    border-right: 0px !important;
    border-bottom: 1px solid #dedede !important;
}

    .lt-ie9 .dl-submenu li {
        border-left: 1px solid #dedede;
        border-right: 1px solid #dedede;
    }

    .lt-ie9 .dl-submenu .dl-ie8-li {
        padding-top: 10px;
    }


.lt-ie9 .dl-menuwrapper .dl-menu {
    border-bottom: 1px solid #dedede;
}


.dl-menu li, .dl-menu, .dl-menu a {
    filter: inherit;
}

.dl-sub1 {
    left: 175px !important;
}

.dl-sub2 {
    left: 425px !important;
}

.dl-menu-ie8 {
    display: none;
    opacity: 0;
    background-color: rgb(239,239,239) !important;
    border: 1px solid #dedede;
    position: absolute;
    width: 250px !important;
    list-style: none;
    margin-top: -15px !important;
}

    .dl-menu-ie8 ul {
        display: none;
    }


    .dl-menu-ie8 li {
        background-color: rgb(239,239,239);
    }

.ie8-triangle {
    background-color: white !important;
    height: 20px;
    text-align: center;
    /*	border-top: 1px solid #dedede; */
    border-left: 0px !important;
    border-right: 0px !important;
}

.dl-back a {
    filter: inherit;
}

@charset "utf-8";
/* CSS Document */

/*------------------------------------------------------------------
[Global Stylesheet]

Project:				Celanese
Version:				1.0
Last change:			05/03/2012
Project Implementer:	PWC
Project Development:    Techaspect
-------------------------------------------------------------------*/


/*	------------- STANDARD HTML TAG	------------- */

/* RESET */

html {
    overflow-x: auto;
    overflow-y: auto;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset, img {
    border: 0;
}

address, caption, cite, code, dfn, em, th, var {
    font-style: normal;
    font-weight: normal;
}

li {
    list-style: none;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before, q:after {
    content: '';
}

abbr, acronym {
    border: 0;
    font-variant: normal;
}

sup {
}

sub {
    vertical-align: text-bottom;
}

input:focus {
    color: #000 !important;
}
/*label { display: block; }*/
input, textarea, select {
    font-size: inherit;
    font-weight: inherit;
}

input, textarea, select {
    *font-size: 100%;
}

legend, select {
    color: #464646;
}

del, ins {
    text-decoration: none;
}

ul, dl {
    list-style: none;
}

a:active, a:focus {
    outline: 0;
}

em {
    font-style: italic;
}

legend {
    word-wrap: normal;
    white-space: normal;
}

input[type=submit] {
    cursor: pointer;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

/* DEFINITION */
/* Test modification */

body {
    font: 95%/1 Arial, Helvetica, sans-serif;
    color: #808080;
    margin: 0;
    padding: 0;
}

h1 {
    font: 48pt/48pt Arial, sans-serif;
    color: #f48158;
}

h2 {
    font: 30pt/30pt Arial, sans-serif;
    color: #4c4c4c;
}

h3 {
    font: 24pt/24pt Arial, sans-serif;
}

h4 {
    font: 18pt/18pt Arial, sans-serif;
}

h5 {
    font: 16pt/16pt Arial, sans-serif;
    color: #464646;
}

h6 {
    font: 12pt/12pt Arial, sans-serif;
    color: #464646;
}

a {
    text-decoration: none;
    color: #666666;
}
/* moving to bottom  a:hover{ text-decoration:underline;}*/
hr {
    border: none;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #fff;
    margin: 20px 0;
}

/*	----------- CUSTOM CLASSES ----------- 	*/

.pageTitle {
    margin-bottom: 10px;
}

.inner-page-content p {
    margin-bottom: 10px;
}

.clear {
    clear: both;
}

.float-left {
    float: left
}

.float-right {
    float: right
}

.align-center {
    text-align: center;
}

.all-caps {
    text-transform: uppercase
}

.bold {
    font-weight: bold;
}

.medium-text {
    font-size: 1.3em
}

.border {
    border: 1px solid #eee;
}

.no-margin {
    margin: 0 !important;
}

.no-margin-left {
    margin-left: 0 !important;
}

html .no-border {
    border: none !important;
}

html .no-border-top {
    border-top: none !important;
}

html .no-border-right {
    border-right: none !important;
}

html .no-border-bottom {
    border-bottom: none !important;
}

html .no-border-left {
    border-left: none !important;
}

html .no-padding {
    padding: 0
}

html .no-padding-top {
    padding-top: 0 !important;
}

html .no-padding-right {
    padding-right: 0 !important;
}

html .no-padding-bottom {
    padding-bottom: 0 !important;
}

html .no-padding-left {
    padding-left: 0 !important;
}

.black-text {
    color: #000;
}

.hidden {
    display: none;
    visibility: hidden;
}

.color-gray {
    color: #666666 !important;
}

.textInput {
    background: url("../images/inputBG.jpg") repeat-x scroll center bottom #F5F5F5;
    border: 1px solid #CCCCCC;
    font-family: 'Arial';
    font-size: 12px;
    height: 12px;
    margin-bottom: 10px;
    padding: 6px 10px 5px 9px;
    width: 390px;
}

.textareaInput {
    border: 1px solid #cccccc;
    width: 542px;
    background: #f5f5f5 url(../images/inputBG.jpg) repeat-x bottom;
    height: 18px;
    margin-bottom: 10px;
    font-size: 16px;
    font-family: 'Arial';
    padding: 6px 3px 5px 10px;
    min-height: 70px;
    outline: none;
}

.textareaLabel {
    float: left;
}

.telephoneIcon, .mailIcon {
    margin: 10px 0;
    display: block;
    background: url(../images/phone_email_icon.png) no-repeat top left;
    padding-left: 30px;
    line-height: 26px;
}

.mailIcon {
    background-position: left bottom;
    color: #0099cc;
    text-decoration: underline;
}

    .mailIcon:hover {
        text-decoration: none;
    }

.mailIconRed, .phoneIconRed {
    margin: 6px 0;
    display: block;
    padding-left: 28px;
    line-height: 22px;
}

.mailIconRed {
    background: url("../images/celanese_phone_email_icon.png") no-repeat scroll left -42px transparent;
    padding-left: 28px;
    color: #0099cc;
    text-decoration: underline;
}

    .mailIconRed:hover {
        text-decoration: none;
    }

.phoneIconRed {
    background: url(../images/celanese_phone_email_icon.png) no-repeat scroll left top transparent;
    padding-left: 28px;
}

/*** Custom Fonts ***/

@font-face {
    font-family: 'CodaRegular';
    src: url('../fonts/coda-regular-webfont.eot');
    src: url('../fonts/coda-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/coda-regular-webfont.woff') format('woff'), url('../fonts/coda-regular-webfont.ttf') format('truetype'), url('../fonts/coda-regular-webfont.svg#CodaRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ArchitectsDaughterRegular';
    src: url('../fonts/ArchitectsDaughter-webfont.eot');
    src: url('../fonts/ArchitectsDaughter-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/ArchitectsDaughter-webfont.woff') format('woff'), url('../fonts/ArchitectsDaughter-webfont.ttf') format('truetype'), url('../fonts/ArchitectsDaughter-webfont.svg#ArchitectsDaughterRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadProSemibold';
    src: url('../fonts/myriadprosemi-ori-webfont.eot');
    src: url('../fonts/myriadprosemi-ori-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/myriadprosemi-ori-webfont.woff') format('woff'), url('../fonts/myriadprosemi-ori-webfont.ttf') format('truetype'), url('../fonts/myriadprosemi-ori-webfont.svg#MyriadProSemibold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DakotaRegular';
    src: url('../fonts/dakota_regular-webfont.eot');
    src: url('../fonts/dakota_regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/dakota_regular-webfont.woff') format('woff'), url('../fonts/dakota_regular-webfont.ttf') format('truetype'), url('../fonts/dakota_regular-webfont.svg#DakotaRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CabinRegular';
    src: url('../fonts/cabin-regular-webfont.eot');
    src: url('../fonts/cabin-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/cabin-regular-webfont.woff') format('woff'), url('../fonts/cabin-regular-webfont.ttf') format('truetype'), url('../fonts/cabin-regular-webfont.svg#CabinRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}


/**** Page Elements ****/

body {
    /*durga background:#d3dded;*/
}

.pageContainer {
    /*margin: 40px auto 0;*/
    margin: 0 auto;
    width: 1024px;
    background: #fff;
    box-shadow: 0 0 7px 7px #939aa5;
    behavior: url(/PIE.htc);
    overflow: hidden;
    position: relative;
}
/*.internalPage{font-family:'CabinRegular';}*/
header {
    /*durga background-color:#FFFFFF;
	height:84px;
	width:100%;
	top:0;
	z-index:999;*/
}

.logo {
    /*background:url(../images/logo.png) no-repeat;*/
    width: 170px;
    height: 40px;
    /*text-indent:-99999px;*/
    display: block;
    margin: -5px 0 0 25px; /* Old one - margin:35px 0 0 35px; */
    float: left;
    line-height: 30pt;
}

    .logo a {
        display: block;
    }

nav {
    float: right;
    margin-top: 6px; /*Old - margin-top:50px;*/
}

    nav li {
        float: left;
        position: relative;
    }

        nav li a {
            color: #000;
            display: block;
            font-size: 18px;
            padding: 0px 25px;
            display: block;
            text-shadow: 0 1px 1px #8d807c;
        }

        nav li .hover {
            background: url(../images/nav-hover-bg.jpg) no-repeat center bottom;
            height: 18px;
            margin-left: 40%;
            position: absolute;
            top: 66px;
            width: 30px;
            display: none;
        }

        nav li a.active {
            /*background:url(../images/nav-hover-bg.jpg) no-repeat center bottom;*/
        }

        nav li a:hover, nav li a.active {
            color: #FF622A;
        }

.searchWrapper {
    float: right;
    width: 195px;
    display: block;
    margin: 10px 35px 0 50px; /*old - margin:0px 35px 0 50px;*/
}

    .searchWrapper .search {
        float: right;
    }

    .searchWrapper .form-input {
        border: none;
        height: 15px;
        width: 145px;
        float: left;
        padding: 4px 0 4px 10px;
        font-size: 12px;
        color: #7E7E7E;
        background: url("../images/search_bg.png") no-repeat scroll left top transparent;
    }

    .searchWrapper .form-submit {
        background: url("../images/search_bg.png") no-repeat scroll right top transparent;
        border: none;
        height: 23px;
        float: left;
        width: 27px;
    }

    .searchWrapper .onFocus .form-input {
        background: url("../images/search_bg.png") no-repeat scroll left bottom transparent;
        height: 15px;
        outline: none;
    }

    .searchWrapper .onFocus .form-submit {
        background: url("../images/search_bg.png") no-repeat scroll right bottom transparent;
    }

.register_regionWrapper {
    clear: both;
    height: 30px;
    float: left;
    text-align: right;
    padding-right: 7px;
    width: 1017px;
}

.worldwideLocations {
    float: right;
    /*margin-bottom:20px; Removed by Manohar*/
}

    .worldwideLocations ul li {
        padding: 0 0 0 5px;
        height: 30px;
    }

        .worldwideLocations ul li a {
            /*durga font-size:11px;*/
            color: #ff622a;
            text-decoration: underline;
            display: block;
            height: 14px;
            padding: 9px 10px 10px 7px;
        }

            .worldwideLocations ul li a span {
                padding-right: 15px;
                background: url(../images/literature_arrow.png) no-repeat right -37px;
            }

        .worldwideLocations ul li:hover {
            z-index: 999999;
            position: relative;
            background: url(../images/region_selector_left.png) no-repeat left;
        }

            .worldwideLocations ul li:hover a {
                background: url(../images/region_selector_right.png) no-repeat right;
                z-index: 6;
            }

    .worldwideLocations ul ul {
        display: none;
    }

    .worldwideLocations ul li:hover ul {
        display: block;
        position: absolute;
        padding-bottom: 8px;
        background: url(../images/region_selector_bottom.png) no-repeat bottom;
        width: 240px;
        position: absolute;
        right: 0;
        margin-top: -3px;
        z-index: -1;
    }

        .worldwideLocations ul li:hover ul li {
            background: url(../images/region_selector_middle.png) repeat-y;
            height: auto;
            padding: 0 3px;
        }

            .worldwideLocations ul li:hover ul li.firstContent {
                /*background:url(../images/region_selector_top.png) no-repeat top;*/
                height: 29px;
                font-size: 11px;
                padding: 10px 10px;
                text-align: right;
                line-height: 16px;
            }

            .worldwideLocations ul li:hover ul li a {
                background: none;
                display: block;
                text-align: right;
                padding: 10px 20px !important;
                height: auto;
                color: #808080;
                text-decoration: none;
            }

                .worldwideLocations ul li:hover ul li a:hover {
                    background: #fff;
                }

.registerSignIn {
    float: right;
    margin: 0 5px;
    padding-top: 4px;
}

    .registerSignIn a {
        color: #333333;
        font-size: 11px;
        border-bottom: 1px solid #333;
        margin-left: 10px;
    }

        .registerSignIn a:hover {
            border: none;
        }
/*** Banner Stories StyleSheets */
.banner {
    /*height:536px;*/
    width: 100%;
    /*display: block;*/
    overflow: hidden;
    height: 480px;
}

/*** Banner Stories for Media on rightside StyleSheets */

.MeidaRightBanner {
    height: 480px;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid #f14000;
    background-color: #ffffff;
}

.MeidaRightBanner {
    clear: both;
}

    .MeidaRightBanner .banner-img {
        width: 350px;
        text-align: center;
        display: table-cell;
        vertical-align: middle;
    }

    .MeidaRightBanner .bannerText {
        float: left;
        margin: 100px 40px 0;
        width: 520px;
    }

        .MeidaRightBanner .bannerText .bannerHeading {
            margin-bottom: 50px;
            overflow: hidden;
        }

            .MeidaRightBanner .bannerText .bannerHeading .bannerLogo {
                float: left;
                height: 60px;
                margin-right: 30px;
                width: 150px;
            }

                .MeidaRightBanner .bannerText .bannerHeading .bannerLogo img {
                    width: 100%;
                }

            .MeidaRightBanner .bannerText .bannerHeading .bannerTitle {
                float: right;
                width: 300px;
            }

    .MeidaRightBanner .bannerTitle .bannerSlogan {
        font-size: 24px;
        font-family: 'ArchitectsDaughterRegular';
        color: #000;
        margin-bottom: 10px;
    }

    .MeidaRightBanner .bannerTitle .bannerComapny {
        color: #00a697;
        font-size: 28px;
    }

    .MeidaRightBanner .bannerDescription {
        font-size: 18px;
        color: #666666;
        line-height: 33px;
    }

        .MeidaRightBanner .bannerDescription a {
            color: #F14000;
            text-decoration: underline;
        }

            .MeidaRightBanner .bannerDescription a:hover {
                text-decoration: none;
            }

        .MeidaRightBanner .bannerDescription ul {
            margin: 10px 0;
            padding: 0 0 0 35px;
        }

            .MeidaRightBanner .bannerDescription ul li {
                list-style: disc;
                padding: 1px 0 1px 10px;
            }

/*** Banner Stories for Media on leftside StyleSheets */

.MeidaLeftBanner, .MeidaLeftBanner .banner {
    height: 480px;
    border-bottom: 1px solid #f14000;
    overflow: hidden;
    background-color: #ffffff;
}

.MeidaLeftBanner {
    clear: both;
}

    .MeidaLeftBanner .banner-img {
        width: 530px;
        text-align: left;
        display: table-cell;
        vertical-align: middle;
        float: left;
    }

    .MeidaLeftBanner .bannerText {
        float: right;
        margin: 60px 80px 0 20px;
        width: 350px;
    }

        .MeidaLeftBanner .bannerText .bannerHeading {
            overflow: hidden;
        }

            .MeidaLeftBanner .bannerText .bannerHeading .bannerTitle {
                clear: both;
                color: #e33d00;
                font-size: 28px;
            }

            .MeidaLeftBanner .bannerText .bannerHeading .bannerLogo {
                margin: 12px 0;
            }

                .MeidaLeftBanner .bannerText .bannerHeading .bannerLogo img {
                    width: 100%;
                }

    .MeidaLeftBanner .bannerDescription {
        color: #262626;
        font-size: 15px;
        line-height: 24px;
    }

        .MeidaLeftBanner .bannerDescription p {
            color: #000;
            font-size: 18px;
        }

        .MeidaLeftBanner .bannerDescription ul {
            margin: 9px 0;
            padding: 0 0 0 16px;
        }

            .MeidaLeftBanner .bannerDescription ul li {
                list-style: disc;
                padding: 1px 0 1px 10px;
            }

        .MeidaLeftBanner .bannerDescription a {
            color: #F14000;
            text-decoration: underline;
        }

            .MeidaLeftBanner .bannerDescription a:hover {
                text-decoration: none;
            }


/*** Banner Stories for Full Media StyleSheets */

.FullMeidaBanner, .FullMeidaBanner .banner {
    height: 480px;
    border-bottom: 1px solid #f14000;
}

.FullMeidaBanner {
    clear: both;
}

    .FullMeidaBanner .banner-img {
        width: 100%;
        position: absolute;
    }

    .FullMeidaBanner .bannerText {
        float: right;
        margin: 60px 80px 0 20px;
        position: relative;
        width: 350px;
        z-index: 99;
    }

        .FullMeidaBanner .bannerText .bannerHeading {
            overflow: hidden;
        }

            .FullMeidaBanner .bannerText .bannerHeading .bannerTitle {
                clear: both;
                color: #e33d00;
                font-size: 28px;
            }

            .FullMeidaBanner .bannerText .bannerHeading .bannerLogo {
                margin: 12px 0;
            }

                .FullMeidaBanner .bannerText .bannerHeading .bannerLogo img {
                }

    .FullMeidaBanner .bannerDescription {
        font-size: 14px;
        color: #262626;
        line-height: 24px;
    }

        .FullMeidaBanner .bannerDescription p {
            color: #000;
            font-size: 18px;
        }

        .FullMeidaBanner .bannerDescription ul {
            margin: 10px 0;
            padding: 0 0 0 16px;
        }

            .FullMeidaBanner .bannerDescription ul li {
                list-style: disc;
                padding: 1px 0 1px 10px;
            }

        .FullMeidaBanner .bannerDescription a {
            color: #F14000;
            text-decoration: underline;
        }





/*** Banner Stories for Full Media left Text StyleSheets */


.FullMeidaBannerLeft, .FullMeidaBannerLeft .banner {
    border-bottom: 1px solid #F14000;
    height: 480px;
}

.FullMeidaBannerLeft {
    clear: both;
}

    .FullMeidaBannerLeft .banner-img {
        width: 100%;
        position: absolute;
        left: 0;
    }

    .FullMeidaBannerLeft .bannerText {
        float: left;
        margin: 60px 20px 0 80px;
        width: 350px;
        position: relative;
        z-index: 99;
    }

        .FullMeidaBannerLeft .bannerText .bannerHeading {
            overflow: hidden;
        }

            .FullMeidaBannerLeft .bannerText .bannerHeading .bannerTitle {
                clear: both;
                color: #e33d00;
                font-size: 28px;
            }

            .FullMeidaBannerLeft .bannerText .bannerHeading .bannerLogo {
                margin: 12px 0;
            }

                .FullMeidaBannerLeft .bannerText .bannerHeading .bannerLogo img {
                    width: 100%;
                }

    .FullMeidaBannerLeft .bannerDescription {
        font-size: 14px;
        color: #262626;
        line-height: 24px;
    }

        .FullMeidaBannerLeft .bannerDescription p {
            color: #000;
            font-size: 18px;
        }

        .FullMeidaBannerLeft .bannerDescription ul {
            margin: 10px 0;
            padding: 0 0 0 18px;
        }

            .FullMeidaBannerLeft .bannerDescription ul li {
                list-style: disc;
                padding: 1px 0 1px 10px;
            }

        .FullMeidaBannerLeft .bannerDescription a {
            color: #F14000;
            text-decoration: underline;
        }

            .FullMeidaBannerLeft .bannerDescription a:hover {
                text-decoration: none;
            }

    .FullMeidaBannerLeft .bannerText {
        float: left;
    }

/*** Banner Stories for Additional Media StyleSheets */

.AdditionalMediaBanner {
    height: 480px;
    border-bottom: 1px solid #f14000;
}

    .AdditionalMediaBanner .banner-img {
        width: 400px;
        text-align: center;
        display: table-cell;
        vertical-align: middle;
    }

    .AdditionalMediaBanner .bannerText {
        float: left;
        margin: 100px 18px 0 55px;
        width: 490px;
    }

        .AdditionalMediaBanner .bannerText .bannerHeading {
            margin-bottom: 45px;
            overflow: hidden;
        }

            .AdditionalMediaBanner .bannerText .bannerHeading .bannerLogo {
                width: 200px;
                height: 90px;
                float: left;
                margin-right: 40px;
            }

                .AdditionalMediaBanner .bannerText .bannerHeading .bannerLogo img {
                    width: 100%;
                }

            .AdditionalMediaBanner .bannerText .bannerHeading .bannerTitle {
                float: left;
                color: #F14000;
                font-size: 28px;
            }

    .AdditionalMediaBanner .bannerTitle .bannerSlogan {
        font-size: 28px;
        font-family: 'ArchitectsDaughterRegular';
        color: #000;
        margin-bottom: 10px;
    }

    .AdditionalMediaBanner .bannerTitle .bannerComapny {
        color: #00a697;
        font-size: 40px;
    }

    .AdditionalMediaBanner .bannerDescription {
        font-size: 18px;
        color: #666666;
        line-height: 24px;
    }

        .AdditionalMediaBanner .bannerDescription .iconHolder {
            float: left;
        }

        .AdditionalMediaBanner .bannerDescription .description {
            width: 285px;
            line-height: 25px;
            margin: 0 0 0 25px;
            float: left;
        }

/*** Back Top Style Sheet ***/
.backTOP {
    overflow: hidden;
    padding: 22px;
    margin-bottom: 30px;
}

    .backTOP .backTop a {
        color: #666666;
        font-size: 18px;
    }
/*** Teaser Slider Style Sheet ***/
.teaserSlider {
    height: 289px;
    overflow: hidden;
    margin: 0 0 20px;
    padding: 20px 0;
}

    .teaserSlider .viewport {
        float: left;
        width: 960px;
        overflow: hidden;
        position: relative;
        min-height: 435px;
    }

        .teaserSlider .viewport ul {
            position: absolute;
            list-style: none;
        }

            .teaserSlider .viewport ul li {
                float: left;
                width: 210px;
                padding: 10px 15px;
            }

                .teaserSlider .viewport ul li h2, .teaserSlider .viewport ul li h2 a {
                    font-size: 20px;
                    color: #fe3600;
                    margin-bottom: 13px;
                    line-height: 1.2em;
                }

                .teaserSlider .viewport ul li p {
                    font-size: 14px;
                    color: #9c9c9c;
                    line-height: 20px;
                    margin-top: 7px;
                }

                .teaserSlider .viewport ul li .dateRelease {
                    color: #9C9C9C;
                    font-size: 18px;
                    line-height: 20px;
                    margin-bottom: 10px;
                }

    .teaserSlider .buttons {
        float: left;
    }

        .teaserSlider .buttons.disable {
            visibility: hidden;
        }

    .teaserSlider .prev {
        background: url("../images/arrows-slider.png") no-repeat scroll left top transparent;
        cursor: pointer;
        height: 38px;
        opacity: 0.3;
        filter: alpha(opacity=30);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
        text-indent: -9000px;
        top: 30%;
        width: 30px;
        z-index: 100;
        position: relative;
    }

    .teaserSlider .next {
        background: url("../images/arrows-slider.png") no-repeat scroll right top transparent;
        cursor: pointer;
        height: 38px;
        opacity: 0.3;
        filter: alpha(opacity=30);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
        text-indent: -9000px;
        top: 30%;
        width: 30px;
        z-index: 100;
        position: relative;
    }

    .teaserSlider .buttons:hover {
        opacity: 0.6;
        filter: alpha(opacity=60);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    }

/*** Footer Style Sheet ***/

footer {
    background: #FAFAFA;
    /*durga border-top: 1px solid #F14000;*/
    float: left;
    width: 100%;
}

.footernav {
    min-height: 250px;
    color: #4d4d4d;
    overflow: hidden;
}

.company-details, .career_design {
    margin: 25px 0 0 40px;
    width: 440px;
}

    .company-details h3, .career_design h3 {
        color: #fe3600;
        font-size: 26px;
        margin-bottom: 15px;
    }

    .company-details p img {
        float: left;
        margin-right: 10px;
    }

    .company-details p {
        margin: 0;
        font-family: 'DakotaRegular';
        font-size: 24px;
        line-height: 30px;
        color: #000;
    }

    .career_design p a {
        font-size: 16px;
    }

    .career_design .careersImg {
        background: url("../images/line.png") repeat scroll -143px bottom transparent;
        padding-bottom: 30px;
    }

.footernav .float-right {
    margin: 0 20px 0 0;
    min-height: 150px;
    width: 424px;
}

.FooterLinksWrapper {
    width: 100%;
    margin-top: 85px;
    overflow: hidden;
}

.footer-links {
    float: left;
}

    .footer-links ul li {
        position: inherit;
    }

        .footer-links ul li a {
            color: #4C4C4C;
            display: block;
            font-size: 16px;
            margin-bottom: 20px;
            padding: 0;
            text-shadow: 0 2px 1px #E5E5E5;
            width: 100%;
            cursor: pointer;
        }

            .footer-links ul li a:hover, .footer-links ul li a.active {
                color: #ff3611;
            }
/**** Copyrights Wrapper Styles ****/

.copyrightsWrapper {
    position: relative;
    background: #fff;
    height: 48px;
    padding-top: 30px;
    padding-left: 30px;
    text-align: center;
}

    .copyrightsWrapper a {
        color: #666666;
        font-size: 11px;
        text-shadow: 0 1px 2px #BEBEBE;
        display: inline-block;
        margin-right: 4%;
    }



/*** Mega Menu Styles ****/
.circlesWrapper {
    z-index: 2 !important;
}

/* Tiny Scrollbar Styles */

#industry-apps .scrollbar, #product-apps .scrollbar, .itemDetails .scrollbar {
    background: transparent url(../images/bg-scrollbar-track.png) no-repeat 0 0;
    position: relative;
    background-position: 0 0;
    float: right;
    width: 15px;
}

#industry-apps .track, #product-apps .track, .itemDetails .track {
    height: 100%;
    width: 12px;
    position: relative;
    padding: 0 1px;
}

#industry-apps .thumb, #product-apps .thumb, .itemDetails .thumb {
    background: url("../images/bg-scrollbar-track.png") repeat scroll -19px top transparent;
    height: 60px;
    width: 20px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    margin-left: -1px;
}

    #industry-apps .thumb .end, #product-apps .thumb .end, .itemDetails .thumb .end {
        overflow: hidden;
        height: 5px;
        width: 25px;
    }

#industry-apps .disable, #product-apps .disable, .itemDetails .disable {
    display: none;
}

#industry-apps .viewport, #product-apps .viewport, .itemDetails .viewport {
    height: 410px;
    overflow: hidden;
    position: relative;
}

.itemDetails .scrollbar {
    position: absolute;
    right: 0;
    top: 0;
}

.itemDetails .viewport .overview {
    padding: 18px 0 0 18px;
    width: 97%;
}

#industry-apps .overview, #product-apps .overview, .itemDetails .overview {
    list-style: none;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    width: 100%;
}

#detail {
    position: absolute;
}


    #detail .scrollbar {
        background: transparent url(../images/bg-scrollbar-track-y.png) no-repeat 0 0;
        position: absolute;
        background-position: 0 0;
        right: 0;
        width: 15px;
        z-index: 99;
    }

    #detail .track {
        height: 100%;
        width: 13px;
        position: relative;
        padding: 0 1px;
    }
    /*#detail .thumb { background: transparent url(../images/bg-scrollbar-thumb-y.png) no-repeat 5px 100%; height: 25px; width: 25px; cursor: pointer; position: absolute; top: 0; left: -5px;}*/
    #detail .thumb {
        background: transparent url(../images/sliderthumb.png) repeat-y 0 100%;
        height: 25px;
        width: 15px;
        cursor: pointer;
        position: absolute;
        top: 0;
        left: 0;
        border-top: 1px solid #b2b2b2;
        border-bottom: 1px solid #b2b2b2;
        border-radius: 4px;
    }

        #detail .thumb .end { /*background: transparent url(../images/bg-scrollbar-thumb-y.png) no-repeat 50% 0;*/
            overflow: hidden;
            height: 5px;
            width: 25px;
        }

    #detail .viewport {
        height: 700px;
        overflow: hidden;
        position: relative;
    }

    #detail .overview {
        list-style: none;
        overflow: hidden;
        position: relative;
        left: 0;
        top: 0;
        padding: 0;
        margin: 0;
        padding: 30px 25px 50px 45px;
    }

    #detail .disable {
        display: none;
    }




/*** Internal Page Styles ****/

.internalPage header {
    position: relative;
}

.LeftSidebar, .NoSidebar, .RightSidebar, .SearchPage {
    /*overflow:hidden;*/
    min-height: 500px;
}

.InternalBreadcrumb {
    height: 38px;
    background: url("../images/cleanese_breadcrumbBG.png") repeat scroll 0 0 transparent;
    /*durga -moz-box-shadow: 0 0 2px 2px #ccc;
	-webkit-box-shadow: 0 0 2px 2px #ccc;
	box-shadow: 0 0 2px 2px #ccc;*/
    overflow: hidden;
    position: relative;
    padding: 0 0 0 30px;
    behavior: url(/PIE.htc);
}

    .InternalBreadcrumb .pageTitle {
        float: left;
        font-size: 18px;
        color: #fff;
        margin: 0;
        line-height: 20px;
        padding: 8px 0 0 0;
        height: 22px;
        width: 675px;
        overflow: hidden;
    }

        .InternalBreadcrumb .pageTitle sup {
            line-height: 0.3em;
        }

    .InternalBreadcrumb a {
        float: left;
        /*durga margin: 0 30px 0 0;*/
        display: block;
        color: #ef4f1a;
        font-size: 18px;
        line-height: 50px;
    }

        .InternalBreadcrumb a:hover {
            text-decoration: underline;
        }

    .InternalBreadcrumb .contactBtn {
        float: right;
        height: 28px;
        color: #f16030;
        line-height: normal;
        margin: 5px 30px 0 0;
        padding: 8px 0 0 0;
        text-align: center;
        font-size: 15px;
    }

        .InternalBreadcrumb .contactBtn:hover {
            text-decoration: none;
        }

    .InternalBreadcrumb .contactBtn {
        background: url("../images/contact-btns.png") no-repeat scroll left -1px transparent;
        height: 29px;
        padding: 0 0 0 5px;
    }

        .InternalBreadcrumb .contactBtn span {
            background: url("../images/contact-btns.png") no-repeat scroll right -76px transparent;
            display: block;
            height: 28px;
            padding: 4px 10px 0 3px;
        }

        .InternalBreadcrumb .contactBtn:active {
            background-position: left -38px;
        }

            .InternalBreadcrumb .contactBtn:active span {
                background-position: right -113px;
            }


/*** Page Styles for LeftSidebar ****/

.LeftSidebar {
    background: url(../images/leftSidebar-bg.jpg) repeat-y;
    /*durga float: left;*/
    width: 100%;
}

    .LeftSidebar .subNavigation, .searchFiltersWrapper {
        width: 273px;
        float: left;
        margin-top: 1px;
        padding-bottom: 30px;
    }

.internalPage .contentWrapper {
    width: 779px;
    /*durga float:right;*/
    /*json padding-top:2px;*/
}

.internalPage .bannerWrapper {
    /*durga width:748px;*/
    min-height: 261px;
    overflow: hidden;
    background: #fafafa;
    position: relative;
}

    .internalPage .bannerWrapper .bannerIMG {
        position: absolute;
        z-index: 0;
        min-height: 261px;
        width: 779px;
        overflow: hidden;
    }

    .internalPage .bannerWrapper .bannerText {
        float: left;
        width: 340px;
        z-index: 1;
        position: absolute;
        margin: 45px 0 0 30px;
    }

        .internalPage .bannerWrapper .bannerText .titleText, .internalPage .bannerWrapper .bannerText .headlineText {
            color: #ef4f1a;
            font-size: 18px;
            margin-bottom: 8px;
        }

        .internalPage .bannerWrapper .bannerText .titleText {
            font-size: 24px;
            /*text-transform:capitalize;*/
        }

    .internalPage .bannerWrapper .bannerLogo {
        width: 360px;
        float: right;
        text-align: center;
        position: relative;
        z-index: 1;
        position: absolute;
        bottom: 0;
        right: 0;
        margin: 0 10px 10px 0;
    }

.internalPage .contentHolder {
    padding: 20px;
    /*json width: 708px;*/
}

.internalPage .contentTitle {
    color: #ef4f1a;
    font-size: 20px;
    margin-bottom: 5px;
    line-height: 1.3em;
}

.internalPage .contentHolder .content {
    /*overflow:hidden;
	font-family:Arial, Helvetica, sans-serif;*/
    color: #4D4D4D;
    line-height: 20px;
    font-size: 13px;
}

    .internalPage .contentHolder .content p {
        margin: 15px 0 20px 0;
    }

    .internalPage .contentHolder .content > ul {
        margin: 10px 0;
        padding: 0 0 0 30px;
    }

        .internalPage .contentHolder .content > ul > li {
            list-style: disc;
            margin: 5px 0;
        }

    .internalPage .contentHolder .content .contentIMG {
        border: 1px solid #e5e5e5;
        text-align: center;
        -moz-box-shadow: 2px 2px 2px 0 #ABABAB;
        -webkit-box-shadow: 2px 2px 2px 0 #ABABAB;
        box-shadow: 2px 2px 2px 0 #ABABAB;
        margin: 50px 5px 5px 5px;
        padding: 5px;
    }

.internalPage .relatedItems {
    overflow: hidden;
    min-height: 270px;
    padding: 20px 10px 15px;
}

    .internalPage .relatedItems .viewport {
        float: left;
        min-height: 270px;
        overflow: hidden;
        position: relative;
        width: 650px;
    }

    .internalPage .relatedItems .buttons {
        float: left;
    }

    .internalPage .relatedItems .viewport ul {
        list-style: none;
        position: relative;
    }

        .internalPage .relatedItems .viewport ul li {
            float: left;
            font-size: 14px;
            line-height: 20px;
            padding: 0 10px;
            width: 200px;
        }

    .internalPage .relatedItems h2 {
        color: #ef4f1a;
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 25px;
    }

    .internalPage .relatedItems .viewport ul li h3 {
        color: #333333;
        font-size: 18px;
        margin-bottom: 5px;
        padding-right: 0;
        line-height: 22px;
    }

    .internalPage .relatedItems .viewport ul li .sliderimg {
        display: block;
        margin-bottom: 10px;
        overflow: hidden;
        width: 192px;
        height: 90px;
        padding: 2px;
    }

    .internalPage .relatedItems .viewport ul li .dateRelease {
        margin-bottom: 20px;
    }

    .internalPage .relatedItems .prev {
        cursor: pointer;
        height: 30px;
        opacity: 0.3;
        position: relative;
        text-indent: -9000px;
        margin-top: 18%;
        width: 29px;
        z-index: 100;
        background: url("../images/arrows-slider.png") no-repeat scroll left top transparent;
    }

    .internalPage .relatedItems .next {
        cursor: pointer;
        height: 30px;
        opacity: 0.3;
        position: relative;
        text-indent: -9000px;
        margin-top: 13%;
        width: 29px;
        z-index: 100;
        background: url(../images/arrows-slider.png) right bottom;
    }

    .internalPage .relatedItems a.disable {
        visibility: hidden;
    }
/***** Error Page Styles ***/
.errorPageWrapper {
    min-height: 528px;
    position: relative;
    overflow: hidden;
}

    .errorPageWrapper .errorPageIMG {
        position: absolute;
        min-height: 483px;
    }

    .errorPageWrapper .errorPageTXT {
        margin: 120px 0 0;
        position: absolute;
        color: #000;
        width: 944px;
        right: 0;
        font-size: 20px;
        text-shadow: 0 1px 6px #FFFFFF;
    }

        .errorPageWrapper .errorPageTXT .headlineText {
            margin-bottom: 10px;
        }

        .errorPageWrapper .errorPageTXT .subheadlineText {
            padding-left: 50px;
            margin-top: 20px;
        }

            .errorPageWrapper .errorPageTXT .subheadlineText p {
                font-size: 17px;
                margin: 10px 0;
            }

            .errorPageWrapper .errorPageTXT .subheadlineText ul {
                font-size: 16px;
                margin-left: 20px;
            }

                .errorPageWrapper .errorPageTXT .subheadlineText ul li {
                    list-style: disc;
                    padding: 5px 0;
                }

/*** Business Unit Products Page Styles ***/

.BusinessUnitProducts {
    padding: 0 20px 40px 25px;
    overflow: hidden;
}

    .BusinessUnitProducts .productsHeader {
        min-height: 32px;
        overflow: hidden;
        margin-bottom: 15px;
        padding: 3px 0 3px 7px;
    }

.thumbListButton, .filterComboBox {
    float: left;
}

.thumbListButton {
    width: 28px;
    overflow: hidden;
    display: block;
    margin-right: 25px;
}

    .thumbListButton #viewMode {
        background: url("../images/grid-buttons.png") no-repeat scroll 0 bottom transparent;
        bottom: 14px;
        display: block;
        height: 25px;
        right: 0;
        width: 28px;
    }

    .thumbListButton .flip {
        background-position: 0 top !important;
    }

.filterComboBox {
    padding-top: 6px;
}

    .filterComboBox ul {
        margin: 0;
        padding: 0;
    }

    .filterComboBox > ul > li {
        float: left;
        border-right: 2px solid #666;
    }

    .filterComboBox .leftdropMenu li {
        margin-right: 0;
    }

    .filterComboBox ul li.last {
        border: none;
    }

    .filterComboBox ul li a {
        color: #666666;
        font-size: 11px;
        padding: 0 15px;
    }

    .filterComboBox ul.leftdropMenu li a {
        padding: 4px 15px;
    }

    .filterComboBox ul li.ComboBox-child:hover {
        background: url(../images/filterComboBox-hover-left.png) no-repeat left top;
        border: none;
        height: 26px;
        margin-left: -3px;
        padding-left: 3px;
    }

        .filterComboBox ul li.ComboBox-child:hover a {
            background: url(../images/filterComboBox-hover-right.png) no-repeat top right;
            display: block;
            height: 20px;
            padding-right: 17px;
            padding-top: 6px;
            margin-top: -5px;
            color: #FF622A;
        }

    .filterComboBox ul li a:hover, .filterComboBox ul li a.active {
        color: #FF622A;
    }

    .filterComboBox ul li ul {
    }

    .filterComboBox ul li.ComboBox-child ul {
        position: absolute;
        display: none;
        background: url(../images/filterComboBox-bg.png) no-repeat bottom;
        width: 262px;
        margin-left: -4px;
        padding: 10px 0;
        z-index: 9999;
    }

    .filterComboBox ul.ComboxBox-submenu li, .filterComboBox ul.ComboxBox-submenu li:hover, .filterComboBox ul.ComboxBox-submenu li:hover {
        background: none !important;
        padding: 0 4px;
        margin: 0;
    }

    .filterComboBox ul.ComboxBox-submenu li {
        float: none;
        border: none;
        height: auto;
    }

    .filterComboBox ul li.ComboBox-child ul.ComboxBox-submenu li a {
        padding: 6px 10px 6px 35px !important;
        display: block;
        color: #808080;
        background: none !important;
        margin: 0;
        height: auto;
    }

        .filterComboBox ul li.ComboBox-child ul.ComboxBox-submenu li a:hover {
            background: #fff !important;
            color: #4c4c4c;
            margin: 0;
            height: auto;
        }

.BusinessUnitProducts .productsContent_thumb {
    overflow: hidden;
}

    .BusinessUnitProducts .productsContent_thumb .product-rows {
        min-height: 250px;
        overflow: hidden;
        margin-bottom: 25px;
    }

        .BusinessUnitProducts .productsContent_thumb .product-rows .products {
            background-color: #FFFFFF;
            /*json border-bottom: 3px solid #B3B3B3;
	-moz-box-shadow: 0 2px 4px 2px #9E9E9E;
	-webkit-box-shadow: 0 2px 4px 2px #9E9E9E;
	box-shadow: 0 2px 4px 2px #9E9E9E;*/
            behavior: url(/PIE.htc);
            width: 195px;
            margin: 8px;
            float: left;
        }

.productsContent_thumb .product-rows .products img {
    display: block;
    width: 195px;
}

.productsContent_thumb .product-rows .products a {
    /*width:262px;
	height:134px;*/
    display: block;
    /*overflow:hidden;*/
}

.productsContent_thumb .product-rows .products .content {
    font-family: 'Arial';
    font-size: 12px;
    line-height: normal;
    overflow: auto;
    padding: 5px 0px 2px 0px;
}

.productsContent_thumb .product-rows .products h4, .productsContent_thumb .product-rows .products h4 a {
    border-bottom: 2px solid #FF622A;
    color: #FF622A;
    font-size: 14px;
    margin-bottom: 3px;
    line-height: 1.2em;
}

    .productsContent_thumb .product-rows .products h4 a {
        border: none;
    }

.productsContent_thumb .product-rows .products p {
    margin: 2px 0;
}

.productsContent_thumb .product-rows .products ul {
    margin: 5px 0;
    padding: 0 0 0 15px;
}

    .productsContent_thumb .product-rows .products ul li {
        margin: 0;
        list-style: disc;
    }

.productsContent_list {
    padding-left: 7px;
}

    .productsContent_list .product-rows .products img, .productsContent_list .product-rows .products p, .productsContent_list .product-rows .products ul {
        display: none;
    }

    .productsContent_list .product-rows {
        width: 345px;
        float: left;
    }

        .productsContent_list .product-rows .products h4 {
            font-size: 14px;
            color: #FF622A;
            padding: 0;
            border-bottom: none !important;
            /*text-transform:capitalize;*/
            margin-bottom: 10px;
            line-height: 18px;
        }


/** Application Detail Styles */

.internalPage .bannerWrapperLeft .bannerText {
    bottom: 0;
    margin: 0 0 25px 35px;
    position: absolute;
    /*width: 370px;*/
}

    .internalPage .bannerWrapperLeft .bannerText .titleText, .internalPage .bannerWrapperLeft .bannerText .headlineText {
        color: #fff;
    }

.internalPage .leftTop .bannerText {
    left: 0;
    top: 0;
    margin: 30px 40px;
    /*width:525px;*/
}

.internalPage .rightTop .bannerText {
    right: 15px;
    top: -15px;
    text-align: right;
}

.internalPage .leftBottom .bannerText {
    left: 0;
    bottom: 0;
    /*width:250px;*/
}

.internalPage .rightBottom .bannerText {
    right: 15px;
    bottom: 0;
    text-align: right;
}

.applicationDetail {
    overflow: hidden;
    margin-top: 20px;
    padding: 0 20px 40px 25px;
}

    .applicationDetail .contentTitle {
        margin-bottom: 10px;
    }

    .applicationDetail .product-rows .products img {
        /*height:135px;*/
        width: 260px;
    }

.productsContent .product-rows {
    min-height: 230px;
    overflow: hidden;
    margin-bottom: 30px;
}

    .productsContent .product-rows .products {
        background-color: #FFFFFF;
        /*border-bottom: 3px solid #B3B3B3;
	-moz-box-shadow: 0 2px 4px 2px #9E9E9E;
	-webkit-box-shadow: 0 2px 4px 2px #9E9E9E;
	box-shadow: 0 2px 4px 2px #9E9E9E;*/
        behavior: url(/PIE.htc);
        width: 195px;
        margin: 8px 10px 10px 8px;
        float: left;
    }

        .productsContent .product-rows .products img {
            display: block;
            width: 195px;
        }

        .productsContent .product-rows .products .content {
            overflow: auto;
            font-family: 'Arial';
            line-height: normal;
            font-size: 13px;
            color: #666;
            padding: 5px 0px 2px 0px;
        }

        .productsContent .product-rows .products h4, .productsContent .product-rows .products h4 a {
            font-size: 14px;
            color: #FF622A;
            margin-bottom: 3px;
            border-bottom: 2px solid #FF622A;
            display: block;
        }

            .productsContent .product-rows .products h4 a {
                text-decoration: none;
                border: none;
                line-height: 1.2em;
            }

                .productsContent .product-rows .products h4 sup, .productsContent .product-rows .products h4 a sup {
                    line-height: 0.2em;
                }

        .productsContent .product-rows .products p {
            margin: 2px 0;
        }

        .productsContent .product-rows .products ul {
            margin: 5px 0;
            padding: 0 0 0 15px;
        }

            .productsContent .product-rows .products ul li {
                margin: 0;
                list-style: disc;
            }

/*** Product List Application List page ***/

.productsApplication .filterComboBox li:first-child a {
    padding-left: 0;
}

.applicationsList {
    margin: 0 0 20px 0;
    overflow: hidden;
}

    .applicationsList h2 {
        font-size: 20px;
        color: #333;
    }

        .applicationsList h2 span {
            color: #808080;
        }

    .applicationsList .applicationsListContent {
        margin-top: 10px;
    }

.applicationsListContent .imgHolder {
    float: left;
    margin-right: 20px;
}

    .applicationsListContent .imgHolder img {
        width: 195px;
    }

.applicationsListContent .content {
    margin-left: 10px;
    color: #666666;
    font-size: 11px;
}

    .applicationsListContent .content ul {
        margin: 15px 0 15px 0;
        padding-left: 20px;
    }

        .applicationsListContent .content ul li {
            list-style: disc;
            margin-bottom: 4px;
        }

/****Contact Us page Styles****/

.addressWrapper {
    padding: 10px 0;
    float: left;
    width: 100%;
    clear: both;
}

    .addressWrapper p {
        padding: 5px 0;
        font-size: 18px;
        color: #666666;
        margin-bottom: 10px;
    }

        .addressWrapper p.addressheading {
            font-size: 14px;
            margin-bottom: 10px !important;
            margin-top: 5px !important;
        }

        .addressWrapper p.contactEmail {
            background: url(../images/mail_icon.png) no-repeat left;
            padding-left: 35px;
        }

        .addressWrapper p.contactPhone {
            background: url(../images/phone_icon.png) no-repeat left;
            padding-left: 35px;
        }

    .addressWrapper a {
        color: #666666;
    }

    .addressWrapper .contactEmail a {
        color: #666666;
        border-bottom: 1px solid #f27248;
    }

        .addressWrapper .contactEmail a:hover {
            border: none;
        }
/****Litetrature Page Styles****/
.LiteratureSelector {
    padding: 0 30px 25px;
    width: 625px;
}

    .LiteratureSelector ul li a.accordian {
        background: url("../images/literature_arrow.png") no-repeat scroll right 8px transparent;
        color: #CCCCCC;
        font-size: 14px;
        padding-right: 15px;
    }

    .LiteratureSelector ul li ul {
        margin: 10px 0 0 10px;
    }

        .LiteratureSelector ul li ul li {
            padding: 5px 0;
        }

            .LiteratureSelector ul li ul li a {
                color: #0099cc;
                font-size: 11px;
                text-decoration: underline;
            }

                .LiteratureSelector ul li ul li a:hover {
                    text-decoration: none;
                }

.LiteratureWrapper {
    padding: 0 20px 25px 25px;
    width: 703px;
}

    .LiteratureWrapper .LiteratureHeader {
        height: 80px;
        margin-bottom: 10px;
    }

        .LiteratureWrapper .LiteratureHeader .float-left ul li a.active {
            color: #f26028;
            font-size: 14px;
            padding-left: 10px;
            padding-right: 15px;
            background: url(../images/literature_arrow.png) no-repeat right -39px;
            /*width:100px;*/
            display: block;
        }

        .LiteratureWrapper .LiteratureHeader .float-left ul li ul {
            position: static;
            background: #fff;
            width: 240px;
            /*margin-left:15px;*/
            box-shadow: 1px 2px 3px 2px #CCCCCC;
        }

            .LiteratureWrapper .LiteratureHeader .float-left ul li ul li a {
                color: #666666;
                font-size: 11px;
                display: block;
                padding: 8px 10px;
            }

                .LiteratureWrapper .LiteratureHeader .float-left ul li ul li a:hover {
                    background: #f1f1f1;
                }

        .LiteratureWrapper .LiteratureHeader .float-right ul li, .businessunits ul li {
            border-right: 2px solid #666666;
            float: left;
        }

.businessunits ul li {
    margin-bottom: 10px;
}

    .LiteratureWrapper .LiteratureHeader .float-right ul li.last, .businessunits ul li.last {
        border: none;
    }

    .businessunits ul li.last {
        /* margin-top:10px; */
    }

    .LiteratureWrapper .LiteratureHeader .float-right ul li a, .businessunits ul li a {
        color: #666666;
        font-size: 14px;
        margin: 0 18px;
    }

        .LiteratureWrapper .LiteratureHeader .float-right ul li a.active, .LiteratureWrapper .LiteratureHeader .float-right ul li a:hover {
            color: #FF622A;
        }

        .LiteratureWrapper .LiteratureHeader .float-right ul li a.disable {
            color: #cccccc;
        }

.LiteratureWrapper .LiteratureContent .Literature {
    border: 1px solid #cccccc;
    padding: 15px;
    margin-bottom: 25px;
}

    .LiteratureWrapper .LiteratureContent .Literature .head {
        margin-bottom: 20px;
        min-height: 40px;
    }

        .LiteratureWrapper .LiteratureContent .Literature .head .float-left {
            font-size: 14px;
            color: #333333;
            2343
        }

        .LiteratureWrapper .LiteratureContent .Literature .head .float-right {
            font-size: 11px;
            color: #666666;
        }

    .LiteratureWrapper .LiteratureContent .Literature .content ul li a, .LiteratureWrapper .LiteratureContent .Literature .content ul li {
        color: #0099cc;
        font-size: 12px;
    }

    .LiteratureWrapper .LiteratureContent .Literature .content ul li {
        margin-bottom: 10px;
    }

        .LiteratureWrapper .LiteratureContent .Literature .content ul li a {
            text-decoration: underline;
        }

            .LiteratureWrapper .LiteratureContent .Literature .content ul li a:hover {
                text-decoration: none;
            }

/*********SubNavigation*********/
.subNavigation ul li {
}

    .subNavigation ul li a {
        /*durga box-shadow: 0 3px 2px 1px #DFDFDF;*/
        color: #666666;
        cursor: pointer;
        display: block;
        font-size: 13px;
        padding: 10px 9px 9px 20px;
        position: relative;
        /*behavior: url(PIE.htc);*/
    }

        .subNavigation ul li a:hover, .subNavigation ul li a.active, .subNavigation ul li.opened > a {
            color: #EF4F1A;
        }

        .subNavigation ul li a.active, .subNavigation ul li.opened > a {
            font-weight: bold;
        }

    .subNavigation ul li > ul {
        /*durga background-color: #fff6f2;*/
    }

.subNavigation > ul > li.active {
    /*border-top:2px solid #f16030;
	border-bottom:2px solid #f16030;*/
}

.subNavigation ul li > ul li a {
    /*durga background:url(../images/leftnav-menus-bg.png) repeat-x 0px bottom;	
	box-shadow: none;*/
    padding: 11px 10px 15px 40px;
}

.subNavigation ul li > ul li.last a {
    padding: 11px 10px 12px 55px; /* For Border correction */
}


.subNavigation ul li > ul li > ul {
    /*durga background-color: #fff0eb;*/
}

    .subNavigation ul li > ul li > ul li a {
        /*durga background:url(../images/leftnav-menus-bg.png) repeat-x 0px bottom;	
	box-shadow: none;*/
        padding: 11px 10px 15px 60px;
    }

    .subNavigation ul li > ul li > ul li.last a {
        padding-bottom: 15px;
    }

    .subNavigation ul li > ul li > ul li.active a {
        /*border-bottom:3px solid	#e6d0c8;*/
        padding-bottom: 11px;
    }

    .subNavigation ul li > ul li > ul li > ul li a {
        background: url("../images/leftnav-menus-bg.png") repeat-x scroll 0 -112px transparent;
        padding: 11px 10px 15px 70px;
    }

    .subNavigation ul li > ul li > ul li.active > ul li a {
        padding: 11px 10px 15px 70px;
        border: none;
    }

    .subNavigation ul li > ul li > ul li > ul li.last a {
        padding-bottom: 13px;
        border-bottom: 3px solid #E6D0C8;
    }

.leftNavLogo {
    margin: 30px 0 0;
    padding: 0 0 0 30px;
}

/*** light Box Styles Overwrite ****/
.pp_details {
    display: none !important;
}

.pp_content {
    border: 2px solid #f2f2f2 !important;
    background: #f2f2f2;
}

div.pp_overlay {
    background: #5c5c5c;
}

div.light_square a.pp_close {
    margin: 10px auto 0 auto;
    position: inherit !IMPORTANT;
    background: url(../images/allBtns.png) no-repeat;
    width: 227px;
    height: 33px;
}

/****Mega Menu Progress Styles*****/

.divImage {
    background: none repeat scroll 0 0 black;
    height: 600px;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 10;
}

    .divImage .progress {
        position: relative;
        top: 200px;
    }


/****Other Progress Styles*****/

.divProgressImage {
    background: none repeat scroll 0 0 black;
    height: 400px;
    opacity: 0.3;
    filter: alpha(opacity=50);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    position: absolute;
    text-align: center;
    width: 850px;
    z-index: 10;
    margin-top: -23px;
    margin-left: -10px;
}

    .divProgressImage .progress {
        position: relative;
        /* top:200px;    */
    }


/****MediaCategory Progress Styles*****/

.divMediaCategoryProgressImage {
    background: none repeat scroll 0 0 black;
    height: 400px;
    opacity: 0.3;
    filter: alpha(opacity=50);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    position: absolute;
    text-align: center;
    width: 850px;
    z-index: 10;
    /* margin-top:-23px;    
    margin-left:-10px; */
}

    .divMediaCategoryProgressImage .progress {
        position: relative;
        top: 200px;
    }

/*** Register Page ***/
.NoSidebar .contentHolder {
    overflow: hidden;
    padding: 20px 20px 50px;
    width: 984px;
}

.signinWrapper, .registerWrapper {
    margin-left: 175px;
    overflow: hidden;
}

    .signinWrapper h2, .registerWrapper h2 {
        font-size: 20px;
        color: #666;
        margin-bottom: 20px;
    }

.signInForm .textforms {
    float: left;
    width: 440px;
}

.signInForm .errorMSG {
    float: left;
    width: 230px;
    margin-left: 10px;
    font-size: 11px;
    height: 90px;
    position: relative;
}

.signInForm .signinbtnHolder {
    overflow: hidden;
    clear: both;
}

.signInForm .textInput, .signInForm .textPassword, .personal-detailsWrapper .textPassword {
    background: url("../images/inputBG.jpg") repeat-x scroll center bottom #F5F5F5;
    border: 1px solid #CCCCCC;
    font-family: 'Arial';
    font-size: 12px;
    height: 14px;
    margin-bottom: 12px;
    padding: 6px 20px 5px 7px;
    width: 410px;
}

.placeholder {
    color: #b2b2b2;
}

.textinputError {
    clear: both;
}

    .textinputError a {
        display: block;
        color: #0099cc;
        text-decoration: underline;
    }

        .textinputError a:hover {
            text-decoration: none;
        }

.textPWError {
    margin-top: 20px;
}

.errorSYM {
    background: url(../images/errorSYM.png) no-repeat 5px center;
    padding-left: 20px;
    display: block;
    clear: both;
    line-height: 11px;
}

.errorTermsConditions {
    background: url(../images/errorSYM.png) no-repeat 5px center !important;
    padding-left: 30px !important;
}

.forgotPW, .forgotPW a {
    font-size: 13px;
    color: #0099cc;
}

.forgotPW {
    margin-bottom: 20px;
    clear: both;
    overflow: hidden;
}

    .forgotPW a {
        padding-right: 4px;
        text-decoration: underline;
    }

        .forgotPW a:hover {
            text-decoration: none;
        }

.rememberbtn {
    float: left;
    padding: 5px 10px 5px 0;
    display: block;
    margin-right: 20px;
}

.submitBtn {
    background: url(../images/allBtns.png) no-repeat 0px -35px;
    width: 167px;
    border: none;
    text-indent: -999999px;
    height: 28px;
}

    .submitBtn:active {
        background-position: -167px -35px;
    }

.hrOR {
    border-bottom: 1px solid #c2c2c2;
    position: relative;
    margin: 20px 0 30px 0;
}

    .hrOR span {
        background: none repeat scroll 0 0 #FFFFFF;
        font-size: 14px;
        left: 43%;
        line-height: 25px;
        margin: -13px auto 0;
        position: absolute;
        text-align: center;
        width: 80px;
    }

/**** Register Styles ***/
.fieldsRegister {
    overflow: hidden;
}

    .fieldsRegister .fieldsRequired {
        clear: both;
        font-size: 11px;
        margin-bottom: 10px;
    }

    .fieldsRegister .float-left {
        width: 420px;
        margin-right: 10px;
    }

    .fieldsRegister .interstsWrapper {
        width: 260px;
        padding-top: 15px;
    }

        .fieldsRegister .interstsWrapper h4 {
            font-size: 15px;
            color: #666;
            margin-bottom: 20px;
        }

    .fieldsRegister .titleSelection {
        margin-bottom: 10px;
    }

.titleSelection ul li {
    padding: 5px;
    position: relative;
    width: 64px;
}

    .titleSelection ul li:hover {
        background: url(../images/registertitle_bg.png) no-repeat;
    }

    .titleSelection ul li a {
        background: url("../images/literature_arrow.png") no-repeat scroll 49px -34px transparent;
        display: block;
        font-size: 13px;
        line-height: 18px;
        padding: 4px 9px;
        text-decoration: underline;
    }

        .titleSelection ul li a:hover, .titleSelection ul li:hover a {
            /*text-decoration:none;*/
        }

.titleSelection ul ul {
    background: url("../images/registertitle_bg.png") no-repeat scroll left -36px transparent;
    display: none;
    left: 0;
    padding: 8px 0;
    position: absolute;
    top: 33px;
    width: 124px;
}

    .titleSelection ul ul li {
        padding: 0 5px 0 3px;
        width: auto;
    }

        .titleSelection ul ul li:hover {
            /*background:none;	*/
        }

        .titleSelection ul ul li a {
            background: none;
            display: block;
            padding: 4px 10px;
            width: auto;
            color: #808080;
        }

            .titleSelection ul ul li a:hover {
                background: #fff;
            }
/*.titleSelection ul li:hover ul{
	display:block;
	position:absolute;
	}*/
.fieldsRegister .fieldsWrapper {
    margin-bottom: 12px;
    overflow: hidden;
}

    .fieldsRegister .fieldsWrapper input {
        border: 1px solid #cccccc;
        width: 195px;
        background: #dadada url(../images/inputBG.jpg) repeat-x;
        height: 18px;
        font-size: 13px;
        font-family: 'Arial';
        padding: 6px 10px 5px 10px;
        float: left;
        margin-bottom: 0;
    }

    .fieldsRegister .fieldsWrapper .errorMSG {
        float: left;
        width: 190px;
        font-size: 8px;
        margin-left: 10px;
        margin-top: 5px;
    }

.errorSYM a {
    display: block;
    color: #0099cc;
    text-decoration: underline;
}

    .errorSYM a:hover {
        text-decoration: none;
    }

.errorPW {
    padding: 0;
    background: none;
}

.errorCnfPW {
    padding: 0;
    background: none;
    font-size: 12px;
    color: #ff0f0f;
}

.fieldsRegister .interstsWrapper label {
    margin-bottom: 25px;
    display: block;
    font-size: 13px;
    color: #666;
}

.conditionsAcpt {
    font-size: 12px;
    margin: 10px 0 20px 0;
}

    .conditionsAcpt a {
        color: #0099cc;
        text-decoration: underline;
    }

        .conditionsAcpt a:hover {
            text-decoration: none;
        }

.registerBtn {
    margin-left: 200px;
    background: url("../images/allBtns.png") no-repeat scroll 0 -69px transparent;
    border: medium none;
    height: 28px;
    text-indent: -999999px;
    width: 167px;
}

    .registerBtn:active {
        background-position: -167px -69px;
    }

/* Checkbox */

div.checker span {
    background-image: url(../images/radioBtn.png);
    background-repeat: no-repeat;
    -webkit-font-smoothing: antialiased;
}

div.checker {
    display: inline-block;
    height: 13px;
    margin-right: 5px;
    position: relative;
    vertical-align: middle;
    width: 14px;
}

    div.checker input {
        width: 13px;
        height: 13px;
    }

    div.checker span {
        background-position: 0 0;
        display: inline-block;
        height: 13px;
        text-align: center;
        width: 13px;
    }

    div.checker:active span,
    div.checker.active span {
        background-position: -19px -260px;
    }

    div.checker.focus:active span,
    div.checker:active:hover span,
    div.checker.active:hover span,
    div.checker.focus.active span {
        background-position: 0px -29px;
    }

    div.checker span.checked {
        background-position: 0px -29px;
    }

    div.checker:active span.checked,
    div.checker.active span.checked {
        background-position: -95px -260px;
    }

    div.checker.focus span.checked {
        background-position: 0px -29px;
    }

    div.checker.focus:active span.checked,
    div.checker:hover:active span.checked,
    div.checker.active:hover span.checked,
    div.checker.active.focus span.checked {
        background-position: 0px -29px;
    }

    div.checker.disabled span,
    div.checker.disabled:active span,
    div.checker.disabled.active span {
        background-position: -152px -260px;
    }

        div.checker.disabled span.checked,
        div.checker.disabled:active span.checked,
        div.checker.disabled.active span.checked {
            background-position: -171px -260px;
        }


/*****Personal Details page styles*****/

.personal-detailsWrapper {
    overflow: hidden;
    margin-top: 20px;
}

    .personal-detailsWrapper ul li.first {
        border-top: 1px solid #eaeaea;
    }

    .personal-detailsWrapper ul li {
        border-bottom: 1px solid #eaeaea;
        padding: 8px 8px 9px 12px;
        font-size: 12px;
        clear: both;
    }

        .personal-detailsWrapper ul li.active {
            padding: 0px !important;
        }

        .personal-detailsWrapper ul li p {
            padding: 3px 0px;
        }

        .personal-detailsWrapper ul li a {
            text-decoration: underline;
        }

            .personal-detailsWrapper ul li a:hover {
                text-decoration: none;
            }

        .personal-detailsWrapper ul li .editableContentName label {
            float: left;
            padding: 8px 0;
        }

        .personal-detailsWrapper ul li .editableContentName .textInput {
            width: 350px;
        }

        .personal-detailsWrapper ul li .titleSelection {
            float: left;
            margin-top: -9px;
        }

            .personal-detailsWrapper ul li .titleSelection li {
                border: none;
            }



.delete-error {
    background-color: #F7F7F7;
    padding: 10px 20px;
    border-bottom: 1px solid #eaeaea;
}

    .delete-error p {
        color: #FF0000;
        margin-bottom: 10px;
        font-size: 12px;
    }

.deleteBtn, .cancelBtn, .saveBtn, .closeBtn, .okBtn {
    background: url("../images/allBtns.png") no-repeat scroll 0 -104px transparent;
    border: medium none;
    height: 28px;
    width: 167px;
    cursor: pointer;
}

.cancelBtn {
    background: url("../images/allBtns.png") no-repeat scroll 0 -138px transparent;
}

    .cancelBtn:active {
        background-position: -167px -138px;
    }

.saveBtn {
    background: url("../images/allBtns.png") no-repeat scroll 0 -171px transparent;
}

    .saveBtn:active {
        background-position: -167px -171px;
    }

.personal-details-heading {
    color: #666666 !important;
}

.btns {
    padding-left: 175px;
    clear: both;
}

.okBtn {
    background: url("../images/allBtns.png") no-repeat scroll 0 -204px transparent;
}

    .okBtn:active {
        background-position: -167px -204px;
    }

.delete-option {
    border-bottom: 1px solid #eaeaea;
    border-top: 1px solid #eaeaea;
    margin-top: 100px;
    padding: 15px 10px;
}

    .delete-option .deleteanchor {
        color: #FF3F3F;
        text-decoration: underline;
        font-size: 14px;
    }

        .delete-option .deleteanchor:hover {
            text-decoration: none;
        }

.editableContent {
    background: #F7F7F7;
    padding: 7px 10px;
}

    .editableContent label {
        margin-right: 10px;
        display: inline-block;
        width: 110px;
    }

.personal-detailsWrapper div.active {
    padding: 0px !important;
    border: none !important;
}

.editableWrapper {
    overflow: hidden;
    margin: 10px 0 0 0;
}

.changePwd p {
    margin-bottom: 10px;
}

.changePwd .editableWrapper {
    padding-left: 20px;
}

    .changePwd .editableWrapper label {
        padding-top: 9px;
        width: 180px;
    }

    .changePwd .editableWrapper label, .changePwd .editableWrapper .errorMSG, .changePwd .editableWrapper .textInput, .changePwd .textPassword {
        float: left;
    }

    .changePwd .editableWrapper .errorMSG {
        font-size: 11px;
        margin-left: 10px;
    }

        .changePwd .editableWrapper .errorMSG .errorSYM {
            margin-top: 6px;
        }

        .changePwd .editableWrapper .errorMSG .errorPW {
            line-height: 16px;
            width: 190px;
        }

        .changePwd .editableWrapper .errorMSG .errorCnfPW {
            margin-top: 9px;
        }

.changePwd .textInput, .changePwd .textPassword {
    width: 180px;
    margin-bottom: 0;
}

.changePwd .btns {
    margin: 20px 10px 10px 230px;
    padding: 0;
}

.alternateEmail .btns {
    padding-left: 214px;
}

.alternateEmail .textInput {
    width: 492px;
}

.regex {
    font-size: 11px;
}


/***Manage Groups styles***/

.manageGroupsContent {
    border-bottom: 1px solid #CCCCCC;
    border-top: 1px solid #CCCCCC;
    margin-bottom: 25px;
    padding-bottom: 15px;
    font-size: 13px;
    color: #666;
}

    .manageGroupsContent > p {
        padding: 10px 0px;
    }

    .manageGroupsContent li {
        padding: 10px 17px;
    }

/******Manage Interests******/

.manageInterests {
    border-bottom: none;
    margin-bottom: 0px;
}

    .manageInterests ul.threecolumn {
        height: 200px;
    }

        .manageInterests ul.threecolumn li {
            float: left;
            width: 180px;
            height: 30px;
        }

            .manageInterests ul.threecolumn li label span.checkboxInput {
                display: block;
                float: left;
                height: 30px;
            }

            .manageInterests ul.threecolumn li label sup {
                line-height: 0.3em;
            }

.manageInterestsBtns {
    border-top: 1px solid #CCCCCC;
    margin-top: 30px;
    padding-top: 30px;
}

.businessunits {
    display: inline-block;
    padding: 10px 0;
}

    .businessunits ul li a {
        text-decoration: underline;
    }

    .businessunits ul li.first a {
        margin-left: 0px;
    }

    .businessunits ul li a:hover, .businessunits ul li a.active {
        text-decoration: none;
        color: #f26028;
    }

.otherdiv {
    display: inline-block;
    margin: 20px 0 10px 30px;
}

    .otherdiv span {
        margin-right: 15px;
    }

.otherdivDisabled {
    opacity: 0.5;
    filter: alpha(opacity=50);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
/**** Grades Page CSS ****/

.gradesTable table {
    margin: 10px 10px 10px 2px;
    background: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 3px 4px 4px 1px #CCCCCC;
}

.gradesTable thead th {
    border-bottom: 1px solid #B7B7B7;
    border-right: 1px solid #B7B7B7;
    color: #333333;
    font-size: 13px;
    /* height: 150px; */
    /* vertical-align: bottom; */
    /* width: auto; */
}

    .gradesTable thead th.first {
        text-align: center;
        vertical-align: middle;
    }

.gradesTable tbody td.row {
    border-right: 1px solid #b7b7b7;
    border-bottom: 1px solid #ededed;
    text-align: center;
    font-size: 13px;
    color: #333333;
}

.gradesTable td {
    border: 1px solid #ededed;
    padding: 14px 0;
    text-align: center;
    font-size: 11px;
    color: #808080;
}

.gradesTable a {
    color: #0099CC;
    text-decoration: underline;
}

.gradesFilter {
    margin: 10px 0;
    overflow: hidden;
    font-family: 'Arial';
}

    .gradesFilter ul li {
        float: left;
    }

        .gradesFilter ul li:hover {
            background: url(../images/right_dd_right_img.png) no-repeat top right;
            padding-right: 10px;
        }

        .gradesFilter ul li a {
            min-height: 21px;
            padding: 5px 10px 0 20px;
            display: block;
            min-width: 92px;
        }

        .gradesFilter ul li:hover a {
            background: url(../images/right_dd_left_img.png) no-repeat top left;
        }

        .gradesFilter ul li:hover a, .gradesFilter ul li a:hover {
            color: #f26028;
        }

        .gradesFilter ul li ul {
            display: none;
        }

        .gradesFilter ul li:hover ul {
            display: block;
            position: absolute;
            z-index: 999;
            width: 223px;
            background: url(../images/right_dd_ul_bot_bg.png) no-repeat bottom left;
            padding-bottom: 6px;
        }

        .gradesFilter ul li ul li {
            clear: both;
            float: none;
            background: url(../images/right_dd_li_bg_img.png) repeat-y left !important;
            padding: 0px 8px 0 3px;
        }

            .gradesFilter ul li ul li:hover {
                background: url(../images/right_dd_li_bg_img.png) repeat-y left !important;
                padding: 0px 8px 0 3px;
            }

                .gradesFilter ul li ul li.first, .gradesFilter ul li ul li:hover.first {
                    background: url(../images/right_dd_firstC_img.png) no-repeat left top !important;
                    padding: 7px 8px 0 3px;
                }

            .gradesFilter ul li ul li a {
                background: none !important;
                color: #666 !important;
                width: auto;
            }

                .gradesFilter ul li ul li:hover a, .gradesFilter ul li ul li a:hover {
                    background: #fff !important;
                    color: #000 !important;
                }

/*** Search Results Flyout ***/
.searchFlyout {
    background: none;
    left: -3px;
    margin-top: -1px;
    padding-bottom: 10px;
    position: relative;
    width: 333px;
}

#ctl10_Searchbox1_Popup {
    background-color: none !important;
    border: none !important;
    display: block;
    /*durga left: 664px !important;*/
    position: absolute;
    text-align: left;
    /*durga top: 64px !important;*/
    z-index: 999;
}

#ctl10_Searchbox1 {
    display: inline-block;
}
/******************/
.onFocus .searchFlyout {
    display: block;
}

.searchFlyout .searchFlyoutHeader {
    background: url("../images/searchflyout-bg.png") no-repeat scroll left center transparent;
    color: #FFFFFF;
    font-size: 13px;
    height: 23px;
    padding: 20px 15px 0;
}

.searchFlyout .searchFlyoutResults {
    background: url(../images/searchflyout-centerBG.png) repeat-y left;
    padding-left: 4px;
    overflow: hidden;
}

    .searchFlyout .searchFlyoutResults .searchresultsWrapper {
        margin-bottom: 10px;
        background: #fff;
    }

        .searchFlyout .searchFlyoutResults .searchresultsWrapper ul {
            padding: 0;
            margin: 0;
        }

        .searchFlyout .searchFlyoutResults .searchresultsWrapper h2 {
            background: url("../images/searchflyout-dividerBG.jpg") repeat-x scroll center top transparent;
            color: #F15922;
            font-size: 13px;
            line-height: 11px;
            margin: 0 20px;
            padding: 15px 0 2px;
        }

        .searchFlyout .searchFlyoutResults .searchresultsWrapper.first h2 {
            background: none;
        }

    .searchFlyout .searchFlyoutResults ul li a {
        color: #808080;
        display: block;
        font-size: 12px;
        padding: 8px 30px;
    }

        .searchFlyout .searchFlyoutResults ul li a .highlight {
            color: #000;
        }

    .searchFlyout .searchFlyoutResults ul li:hover {
        background: #d9d9d9;
    }

        .searchFlyout .searchFlyoutResults ul li:hover a {
            color: #000;
        }

/****Search results***/
.SearchPage {
    font-size: 16px;
}

.searchPageBreadcrumb {
    background: url("../images/cleanese_breadcrumbBG.png") repeat scroll 0 0 transparent;
    box-shadow: 0 0 2px 2px #CCCCCC;
    color: #FFFFFF;
    font-size: 19px;
    height: 28px;
    padding: 10px 0 0 30px;
}

    .searchPageBreadcrumb a {
        float: none;
        line-height: normal;
        display: inline;
        color: #e5e5e5;
        text-decoration: underline;
        margin-left: 15px;
    }

        .searchPageBreadcrumb a:hover {
            text-decoration: none;
        }

.SearchPage .contentHolder {
    padding: 25px;
    width: 699px;
}

.searchFiltersWrapper .searchFilters {
    padding: 20px;
}

.searchFilters ul li {
    padding: 0px;
    margin-bottom: 15px;
}

.searchFiltersWrapper .searchFilters .filter {
    margin-bottom: 50px;
}

    .searchFiltersWrapper .searchFilters .filter li.active a, .searchFiltersWrapper .searchFilters .filter li a:hover {
        color: #F16030;
    }

.searchFilters .filter h6 {
    margin: 0 0 15px 0;
    color: #666;
}

.searchResults li {
    padding: 0;
    margin-bottom: 35px;
}

    .searchResults li a {
        display: block;
        margin: 0 0 10px 0;
    }

        .searchResults li a.title {
            color: #282828;
        }

    .searchResults li .link a {
        color: #0099cc;
        text-decoration: underline;
        font-size: 14px;
    }

        .searchResults li .link a:hover {
            text-decoration: none;
        }

    .searchResults li p {
        line-height: 26px;
    }

.pagination {
    margin: 50px 0px;
    text-align: center;
}

    .pagination ul li {
        list-style: none;
        display: inline;
        padding: 0px 5px;
    }

        .pagination ul li a {
            border: 2px solid #7ECCE4;
            padding: 10px 15px;
            color: #7ECCE4;
        }

        .pagination ul li.off a {
            color: #E5E5E5;
            border-color: #E5E5E5;
        }

        .pagination ul li a.active {
            color: #000000;
            border-color: #E5E5E5;
        }

.CesResultExcerpt {
    width: auto !important;
    font-size: 12px;
}
/*****Confirm Email***
.contentHolder #confirm{
	height:600px;
	}*/
/*** Contact Us page Global ***/

.regionContactUs ul, .privacyPolicy ul {
    overflow: hidden;
    margin-left: 20px;
}

    .regionContactUs ul li, .privacyPolicy ul li {
        float: left;
        padding: 5px 0 15px;
        margin: 0 0 0 30px;
    }

        .regionContactUs ul li.selected, .privacyPolicy ul li.selected {
            background: url(../images/tab_content_arrow.jpg) no-repeat center 23px;
            min-width: 50px;
        }

        .regionContactUs ul li a, .privacyPolicy ul li a {
            color: #B2B2B2;
            display: block;
            font-size: 13px;
            padding: 8px 0 0;
            text-align: center;
        }

        .regionContactUs ul li.selected a.active, .privacyPolicy ul li.selected a.active {
            color: #f37239;
        }

        .regionContactUs ul li a:hover, .privacyPolicy ul li a:hover {
            color: #333333;
        }

.regionCntWrapper, .langCntWrapper {
    background: url("../images/cntbgtop_contact_privacy.png") no-repeat scroll center top transparent;
    font-size: 13px;
    margin: -14px 2px 0;
    min-height: 200px;
    overflow: hidden;
    padding: 20px 20px 15px;
}

    .regionCntWrapper .regionsWrapper {
        float: left;
        margin-right: 25px;
        width: 265px;
    }

        .regionCntWrapper .regionsWrapper h4 {
            font-size: 15px;
            margin-bottom: 20px;
            color: #000;
        }

        .regionCntWrapper .regionsWrapper address {
            margin-bottom: 30px;
        }

            .regionCntWrapper .regionsWrapper address h5 {
                font-size: 14px;
                color: #333333;
            }

            .regionCntWrapper .regionsWrapper address p {
                /*margin-bottom:10px;*/
            }

            .regionCntWrapper .regionsWrapper address .telephoneIcon, .regionCntWrapper .regionsWrapper address .mailIcon {
                margin: 6px 0;
                display: block;
                background: url(../images/phone_email_icon.png) no-repeat top left;
                padding-left: 28px;
                line-height: 22px;
            }

            .regionCntWrapper .regionsWrapper address .mailIcon {
                background-position: left bottom;
                color: #0099cc;
                text-decoration: underline;
            }

                .regionCntWrapper .regionsWrapper address .mailIcon:hover {
                    text-decoration: none;
                }

.privacyPolicy ul {
    margin-left: 0px;
    margin: 0;
    padding: 0;
}

    .privacyPolicy ul li {
        margin: 0 0 0 15px;
        min-width: 95px;
        padding: 5px 0 15px;
    }

.langCntWrapper .pageTitle {
    color: #333333;
    font-size: 20px;
    margin-bottom: 20px;
}

.langCntWrapper h4 {
    color: #333333;
    font-size: 14px;
}

.langCntWrapper p {
    color: #4D4D4D;
    line-height: 25px;
    margin: 15px 0;
}

.langCntWrapper address {
    color: #333;
    line-height: 28px;
}

/*******Product Contact Us Page Updated Styles******/

.contactContainer {
    /*json border: 1px solid #CCCCCC;*/
    padding: 15px;
    overflow: hidden;
    padding: 15px;
    width: 676px;
    float: left;
    margin-bottom: 20px;
}

    .contactContainer .headerWrapper {
        clear: both;
        float: left;
        width: 100%;
    }

        .contactContainer .headerWrapper .headerTxt {
            display: inline;
            float: left;
            font-size: 18px;
        }

        .contactContainer .headerWrapper .contactMenu {
            float: right;
            overflow: hidden;
            padding: 10px;
        }

.locationsTab {
    margin: 20px 0;
    overflow: hidden;
}

.comboBoxContactUS {
    /*overflow:hidden;*/
    margin-bottom: 10px;
    float: none;
}

    .comboBoxContactUS .leftdropMenu > li > a {
        color: #FF622A;
        text-decoration: underline;
    }

.locationsTab li.first {
    padding-left: 0px;
}

.locationsTab li {
    border: none;
}

.contactContainer .rightdropMenu {
    float: right;
}

.contactContainer .addressWrapper a {
    font-size: 11px;
}


/**** Common sytles for left drop down menu we can use it anywhere by using class ****/

.leftdropMenu {
}

    .leftdropMenu li {
        float: left;
        margin-right: 10px;
        max-width: 240px;
    }

        .leftdropMenu li:hover {
            background: url(../images/region_selector_top.png) no-repeat;
        }

        .leftdropMenu li a {
            display: block;
            padding: 10px;
            font-size: 13px;
        }

            .leftdropMenu li a span {
                padding-right: 15px;
                background: url(../images/literature_arrow.png) no-repeat right -38px;
            }

            .leftdropMenu li:hover a, .leftdropMenu li a:hover {
                text-decoration: none;
            }

        .leftdropMenu li ul {
            display: none;
        }

        .leftdropMenu li:hover ul {
            display: block;
        }

        .leftdropMenu li ul {
            padding: 0 0 8px 0;
            background: url(../images/region_selector_bottom.png) no-repeat bottom;
            position: absolute;
            width: 240px;
        }

            .leftdropMenu li ul li {
                float: none;
                background: url(../images/region_selector_middle.png) repeat-y;
                margin: 0;
                padding: 0 4px;
            }

                .leftdropMenu li ul li.first {
                }

                .leftdropMenu li ul li a {
                    display: block;
                    padding: 6px 10px 6px 20px;
                    color: #666;
                }

                    .leftdropMenu li ul li a:hover {
                        background: #fff;
                        color: #000;
                    }

/**** Common sytles for right drop down menu we can use it anywhere by using class ****/
.rightdropMenu li {
    float: left;
    position: relative;
}

    .rightdropMenu li a {
        font-size: 11px;
        color: #000;
        text-decoration: underline;
        display: block;
        padding: 10px;
    }

    .rightdropMenu li:hover a, .dropScroll a:hover {
        color: #ff622a;
        text-decoration: none;
    }

    .rightdropMenu li a span {
        padding-right: 15px;
        background: url(../images/literature_arrow.png) no-repeat right -38px;
    }

    .rightdropMenu li:hover {
        background: url(../images/region_selector_left.png) no-repeat left;
    }

        .rightdropMenu li:hover a {
            background: url(../images/region_selector_right.png) no-repeat right;
            z-index: 6;
        }

    .rightdropMenu li ul {
        display: none;
    }

    .rightdropMenu li:hover ul, .dropScroll ul {
        display: block;
        position: absolute;
        padding-bottom: 8px;
        background: url(../images/region_selector_bottom.png) no-repeat bottom;
        width: 240px;
        position: absolute;
        right: 0;
        z-index: 99;
    }

        .rightdropMenu li:hover ul li, .dropScroll ul li {
            background: url(../images/region_selector_middle.png) repeat-y;
            height: auto;
            padding: 0 3px;
            float: none;
            width: 234px;
        }
/*.rightdropMenu li:hover ul li.first{
	background:url(../images/region_selector_top.png) no-repeat top;
	}
*/
.dropScroll .viewport .overview ul {
    display: block;
    position: static;
}

.rightdropMenu li:hover ul li a, .dropScroll ul li a {
    background: none;
    display: block;
    text-align: right;
    padding: 8px 20px !important;
    height: auto;
    color: #808080;
    text-decoration: none;
    margin: 0 !important;
}

    .rightdropMenu li:hover ul li a:hover, .dropScroll ul li a:hover {
        background: #fff;
        color: #000;
    }
/*****Confirm Email***/
#confirm {
    height: 350px;
    width: 550px;
    padding: 20px;
    text-align: center;
}

    #confirm h3 {
        color: #F16030;
        margin-left: 20px;
        text-align: left;
    }

    #confirm p {
        padding: 10px;
        text-align: center;
    }

        #confirm p.thxtitle {
            padding: 20px
        }

    #confirm input {
        margin-top: 50px;
    }

#confirmforgot {
    height: 250px;
    width: 550px;
    padding: 20px;
    text-align: center;
}

    #confirmforgot p {
        padding: 10px;
        text-align: center;
    }

.unsavedPopup {
    height: 200px !important;
}

.closeBtn {
    background: url("../images/allBtns.png") no-repeat scroll 0 1px transparent;
}

    .closeBtn:active {
        background-position: -166px 1px;
    }

#fancybox-close {
    display: none !important;
}

#fancybox-outer {
    border: 2px solid #f2f2f2;
    box-shadow: 0 1px 2px 0 #575756;
}

#lightBoxWrapper {
}

#customvideo {
    width: 640px;
    min-height: 273px;
    display: block;
}

#lightBoxWrapper .closeBtn {
    margin: 20px auto;
    display: block;
}


/***** Site Map Styles*****/
.siteListWrapper {
    margin: 0 0 60px 0;
}

    .siteListWrapper .sitemapHeader {
        border-bottom: 1px solid #CCCCCC;
        color: #000000;
        display: block;
        font-size: 15px;
        padding-bottom: 8px;
    }

    .siteListWrapper ul.sitesList {
        margin: 10px 0;
        overflow: hidden;
    }

        .siteListWrapper ul.sitesList .mainPage {
            margin: 5px 0;
            color: #333333;
        }

        .siteListWrapper ul.sitesList li {
        }

        .siteListWrapper ul.sitesList > li {
            float: left;
            display: inline;
            width: 33.333%;
        }

            .siteListWrapper ul.sitesList > li ul {
                padding: 0px 0 0 10px;
            }

    .siteListWrapper .sitesList a {
        font-size: 13px;
        color: #808080;
        padding: 5px 0;
        display: block;
    }

    .siteListWrapper ul.sitesList > li ul ul a {
        color: #a6a6a6;
    }


/****** Nutrinova Site Styles ****/

.nutrinova-site .subNavigation > ul > li.active {
    /*border-bottom: 2px solid #243a76;
    border-top: 2px solid #243a76;*/
}

.nutrinova-site .subNavigation ul li a:hover, .nutrinova-site .subNavigation ul li a.active, .nutrinova-site .subNavigation ul li.opened > a {
    color: #273f7f;
}

.nutrinova-site .subNavigation ul li > ul {
    background: #f4f7fd;
}

    .nutrinova-site .subNavigation ul li > ul li > ul {
        background: #e9eff7;
    }

        .nutrinova-site .subNavigation ul li > ul li > ul li > ul {
            background: #d8e3f0;
        }

    .nutrinova-site .subNavigation ul li > ul li a {
        background: url(../images/nutrinova-leftnav-menus-bg.png) repeat-x 0 bottom;
    }

    .nutrinova-site .subNavigation ul li > ul li > ul li a {
        background: url(../images/nutrinova-leftnav-menus-bg.png) repeat-x 0 bottom;
    }

    .nutrinova-site .subNavigation ul li > ul li > ul li > ul li a {
        background: url("../images/nutrinova-leftnav-menus-bg.png") repeat-x scroll 0 bottom transparent;
    }

    .nutrinova-site .subNavigation ul li > ul li > ul li.active a, .nutrinova-site .subNavigation ul li > ul li > ul li > ul li.last a {
        border-bottom: 3px solid #cfd7e3;
    }

.nutrinova-site .bannerWrapper .bannerText .titleText, .nutrinova-site.internalPage .bannerWrapper .bannerText .headlineText, .nutrinova-site .contentTitle, .nutrinova-site .InternalBreadcrumb .contactBtn, .nutrinova-site .relatedItems h2 {
    color: #263e7e;
}

.nutrinova-site .InternalBreadcrumb {
    background: url("../images/cleanese_breadcrumbBG.png") repeat scroll 0 -64px transparent;
}

.nutrinova-site footer {
    border-top: 1px solid #233b7b;
}

.nutrinova-site .InternalBreadcrumb .contactBtn {
    background: url("../images/contact-btns.png") no-repeat scroll left -302px transparent;
    height: 29px;
    padding: 0 0 0 5px;
}

    .nutrinova-site .InternalBreadcrumb .contactBtn span {
        background: url("../images/contact-btns.png") no-repeat scroll right -378px transparent;
        display: block;
        height: 28px;
        padding: 4px 10px 0 3px;
    }

    .nutrinova-site .InternalBreadcrumb .contactBtn:focus {
        background-position: left -250px;
    }

        .nutrinova-site .InternalBreadcrumb .contactBtn:focus span {
            background-position: right -350px;
        }

.nutrinova-site .phoneIconRed {
    background: url("../images/nutrinoava_phone_email_icon.png") no-repeat scroll left top transparent;
}

.nutrinova-site .mailIconRed {
    background: url("../images/nutrinoava_phone_email_icon.png") no-repeat scroll left bottom transparent;
}


/*** Filter colors for nutrinova ****/

.nutrinova-site .LiteratureWrapper .LiteratureHeader .float-right ul li a.active, .nutrinova-site .LiteratureWrapper .LiteratureHeader .float-right ul li a:hover, .nutrinova-site .LiteratureWrapper .LiteratureHeader .float-left ul li a.active, .nutrinova-site .rightdropMenu li:hover a, .nutrinova-site .rightdropMenu li a:hover, .nutrinova-site .comboBoxContactUS .leftdropMenu > li > a {
    color: #263e7e;
}

.nutrinova-site .rightdropMenu li:hover ul li a {
    color: #808080;
}

.nutrinova-site .subNavigation ul li a:hover,
.nutrinova-site nav li a:hover {
    color: #263e7e;
}

.nutrinova-site nav li a.active {
    color: #263e7e;
}

.nutrinova-site .bannerWrapper .bannerText .titleText,
.nutrinova-site.internalPage .bannerWrapper .bannerText .headlineText,
.nutrinova-site .contentTitle,
.nutrinova-site .InternalBreadcrumb .contactBtn,
.nutrinova-site .relatedItems h2,
.nutrinova-site .company-details h3,
.nutrinova-site .footer-links ul li a:hover,
.nutrinova-site .footer-links ul li a.active,
.nutrinova-site .subNavigation ul li a:hover,
.nutrinova-site .subNavigation ul li a.active,
.nutrinova-site .worldwideLocations ul li a {
    color: #263e7e;
}

.nutrinova-site .productsContent .product-rows .products h4, .nutrinova-site .productsContent .product-rows .products h4 a {
    color: #263e7e;
    border-bottom: 2px solid #263E7E;
}

    .nutrinova-site .productsContent .product-rows .products h4 a {
        text-decoration: none;
        border: none;
    }

.nutrinova-site #productsContent .product-rows .products h4, .nutrinova-site #productsContent .product-rows .products h4 a {
    color: #263e7e;
    border-bottom: 2px solid #263E7E;
}

    .nutrinova-site #productsContent .product-rows .products h4 a {
        text-decoration: none;
        border: none;
    }

.nutrinova-site .company-details h3, .nutrinova-site .career_design h3 {
    color: #263e7e;
}

.nutrinova-site .LiteratureWrapper .LiteratureHeader .float-right ul li a.active,
.nutrinova-site .LiteratureWrapper .LiteratureHeader .float-right ul li a:hover,
.nutrinova-site .LiteratureWrapper .LiteratureHeader .float-left ul li a.active,
.nutrinova-site .rightdropMenu li:hover a,
.nutrinova-site .rightdropMenu li a:hover,
.nutrinova-site .comboBoxContactUS .leftdropMenu > li > a,
.nutrinova-site .filterComboBox ul li.ComboBox-child:hover a,
.nutrinova-site .flyoutBlocks .flyoutContent a,
.nutrinova-site .filterComboBox ul li a:hover,
.nutrinova-site .filterComboBox ul li a.active {
    color: #263e7e;
}

.nutrinova-site .rightdropMenu li:hover ul li a,
.nutrinova-site .filterComboBox ul li.ComboBox-child ul li a,
.nutrinova-site .filterComboBox ul li.ComboBox-child:hover ul li a {
    color: #808080;
}


/****** Ticona Site Styles ****/
.ticona-site {
}

    .ticona-site .bannerWrapper .bannerText .titleText,
    .ticona-site.internalPage .bannerWrapper .bannerText .headlineText,
    .ticona-site .contentTitle,
    .ticona-site .InternalBreadcrumb .contactBtn,
    .ticona-site .relatedItems h2,
    .ticona-site .company-details h3,
    .ticona-site .footer-links ul li a:hover,
    .ticona-site .footer-links ul li a.active,
    .ticona-site .subNavigation ul li a:hover,
    .ticona-site .subNavigation ul li a.active,
    .ticona-site .worldwideLocations ul li a, .ticona-site .subNavigation ul li.opened > a {
        color: #19b1ad;
    }

    .ticona-site .InternalBreadcrumb {
        background: url("../images/cleanese_breadcrumbBG.png") repeat scroll 1px -128px transparent;
    }

    .ticona-site footer {
        border-top: 1px solid #19b1ad;
    }

    .ticona-site .InternalBreadcrumb .contactBtn {
        background: url(../images/contact-btn-nutrinova.png) no-repeat scroll center top transparent;
    }

        .ticona-site .InternalBreadcrumb .contactBtn:active {
            background-position: center bottom;
        }

    .ticona-site .productsContent .product-rows .products h4, .ticona-site .productsContent .product-rows .products h4 a, .ticona-site #productsContent .product-rows .products h4, .ticona-site #productsContent .product-rows .products h4 a {
        border-bottom: 2px solid #19b1ad;
        color: #19b1ad;
    }

        .ticona-site .productsContent .product-rows .products h4 a, .ticona-site #productsContent .product-rows .products h4 a {
            text-decoration: none;
            border: none;
        }

    .ticona-site .company-details h3, .ticona-site .career_design h3 {
        color: #19B1AD;
    }

    .ticona-site .subNavigation > ul > li.active {
        /* border-bottom: 2px solid #19b1ad;
    border-top: 2px solid #19b1ad;*/
    }

    .ticona-site .subNavigation ul li a:hover, .ticona-site ul li a.active, .ticona-site ul li.opened > a {
        color: #00a9a3;
    }

    .ticona-site nav li a:hover, .ticona-site nav li a.active {
        color: #00a9a3;
    }

    .ticona-site .subNavigation ul li > ul {
        background: #f4fcfc;
    }

        .ticona-site .subNavigation ul li > ul li > ul {
            background: #ebf7f6;
        }

            .ticona-site .subNavigation ul li > ul li > ul li > ul {
                background: #d8e3f0;
            }

        .ticona-site .subNavigation ul li > ul li a {
            background: url("../images/nutrinova-leftnav-menus-bg.png") repeat-x scroll 0 bottom transparent;
        }

        .ticona-site .subNavigation ul li > ul li > ul li a {
            background: url(../images/nutrinova-leftnav-menus-bg.png) repeat-x 0 bottom;
        }

        .ticona-site .subNavigation ul li > ul li > ul li > ul li a {
            background: url("../images/nutrinova-leftnav-menus-bg.png") repeat-x scroll 0 bottom transparent;
        }

        .ticona-site .subNavigation ul li > ul li > ul li.active a {
            border-bottom: 3px solid #cfd7e3;
        }

        .ticona-site .subNavigation ul li > ul li > ul li.active > ul li a {
            border: medium none;
            padding: 11px 10px 15px 80px;
        }

        .ticona-site .subNavigation ul li > ul li > ul li.active > ul li.last a {
            border-bottom: 3px solid #cfd7e3;
            padding: 11px 10px 12px 70px;
        }

    .ticona-site .InternalBreadcrumb .contactBtn {
        background: url("../images/contact-btns.png") no-repeat scroll left -150px transparent;
        height: 29px;
        padding: 0 0 0 5px;
    }

        .ticona-site .InternalBreadcrumb .contactBtn span {
            background: url("../images/contact-btns.png") no-repeat scroll right -226px transparent;
            display: block;
            height: 28px;
            padding: 4px 10px 0 3px;
        }

        .ticona-site .InternalBreadcrumb .contactBtn:focus {
            background-position: left -189px;
        }

            .ticona-site .InternalBreadcrumb .contactBtn:focus span {
                background-position: right -265px;
            }

    .ticona-site .phoneIconRed {
        background: url("../images/ticona_phone_email_icon.png") no-repeat scroll left top transparent;
    }

    .ticona-site .mailIconRed {
        background: url("../images/ticona_phone_email_icon.png") no-repeat scroll left bottom transparent;
    }


    /*** Filter colors for ticona ****/

    .ticona-site .LiteratureWrapper .LiteratureHeader .float-right ul li a.active,
    .ticona-site .LiteratureWrapper .LiteratureHeader .float-right ul li a:hover,
    .ticona-site .LiteratureWrapper .LiteratureHeader .float-left ul li a.active,
    .ticona-site .rightdropMenu li:hover a,
    .ticona-site .rightdropMenu li a:hover,
    .ticona-site .comboBoxContactUS .leftdropMenu > li > a,
    .ticona-site .filterComboBox ul li.ComboBox-child:hover a,
    .ticona-site .flyoutBlocks .flyoutContent a,
    .ticona-site .filterComboBox ul li a:hover,
    .ticona-site .filterComboBox ul li a.active {
        color: #19b1ad;
    }

    .ticona-site .rightdropMenu li:hover ul li a,
    .ticona-site .filterComboBox ul li.ComboBox-child ul li a,
    .ticona-site .filterComboBox ul li.ComboBox-child:hover ul li a {
        color: #808080;
    }

/** bug fixes ***/

#industry-apps .gradientShadow-top, #industry-apps .gradientShadow-bottom, #product-apps .gradientShadow-top, #product-apps .gradientShadow-bottom {
    background: url("../images/graident-top-nav.png") repeat-x scroll center -7px transparent;
    height: 17px;
    position: absolute;
    top: 35px;
    width: 204px;
    z-index: 999;
}

#industry-apps .gradientShadow-bottom, #product-apps .gradientShadow-bottom {
    background: url("../images/graident-bot-nav.png") repeat-x scroll center top transparent;
    bottom: 27px;
    top: auto;
}

/*** Pagination ****/

.pagination .CesPager a {
    border: 2px solid #7ECCE4;
    color: #7ECCE4;
    padding: 5px 8px;
    font-size: 11px;
}

.pagination .CesPager span {
    border: 1px solid #E5E5E5;
    color: #000000;
    padding: 5px 8px;
    font-weight: normal;
    font-size: 11px;
}

.switchLanguage {
    display: block;
    margin-bottom: 15px;
    padding-left: 4px;
}

/**** Marketing Panel Colors ****/

.Celanese {
    color: #FF622A;
}

.Nutrinova {
    color: #233B7B;
}

.Ticona {
    color: #00A9A3;
}

.White {
    color: #000000;
}

/*****end*****/

/**** Fix for 49 bug ****/

.signinWrapper .errorMSG .errorSYM {
    position: absolute;
}

.signinWrapper .errorMSG .textPWError {
    margin-top: 50px !important;
    position: absolute;
}

/**** Search Results Page CSS ****/

.SearchPage table {
    width: auto !important;
}

.SearchPage .searchFilters .filter {
    margin: 0 !important;
    width: auto !important;
}

    .SearchPage .searchFilters .filter .CesNormalFacet {
        background: none repeat scroll 0 0 transparent;
        border: medium none;
        margin-bottom: 15px !important;
    }

    .SearchPage .searchFilters .filter .CesFacetTitle {
        color: #666666;
        margin: 0 0 5px;
        font-size: 14px !important;
        font-family: 'Arial';
        font-weight: normal !important;
    }

    .SearchPage .searchFilters .filter .CesFacetItem {
        padding: 3px 5px !important;
    }

        .SearchPage .searchFilters .filter .CesFacetItem span {
            font-size: 12px;
            font-family: 'Arial';
        }

.CesFaceHoveredItem {
    font-family: 'Arial' !important;
    font-size: 16px !important;
}
/**** Search Results Page CSS ****/
/*******Media literature new CSS******/
.rightdropMenu > li > a.otherMedia {
    padding: 10px !important;
    margin: -9px 0 !important;
}

div.selectList {
    display: inline;
    position: relative;
}

span.select {
    background: url("../images/down_arrow_select.jpg") no-repeat scroll right 0 #F5F5F5;
    ;
    bottom: 0;
    border: 1px solid lightgray;
    cursor: default;
    float: left;
    height: 20px;
    left: 0;
    line-height: 20px;
    position: absolute;
    text-indent: 10px;
    width: 350px;
    z-index: 1;
}

select.select {
    height: 20px !important;
    line-height: 26px;
    position: relative;
    width: 350px !important;
    z-index: 10;
    opacity: 0;
}

.LiteratureHeader .media-left-nav {
    margin-top: 20px;
}

.LiteratureHeader .media-right-nav {
    float: none;
    overflow: hidden;
}

/**** progressbar styles*******/

.divImage {
    background: none repeat scroll 0 0 black;
    height: 600px;
    opacity: 0.5;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 10;
}

    .divImage .progress {
        position: relative;
        top: 200px;
    }

.divProgressImage {
    background: none repeat scroll 0 0 black;
    height: 400px;
    margin-left: -10px;
    margin-top: -23px;
    opacity: 0.3;
    position: absolute;
    text-align: center;
    width: 850px;
    z-index: 10;
}

    .divProgressImage .progress {
        position: relative;
    }

.divMediaCategoryProgressImage {
    background: none repeat scroll 0 0 black;
    height: 400px;
    opacity: 0.3;
    position: absolute;
    text-align: center;
    width: 850px;
    z-index: 10;
}

    .divMediaCategoryProgressImage .progress {
        position: relative;
        top: 200px;
    }
/********* end of progressbar *********/

.contentWrapper .Celanese .titleText, .contentWrapper .Celanese .headlineText {
    color: #FF622A !important;
}

.contentWrapper .Nutrinova .titleText, .contentWrapper .Nutrinova .headlineText {
    color: #233b7b !important;
}

.contentWrapper .Ticona .titleText, .contentWrapper .Ticona .headlineText {
    color: #0099cc !important;
}

.contentWrapper .White .titleText, .contentWrapper .White .headlineText {
    color: #FFFFFF !important;
}

.contentWrapper .Black .titleText, .contentWrapper .Black .headlineText {
    color: #000000 !important;
}

.internalPage .contentHolder .content > ul > li ul {
    padding-left: 15px;
}

    .internalPage .contentHolder .content > ul > li ul li {
        list-style: circle outside none;
    }

/***********************changed breadcrumbg Buttons**********************/
.breadcrumbBtns {
    margin-right: 30px;
}

    .breadcrumbBtns li {
        background: url("../images/cleanese_breadcrumbBG.png") no-repeat scroll 0 -191px transparent;
        float: left;
        height: 37px;
        list-style: none outside none;
        overflow: hidden;
    }

        .breadcrumbBtns li a {
            background: url("../images/cleanese_breadcrumbBG.png") no-repeat scroll right -191px transparent;
            color: #FFFFFF;
            display: block;
            font-family: 'Arial';
            height: 37px;
            line-height: 37px;
            margin: 0;
            padding-left: 15px;
            padding-right: 20px;
        }

            .breadcrumbBtns li a:hover {
                text-decoration: none;
            }

        .breadcrumbBtns li.contactUsBtn {
            background: none;
        }

.ticona-site .breadcrumbBtns li {
    background-position: 0 -319px;
}

    .ticona-site .breadcrumbBtns li a {
        background: url("../images/cleanese_breadcrumbBG.png") no-repeat scroll right -319px transparent;
    }


.nutrinova-site .breadcrumbBtns li {
    background-position: 0 -255px;
}

    .nutrinova-site .breadcrumbBtns li a {
        background: url("../images/cleanese_breadcrumbBG.png") no-repeat scroll right -255px transparent;
    }

.countryLink {
    /*json border-bottom: 1px solid #CCCCCC;
    border-top: 1px solid #CCCCCC;*/
    margin: 20px 0 0;
    padding: 20px;
}

    .countryLink a {
        color: #8C96A0;
        padding-left: 5px;
    }

.gradesTable thead th h3 {
    color: #333333;
    display: inline-block;
    font-size: 13px;
    line-height: 18px;
    /* for firefox, safari, chrome, etc. */
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    /* for ie */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.gradesTable tbody td.text {
    text-align: left;
    padding-left: 25px;
}

/*********** for standard hyderperlink in description ********/
.internalPage .contentHolder .content a {
    color: #F05500 !important;
}

    .internalPage .contentHolder .content a:visited {
        color: #F79328 !important;
    }

    .internalPage .contentHolder .content a:active {
        color: #FF0000 !important;
    }

    .internalPage .contentHolder .content a:hover {
        text-decoration: none !important;
    }
/*************************************************************/
.gradesTable thead th.rotatedContainter {
    text-align: center;
    vertical-align: bottom;
    width: 200px;
}

    .gradesTable thead th.rotatedContainter div span {
        writing-mode: tb-rl;
        filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
        /*filter:flipv fliph;
     /*-moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
     -webkit-transform: rotate(90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    background-color:#ffffff; */

        -moz-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg); /* Safari and Chrome */
        -sand-transform: rotate(-90deg);
    }

.gradesTable thead th.first {
    border-right: 1px solid #b7b7b7;
}

.gradesTable th.rotateThis,
.gradesTable th.rotatedContainter {
    height: 130px;
}

.gradesTable thead th.rotatedContainter div {
    padding: 0px 0px 48px 0px;
}

    .gradesTable thead th.rotatedContainter div span {
        display: block;
        text-align: center;
        white-space: normal;
        zoom: 1;
        *line-height: 75px;
        width: auto\0;
        display: inline\0;
    }

        .gradesTable thead th.rotatedContainter div span.lastHdColn {
            line-height: 15px;
            white-space: normal;
            width: 100px;
            *width: 78px;
            *height: 100px;
            *margin-left: 20px;
            width: auto\0;
            height: 100px\0;
        }

.gradesTable tbody th {
    text-align: center;
}

.fixedCol span {
    display: block;
    width: 140px;
}

.dropScroll .scrollbar {
    background: transparent url(../images/bg-scrollbar-track.png) no-repeat 0 0;
    position: relative;
    background-position: 0 0;
    float: right;
    width: 15px;
}

.dropScroll .track {
    height: 100%;
    width: 12px;
    position: relative;
    padding: 0 1px;
}

.dropScroll .thumb {
    background: url("../images/bg-scrollbar-track.png") repeat scroll -19px top transparent;
    height: 60px;
    width: 20px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    margin-left: -1px;
}

    .dropScroll .thumb .end {
        overflow: hidden;
        height: 5px;
        width: 25px;
    }

.dropScroll .disable {
    display: none;
}

.dropScroll .viewport {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.dropScroll .overview {
    list-style: none;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    width: 100%;
}

.dropScrollRightContent {
    height: 235px;
    position: absolute;
    right: 0;
    width: 250px;
    z-index: 100;
}

.dropScrollLeftContent {
    height: 235px;
    position: absolute;
    width: 250px;
    z-index: 100;
}

.dropScroll .dropScrollLeftContent ul li a {
    text-align: left;
}

.dropScroll .dropScrollRightContent ul li a {
    text-align: right;
}

.dropScroll .dropScrollLeftContent ul {
    padding-bottom: 2px;
}

.dropScroll .dropScrollLeftContent ul {
    display: block;
}

.productContactUs {
    margin: 0 0 0 20px;
}

#product-apps .viewport ul#submenu {
    padding-bottom: 20px;
}

.registerDescription {
    padding: 20px 20px 40px;
    color: #4D4D4D;
    font-size: 13px;
    line-height: 20px;
}

.regeCommerceContainer {
    margin-left: 190px;
    padding-top: 16px;
}

.regeCommerceTxt {
    margin-bottom: 10px;
}

.literatureContentTicona {
    clear: both;
    float: left;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.submitBtn {
    background: url("../images/allBtns.png") no-repeat scroll 0 -37px transparent;
    border: medium none;
    height: 28px;
    text-indent: -999999px;
    width: 167px;
    margin-left: 1px;
}

    .submitBtn:active {
        background-position: -167px -37px;
    }

.multiRemoveBtn {
    background: url("../images/allBtns.png") no-repeat scroll 0 -304px transparent;
    border: medium none;
    height: 28px;
    text-indent: -999999px;
    width: 25px;
    margin-left: 1px;
}

    .multiRemoveBtn:active {
        background-position: -25px -304px;
    }

.multiAddBtn {
    background: url("../images/allBtns.png") no-repeat scroll 0 -270px transparent;
    border: medium none;
    height: 28px;
    text-indent: -999999px;
    width: 25px;
    margin-left: 1px;
}

    .multiAddBtn:active {
        background-position: -25px -270px;
    }

/**** MSDS Search Results Page ***/
.MSDSSearchHolder {
    clear: both;
}

.SearchPage {
    clear: both;
}

.MSDSSearchHolder .contentHolder {
    float: right;
}

.MSDSSearchHolder .searchWrapper {
    float: left;
    margin-left: 280px;
}

.MSDSSearchFilter .searchFiltersWrapper .searchFilters {
    margin-top: -195px;
}

/*********************
newpoductspage styles
*********************/
.literatureAndMultimedia {
    min-height: 90px;
    height: auto;
}

    .literatureAndMultimedia .industry {
        width: 220px;
    }

    .literatureAndMultimedia .applications {
        width: 250px;
    }

    .literatureAndMultimedia .products {
        width: 220px;
    }

    .literatureAndMultimedia ol {
        background-color: #10AEAD;
        position: relative;
    }

        .literatureAndMultimedia ol > li {
            background-color: #10AEAD;
            float: left;
        }

            .literatureAndMultimedia ol > li.active {
                background-color: #88D6D6;
            }

    .literatureAndMultimedia div.optionsContent {
        background: none repeat scroll 0 0 #88D6D6;
        display: none;
        left: 0;
        padding: 10px 20px 20px;
        width: 650px;
    }

    .literatureAndMultimedia ol > li.active > a {
        color: #FFFFFF;
        font-weight: bold;
        text-align: center;
    }

    .literatureAndMultimedia ol > li > a {
        display: block;
        padding: 20px 20px;
        text-align: center;
    }

    .literatureAndMultimedia div.optionsContent > ul {
        overflow: hidden;
        margin-bottom: 15px;
        float: left;
        width: 100%;
    }

    .literatureAndMultimedia div.optionsContent ul > li {
        float: left;
        width: 280px;
        padding: 4px;
    }

        .literatureAndMultimedia div.optionsContent ul > li input {
            margin-right: 10px;
        }

        .literatureAndMultimedia div.optionsContent ul > li label {
            color: #000000;
            font-size: 13px;
        }

        .literatureAndMultimedia div.optionsContent ul > li > a {
            color: #000000;
            font-size: 12px;
        }

    .literatureAndMultimedia .ticonaBtn {
        background-color: #EF4F1A;
        padding: 8px;
        border-radius: 5px;
        color: #FFFFFF;
        font-size: 17px;
    }

    .literatureAndMultimedia .ticonaResultBtn {
        margin-left: 10px;
        text-decoration: underline;
    }

    .literatureAndMultimedia div.checker span.checked {
        background-position: 0 -30px;
    }

    .literatureAndMultimedia .change {
        margin-top: -15px;
        padding: 0 20px 20px 0;
        text-decoration: underline !important;
        color: #88D7D6;
        font-weight: bold;
        font-size: 13px;
    }

    .literatureAndMultimedia .industrycompleted {
        color: #FFFFFF;
        background: url("../images/tickImg-new.png") no-repeat scroll 170px 12px #10AEAD;
        width: 220px;
    }

    .literatureAndMultimedia ol > li.industrycompleted > a {
        color: #88D7D6;
    }

    .literatureAndMultimedia .appcompleted {
        color: #FFFFFF;
        background: url("../images/tickImg-new.png") no-repeat scroll 193px 12px #10AEAD;
        width: 250px;
    }

    .literatureAndMultimedia ol > li.appcompleted > a {
        color: #88D7D6;
    }

    .literatureAndMultimedia .productcompleted {
        color: #FFFFFF;
        background: url("../images/tickImg-new.png") no-repeat scroll 169px 12px #10AEAD;
        width: 220px;
    }

    .literatureAndMultimedia ol > li.productcompleted > a {
        color: #88D7D6;
    }

    .literatureAndMultimedia sup {
        line-height: 0.3em;
    }

    .literatureAndMultimedia div.optionsContent p {
        color: #000000;
        display: block;
        padding-bottom: 10px;
        padding-top: 60px;
        font-size: 13px;
    }

    .literatureAndMultimedia div.productsContent > ul {
        margin-top: 20px;
    }

.literatureAndMultimediaError {
    padding-bottom: 15px;
    text-align: center;
}

.contentWrapper .scfForm {
    padding: 20px;
    width: 700px;
}

.contentWrapper .scfDatePickerGeneralPanel {
    width: 20%;
}

.contentWrapper .scfSingleLineTextBox, .contentWrapper .scfPasswordTextBox, .contentWrapper .scfEmailTextBox, .contentWrapper .scfTelephoneTextBox, .contentWrapper .scfSmsTelephoneTextBox, .contentWrapper .scfNumberTextBox, .contentWrapper .scfDatePickerTextBox, .contentWrapper .scfConfirmPasswordTextBox, .contentWrapper .scfCreditCardTextBox, .contentWrapper .scfCaptchaTextBox {
    background: url("../images/inputBG.jpg") repeat-x scroll center bottom #F5F5F5;
    border: 1px solid #CCCCCC;
    font-family: 'Arial';
    font-size: 12px;
    height: 26px;
    padding: 6px 10px 5px 9px;
    margin-bottom: 10px;
}

.contentWrapper .scfMultipleLineTextBox {
    background: url("../images/inputBG.jpg") repeat-x scroll center bottom #F5F5F5;
    border: 1px solid #CCCCCC;
    font-family: 'Arial';
    font-size: 16px;
    height: 18px;
    margin-bottom: 10px;
    min-height: 100px;
    outline: medium none;
    padding: 6px 3px 5px 10px;
    width: 420px;
    resize: both;
}

.contentWrapper .scfListBox {
    background: url("../images/inputBG.jpg") repeat-x scroll center bottom #F5F5F5;
    border: 1px solid #CCCCCC;
    font-family: 'Arial';
    font-size: 16px;
    height: 18px;
    margin-bottom: 10px;
    min-height: 100px;
    outline: medium none;
    padding: 6px 3px 5px 10px;
    width: 420px;
}

.contentWrapper .scfValidator {
    margin-top: -9px;
    margin-bottom: 10px;
}

.contentWrapper .scfDropList, .contentWrapper .scfCreditCardType {
    background-color: #F5F5F5;
    border: 1px solid lightgray;
    bottom: 0;
    cursor: default;
    float: left;
    height: 20px;
    left: 0;
    line-height: 20px;
    width: 350px;
    z-index: 1;
    margin-bottom: 10px;
}

.contentWrapper .scfDateSelectorYear, .contentWrapper .scfDateSelectorMonth, .contentWrapper .scfDateSelectorDay {
    background-color: #F5F5F5;
    border: 1px solid lightgray;
    bottom: 0;
    cursor: default;
    float: left;
    height: 20px;
    left: 0;
    line-height: 20px;
    width: 100px;
    z-index: 1;
    margin-right: 10px;
}

.contentWrapper .scfFileUpload {
    background-color: #f5f5f5;
    margin-bottom: 10px;
}

.contentWrapper .scfDatePickerGeneralPanel .ui-icon {
    top: -34px;
}

.contentWrapper .scfCheckBoxList, .contentWrapper .scfRadioButtonList {
    margin-bottom: 10px;
}

div.scfSubmitButtonBorder input[type="submit"] {
    margin-left: 250px;
}

/********* News Releases ********************/
.newsContainer {
    padding: 15px;
    width: 676px;
    float: left;
    margin-bottom: 20px;
    line-height: 1.3em;
}

.newsWrapper {
    border-top: 1px solid #CCCCCC;
    float: left;
    margin-bottom: 15px;
    padding: 20px;
    width: 100%;
}

    .newsWrapper p {
        font-size: 12px;
        color: #4D4D4D;
    }

    .newsWrapper .newsHeading {
        font-size: 17px;
        cursor: pointer;
        color: #EF4F1A;
    }

    .newsWrapper span {
        font-size: 14px;
    }

    .newsWrapper .pdfLink {
        background: url("../images/ico_pdf.gif") no-repeat scroll left top transparent;
        color: #0099CC;
        font-size: 12px;
        padding-bottom: 10px;
        padding-left: 20px;
    }

.newsDetailscontent {
    margin-top: 15px;
}

.newsContainer .leftdropMenu {
    margin-top: 12px;
}

.newsContainer .pagination {
    text-align: right;
    margin: 0;
}

    .newsContainer .pagination .CesPager a {
        color: #FE3600;
        border: none;
        font-size: 12px;
        padding: 0 5px;
    }

    .newsContainer .pagination .CesPager span {
        padding: 0;
        border: none;
        font-size: 12px;
    }

.newsContainer .topPagination {
    border-top: 1px solid #CCCCCC;
    padding: 10px 0;
    width: 677px;
}

.newsContainer .bootomPagination {
    border-top: 1px solid #CCCCCC;
    padding: 10px 0;
    width: 677px;
    float: left;
}



.list_top span.pdf a {
    color: #FE3600;
    float: left;
    font-size: 12px;
    padding-left: 10px;
}

ul.article_list {
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
}

    ul.article_list li {
        border-top: 1px solid #CCCCCC;
        list-style: none outside none;
        margin: 0;
        padding: 20px 0;
    }

.list_top {
    float: left;
    margin-bottom: 10px;
    width: 100%;
}

    .list_top span.date {
        color: #4D4D4D;
        float: left;
        font-size: 13px;
        padding-right: 10px;
    }

    .list_top span.pdf a {
        color: #FE3600;
        background: url("../images/ico_pdf.gif") no-repeat scroll 3px top transparent;
        float: left;
        font-size: 12px;
        padding-left: 25px;
        border-left: 1px solid #CCCCCC;
    }

.article_list li h2 a {
    color: #FE3600;
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 10px;
    line-height: 1.3em;
}

.article_list li p {
    color: #4D4D4D;
    font-size: 12px;
    line-height: 18px;
}

    .article_list li p a {
        color: #FE3600;
    }

footer .social {
    width: 260px;
    padding-left: 35px;
    float: right;
}

.socialcontainer {
    padding-top: 10px;
    width: 1024px;
    margin: 10px auto;
    height: 40px;
    background: #EEEEEE;
}

footer .social h4 {
    margin-top: 0.938em;
}

.social ul {
    margin: 0;
    padding: 0;
}

.social li {
    width: 52px;
    height: 33px;
    display: block;
    float: left;
    list-style-type: none;
}

    .social li a {
        display: block;
        width: 33px;
        height: 33px;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
        float: left;
    }

        .social li a:hover {
            opacity: 0.6;
        }

.social .twitter a {
    background: url(../images/icn-twitter.gif) no-repeat;
}

.social .facebook a {
    background: url(../images/icn-facebook.gif) no-repeat;
}

.social .linkedin a {
    background: url(../images/icn-linkedin.gif) no-repeat;
}

.social .youtube a {
    background: url(../images/icn-youtube.gif) no-repeat;
}

.social .rss a {
    background: url(../images/icn-rss.gif) no-repeat;
}
/*** Search Results Flyout ***/
.searchFlyout {
    background: none;
    left: -3px;
    margin-top: -1px;
    padding-bottom: 10px;
    position: relative;
    width: 333px;
}

#ctl10_Searchbox1_Popup {
    background-color: none !important;
    border: none !important;
    display: block;
    /*durga left: 664px !important;*/
    position: absolute;
    text-align: left;
    /*durga top: 64px !important;*/
    z-index: 999;
}


#ctl02_ctl05_ctl00_BTNSearch {
    background: url("../images/icn-search.gif") no-repeat scroll 12px center #F3F3F3;
    border: medium none;
    height: 42px;
    padding: 0;
    width: 40px;
}

.footerLinkIcon {
    background: url("../images/weibo-feed-icon.png") no-repeat scroll right top transparent;
    bottom: 23px;
    height: 35px;
    position: absolute;
    width: 36px;
}

.BusinessUnitProducts .productsContent_thumb {
    overflow: hidden;
}

    .BusinessUnitProducts .productsContent_thumb .product-rows {
        min-height: 250px;
        overflow: hidden;
        margin-bottom: 25px;
    }

        .BusinessUnitProducts .productsContent_thumb .product-rows .products {
            background-color: #FFFFFF;
            behavior: url(/PIE.htc);
            width: 195px;
            margin: 8px;
            float: left;
        }

.BusinessUnitProducts {
    padding: 0 20px 40px 25px;
    overflow: hidden;
}

    .BusinessUnitProducts .productsHeader {
        min-height: 32px;
        overflow: hidden;
        margin-bottom: 15px;
        padding: 3px 0 3px 7px;
    }

.productsApplication .filterComboBox li:first-child a {
    padding-left: 0;
}
/************Begin: International Home page*****************/
.internationalHomePage {
}

    .internationalHomePage .logo {
        margin-top: 20px;
    }

    .internationalHomePage .contentHolder {
        margin-top: 84px;
        overflow: hidden;
    }

        .internationalHomePage .contentHolder .imgWrapper {
            width: 1024px;
            height: 350px;
            overflow: hidden;
        }

.countryList {
}

    .countryList li {
        float: left;
        width: 40%;
        padding: 20px 21px 30px 70px;
        border-bottom: 1px solid #cccccc;
        border-right: 1px solid #cccccc;
        min-height: 220px;
    }

        .countryList li.last {
            border-bottom: none;
        }

        .countryList li h3 {
            color: #E33D00;
            font-size: 22px;
            margin-bottom: 15px;
        }

        .countryList li p {
            font-weight: bold;
            padding: 3px 0;
            margin-top: 10px;
        }

        .countryList li a {
            text-decoration: underline;
        }

.internationalHomePage footer {
    border-top: 1px solid #cccccc;
}

/************End: International Home page*****************/

/* Custom search msg*/
.custom-search-msg {
    width: 71%;
    margin: 0 auto;
    padding: 20px 0;
}

    .custom-search-msg.hide {
        display: none;
    }
/* ==========================================================================
   WEB FONTS
   ========================================================================== */
@font-face {
    font-family: 'KyrialSansProBold';
    src: url('../fonts/284266_0_0.eot');
    src: url('../fonts/284266_0_0.eot?#iefix') format('embedded-opentype'),url('../fonts/284266_0_0.woff') format('woff'),url('../fonts/284266_0_0.ttf') format('truetype');
}

@font-face {
    font-family: 'KyrialSansProRegular';
    src: url('../fonts/284266_1_0.eot');
    src: url('../fonts/284266_1_0.eot?#iefix') format('embedded-opentype'),url('../fonts/284266_1_0.woff') format('woff'),url('../fonts/284266_1_0.ttf') format('truetype');
}

@font-face {
    font-family: 'KyrialSansProRegular-Italic';
    src: url('../fonts/284266_2_0.eot');
    src: url('../fonts/284266_2_0.eot?#iefix') format('embedded-opentype'),url('../fonts/284266_2_0.woff') format('woff'),url('../fonts/284266_2_0.ttf') format('truetype');
}

@font-face {
    font-family: 'KyrialSansProBold-Italic';
    src: url('../fonts/284266_3_0.eot');
    src: url('../fonts/284266_3_0.eot?#iefix') format('embedded-opentype'),url('../fonts/284266_3_0.woff') format('woff'),url('../fonts/284266_3_0.ttf') format('truetype');
}

@font-face {
    font-family: 'DINNextLTPro-Bold';
    src: url('../fonts/284266_4_0.eot');
    src: url('../fonts/284266_4_0.eot?#iefix') format('embedded-opentype'),url('../fonts/284266_4_0.woff') format('woff'),url('../fonts/284266_4_0.ttf') format('truetype');
}

@font-face {
    font-family: 'DINNextLTPro-Light';
    src: url('../fonts/284266_5_0.eot');
    src: url('../fonts/284266_5_0.eot?#iefix') format('embedded-opentype'),url('../fonts/284266_5_0.woff') format('woff'),url('../fonts/284266_5_0.ttf') format('truetype');
}

@font-face {
    font-family: 'DINNextLTPro-Regular';
    src: url('../fonts/284266_6_0.eot');
    src: url('../fonts/284266_6_0.eot?#iefix') format('embedded-opentype'),url('../fonts/284266_6_0.woff') format('woff'),url('../fonts/284266_6_0.ttf') format('truetype');
}






/* ==========================================================================
   PAGE STYLES
   ========================================================================== */
html,
button,
input,
select,
textarea {
    color: #747474;
}

body {
    font-size: 1em;
    line-height: 110%;
    line-height: 1.4;
    font-family: 'KyrialSansProRegular', Arial, Helvetica, sans-serif;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

img {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

.mobileWrap {
    overflow: hidden;
}

.touch .mobileWrap {
    width: 1280px;
    margin: 0 auto;
}

h1, h2, h3, h4, .primaryNav {
    font-family: 'DINNextLTPro-Light', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

b {
    font-family: 'KyrialSansProBold', Arial, Helvetica, sans-serif;
}

a:link,
a:visited {
    text-decoration: none;
    color: #ff8400;
}

a:hover,
a:active {
    color: #747474;
}

.btn {
    border-width: 2px;
    border-style: solid;
    margin: 18px 0;
    font-family: 'DINNextLTPro-Bold', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    background: none;
    cursor: pointer;
}

    .btn.small {
        border-color: #f05500;
        padding: 12px 15px 12px 15px;
        font-size: 1.125em;
        color: #f05500;
    }

    .btn.large {
        border-color: #ff8400;
        padding: 16px 24px 16px 18px;
        font-size: 1.125em;
    }

    .btn.small:hover {
        background: #f05500;
        color: #fff;
    }

    .btn.large:hover {
        background: #ff8400;
        color: #fff;
    }

.container {
    width: 1065px;
    margin: 0 auto;
}

.searchbar {
    height: 42px;
    margin-bottom: 50px;
}

    .searchbar input[type=text] {
        background: #F3F3F3;
        width: 350px;
        height: 19px;
        border: 0;
        float: left;
        padding: 10px 0 18px 28px;
    }

    .searchbar input[type=submit] {
        background: url("../images/icn-search.gif") no-repeat scroll 12px center #F3F3F3;
        border: medium none;
        height: 47px;
        padding: 0;
        width: 40px;
    }

#topnav {
    width: 580px;
    margin: 15px 0 0 0;
    padding: 0;
    float: right;
    list-style: none;
}

    #topnav > li {
        position: relative;
        text-transform: uppercase;
        font-size: 0.814em;
        padding: 0 10px 0 16px;
        float: right;
    }

        #topnav > li.last {
            background: none;
            padding: 0 10px 0 0;
        }

        #topnav > li a {
            color: #747474;
        }

.topHeaderLink {
    color: #ff8400 !important;
}

.socialTop {
    position: absolute;
    display: none;
    background: #d2d2d2;
    margin: 10px 0 0 0;
    padding: 0 4px;
    width: auto;
    height: 38px;
    right: 10px;
}

    .socialTop li {
        display: inline;
    }

#topnav > li.active .socialTop {
    display: block;
    list-style-type: none;
}

.socialTop:after {
    position: absolute;
    top: -10px;
    right: 25px;
    display: inline-block;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #d2d2d2;
    content: '';
}

.socialTop li a {
    display: block;
    width: 42px;
    height: 38px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    float: left;
}

    .socialTop li a:hover {
        opacity: 0.6;
    }

.socialTop .twitter a {
    background: url(../images/icn-twitter-inverse.png) no-repeat 10px 8px;
}

.socialTop .facebook a {
    background: url(../images/icn-facebook-inverse.png) no-repeat 10px 8px;
}

.socialTop .linkedin a {
    background: url(../images/icn-linkedin-inverse.png) no-repeat 10px 8px;
}

.socialTop .youtube a {
    background: url(../images/icn-youtube-inverse.png) no-repeat 10px 8px;
}

.socialTop .rss a {
    background: url(../images/icn-rss-inverse.png) no-repeat 10px 8px;
}

.socialTop .xing a {
    background: url(../images/icn-xing-inverse.png) no-repeat 10px 8px;
}


#topnav li a:hover {
    text-decoration: underline;
}

h1.logo {
    margin: 0;
    padding: 0;
    background: url(../images/logo-celanese.png) no-repeat;
    width: 193px;
    height: 56px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    float: left;
}

.primaryNav {
    /* width:500px; */
    float: right;
    padding-bottom: 24px;
}


    .primaryNav > li {
        list-style-type: none;
        /* width:250px; */
        float: left;
        margin-left: 23px;
    }

        .primaryNav > li > a.dl-active {
            color: #747474;
        }

/* IE OVERRIDES */

.dl-menuwrapper.active > ul.dl-menu {
    display: block;
}

#content {
    position: relative;
}

.lt-ie9 input.search {
    padding-top: 10px;
    height: 32px;
}


/* CAROUSEL */
.sliderContainer {
    width: 100%;
    height: 603px;
    position: relative;
}

.orangeBar {
    width: 100%;
    height: 523px;
    position: absolute;
    top: 81px;
    left: 0;
    background-color: #fbaf1b;
    z-index: -1;
}

    .orangeBar span {
        width: 100%;
        height: 800px;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #fbaf1b;
        z-index: 0;
        background-repeat: no-repeat;
        background-position: top;
    }

    .orangeBar.bubbles span {
        background: url(../images/texture-bubbles.jpg) no-repeat top left;
    }

    .orangeBar.circularFrames span {
        background: url(../images/circularFrames.jpg) no-repeat top left;
    }

    .orangeBar.cubes span {
        background: url(../images/texture-cubes.jpg) no-repeat top left;
    }

    .orangeBar.drops span {
        background: url(../images/texture-drops.jpg) no-repeat top left;
    }

    .orangeBar.eyes span {
        background: url(../images/texture-eyes.jpg) no-repeat top left;
    }

    .orangeBar.folds span {
        background: url(../images/texture-folds.jpg) no-repeat top left;
    }

    .orangeBar.frames span {
        background: url(../images/texture-frames.jpg) no-repeat top left;
    }

    .orangeBar.gears span {
        background: url(../images/texture-gears.jpg) no-repeat top left;
    }

    .orangeBar.leaves span {
        background: url(../images/texture-leaves.jpg) no-repeat top left;
    }

    .orangeBar.roundedTriangles span {
        background: url(../images/texture-roundedTriangles.jpg) no-repeat top left;
    }

    .orangeBar.shards span {
        background: url(../images/texture-shards.jpg) no-repeat top left;
    }

    .orangeBar.triangles span {
        background: url(../images/texture-triangles.jpg) no-repeat top left;
    }

    .orangeBar.water span {
        background: url(../images/texture-water.jpg) no-repeat top left;
    }

    .orangeBar.weave span {
        background: url(../images/texture-weave.jpg) no-repeat top left;
    }

    .orangeBar.zigzags span {
        background: url(../images/texture-zigzags.jpg) no-repeat top left;
    }

#heroCarousel {
    width: 1065px;
    height: 515px;
    margin: 0 auto;
}

    #heroCarousel .rsOverflow {
        overflow: visible;
        width: 100%;
    }

.home #carousel .rsOverflow {
    min-height: 140px !important;
}

#heroCarousel img {
    position: absolute;
    max-width: 1065px;
    height: 515px;
    top: 0;
    left: 0;
    /*z-index:-1;*/
}

#heroCarousel .slideContent {
    width: 1065px;
    height: 515px;
    padding-top: 50px;
    position: relative;
}

.heroContent {
    margin: 0;
    width: 415px;
    color: #f05500;
    display: none;
    position: absolute;
    bottom: 80px;
    left: 57px;
}

    .heroContent .description {
        border-top: 1px solid #f05500;
        border-bottom: 1px solid #f05500;
    }


    .heroContent p,
    .heroContent h6 {
        font-size: 0.814em;
    }

    .heroContent h6 {
        margin: 1.375em 0;
        font-family: 'KyrialSansProBold', Arial, Helvetica, sans-serif;
        font-weight: normal;
    }

    .heroContent.white h2,
    .heroContent.white p,
    .heroBanner.white h2,
    .heroBanner.white p {
        color: #fff;
    }

    .heroContent h3 {
        font-family: 'DINNextLTPro-Light', Arial, Helvetica, sans-serif;
        font-size: 2.812em;
        line-height: 110%;
        margin: 0 0 10px 0;
        font-weight: 100;
    }

#heroCarousel .rsSlide {
    width: 1065px;
    opacity: 0.50;
}

#heroCarousel .rsActiveSlide {
    opacity: 1;
}

    #heroCarousel .rsActiveSlide .heroContent {
        display: block;
    }

#heroCarousel .rsNav {
    margin: 20px auto 0 auto;
    text-align: center;
    width: 100%;
}

#heroCarousel .rsArrowIcn {
    display: block;
    margin: 16px auto 0 auto;
    font-size: 2.25em;
    width: 36px;
    height: 36px;
}

#heroCarousel .rsArrowIcn {
    color: #0078d2;
}

#heroCarousel .rsArrow {
    width: 132px;
    height: 131px;
    position: absolute;
    top: 170px;
}

#heroCarousel .rsArrowLeft {
    background: url(../images/arrow-left.png) no-repeat;
    left: -67px;
}

#heroCarousel .rsArrowRight {
    background: url(../images/arrow-right.png) no-repeat;
    right: -67px;
}

#heroCarousel .rsBullet {
    background: url("../images/carousel-bullet-off.png") 6px 6px no-repeat;
    cursor: pointer;
    display: inline-block;
    margin: 0 27px 0 0;
    background: url(../images/icn-bullet-inactive.png) no-repeat top left;
    width: 18px;
    height: 18px;
}

    #heroCarousel .rsBullet.rsNavSelected {
        background: url(../images/icn-bullet-active.png) no-repeat top left;
        width: 18px;
        height: 18px;
    }

.newsEvents {
    margin: 0 0 10px 0;
}

    .newsEvents h3 {
        font-size: 30px;
        color: #747474;
        text-transform: uppercase;
    }

    .newsEvents ul {
        margin: 0;
        padding: 0;
    }

    .newsEvents li {
        position: relative;
        list-style-type: none;
        width: 254px;
        height: 295px;
        margin-left: 14px;
        display: block;
        float: left;
        background: url(../images/img-gradient-bg.jpg) no-repeat top left;
    }

        .newsEvents li .content {
            display: block;
            height: 172px;
            overflow: hidden;
            position: relative;
        }

        .newsEvents li:first-child {
            margin-left: 0;
        }

        .newsEvents li h5 {
            margin-top: 23px;
            font-size: 18px;
            color: #747474;
            text-transform: uppercase;
            text-align: center;
        }

        .newsEvents li .open {
            position: absolute;
            width: 25px;
            height: 25px;
            top: 130px;
            left: 45%;
            background: url(../images/icn-plus.png) no-repeat;
            text-indent: 100%;
            white-space: nowrap;
            overflow: hidden;
        }

        .newsEvents li .description {
            position: absolute;
            text-align: center;
            top: 172px;
            left: 0;
            display: block;
            font-size: 14px;
            line-height: 125%;
            color: #fff;
            padding: 12px 18px;
        }

            .newsEvents li .description p {
                text-align: left;
            }


        .newsEvents li .btn.inverse {
            display: block;
            border-color: #fff;
            color: #fff;
            font-size: 14px;
            font-weight: 300;
            margin: 15px auto;
            padding: 5px 10px;
        }

            .newsEvents li .btn.inverse:hover {
                background: #fff;
                color: #da6647;
            }

        .newsEvents li a:hover .open {
            display: none;
        }

        /*
.newsEvents li a:hover .description, 
.newsEvents li a:hover .btn.inverse {
    display:block;
}
*/

        .newsEvents li a:hover h5 {
            color: #ff8400;
        }

/*
.newsEvents li a:hover img {
    opacity:0.5;
}
*/




.workCelanese {
    padding: 65px 0 60px 0;
    border-top: 1px solid #e7e7e7;
}

    .workCelanese img {
        float: left;
        margin-right: 50px;
    }

    .workCelanese .supportCopy {
        padding: 0 50px 0 0;
    }

        .workCelanese .supportCopy p {
            line-height: 150%;
            padding-bottom: 18px;
        }

    .workCelanese h2 {
        font-size: 3em;
        margin: 0;
    }


footer {
    background: #eeeeee;
    color: #a7a7a7;
    font-size: 0.875em;
}

    footer h3 {
        font-size: 2em;
        border-bottom: 1px solid #fff;
        padding-bottom: 18px;
    }

    footer .about {
        line-height: 170%;
        width: 290px;
        padding-right: 30px;
        float: left;
    }

    footer .footerNav {
        border-right: 1px solid #fff;
        border-left: 1px solid #fff;
        width: 405px;
        float: left;
    }

        footer .footerNav li {
            list-style-type: none;
            font-family: 'DINNextLTPro-Light', Arial, Helvetica, sans-serif;
            width: 190px;
            height: 35px;
            float: left;
            padding: -left:30px;
        }

            footer .footerNav li a {
                color: #a7a7a7;
                text-transform: uppercase;
            }

                footer .footerNav li a:hover {
                    text-decoration: underline;
                }

    footer .social {
        width: auto;
        padding-left: 35px;
        float: right;
    }

        footer .social h4 {
            margin-top: 0.938em;
        }

.social ul {
    margin: 0;
    padding: 0;
}

.social li {
    width: 52px;
    height: 33px;
    display: block;
    float: left;
    list-style-type: none;
}

    .social li a {
        display: block;
        width: 33px;
        height: 33px;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
        float: left;
    }

        .social li a:hover {
            opacity: 0.6;
        }

.social .twitter a {
    background: url(../images/icn-twitter.gif) no-repeat;
}

.social .facebook a {
    background: url(../images/icn-facebook.gif) no-repeat;
}

.social .linkedin a {
    background: url(../images/icn-linkedin.gif) no-repeat;
}

.social .youtube a {
    background: url(../images/icn-youtube.gif) no-repeat;
}

.social .rss a {
    background: url(../images/icn-rss.gif) no-repeat;
}

.social .xing a {
    background: url(../images/xing-feed-icon.png) no-repeat
}

footer .copyright {
    width: 100%;
    border-top: 1px solid #fff;
    padding: 28px 0;
    margin: 0;
    clear: both;
}

footer .gradient {
    height: 30px;
    background-color: #ec3117;
    background-image: -webkit-gradient(linear, left top, right top, from(#ec3117), to(#fbaf1b)); /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(left, #ec3117, #fbaf1b); /* Chrome 10+, Saf5.1+ */
    background-image: -moz-linear-gradient(left, #ec3117, #fbaf1b); /* FF3.6+ */
    background-image: -ms-linear-gradient(left, #ec3117, #fbaf1b); /* IE10 */
    background-image: -o-linear-gradient(left, #ec3117, #fbaf1b); /* Opera 11.10+ */
    background-image: linear-gradient(left, #ec3117, #fbaf1b); /* W3C */
}



/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (min-width: 35em) {
}

@media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    *text-indent: -9999px;
}

    .ir:before {
        content: "";
        display: block;
        width: 0;
        height: 150%;
    }

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

    .visuallyhidden.focusable:active,
    .visuallyhidden.focusable:focus {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto;
    }

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* Region Dropdown */

.worldwideLocations ul {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

    .worldwideLocations ul li {
        height: 30px;
        padding: 0 0 0 5px;
    }

        .worldwideLocations ul li a {
            color: #FF622A;
            display: block;
            height: 14px;
            padding: 0 10px 10px 7px;
            text-decoration: underline;
        }

            .worldwideLocations ul li a span {
                background: url("../images/literature_arrow.png") no-repeat scroll right -37px rgba(0, 0, 0, 0);
                padding-right: 15px;
            }

        .worldwideLocations ul li:hover {
            background: url("../images/region_selector_left.png") no-repeat scroll left center rgba(0, 0, 0, 0);
            position: relative;
            z-index: 999999;
        }

            .worldwideLocations ul li:hover a {
                background: url("../images/region_selector_right.png") no-repeat scroll right center rgba(0, 0, 0, 0);
                z-index: 6;
            }

    .worldwideLocations ul ul {
        display: none;
    }

    .worldwideLocations ul li:hover ul {
        background: url("../images/region_selector_bottom.png") no-repeat scroll center bottom rgba(0, 0, 0, 0);
        display: block;
        margin-top: -3px;
        padding-bottom: 8px;
        position: absolute;
        right: 0;
        /*width: 260px;    // was getting disturbed language hover*/
        z-index: -1;
    }

        .worldwideLocations ul li:hover ul li {
            background: url("../images/region_selector_middle.png") repeat-y scroll 0 0 rgba(0, 0, 0, 0);
            height: auto;
            padding: 0 3px;
        }

            .worldwideLocations ul li:hover ul li.firstContent {
                font-size: 11px;
                height: 29px;
                line-height: 16px;
                padding: 10px;
                text-align: right;
            }

            .worldwideLocations ul li:hover ul li a {
                background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
                color: #808080;
                display: block;
                height: auto;
                padding: 10px 20px !important;
                text-align: right;
                text-decoration: none;
            }

                .worldwideLocations ul li:hover ul li a:hover {
                    background: none repeat scroll 0 0 #FFFFFF;
                }
/* end of Region dropdown */
/* internal Page */

.internalPage {
    position: relative;
}

.LeftSidebar {
    overflow: hidden;
    background: url('../images/subnavBg.png') no-repeat 0 30px #ffffff;
    position: relative;
}

.InternalBreadcrumb {
    height: 38px;
    overflow: hidden;
    position: relative;
    padding: 0 0 0 30px;
    background: #EEEEEE;
    color: #8A8989;
    width: 1035px;
    margin: 0 auto;
}

    .InternalBreadcrumb .BreadcrumbList {
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

        .InternalBreadcrumb .BreadcrumbList li.first a {
            padding: 0;
            background: none;
        }

        .InternalBreadcrumb .BreadcrumbList li a {
            background: url("../images/arrows.png") no-repeat scroll 10px 15px transparent;
            float: left;
            padding: 0 0 0 20px;
            display: block;
            color: #8A8989;
            font-size: 12px;
            line-height: 38px;
            text-transform: uppercase;
            font-family: 'DINNextLTPro-Light';
        }

.BreadcrumbList sup {
    line-height: 6px;
}

.container .subNavigation {
    width: 285px;
    float: left;
    margin-top: 1px;
    padding-bottom: 30px;
}

.subNavigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .subNavigation ul li a {
        color: #F05500;
        cursor: pointer;
        display: block;
        font-size: 12px;
        padding: 10px 8px 10px 30px;
        position: relative;
        /*json border-bottom:1px solid #cccccc;*/
        border-bottom: 1px solid #eeeeee;
        text-transform: uppercase;
        font-family: 'DINNextLTPro-Light';
    }

    .subNavigation ul li > ul {
        display: none;
    }

    .subNavigation ul li.opened > ul {
        display: block;
    }

    .subNavigation ul li ul li a {
        /*background:url("../images/arrows.png") no-repeat scroll 45px -38px transparent;*/
        padding: 10px 8px 10px 60px;
    }

    .subNavigation ul li > ul li > ul li a {
        padding: 10px 8px 10px 90px;
    }

.subNavigation .socialList {
    list-style: none outside none;
    margin-left: 24px;
    margin-top: 18px;
    overflow: hidden;
}

    .subNavigation .socialList li {
        border: medium none;
        display: inline;
        float: left;
        margin-right: 20px;
    }

        .subNavigation .socialList li a.socialLink {
            background: url("../images/e-commerece-icons.png") no-repeat scroll 0 10px transparent;
            border: medium none;
            padding-left: 28px;
        }

        .subNavigation .socialList li a.contactLink {
            background: url("../images/e-commerece-icons.png") no-repeat scroll 0 -50px transparent;
            border: medium none;
            padding-left: 25px;
        }

.contentWrapper {
    width: 730px;
    float: left;
    border-left: 1px solid #cccccc;
    background: #ffffff;
    min-height: 500px;
}

    .contentWrapper .bannerIMG {
        min-height: 252px;
        width: 730px;
        overflow: hidden;
    }

.contentHolder {
    padding: 20px;
    /*json width:708px;*/
}

    .contentHolder .contentTitle {
        color: #0099CC;
        font-family: 'DINNextLTPro-Light';
        font-size: 34px;
        margin: 10px 0;
    }

    .contentHolder p {
        font-size: 13px;
        line-height: 20px;
    }

    .contentHolder .leftContentRightImgContainer {
        overflow: hidden;
    }

        .contentHolder .leftContentRightImgContainer .ContentContainer {
            width: 500px;
            float: left;
        }

            .contentHolder .leftContentRightImgContainer .ContentContainer h3 {
                color: #0099CC;
                font-family: 'DINNextLTPro-Light';
                font-size: 18px;
                text-transform: none;
                margin: 5px 0;
            }

            .contentHolder .leftContentRightImgContainer .ContentContainer ul {
                margin-left: 20px;
                list-style: none;
                margin: 10px 0 20px 30px;
                padding: 0;
            }

                .contentHolder .leftContentRightImgContainer .ContentContainer ul li {
                    font-size: 12px;
                    margin: 5px 0;
                }

        .contentHolder .leftContentRightImgContainer .ImgContainer {
            float: right;
        }

            .contentHolder .leftContentRightImgContainer .ImgContainer ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                .contentHolder .leftContentRightImgContainer .ImgContainer ul li {
                    margin-bottom: 5px;
                }

    .contentHolder .content {
        font-size: 13px;
        line-height: 20px;
    }

.NoSidebar {
    width: 1065px;
    margin: 0 auto;
}
/* end of internal page */

.primaryNav {
    margin: 16px 0;
}

footer h3 {
    margin: 28px 0px;
}

footer .about {
    margin: 18px 0px;
}

footer .footerNav {
    margin: 14px 0px;
    padding-left: 40px;
}

footer .social h4 {
    margin: 22px 0px 31px 0px;
}

.newsEvents h3 {
    margin: 30px 0;
}

.workCelanese .supportCopy p {
    margin: 16px 0;
    padding-bottom: 18px;
}

.bannerIMG img {
    height: 261px;
    width: 779px;
}

.textPassword .pwd .placeholder {
    display: none;
}

.newsEvents .break {
    margin-left: 0px !important;
}

.searchResultToptext {
    width: 1035px;
    margin: 6px auto;
}

.article_list h2 {
    line-height: 0.2em;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url(../images/fancybox_sprite.png);
}


/***Coveo Search****/
.coveo-search-wrap {
    position: relative;
    font-family: 'KyrialSansProRegular', Arial, Helvetica, sans-serif;
}

    .coveo-search-wrap .coveo-recommendations .coveo-results-column {
        width: 100%;
        padding: 10px 0px;
    }

    .coveo-search-wrap .coveo-results-column .CoveoSearchbox {
        display: none;
    }

    .coveo-search-wrap .CoveoResultList .coveo-result-list-container .CoveoResult {
        margin: 0 0 35px;
        border-bottom: 0px;
    }

    .coveo-search-wrap .CoveoResultList .coveo-result-list-container .coveo-result-frame .coveo-result-cell {
        font-family: 'KyrialSansProRegular', Arial, Helvetica, sans-serif;
    }

    .coveo-search-wrap .CoveoResultList .coveo-result-list-container .CoveoResult .coveo-result-cell .coveo-title a {
        color: #282828;
        display: block;
        margin: 0 0 10px 0;
        font-size: 16px;
        text-decoration: none;
        font-weight: 600;
    }

    .coveo-search-wrap .CoveoResultList .coveo-result-list-container .CoveoResult .coveo-result-cell .link {
        color: #0099cc !important;
        text-decoration: underline !important;
        font-size: 14px;
        margin: 0 0 10px 0;
        display: block;
    }

        .coveo-search-wrap .CoveoResultList .coveo-result-list-container .CoveoResult .coveo-result-cell .link:hover {
            text-decoration: none !important;
        }

    .coveo-search-wrap .CoveoResultList .coveo-result-list-container .CoveoResult .coveo-result-cell .CoveoExcerpt {
        margin: 2px 0px 2px 0px;
        color: #444444;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 12px;
    }

    .coveo-search-wrap .CoveoPager {
        margin: 0;
        width: 100%;
        text-align: center;
    }

        .coveo-search-wrap .CoveoPager .coveo-pager-list .coveo-active {
            color: #000;
            background-color: #F48020;
        }

        .coveo-search-wrap .CoveoPager .coveo-pager-list .coveo-pager-list-item {
            font-size: 11px;
        }
/***End of Coveo Search****
@font-face {
  font-family: 'KyrialSansProRegular';
  src: url('https://celanese.com/Celanese/resources/fonts/284266_1_0.eot');
  src: url('https://celanese.com/Celanese/resources/fonts/284266_1_0.eot?#iefix') format('embedded-opentype'), url('https://celanese.com/Celanese/resources/fonts/284266_1_0.woff') format('woff'), url('https://celanese.com/Celanese/resources/fonts/284266_1_0.ttf') format('truetype');
}
.cookieStatement__wrapper {
  position: relative;
  z-index: 9999;
}
.cookieStatement__wrapper * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.cookieStatement__wrapper .cookieStatement__container {
  background-color: #0099cc;
  color: #fff;
  font-family: 'KyrialSansProRegular';
  font-size: 16px;
  padding: 15px 30px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  overflow: hidden;
  transition: bottom 1s;
}
.cookieStatement__wrapper .cookieStatement__container.opened {
  bottom: 0;
}
.cookieStatement__wrapper .cookieStatement__container p {
  padding-right: 130px;
}
.cookieStatement__wrapper .cookieStatement__container p a {
  color: #d5df3d;
  text-decoration: none;
  transition: color .3s;
}
.cookieStatement__wrapper .cookieStatement__container p a:hover {
  color: #FFD000;
}
@media screen and (max-width: 480px) {
  .cookieStatement__wrapper .cookieStatement__container p {
    padding-right: 0;
  }
}
.cookieStatement__wrapper .cookieStatement__container button {
  color: #000;
  cursor: pointer;
  background-color: #ffd000;
  border: 0;
  border-radius: 5px;
  font-size: 16px;
  min-width: 110px;
  padding: 8px 15px;
  position: absolute;
  outline: 0;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s, color 0.3s;
}
.cookieStatement__wrapper .cookieStatement__container button:hover {
  background-color: #fff;
  color: #EA1C2C;
}
@media screen and (max-width: 480px) {
  .cookieStatement__wrapper .cookieStatement__container button {
    display: block;
    margin-top: 15px;
    padding: 15px;
    position: static;
    transform: none;
    width: 100%;
  }
}
*/

/* v1.0.5 */
/* Core RS CSS file. 95% of time you shouldn't change anything here. */
.royalSlider {
    width: 600px;
    height: 400px;
    position: relative;
    direction: ltr;
}

    .royalSlider > * {
        float: left;
    }

.rsWebkit3d .rsSlide {
    -webkit-transform: translateZ(0);
}


.rsWebkit3d .rsSlide,
.rsWebkit3d .rsContainer,
.rsWebkit3d .rsThumbs,
.rsWebkit3d .rsPreloader,
.rsWebkit3d img,
.rsWebkit3d .rsOverflow,
.rsWebkit3d .rsBtnCenterer,
.rsWebkit3d .rsAbsoluteEl,
.rsWebkit3d .rsABlock,
.rsWebkit3d .rsLink {
    -webkit-backface-visibility: hidden;
}

.rsFade.rsWebkit3d .rsSlide,
.rsFade.rsWebkit3d img,
.rsFade.rsWebkit3d .rsContainer {
    -webkit-transform: none;
}

.rsOverflow {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    float: left;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.rsVisibleNearbyWrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    left: 0;
    top: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

    .rsVisibleNearbyWrap .rsOverflow {
        position: absolute;
        left: 0;
        top: 0;
    }

.rsContainer {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.rsArrow,
.rsThumbsArrow {
    cursor: pointer;
}

.rsThumb {
    float: left;
    position: relative;
}


.rsArrow,
.rsNav,
.rsThumbsArrow {
    opacity: 1;
    -webkit-transition: opacity 0.3s linear;
    -moz-transition: opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
}

.rsHidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
    -moz-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
    -o-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
    transition: visibility 0s linear 0.3s,opacity 0.3s linear;
}


.rsGCaption {
    width: 100%;
    float: left;
    text-align: center;
}

/* Fullscreen options, very important ^^ */
.royalSlider.rsFullscreen {
    position: fixed !important;
    height: auto !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 2147483647 !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
}

.royalSlider .rsSlide.rsFakePreloader {
    opacity: 1 !important;
    -webkit-transition: 0s;
    -moz-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    display: none;
}

.rsSlide {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.royalSlider.rsAutoHeight,
.rsAutoHeight .rsSlide {
    height: auto;
}

.rsContent {
    width: 100%;
    height: 100%;
    position: relative;
}

.rsPreloader {
    position: absolute;
    z-index: 0;
}

.rsNav {
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    user-select: none;
}

.rsNavItem {
    -webkit-tap-highlight-color: rgba(0,0,0,0.25);
}

.rsThumbs {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    float: left;
    z-index: 22;
}

.rsTabs {
    float: left;
    background: none !important;
}

.rsTabs,
.rsThumbs {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}


.rsVideoContainer {
    /*left: 0;
	top: 0;
	position: absolute;*/
    /*width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	float: left;*/
    width: auto;
    height: auto;
    line-height: 0;
    position: relative;
}

.rsVideoFrameHolder {
    position: absolute;
    left: 0;
    top: 0;
    background: #141414;
    opacity: 0;
    -webkit-transition: .3s;
}

    .rsVideoFrameHolder.rsVideoActive {
        opacity: 1;
    }

.rsVideoContainer iframe,
.rsVideoContainer video,
.rsVideoContainer embed,
.rsVideoContainer .rsVideoObj {
    position: absolute;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
/* ios controls over video bug, shifting video */
.rsVideoContainer.rsIOSVideo iframe,
.rsVideoContainer.rsIOSVideo video,
.rsVideoContainer.rsIOSVideo embed {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 44px;
}

.rsABlock {
    left: 0;
    top: 0;
    position: absolute;
    z-index: 15;
}

img.rsImg {
    max-width: none;
}

.grab-cursor {
    cursor: url(grab.png) 8 8, move;
}

.grabbing-cursor {
    cursor: url(grabbing.png) 8 8, move;
}

.rsNoDrag {
    cursor: auto;
}

.rsLink {
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 20;
    background: url(blank.gif);
}

.peKenBurns {
    position: relative;
    overflow: hidden;
}

    .peKenBurns > div {
        display: none;
    }

        .peKenBurns > div.peKb_active {
            overflow: hidden;
            width: inherit;
            height: inherit;
            display: block;
        }

        .peKenBurns > div > h1, .peKenBurns > div > h2, .peKenBurns > div > h3, .peKenBurns > div > h4, .peKenBurns > div > p {
            display: none;
        }

        .peKenBurns > div.peKb_active > h1, .peKenBurns > div.peKb_active > h2, .peKenBurns > div.peKb_active > h3, .peKenBurns > div.peKb_active > h4, .peKenBurns > div.peKb_active > p {
            display: block;
        }

    .peKenBurns a:focus {
        outline: 0;
    }

    .peKenBurns img {
        border: none;
    }

    .peKenBurns .peKb_noBack {
        background: transparent !important;
    }

    .peKenBurns ul, .peKenBurns li {
        margin: 0;
        padding: 0;
        border: 0;
        outline: 0;
    }

    .peKenBurns .peKb_slides {
        display: block;
        position: relative;
        overflow: hidden;
        height: 482px !important; /*padding:15px;*/
    }

        .peKenBurns .peKb_slides > div {
            position: absolute;
            overflow: hidden;
            display: none;
            z-index: 1;
        }

        .peKenBurns .peKb_slides div.peKb_active {
            z-index: 2;
            display: block;
        }

        .peKenBurns .peKb_slides .peKb_caption {
            display: inline;
            position: absolute;
            left: 0;
            top: 0;
            z-index: 200;
            margin: 0 5px 10px 5px;
        }

            .peKenBurns .peKb_slides .peKb_caption .peKb_holder {
                position: absolute;
            }

            .peKenBurns .peKb_slides .peKb_caption .peKb_real {
                padding: 30px;
                overflow: hidden;
                position: absolute;
                z-index: 10;
            }

                .peKenBurns .peKb_slides .peKb_caption .peKb_real h1, .peKenBurns .peKb_slides .peKb_caption .peKb_real h2, .peKenBurns .peKb_slides .peKb_caption .peKb_real h3, .peKenBurns .peKb_slides .peKb_caption .peKb_real h4, .peKenBurns .peKb_slides .peKb_caption .peKb_real p {
                    display: block;
                    margin: 0;
                    padding: 0;
                    background: none;
                    -moz-border-radius: 0;
                    -webkit-border-radius: 0;
                    border-radius: 0;
                    border: none;
                    white-space: nowrap;
                }

            .peKenBurns .peKb_slides .peKb_caption .peKb_background {
                display: block;
                position: absolute;
                z-index: 9;
            }

        .peKenBurns .peKb_slides .peKb_frame {
            z-index: 0;
            width: 100%;
            height: 100%;
            display: block;
        }

        .peKenBurns .peKb_slides .peKb_spinner {
            z-index: 201;
            width: 100%;
            height: 100%;
            display: block;
        }

        .peKenBurns .peKb_slides .peKb_videooverlay {
            z-index: 202;
            width: 100%;
            height: 100%;
            cursor: pointer;
            display: block;
        }

    .peKenBurns .peKb_controls {
        display: block;
        position: relative;
        height: 50px;
        overflow: hidden;
        margin-top: -16px;
        z-index: 120
    }

        .peKenBurns .peKb_controls .peKb_holder {
            height: 50px;
            position: relative;
            overflow: hidden;
            margin-top: -6px;
        }

        .peKenBurns .peKb_controls .peKb_mainPanel {
            position: relative;
            overflow: hidden;
            height: 50px;
            float: left;
        }

        .peKenBurns .peKb_controls .peKb_slideBtns {
            margin-top: 15px;
            margin-bottom: 15px;
            padding-left: 15px;
            padding-right: 15px;
            list-style-type: none;
            text-align: center;
            height: 23px;
            float: left;
            position: relative;
        }

            .peKenBurns .peKb_controls .peKb_slideBtns li {
                float: left;
                display: block;
                margin: 0;
                height: 23px;
                text-indent: -9999px;
            }

                .peKenBurns .peKb_controls .peKb_slideBtns li a {
                    display: block;
                    width: 22px;
                    height: 23px;
                    line-height: 23px;
                    margin: 0;
                    overflow: hidden;
                    outline: 0;
                }

        .peKenBurns .peKb_controls .peKb_arrows {
            float: left;
            margin-top: 15px;
            margin-bottom: 15px;
            padding-left: 8px;
            padding-right: 8px;
            line-height: 23px;
            width: 76px;
            text-indent: -9999px;
        }

            .peKenBurns .peKb_controls .peKb_arrows .peKb_prev, .peKb_controls .peKb_arrows .peKb_next {
                height: 23px;
                width: 22px;
                display: block;
                float: left;
            }

            .peKenBurns .peKb_controls .peKb_arrows .peKb_prev {
                padding-left: 10px;
                padding-right: 5px;
            }

            .peKenBurns .peKb_controls .peKb_arrows .peKb_next {
                padding-left: 5px;
                padding-right: 10px;
            }

    .peKenBurns .peKb_timer {
        z-index: 210;
        position: absolute;
        display: none;
        width: 22px;
        height: 24px;
    }

        .peKenBurns .peKb_timer .peKb_overlay {
            width: 22px;
            height: 24px;
            position: absolute;
            z-index: 1;
        }

        .peKenBurns .peKb_timer .peKb_sprite {
            margin-top: 1px;
            position: absolute;
            width: 22px;
            height: 22px;
            z-index: 0;
        }

    .peKenBurns .peKb_videoClose {
        display: block;
        height: 50px;
        width: 46px;
        float: left;
        position: relative;
        margin-left: 2px;
        text-indent: -9999px;
        -moz-border-radius: 6px;
        -webkit-border-radius: 6px;
        border-radius: 6px;
    }

        .peKenBurns .peKb_videoClose a {
            height: 45px;
            width: 45px;
            display: block;
        }

    .peKenBurns .peKb_logoLabel {
        display: block;
        width: 58px;
        height: 46px;
        position: absolute;
        overflow: hidden;
        top: 8%;
        left: -38px;
        text-indent: -9999px;
    }

        .peKenBurns .peKb_logoLabel a {
            display: block;
            width: 50px;
            height: 46px;
        }

    .peKenBurns .peKb_shadow {
        display: block;
        height: 82px;
        position: absolute;
        bottom: 10px;
        z-index: -1;
    }

        .peKenBurns .peKb_shadow .peKb_left {
            clear: both;
        }

        .peKenBurns .peKb_shadow .peKb_left, .peKenBurns .peKb_shadow .peKb_right {
            float: left;
            width: 100px;
            height: 82px;
        }

        .peKenBurns .peKb_shadow .peKb_middle {
            float: left;
            height: 82px;
        }

.ie7 .peKenBurns .peKb_controls .peKb_arrows .peKb_next {
    padding-right: 8px;
}

.ie7 .peKenBurns .peKb_controls .peKb_slideBtns {
    padding-left: 5px;
}

.ie7 .peKenBurns .peKb_controls .peKb_arrows {
    padding-right: 0;
}

.ie7 .peKenBurns .peKb_controls .peKb_mainPanel div.peKb_iebg {
    overflow: hidden;
    margin-left: 10px;
    margin-right: 10px;
    height: 51px;
}

.ie7 .peKenBurns .peKb_controls .peKb_mainPanel span.peKb_iebgRight {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 51px;
}

.ie7 .peKenBurns .peKb_noBack {
    background-color: black !important;
    filter: alpha(opacity=0) !important;
}

.ie8 .peKenBurns .peKb_controls .peKb_arrows .peKb_next {
    padding-right: 8px;
}

.ie8 .peKenBurns .peKb_controls .peKb_slideBtns {
    padding-left: 5px;
}

.ie8 .peKenBurns .peKb_controls .peKb_arrows {
    padding-right: 0;
}

.ie8 .peKenBurns .peKb_controls .peKb_mainPanel div.peKb_iebg {
    overflow: hidden;
    margin-left: 10px;
    margin-right: 10px;
    height: 51px;
}

.ie8 .peKenBurns .peKb_controls .peKb_mainPanel span.peKb_iebgRight {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 51px;
}

.ie8 .peKenBurns .peKb_noBack {
    background-color: black !important;
    filter: alpha(opacity=0) !important;
}

.ie9 .peKenBurns .peKb_noBack {
    background-color: black !important;
    opacity: 0 !important;
}

.peKenBurns .peKb_Thumb {
    position: absolute;
    z-index: 212;
    width: 98px;
    height: 76px;
    overflow: hidden;
}

    .peKenBurns .peKb_Thumb div {
        width: 84px;
        height: 48px;
        margin: 7px 0 0 7px;
        overflow: hidden;
    }

.peKenBurns .peKb_controlsInner {
    z-index: 209;
}

    .peKenBurns .peKb_controlsInner .peKb_holder {
        height: 40px;
        margin: 0 15px 0 15px;
    }

    .peKenBurns .peKb_controlsInner .peKb_slideBtns {
        margin-top: 8px;
    }

    .peKenBurns .peKb_controlsInner .peKb_arrows {
        margin-top: 8px;
    }

.peKenBurns .peKb_videoCloseInner {
    background: transparent !important;
    padding-top: 20px !important;
    padding-left: 10px !important;
}

    .peKenBurns .peKb_videoCloseInner a {
        width: 32px !important;
        height: 32px !important;
    }

.peKenBurns iframe {
    padding: 0 !important;
    margin: 0 !important;
    border-width: 0 !important;
    background-color: black !important;
}

.peKenBurns .peKb_slides { /*background-color:#282828;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;*/
}

    .peKenBurns .peKb_slides .peKb_frame {
        background-color: #000;
    }

    .peKenBurns .peKb_slides .peKb_spinner {
        background: url("img/spinner.gif") no-repeat center center;
    }

    .peKenBurns .peKb_slides .peKb_videooverlay {
        background: url("img/video.png") no-repeat center center;
    }

    .peKenBurns .peKb_slides .peKb_caption h1, .peKenBurns .peKb_slides .peKb_caption h2, .peKenBurns .peKb_slides .peKb_caption h3, .peKenBurns .peKb_slides .peKb_caption h4, .peKenBurns .peKb_slides .peKb_caption p {
        color: #fff;
        font-size: 16px;
        line-height: 18px;
        font-weight: bold;
        font-family: helvetica,arial,sans-serif;
        line-height: 24px;
        text-align: left;
    }

    .peKenBurns .peKb_slides .peKb_caption .peKb_background {
        background: #000;
        -moz-border-radius: 8px;
        -webkit-border-radius: 8px;
        border-radius: 8px;
    }

.peKenBurns .peKb_controls .peKb_mainPanel {
    background: url("img/controls_bg.png") repeat-x;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.peKenBurns .peKb_controls .peKb_slideBtns {
    border-right: 1px solid #ccc;
}

    .peKenBurns .peKb_controls .peKb_slideBtns li a {
        background: url("img/buttons.png") no-repeat;
    }

    .peKenBurns .peKb_controls .peKb_slideBtns a:hover {
        background-position: 0 -23px;
    }

    .peKenBurns .peKb_controls .peKb_slideBtns .peKb_currentSlide {
        background-position: 0 -46px;
        cursor: default;
    }

        .peKenBurns .peKb_controls .peKb_slideBtns .peKb_currentSlide:hover {
            background-position: 0 -46px;
        }

.peKenBurns .peKb_controls .peKb_arrows {
    border-left: 1px solid #fff;
}

    .peKenBurns .peKb_controls .peKb_arrows .peKb_prev {
        background: url("img/buttons.png") no-repeat 10px -70px;
    }

    .peKenBurns .peKb_controls .peKb_arrows .peKb_next {
        background: url("img/buttons.png") no-repeat 10px -93px;
    }

    .peKenBurns .peKb_controls .peKb_arrows .peKb_prev:hover {
        background-position: -35px -70px;
    }

    .peKenBurns .peKb_controls .peKb_arrows .peKb_next:hover {
        background-position: -34px -93px;
    }

.peKenBurns .peKb_timer {
    color: #999;
}

    .peKenBurns .peKb_timer .peKb_overlay {
        background: url("img/buttons.png") no-repeat -45px -46px;
    }

    .peKenBurns .peKb_timer .peKb_sprite {
        background: url("img/time_sprite.png") no-repeat 0 0;
    }

.peKenBurns .peKb_videoClose {
    background: url("img/close_video_bg.png") repeat-x;
}

    .peKenBurns .peKb_videoClose a {
        background: url("img/buttons.png") no-repeat 12px -122px;
    }

        .peKenBurns .peKb_videoClose a:hover {
            background-position: -32px -122px;
        }

.peKenBurns .peKb_logoLabel {
    background: url("img/logo_bg_ie.png") no-repeat;
}

    .peKenBurns .peKb_logoLabel a {
        background: url("img/logo.png") no-repeat 0 2px;
    }

.peKenBurns .peKb_shadow .peKb_left {
    background: url("img/shad_lhs.png") no-repeat 0 0;
}

.peKenBurns .peKb_shadow .peKb_middle {
    background: url("img/shad_tile.png") repeat-x 0 0;
}

.peKenBurns .peKb_shadow .peKb_right {
    background: url("img/shad_rhs.png") no-repeat 0 0;
}

.ie7 .peKenBurns .peKb_controls .peKb_mainPanel {
    background: url("img/controls_bg_left.png") no-repeat 0 7px;
}

    .ie7 .peKenBurns .peKb_controls .peKb_mainPanel div.peKb_iebg {
        background: url("img/controls_bg_ie.png") repeat-x 0 7px;
    }

    .ie7 .peKenBurns .peKb_controls .peKb_mainPanel span.peKb_iebgRight {
        background: url("img/controls_bg_right.png") no-repeat 0 8px;
    }

.ie7 .peKenBurns .peKb_videoClose {
    background: url("img/close_video_bg_ie.png") no-repeat 0 7px;
}

.ie7 .peKenBurns .peKb_logoLabel {
    background: url("img/logo_bg_ie.png") no-repeat;
}

.ie8 .peKenBurns .peKb_controls .peKb_mainPanel {
    background: url("img/controls_bg_left.png") no-repeat 0 7px;
}

    .ie8 .peKenBurns .peKb_controls .peKb_mainPanel div.peKb_iebg {
        background: url("img/controls_bg_ie.png") repeat-x 0 7px;
    }

    .ie8 .peKenBurns .peKb_controls .peKb_mainPanel span.peKb_iebgRight {
        background: url("img/controls_bg_right.png") no-repeat 0 8px;
    }

.ie8 .peKenBurns .peKb_videoClose {
    background: url("img/close_video_bg_ie.png") no-repeat 0 7px;
}

.ie8 .peKenBurns .peKb_logoLabel {
    background: url("img/logo_bg_ie.png") no-repeat;
}

.peKenBurns .peKb_Thumb {
    background: url("img/thumb_bg.png") no-repeat center center;
}

    .peKenBurns .peKb_Thumb div {
        background: url("img/spinner.gif") no-repeat center center;
    }

.peKenBurns .peKb_controlsInner .peKb_mainPanel {
    background: transparent;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.peKenBurns .peKb_controlsInner .peKb_holder {
    background: url("img/controls_bg.png") -0px -10px repeat-x;
}

.peKenBurns .peKb_controlsInner div.peKb_iebg, .peKenBurns .peKb_controlsInner span.peKb_iebgRight, .peKenBurns .peKb_controlsInner .peKb_mainPanel {
    background: transparent !important;
}

.peKenBurns .peKb_videoCloseInner a {
    background: url("img/inner_vid_close.png") no-repeat 0 0 !important;
}

    .peKenBurns .peKb_videoCloseInner a:hover {
        background-position: -44px 0 !important;
    }

.fancybox-wrap, .fancybox-skin, .fancybox-outer, .fancybox-inner, .fancybox-image, .fancybox-wrap iframe, .fancybox-wrap object, .fancybox-nav, .fancybox-nav span, .fancybox-tmp {
    border: 0;
    outline: none;
    vertical-align: top;
    margin: 0;
    padding: 0
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020
}

.fancybox-skin {
    position: relative;
    background: #f9f9f9;
    color: #444;
    text-shadow: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.fancybox-opened {
    z-index: 8030
}

    .fancybox-opened .fancybox-skin {
        -webkit-box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        -moz-box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        box-shadow: 0 10px 25px rgba(0,0,0,0.5)
    }

.fancybox-outer, .fancybox-inner {
    position: relative
}

.fancybox-type-iframe .fancybox-inner {
    -webkit-overflow-scrolling: touch
}

.fancybox-error {
    color: #444;
    font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
    white-space: nowrap;
    margin: 0;
    padding: 15px
}

.fancybox-image, .fancybox-iframe {
    display: block;
    width: 100%;
    height: 100%
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    background-position: 0 -108px;
    opacity: 0.8;
    cursor: pointer;
    z-index: 8060
}

    #fancybox-loading div {
        width: 44px;
        height: 44px;
        background: url(../images/fancybox_loading.gif) center center no-repeat
    }

.fancybox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 8040
}

.fancybox-nav {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    background: transparent url(../images/blank.gif);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    z-index: 8040
}

.fancybox-prev {
    left: 0
}

.fancybox-next {
    right: 0
}

.fancybox-nav span {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 34px;
    margin-top: -18px;
    cursor: pointer;
    z-index: 8040;
    visibility: hidden
}

.fancybox-prev span {
    left: 10px;
    background-position: 0 -36px
}

.fancybox-next span {
    right: 10px;
    background-position: 0 -72px
}

.fancybox-tmp {
    position: absolute;
    top: -9999px;
    left: -9999px;
    visibility: hidden
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background: url(../images/fancybox_overlay.png)
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll
}

.fancybox-title {
    visibility: hidden;
    font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
    position: relative;
    text-shadow: none;
    z-index: 8050
}

.fancybox-title-float-wrap {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: -35px;
    z-index: 8050;
    text-align: center
}

    .fancybox-title-float-wrap .child {
        display: inline-block;
        margin-right: -100%;
        background: rgba(0,0,0,0.8);
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
        text-shadow: 0 1px 2px #222;
        color: #FFF;
        font-weight: 700;
        line-height: 24px;
        white-space: nowrap;
        padding: 2px 20px
    }

.fancybox-title-outside-wrap {
    position: relative;
    margin-top: 10px;
    color: #fff
}

.fancybox-title-inside-wrap {
    padding-top: 10px
}

.fancybox-title-over-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    background: rgba(0,0,0,.8);
    padding: 10px
}

.fancybox-inner, .fancybox-lock {
    overflow: hidden
}

.fancybox-nav:hover span, .fancybox-opened .fancybox-title {
    visibility: visible
}
/*clearfix*/
.group {
    *zoom: 1;
}

    .group:before, .group:after {
        display: table;
        content: "";
        line-height: 0;
    }

    .group:after {
        clear: both;
    }
/*/clearfix*/


/** /font-icons if you are not using font icons you can just remove this part/**/
@font-face {
    font-family: 'Slide-icons';
    src: url('../fonts/Slide-icons.eot');
}

@font-face {
    font-family: 'Slide-icons';
    src: url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAWcAAsAAAAACSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAABCAAAAm4AAAQxqzjSYEZGVE0AAAN4AAAAGgAAABxmWaSOR0RFRgAAA5QAAAAdAAAAIAAzAARPUy8yAAADtAAAAEsAAABgL/bcQGNtYXAAAAQAAAAAPQAAAVLgL/LNaGVhZAAABEAAAAAuAAAANv3vdhloaGVhAAAEcAAAAB4AAAAkBBD/5GhtdHgAAASQAAAAEgAAABIFOwBxbWF4cAAABKQAAAAGAAAABgAGUABuYW1lAAAErAAAAOEAAAGw7pftcnBvc3QAAAWQAAAADAAAACAAAwAAeJx9VE1oE1EQnpfsJutmSWNMQoUoWxB/qmIKnkKJWKvXQlOwhx5E7SEo9WCEHNKAJqVbn8RLzvEgKEUPCgoiIi3YHkWw2mO9CBb8O1SzurXjvLfrJiqEhXkzwzffm/nee8tAUYAxZuQvFs5PHi6cuzR1GVgAGORsM2D3Be1ehRtBbii7ddiZjyPnvmOE+QW7YRfVNNzpSQPE0vBwexqMtNIbh7Dg0KAHUrAL9sARyF6ZKpzKZDK0nMwMHHeXIXc54S7DHU109gPAZpnF5th1xiEkiANgsFpgNDATPB3ldlHZbNiNcBTZ/JNRZBPFZ0nE6mw/GT6MUC6tiPCgihA6Vkb8sXCNI35bGxRuTcYa4vqZIWlUP1sVoCx3Yyqd1gTNIUH4RhJ6rILAxw9yN/bwghVSt56rLoCyFY6gmy8kwENJwjYrlItPVauOuDWyhqDEzlKFIuvIIrAHfTJbr2uSWpgFOVvFHVDQc5dftK751P3CeyuNp8Uf/DL3tal5rFKLuiX2MxGdL00azJHKOWLcrZF3MmtZWhThNRWwx62XSYTF/d8Rc6sR2iFyNYS4MWNSzaeJA+RWfkqjCYBO5tV71bIkjTssUVe5bykrhrXqWqnZ1m9a6rfk61emfu+Px8iIA8zf/SrDNr4s8csd+Gbzn+mXOtWK3rPHkqbeGkuZuvNIGudo9wRdvDkald0Yj9HFy89vtvsgjw7/Pxm9Kf+SEfGj86HU/frlVn6RwgP7CLVRTZDCFZt6j99edcWGSPmz5h4BLO5d73bIzVL7OdTkc8j6O5MIdiPBkzcNnZ7zDvF/2OYkWvSFI78BSE0QpgAAeJxjYGBgZACCk535hiD6XIbUOhgNAD+3BfAAAHicY2BkYGDgA2IJBhBgYmAEQlYgZgHzGAAEgQA4AAAAeJxjYGZiYJzAwMrAwejDmMbAwOAOpb8ySDK0MDAwMbAyM8CBAILJEJDmmsLg8EDqAwPjg/8PGPQYHzAoNDAwMMIVKAAhIwATaAw5AHicY2BgYGaAYBkGRgYQ8AHyGMF8FgYDIM0BhEwgiQeyHxj+/wezpCAs+RcCjFBdYMDIxoDMHZEAAP1aCcoAAAB4nGNgZGBgAGLNvbqy8fw2Xxm4mRhA4FyG1DoE/f8BEwPjAyCXgwEsDQAB0gmnAAB4nGNgZGBgfPD/AYMeEwMDwz8GIAkUQQHMAG3nA/YAAAIAAAAAAAAAAgAAUQClACAAlgAAAABQAAAGAAB4nI2PMW7CQBBFn8FGIkQpo5RbIFHZsjciEhyAMg0SFwALrYS8kuEMOQLH4BgcgGPkAKnz7UxBkYKVVvPmz5/ZWeCZMwndSZjwZjwgozQeMuPLOJXnapyJv41HTJIXOZN0LOW17+p4wBNT4yGffBin8lyMM/HNeCT+Yc2BwI6aXHFLpOEI60PY1XnYxkbJnW7Kqs9PfWzZq9vhKfQPx1L3/6l/Nc9c6kLXy1/xrnGxOa1iu6+dL0q3dHevK/PzfJH7spLxkW03qrZSQ191eqHbi03dHkNsXFWUD835BcvqQqwAAAB4nGNgZsALAAB9AAQ=) format('woff'), url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAANAIAAAwBQRkZUTWZZpI4AAAboAAAAHEdERUYANQAGAAAGyAAAACBPUy8yL9TcHwAAAVgAAABWY21hcOAx89QAAAHMAAABUmdhc3D//wADAAAGwAAAAAhnbHlmlq1ZxgAAAzQAAAGAaGVhZP3vdhkAAADcAAAANmhoZWEEEP/mAAABFAAAACRobXR4BeoAcQAAAbAAAAAabG9jYQEyAOAAAAMgAAAAEm1heHAAUwAnAAABOAAAACBuYW1l7pftcgAABLQAAAGwcG9zdCBfgkMAAAZkAAAAWgABAAAAAQAAZVgBDF8PPPUACwIAAAAAAM5oGq4AAAAAzmgargAA/+ACAAHgAAAACAACAAAAAAAAAAEAAAHg/+AALgIAAAD+AAIAAAEAAAAAAAAAAAAAAAAAAAAFAAEAAAAIACQACQAAAAAAAgAAAAEAAQAAAEAAAAAAAAAAAQIAAZAABQAIAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAIABQMAAAAAAAAAAAAAEAAAAAAAAAAAAAAAUGZFZABA4BrwAAHg/+AALgHgACCAAAABAAAAAAAAAgAAAAAAAAAAqgAAAAAAAAIAAFEAqgAgAJYAAAAAAAMAAAADAAAAHAABAAAAAABMAAMAAQAAABwABAAwAAAACAAIAAIAAAAA4B3wAP//AAAAAOAa8AD//wAAH+oQAwABAAAAAAAAAAAAAAEGAAABAAAAAAAAAAECAAAAAgAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAEIAZACeAMAAAAABAAD/4AIAAeAAAgAAEQEhAgD+AAHg/gAAAAAAAQBRADYBrwGKAB0AAAE2NC8BJg8BJyYPAQYUHwEHBh8BFj8BFxY/ATYvAQGqBAQXCwx8fAwLFwQEfX0LCxcLDHx8DAsXCwt9AVwFDQUXCwt9fQsLFwUNBXx8DAsXCwt9fQsLFwsMfAABAKoABQGeAbYAEQAAEyYPAQYfAQcGHwEWMj8BNjQn1AwLEwsLrKwLCxMFDQXBCAgBtgsLEwsMrKwMCxMFBcEJGAkAAAkAIAAAAeABwAADAAcACwAPABMAFwAbAB8AIwAAEzMVIyUzFSMnMxUjBzMVIyUzFSMnMxUjBzMVIyUzFSMnMxUjIICAAUCAgKCAgKCAgAFAgICggICggIABQICAoICAAcCAgICAgCCAgICAgCCAgICAgAAAAQCWAAoBjwG2ABEAAAE2LwEmDwEGFB8BFj8BNjQvAQGKCwsTDAvBCQnBCwsUBAStAYwMCxMLC8EJGAnBCwsTBQ0FrAAAAAwAlgABAAAAAAABAAsAGAABAAAAAAACAAUAMAABAAAAAAADACcAhgABAAAAAAAEAAsAxgABAAAAAAAFAAsA6gABAAAAAAAGAAsBDgADAAEECQABABYAAAADAAEECQACAAoAJAADAAEECQADAE4ANgADAAEECQAEABYArgADAAEECQAFABYA0gADAAEECQAGABYA9gBTAGwAaQBkAGUALQBpAGMAbwBuAHMAAFNsaWRlLWljb25zAABpAGMAbwBuAHMAAGljb25zAABGAG8AbgB0AEYAbwByAGcAZQAgADIALgAwACAAOgAgAFMAbABpAGQAZQAtAGkAYwBvAG4AcwAgADoAIAAyADUALQA5AC0AMgAwADEAMwAARm9udEZvcmdlIDIuMCA6IFNsaWRlLWljb25zIDogMjUtOS0yMDEzAABTAGwAaQBkAGUALQBpAGMAbwBuAHMAAFNsaWRlLWljb25zAABWAGUAcgBzAGkAbwBuACAAMQAuADAAAFZlcnNpb24gMS4wAABTAGwAaQBkAGUALQBpAGMAbwBuAHMAAFNsaWRlLWljb25zAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAABAAIBAgEDAQQBBQEGB3VuaUYwMDAHdW5pRTAxQQd1bmlFMDFCB3VuaUUwMUMHdW5pRTAxRAAAAAAAAf//AAIAAQAAAA4AAAAYAAAAAAACAAEAAwAHAAEABAAAAAIAAAAAAAEAAAAAyYlvMQAAAADOaBquAAAAAM5oGq4=) format('truetype');
    font-weight: normal;
    font-style: normal;
}

[data-icon]:before {
    font-family: 'Slide-icons';
    content: attr(data-icon);
    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/** / End of font-icons /**/




.lightGallery {
    overflow: hidden !important;
}

#lightGallery-Gallery img {
    border: none !important;
}

#lightGallery-outer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999 !important;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    opacity: 1;
    -webkit-transition: opacity 0.35s ease;
    -moz-transition: opacity 0.35s ease;
    -o-transition: opacity 0.35s ease;
    -ms-transition: opacity 0.35s ease;
    transition: opacity 0.35s ease;
    background: #0d0d0d;
}

    #lightGallery-outer .lightGallery-slide {
        position: relative;
    }
/*lightGallery starting effects*/
#lightGallery-Gallery.opacity {
    opacity: 1;
    transition: opacity 1s ease 0s;
    -moz-transition: opacity 1s ease 0s;
    -webkit-transition: opacity 1s ease 0s;
    -o-transition: opacity 1s ease 0s;
    -ms-transition: opacity 1s ease 0s;
}

    #lightGallery-Gallery.opacity .thumb_cont {
        opacity: 1;
    }

#lightGallery-Gallery.fadeM {
    opacity: 0;
    transition: opacity 0.5s ease 0s;
    -moz-transition: opacity 0.5s ease 0s;
    -webkit-transition: opacity 0.5s ease 0s;
    -o-transition: opacity 0.5s ease 0s;
    -ms-transition: opacity 0.5s ease 0s;
}
/*lightGallery starting effects*/


/*lightGallery core*/
#lightGallery-Gallery {
    height: 100%;
    opacity: 0;
    width: 100%;
    position: relative;
    transition: opacity 1s ease 0s;
    -moz-transition: opacity 1s ease 0s;
    -webkit-transition: opacity 1s ease 0s;
    -o-transition: opacity 1s ease 0s;
    -ms-transition: opacity 1s ease 0s;
}
/**/
#lightGallery-slider {
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    position: absolute;
    white-space: nowrap;
}
    /**/
    #lightGallery-slider .lightGallery-slide {
        background: url(../img/loading.gif) no-repeat scroll center center transparent;
        display: inline-block;
        height: 100%;
        text-align: center;
        width: 100%;
    }

        #lightGallery-slider .lightGallery-slide.complete {
            background-image: none;
        }

#lightGallery-Gallery.showAfterLoad .lightGallery-slide > * {
    opacity: 0;
}

#lightGallery-Gallery.showAfterLoad .lightGallery-slide.complete > * {
    opacity: 1;
}

#lightGallery-slider.slide .lightGallery-slide, #lightGallery-slider.useLeft .lightGallery-slide {
    position: absolute;
    opacity: 0.4;
}

#lightGallery-slider.fadeM .lightGallery-slide {
    position: absolute;
    left: 0;
    opacity: 0;
}

#lightGallery-slider.animate .lightGallery-slide {
    position: absolute;
    left: 0;
}

#lightGallery-slider.fadeM .current {
    opacity: 1;
    z-index: 9;
}

#lightGallery-slider .lightGallery-slide:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px;
}

#lightGallery-Gallery.opacity .lightGallery-slide .object {
    transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
}

.lightGallery-slide .object {
    transform: scale3d(0.5, 0.5, 0.5);
    -moz-transform: scale3d(0.5, 0.5, 0.5);
    -ms-transform: scale3d(0.5, 0.5, 0.5);
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    -o-transform: scale3d(0.5, 0.5, 0.5);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
    -ms-transition: -ms-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s;
}

#lightGallery-Gallery.fadeM .lightGallery-slide .object {
    transform: scale3d(0.5, 0.5, 0.5);
    -moz-transform: scale3d(0.5, 0.5, 0.5);
    -ms-transform: scale3d(0.5, 0.5, 0.5);
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    -o-transform: scale3d(0.5, 0.5, 0.5);
}

#lightGallery-slider.fadeM.on .current {
    opacity: 1;
    transition: opacity 0.5s ease 0s;
    -moz-transition: opacity 0.5s ease 0s;
    -webkit-transition: opacity 0.5s ease 0s;
    -o-transition: opacity 0.5s ease 0s;
    -ms-transition: opacity 0.5s ease 0s;
}

#lightGallery-slider.fadeM .lightGallery-slide {
    transition: opacity 0.4s ease 0s;
    -moz-transition: opacity 0.4s ease 0s;
    -webkit-transition: opacity 0.4s ease 0s;
    -o-transition: opacity 0.4s ease 0s;
    -ms-transition: opacity 0.4s ease 0s;
}

#lightGallery-slider.slide .lightGallery-slide {
    transform: translate3d(100%, 0px, 0px);
    -moz-transform: translate3d(100%, 0px, 0px);
    -ms-transform: translate3d(100%, 0px, 0px);
    -webkit-transform: translate3d(100%, 0px, 0px);
    -o-transform: translate3d(100%, 0px, 0px);
}

#lightGallery-slider.slide.on .lightGallery-slide {
    opacity: 0;
}

#lightGallery-slider.slide .lightGallery-slide.current {
    opacity: 1 !important;
    transform: translate3d(0px, 0px, 0px) !important;
    -moz-transform: translate3d(0px, 0px, 0px) !important;
    -ms-transform: translate3d(0px, 0px, 0px) !important;
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    -o-transform: translate3d(0px, 0px, 0px) !important;
}

#lightGallery-slider.slide .lightGallery-slide.prevSlide {
    opacity: 0;
    transform: translate3d(-100%, 0px, 0px);
    -moz-transform: translate3d(-100%, 0px, 0px);
    -ms-transform: translate3d(-100%, 0px, 0px);
    -webkit-transform: translate3d(-100%, 0px, 0px);
    -o-transform: translate3d(-100%, 0px, 0px);
}

#lightGallery-slider.slide .lightGallery-slide.nextSlide {
    opacity: 0;
    transform: translate3d(100%, 0px, 0px);
    -moz-transform: translate3d(100%, 0px, 0px);
    -ms-transform: translate3d(100%, 0px, 0px);
    -webkit-transform: translate3d(100%, 0px, 0px);
    -o-transform: translate3d(100%, 0px, 0px);
}

#lightGallery-slider.useLeft .lightGallery-slide {
    left: 100%;
}

#lightGallery-slider.useLeft.on .lightGallery-slide {
    opacity: 0;
}

#lightGallery-slider.useLeft .lightGallery-slide.current {
    opacity: 1 !important;
    left: 0% !important;
}

#lightGallery-slider.useLeft .lightGallery-slide.prevSlide {
    opacity: 0;
    left: -100%;
}

#lightGallery-slider.useLeft .lightGallery-slide.nextSlide {
    opacity: 0;
    left: 100%;
}

#lightGallery-slider.slide.on .lightGallery-slide, #lightGallery-slider.slide.on .current, #lightGallery-slider.slide.on .prevSlide, #lightGallery-slider.slide.on .nextSlide {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -ms-transition: -ms-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

#lightGallery-slider.speed .lightGallery-slide, #lightGallery-slider.speed .current, #lightGallery-slider.speed .prevSlide, #lightGallery-slider.speed .nextSlide {
    transition-duration: inherit !important;
    -moz-transition-duration: inherit !important;
    -webkit-transition-duration: inherit !important;
    -o-transition-duration: inherit !important;
    -ms-transition-duration: inherit !important;
}

#lightGallery-slider.timing .lightGallery-slide, #lightGallery-slider.timing .current, #lightGallery-slider.timing .prevSlide, #lightGallery-slider.timing .nextSlide {
    transition-timing-function: inherit !important;
    -moz-transition-timing-function: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    -o-transition-timing-function: inherit !important;
    -ms-transition-timing-function: inherit !important;
}

#lightGallery-slider .lightGallery-slide img {
    display: inline-block;
    max-height: 100%;
    max-width: 100%;
    cursor: -moz-grabbing;
    cursor: grab;
    cursor: -webkit-grab;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    vertical-align: middle;
}

#lightGallery-Gallery .thumb_cont .thumb_inner {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
    -ms-transition: -ms-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

@-webkit-keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -30px;
    }

    100% {
        left: 0;
    }
}

@keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -30px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 30px;
    }

    100% {
        left: 0;
    }
}

@keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 30px;
    }

    100% {
        left: 0;
    }
}

.lightGallery-slide .object.rightEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}

.lightGallery-slide .object.leftEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
/*lightGallery core*/


/*action*/
#lightGallery-action {
    bottom: 20px;
    position: fixed;
    left: 50%;
    margin-left: -30px;
    z-index: 9;
    -webkit-backface-visibility: hidden;
}

    #lightGallery-action.hasThumb {
        margin-left: -46px;
    }

    #lightGallery-action a {
        margin: 0 3px 0 0 !important;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        right: auto;
        display: inline-block !important;
        display: inline-block;
        vertical-align: middle;
        *display: inline;
        *zoom: 1;
        background-color: #000;
        background-color: rgba(0, 0, 0, 0.65);
        font-size: 16px;
        width: 28px;
        height: 28px;
        font-family: 'Slide-icons';
        color: #FFF;
        cursor: pointer;
    }

        #lightGallery-action a.disabled {
            opacity: 0.6;
            filter: alpha(opacity=60);
            cursor: default;
            background-color: #000;
            background-color: rgba(0, 0, 0, 0.65) !important;
        }

        #lightGallery-action a:hover, #lightGallery-action a:focus {
            background-color: #000;
            background-color: rgba(0, 0, 0, 0.85);
        }

        #lightGallery-action a#lightGallery-prev:before, #lightGallery-action a#lightGallery-next:after {
            left: 5px;
            bottom: 3px;
            position: absolute;
        }

        #lightGallery-action a#lightGallery-prev:before {
            content: "\e01d";
        }

        #lightGallery-action a#lightGallery-next:after {
            content: "\e01b";
        }

        #lightGallery-action a.cLthumb:after {
            font-family: 'Slide-icons';
            content: "\e01c";
            left: 6px;
            bottom: 4px;
            font-size: 16px;
            position: absolute;
        }
/*action*/

/*counter*/
#lightGallery_counter {
    bottom: 52px;
    text-align: center;
    width: 100%;
    position: absolute;
    z-index: 9;
    color: #FFFFFF;
}
/*lightGallery Thumb*/
#lightGallery-Gallery .thumb_cont {
    position: absolute;
    bottom: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #000000;
    -webkit-transition: max-height 0.4s ease-in-out;
    -moz-transition: max-height 0.4s ease-in-out;
    -o-transition: max-height 0.4s ease-in-out;
    -ms-transition: max-height 0.4s ease-in-out;
    transition: max-height 0.4s ease-in-out;
    z-index: 9;
    max-height: 0;
    opacity: 0;
}

#lightGallery-Gallery.open .thumb_cont {
    max-height: 350px;
}

#lightGallery-Gallery .thumb_cont .thumb_inner {
    margin-left: -12px;
    padding: 12px;
    max-height: 290px;
    overflow-y: auto;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

#lightGallery-Gallery .thumb_cont .thumb_info {
    background-color: #333;
    padding: 7px 20px;
}

    #lightGallery-Gallery .thumb_cont .thumb_info .count {
        color: #ffffff;
        font-weight: bold;
        font-size: 12px;
    }

    #lightGallery-Gallery .thumb_cont .thumb_info .close {
        color: #FFFFFF;
        display: block;
        float: right !important;
        width: 28px;
        position: relative;
        height: 28px;
        border-radius: 2px;
        margin-top: -4px;
        background-color: #000;
        background-color: rgba(0, 0, 0, 0.65);
        -webkit-transition: background-color 0.3s ease 0s;
        -moz-transition: background-color 0.3s ease 0s;
        -o-transition: background-color 0.3s ease 0s;
        -ms-transition: background-color 0.3s ease 0s;
        transition: background-color 0.3s ease 0s;
        z-index: 1090;
        cursor: pointer;
    }

        #lightGallery-Gallery .thumb_cont .thumb_info .close i:after {
            left: 6px;
            position: absolute;
            top: 4px;
        }

        #lightGallery-Gallery .thumb_cont .thumb_info .close i:after, #lightGallery-close:after {
            content: "\e01a";
            font-family: 'Slide-icons';
            font-style: normal;
            font-size: 16px;
        }

        #lightGallery-Gallery .thumb_cont .thumb_info .close:hover {
            text-decoration: none;
            background-color: #000;
            background-color: rgba(0, 0, 0, 1);
        }

#lightGallery-Gallery .thumb_cont .thumb {
    display: inline-block !important;
    vertical-align: middle;
    text-align: center;
    *display: inline;
    /* IE7 inline-block hack */

    *zoom: 1;
    margin-bottom: 4px;
    height: 50px;
    width: 50px;
    opacity: 0.6;
    filter: alpha(opacity=60);
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: border-color linear .2s, opacity linear .2s;
    -moz-transition: border-color linear .2s, opacity linear .2s;
    -o-transition: border-color linear .2s, opacity linear .2s;
    -ms-transition: border-color linear .2s, opacity linear .2s;
    transition: border-color linear .2s, opacity linear .2s;
}

@media (min-width: 800px) {
    #lightGallery-Gallery .thumb_cont .thumb {
        width: 94px;
        height: 94px;
    }
}

#lightGallery-Gallery .thumb_cont .thumb > img {
    height: auto;
    max-width: 100%;
}

#lightGallery-Gallery .thumb_cont .thumb.active, #lightGallery-Gallery .thumb_cont .thumb:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    border-color: #ffffff;
}
/*lightGallery Thumb*/

/*lightGallery Video*/
#lightGallery-slider .video_cont {
    display: inline-block;
    max-height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    vertical-align: middle;
}

#lightGallery-slider .video_cont {
    background: none;
    max-width: 1140px;
    max-height: 100%;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

#lightGallery-slider .video {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
}

#lightGallery-slider .video .object {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}
/*lightGallery Video*/






/*lightGallery Close*/
#lightGallery-close {
    color: #FFFFFF;
    height: 28px;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 28px;
    z-index: 1090;
    cursor: pointer;
    background-color: #000;
    border-radius: 2px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.65);
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    -webkit-backface-visibility: hidden;
}

    #lightGallery-close:after {
        position: absolute;
        right: 6px;
        top: 3px;
    }

    #lightGallery-close:hover {
        text-decoration: none;
        background-color: #000;
    }

.customHtml {
    background: none repeat scroll 0 0 black;
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.75);
    color: #fff;
    font-family: Arial, sans-serif;
    height: 70px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
}

.customHtml p {
    font-size: 14px;
}

.customHtml > h4 {
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 15px;
}

@font-face {
    font-family: 'KyrialSansProRegular';
    src: url('https://celanese.com/Celanese/resources/fonts/284266_1_0.eot');
    src: url('https://celanese.com/Celanese/resources/fonts/284266_1_0.eot?#iefix') format('embedded-opentype'), url('https://celanese.com/Celanese/resources/fonts/284266_1_0.woff') format('woff'), url('https://celanese.com/Celanese/resources/fonts/284266_1_0.ttf') format('truetype');
}

.cookieStatement__wrapper {
    position: relative;
    z-index: 9999;
}

.cookieStatement__wrapper * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.cookieStatement__wrapper .cookieStatement__container {
    background-color: #0099cc;
    color: #fff;
    font-family: 'KyrialSansProRegular';
    font-size: 16px;
    padding: 15px 30px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    overflow: hidden;
    transition: bottom 1s;
}

.cookieStatement__wrapper .cookieStatement__container.opened {
    bottom: 0;
}

.cookieStatement__wrapper .cookieStatement__container p a {
    color: #FFD000;
    text-decoration: none;
    transition: color .3s;
}

.cookieStatement__wrapper .cookieStatement__container p a:hover {
    color: #F79328;
}

@media screen and (max-width: 480px) {
    .cookieStatement__wrapper .cookieStatement__container p {
        padding-right: 0;
    }
}

.cookieStatement__wrapper .cookieStatement__container button {
    color: #000;
    cursor: pointer;
    background-color: #ffd000;
    border: 0;
    border-radius: 5px;
    font-size: 16px;
    min-width: 110px;
    padding: 0.5em 0.75em;
    /* position: absolute; */
    outline: 0;
    /* right: 30px; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    transition: background-color 0.3s, color 0.3s;
}

.cookieStatement__wrapper .cookieStatement__container button:hover {
    background-color: #fff;
    color: #EA1C2C;
}

.cookieStatement__wrapper .cookieStatement__choices input {
    display: none;
}

.cookieStatement__wrapper .cookieStatement__container .cookieStatement__choices label[for='cookieStatement__required'] .cookieStatement__label {
    color: #bebeb0;
}

.cookieStatement__wrapper .cookieStatement__choices ul {
    display: flex;
    justify-content: center;
}

.cookieStatement__wrapper .cookieStatement__choices ul li {
    margin: 0 20px 0 0;
    list-style: none;
}

.cookieStatement__wrapper .cookieStatement__choices ul li label {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: row-reverse;
    position: relative;
}

@media screen and (max-width: 480px) {
    .cookieStatement__wrapper .cookieStatement__choices ul {
        display: block;
    }

        .cookieStatement__wrapper .cookieStatement__choices ul li {
            margin: 15px 0 0 0;
        }

    .cookieStatement__wrapper .cookieStatement__container button {
        display: block;
        margin-top: 15px;
        padding: 15px;
        position: static;
        transform: none;
        width: 100%;
    }
}

.cookieStatement__choices {
    padding: 20px 0 10px;
}

.cookieStatement__confirmation {
    padding: 10px 0;
    text-align: center;
}

/* NEW STYLES */
.cookieStatement__switch {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #e6e6e6;
    border: 0px solid #000000;
    border-radius: 0px;
    transition: background-color .3s;
}

.cookieStatement__option:hover input ~ .cookieStatement__switch,
.cookieStatement__option input:focus ~ .cookieStatement__switch {
    background-color: #cccccc;
}

.cookieStatement__option input:checked ~ .cookieStatement__switch {
    background-color: #F79328;
}

.cookieStatement__option:hover input:not([disabled]):checked ~ .cookieStatement__switch,
.cookieStatement__option input:checked:focus ~ .cookieStatement__switch {
    background-color: #FFD000;
}

.cookieStatement__option input:disabled ~ .cookieStatement__switch {
    background-color: #bebeb0;
    opacity: 1;
    pointer-events: none;
}

.cookieStatement__switch:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}

.cookieStatement__option input:checked ~ .cookieStatement__switch:after {
    display: block;
}

.cookieStatement__option .cookieStatement__switch:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cookieStatement__option input:disabled ~ .cookieStatement__switch:after {
    border-color: #7b7b7b;
}

.cookieStatement__label {
    margin-left: 10px;
}