
/*---- animation-----*/
.animated {
    animation-duration: .5s;
    animation-fill-mode: both;
}
.animated.infinite {
    animation-iteration-count: infinite;
}
.animated.hinge {
    animation-duration: 2s;
}
@keyframes bounce {
0%, 100%, 20%, 53%, 80% {
    transform: translate3d(0px, 0px, 0px);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
40%, 43% {
    transform: translate3d(0px, -30px, 0px);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
70% {
    transform: translate3d(0px, -15px, 0px);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
90% {
    transform: translate3d(0px, -4px, 0px);
}
}
.bounce {
    animation-name: bounce;
    transform-origin: center bottom 0;
}
@keyframes flash {
0%, 100%, 50% {
    opacity: 1;
}
25%, 75% {
    opacity: 0;
}
}
.flash {
    animation-name: flash;
}
@keyframes pulse {
0% {
    transform: scale3d(1, 1, 1);
}
50% {
    transform: scale3d(1.05, 1.05, 1.05);
}
100% {
    transform: scale3d(1, 1, 1);
}
}
.pulse {
    animation-name: pulse;
}
@keyframes rubberBand {
0% {
    transform: scale3d(1, 1, 1);
}
30% {
    transform: scale3d(1.25, 0.75, 1);
}
40% {
    transform: scale3d(0.75, 1.25, 1);
}
50% {
    transform: scale3d(1.15, 0.85, 1);
}
65% {
    transform: scale3d(0.95, 1.05, 1);
}
75% {
    transform: scale3d(1.05, 0.95, 1);
}
100% {
    transform: scale3d(1, 1, 1);
}
}
.rubberBand {
    animation-name: rubberBand;
}
@keyframes shake {
0%, 100% {
    transform: translate3d(0px, 0px, 0px);
}
10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0px, 0px);
}
20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0px, 0px);
}
}
.shake {
    animation-name: shake;
}
@keyframes swing {
20% {
    transform: rotate3d(0, 0, 1, 15deg);
}
40% {
    transform: rotate3d(0, 0, 1, -10deg);
}
60% {
    transform: rotate3d(0, 0, 1, 5deg);
}
80% {
    transform: rotate3d(0, 0, 1, -5deg);
}
100% {
    transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
    animation-name: swing;
    transform-origin: center top 0;
}
@keyframes tada {
0% {
    transform: scale3d(1, 1, 1);
}
10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
    transform: scale3d(1, 1, 1);
}
}
.tada {
    animation-name: tada;
}
@keyframes wobble {
0% {
    transform: none;
}
15% {
    transform: translate3d(-25%, 0px, 0px) rotate3d(0, 0, 1, -5deg);
}
30% {
    transform: translate3d(20%, 0px, 0px) rotate3d(0, 0, 1, 3deg);
}
45% {
    transform: translate3d(-15%, 0px, 0px) rotate3d(0, 0, 1, -3deg);
}
60% {
    transform: translate3d(10%, 0px, 0px) rotate3d(0, 0, 1, 2deg);
}
75% {
    transform: translate3d(-5%, 0px, 0px) rotate3d(0, 0, 1, -1deg);
}
100% {
    transform: none;
}
}
.wobble {
    animation-name: wobble;
}
@keyframes bounceIn {
0%, 100%, 20%, 40%, 60%, 80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
}
20% {
    transform: scale3d(1.1, 1.1, 1.1);
}
40% {
    transform: scale3d(0.9, 0.9, 0.9);
}
60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
}
80% {
    transform: scale3d(0.97, 0.97, 0.97);
}
100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}
}
.bounceIn {
    animation-duration: 0.75s;
    animation-name: bounceIn;
}
@keyframes bounceInDown {
0%, 100%, 60%, 75%, 90% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
    opacity: 0;
    transform: translate3d(0px, -3000px, 0px);
}
60% {
    opacity: 1;
    transform: translate3d(0px, 25px, 0px);
}
75% {
    transform: translate3d(0px, -10px, 0px);
}
90% {
    transform: translate3d(0px, 5px, 0px);
}
100% {
    transform: none;
}
}
.bounceInDown {
    animation-name: bounceInDown;
}
@keyframes bounceInLeft {
0%, 100%, 60%, 75%, 90% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
    opacity: 0;
    transform: translate3d(-3000px, 0px, 0px);
}
60% {
    opacity: 1;
    transform: translate3d(25px, 0px, 0px);
}
75% {
    transform: translate3d(-10px, 0px, 0px);
}
90% {
    transform: translate3d(5px, 0px, 0px);
}
100% {
    transform: none;
}
}
.bounceInLeft {
    animation-name: bounceInLeft;
}
@keyframes bounceInRight {
0%, 100%, 60%, 75%, 90% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
    opacity: 0;
    transform: translate3d(3000px, 0px, 0px);
}
60% {
    opacity: 1;
    transform: translate3d(-25px, 0px, 0px);
}
75% {
    transform: translate3d(10px, 0px, 0px);
}
90% {
    transform: translate3d(-5px, 0px, 0px);
}
100% {
    transform: none;
}
}
.bounceInRight {
    animation-name: bounceInRight;
}
@keyframes bounceInUp {
0%, 100%, 60%, 75%, 90% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
    opacity: 0;
    transform: translate3d(0px, 3000px, 0px);
}
60% {
    opacity: 1;
    transform: translate3d(0px, -20px, 0px);
}
75% {
    transform: translate3d(0px, 10px, 0px);
}
90% {
    transform: translate3d(0px, -5px, 0px);
}
100% {
    transform: translate3d(0px, 0px, 0px);
}
}
.bounceInUp {
    animation-name: bounceInUp;
}
@keyframes bounceOut {
20% {
    transform: scale3d(0.9, 0.9, 0.9);
}
50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
}
100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
}
}
.bounceOut {
    animation-duration: 0.75s;
    animation-name: bounceOut;
}
@keyframes bounceOutDown {
20% {
    transform: translate3d(0px, 10px, 0px);
}
40%, 45% {
    opacity: 1;
    transform: translate3d(0px, -20px, 0px);
}
100% {
    opacity: 0;
    transform: translate3d(0px, 2000px, 0px);
}
}
.bounceOutDown {
    animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
20% {
    opacity: 1;
    transform: translate3d(20px, 0px, 0px);
}
100% {
    opacity: 0;
    transform: translate3d(-2000px, 0px, 0px);
}
}
.bounceOutLeft {
    animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
20% {
    opacity: 1;
    transform: translate3d(-20px, 0px, 0px);
}
100% {
    opacity: 0;
    transform: translate3d(2000px, 0px, 0px);
}
}
.bounceOutRight {
    animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
20% {
    transform: translate3d(0px, -10px, 0px);
}
40%, 45% {
    opacity: 1;
    transform: translate3d(0px, 20px, 0px);
}
100% {
    opacity: 0;
    transform: translate3d(0px, -2000px, 0px);
}
}
.bounceOutUp {
    animation-name: bounceOutUp;
}
@keyframes fadeIn {
0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}
.fadeIn {
    animation-name: fadeIn;
}
@keyframes fadeInDown {
0% {
    opacity: 0;
    transform: translate3d(0px, -100%, 0px);
}
100% {
    opacity: 1;
    transform: none;
}
}
.fadeInDown {
    animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
0% {
    opacity: 0;
    transform: translate3d(0px, -2000px, 0px);
}
100% {
    opacity: 1;
    transform: none;
}
}
.fadeInDownBig {
    animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
0% {
    opacity: 0;
    transform: translate3d(-100%, 0px, 0px);
}
100% {
    opacity: 1;
    transform: none;
}
}
.fadeInLeft {
    animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
0% {
    opacity: 0;
    transform: translate3d(-2000px, 0px, 0px);
}
100% {
    opacity: 1;
    transform: none;
}
}
.fadeInLeftBig {
    animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
0% {
    opacity: 0;
    transform: translate3d(100%, 0px, 0px);
}
100% {
    opacity: 1;
    transform: none;
}
}
.fadeInRight {
    animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
0% {
    opacity: 0;
    transform: translate3d(2000px, 0px, 0px);
}
100% {
    opacity: 1;

    transform: none;
}
}
.fadeInRightBig {
    animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
0% {
    opacity: 0;
    transform: translate3d(0px, 100%, 0px);
}
100% {
    opacity: 1;
    transform: none;
}
}
/*.fadeInUp {
    animation-name: fadeInUp;
}*/
@keyframes fadeInUpBig {
0% {
    opacity: 0;
    transform: translate3d(0px, 2000px, 0px);
}
100% {
    opacity: 1;
    transform: none;
}
}
.fadeInUpBig {
    animation-name: fadeInUpBig;
}
@keyframes fadeOut {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
}
}
.fadeOut {
    animation-name: fadeOut;
}
@keyframes fadeOutDown {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
    transform: translate3d(0px, 100%, 0px);
}
}
.fadeOutDown {
    animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
    transform: translate3d(0px, 2000px, 0px);
}
}
.fadeOutDownBig {
    animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
    transform: translate3d(-100%, 0px, 0px);
}
}
.fadeOutLeft {
    animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
    transform: translate3d(-2000px, 0px, 0px);
}
}
.fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
    transform: translate3d(100%, 0px, 0px);
}
}
.fadeOutRight {
    animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
    transform: translate3d(2000px, 0px, 0px);
}
}
.fadeOutRightBig {
    animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
    transform: translate3d(0px, -100%, 0px);
}
}
.fadeOutUp {
    animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
    transform: translate3d(0px, -2000px, 0px);
}
}
.fadeOutUpBig {
    animation-name: fadeOutUpBig;
}
@keyframes flip {
0% {
    animation-timing-function: ease-out;
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
}
40% {
    animation-timing-function: ease-out;
    transform: perspective(400px) translate3d(0px, 0px, 150px) rotate3d(0, 1, 0, -190deg);
}
50% {
    animation-timing-function: ease-in;
    transform: perspective(400px) translate3d(0px, 0px, 150px) rotate3d(0, 1, 0, -170deg);
}
80% {
    animation-timing-function: ease-in;
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
}
100% {
    animation-timing-function: ease-in;
    transform: perspective(400px);
}
}
.animated.flip {
    animation-name: flip;
    backface-visibility: visible;
}
@keyframes flipInX {
0% {
    opacity: 0;
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
}
40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transition-timing-function: ease-in;
}
60% {
    opacity: 1;
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
}
80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
100% {
    transform: perspective(400px);
}
}
.flipInX {
    animation-name: flipInX;
    backface-visibility: visible !important;
}
@keyframes flipInY {
0% {
    opacity: 0;
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transition-timing-function: ease-in;
}
40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transition-timing-function: ease-in;
}
60% {
    opacity: 1;
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
}
80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
100% {
    transform: perspective(400px);
}
}
.flipInY {
    animation-name: flipInY;
    backface-visibility: visible !important;
}
@keyframes flipOutX {
0% {
    transform: perspective(400px);
}
30% {
    opacity: 1;
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
}
100% {
    opacity: 0;
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
}
}
.flipOutX {
    animation-duration: 0.75s;
    animation-name: flipOutX;
    backface-visibility: visible !important;
}
@keyframes flipOutY {
0% {
    transform: perspective(400px);
}
30% {
    opacity: 1;
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
}
100% {
    opacity: 0;
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
}
}
.flipOutY {
    animation-duration: 0.75s;
    animation-name: flipOutY;
    backface-visibility: visible !important;
}
@keyframes lightSpeedIn {
0% {
    opacity: 0;
    transform: translate3d(100%, 0px, 0px) skewX(-30deg);
}
60% {
    opacity: 1;
    transform: skewX(20deg);
}
80% {
    opacity: 1;
    transform: skewX(-5deg);
}
100% {
    opacity: 1;
    transform: none;
}
}
.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
    transform: translate3d(100%, 0px, 0px) skewX(30deg);
}
}
.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in;
}
@keyframes rotateIn {
0% {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -200deg);
    transform-origin: center center 0;
}
100% {
    opacity: 1;
    transform: none;
    transform-origin: center center 0;
}
}
.rotateIn {
    animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
0% {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
    transform-origin: left bottom 0;
}
100% {
    opacity: 1;
    transform: none;
    transform-origin: left bottom 0;
}
}
.rotateInDownLeft {
    animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
0% {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 45deg);
    transform-origin: right bottom 0;
}
100% {
    opacity: 1;
    transform: none;
    transform-origin: right bottom 0;
}
}
.rotateInDownRight {
    animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
0% {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 45deg);
    transform-origin: left bottom 0;
}
100% {
    opacity: 1;
    transform: none;
    transform-origin: left bottom 0;
}
}
.rotateInUpLeft {
    animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
0% {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -90deg);
    transform-origin: right bottom 0;
}
100% {
    opacity: 1;
    transform: none;
    transform-origin: right bottom 0;
}
}
.rotateInUpRight {
    animation-name: rotateInUpRight;
}
@keyframes rotateOut {
0% {
    opacity: 1;
    transform-origin: center center 0;
}
100% {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 200deg);
    transform-origin: center center 0;
}
}
.rotateOut {
    animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
0% {
    opacity: 1;
    transform-origin: left bottom 0;
}
100% {
    opacity: 0;
    transform-origin: left bottom 0;
}
}
.rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
0% {
    opacity: 1;
    transform-origin: right bottom 0;
}
100% {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
    transform-origin: right bottom 0;
}
}
.rotateOutDownRight {
    animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
0% {
    opacity: 1;
    transform-origin: left bottom 0;
}
100% {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
    transform-origin: left bottom 0;
}
}
.rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
0% {
    opacity: 1;
    transform-origin: right bottom 0;
}
100% {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 90deg);
    transform-origin: right bottom 0;
}
}
.rotateOutUpRight {
    animation-name: rotateOutUpRight;
}
@keyframes hinge {
0% {
    animation-timing-function: ease-in-out;
    transform-origin: left top 0;
}
20%, 60% {
    animation-timing-function: ease-in-out;
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: left top 0;
}
40%, 80% {
    animation-timing-function: ease-in-out;
    opacity: 1;
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: left top 0;
}
100% {
    opacity: 0;
    transform: translate3d(0px, 700px, 0px);
}
}
.hinge {
    animation-name: hinge;
}
@keyframes rollIn {
0% {
    opacity: 0;
    transform: translate3d(-100%, 0px, 0px) rotate3d(0, 0, 1, -120deg);
}
100% {
    opacity: 1;
    transform: none;
}
}
.rollIn {
    animation-name: rollIn;
}
@keyframes rollOut {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
    transform: translate3d(100%, 0px, 0px) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
    animation-name: rollOut;
}
@keyframes zoomIn {
0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
}
50% {
    opacity: 1;
}
}
.zoomIn {
    animation-name: zoomIn;
}
@keyframes zoomInDown {
0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0px, -1000px, 0px);
}
60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0px, 60px, 0px);
}
}
.zoomInDown {
    animation-name: zoomInDown;
}
@keyframes zoomInLeft {
0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0px, 0px);
}
60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0px, 0px);
}
}
.zoomInLeft {
    animation-name: zoomInLeft;
}
@keyframes zoomInRight {
0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0px, 0px);
}
60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0px, 0px);
}
}
.zoomInRight {
    animation-name: zoomInRight;
}
@keyframes zoomInUp {
0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0px, 1000px, 0px);
}
60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0px, -60px, 0px);
}
}
.zoomInUp {
    animation-name: zoomInUp;
}
@keyframes zoomOut {
0% {
    opacity: 1;
}
50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
}
100% {
    opacity: 0;
}
}
.zoomOut {
    animation-name: zoomOut;
}
@keyframes zoomOutDown {
40% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0px, -60px, 0px);
}
100% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0px, 2000px, 0px);
    transform-origin: center bottom 0;
}
}
.zoomOutDown {
    animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0px, 0px);
}
100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0px, 0px);
    transform-origin: left center 0;
}
}
.zoomOutLeft {
    animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0px, 0px);
}
100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0px, 0px);
    transform-origin: right center 0;
}
}
.zoomOutRight {
    animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
40% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0px, 60px, 0px);
}
100% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0px, -2000px, 0px);
    transform-origin: center bottom 0;
}
}
.zoomOutUp {
    animation-name: zoomOutUp;
}

/*---- fonts-----*/
/*@import url(https://fonts.googleapis.com/css?family=Roboto:100,400,300,700,800,900);*/

.ScreenSmart_Book_Italic
{
  /*Gotham Book Italic*/
  /*font-family: "Gotham SSm A", "Gotham SSm B";*/
  font-style: italic;
  font-weight: 400;
}
.ScreenSmart_Bold_Italic {
  /*Gotham Bold Italic*/
  /*font-family: "Gotham SSm A", "Gotham SSm B";*/
  font-style: italic;
  font-weight: 700;
}

.page-introtext p,.page-content p,.page-introtext p strong,.page-content p strong,.page-content,#twocolright ul,#twocolright ol,b, strong,#contentwrapper table
{
  /*font-family: Arial;*/
}

.ScreenSmart_Black,.home-event-box-ttl,body,.home-container h2,.homeSecWrap,.footer-link-box > p,.footer-link-box > p,strong,h1,.leftnavigation,.sidebar-ttl,#searchTextboxContainer input,.home-pr-ttl,#topnavigation > ul,.home-pr-date
{
  /*Gotham Black*/
  /*font-family: "Gotham SSm A", "Gotham SSm B";*/
  font-style: normal;
  font-weight: 800;
}
#topnavigation > ul{
  /*Gotham Black*/
  /*font-family: "Gotham SSm A", "Gotham SSm B";/*
  font-style: normal;
  font-weight: 900;
}
.ScreenSmart_Bold,.home-event-box-date,.home-pr-extracted,.footer-signup-inner p strong
{
  /*Gotham Bold*/
  /*font-family: "Gotham SSm A", "Gotham SSm B";*/
  font-style: normal;
  font-weight: 700;
}
.site-view-more-link a,.bannertext > h2,.home-pr-link > a,.sign-up,.sign-up-btn,#loadmore a,.bannertext > h2 strong,.bannertext p
{
  /*font-family: 'Roboto', sans-serif;*/
}
.ScreenSmart_Book,.home-banner-inner-box,.footer-copyright > p,.footer-link-box li,.footer-signup-inner p,#breadcrumb,.page-content,.mobi-pr-tabs ul li,#twocolright .mobiDropdownPress .dk_options ul li
{
  /*Gotham Book*/
  /*font-family: "Gotham SSm A", "Gotham SSm B";*/
  font-style: normal;
  font-weight: 400;  
}
.page-introtext,.page-content
{  
  /*font-size: 1.286em;*/
}
/*---- remodal-----*/
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;

  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;

  outline: none;

  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}
/*---- remodal-default-theme-----*/
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  overflow: visible;

  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}
/*---- slick-slider-----*/
/* Slider */
.slick-slider
{
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    /*-webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;*/

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/*---- bootstrap-----*/
/*---------------- Start Reset CSS ----------------- */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small, strike,strong, tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;}body{line-height:1}ol,ul{list-style:none} blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}:focus{outline:0}ins{text-decoration:none} del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}
/*---------------- End Reset CSS ----------------- */
/*!
 * Bootstrap v3.2.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=ce09fde71af3dd1a0c54)
 * Config saved to config.json and https://gist.github.com/ce09fde71af3dd1a0c54
 */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */

@-ms-viewport{ width: auto !important;}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #428bca;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #2a6496;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img,.img-responsive{
  vertical-align: middle;
  display: block;
  width: auto \9;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 900px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1230px) {
  .container {
    width: 1200px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 900px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1230px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix {
  *zoom: 1;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

/*---- main-----*/
html { text-rendering: optimizeLegibility !important; -webkit-font-smoothing: antialiased !important; font-smooth: always; -moz-osx-font-smoothing: grayscale; -moz-font-smoothing: antialiased !important;}
.visible-print {display: none;}
a.media-link span,a.pdf-swap span, .inv-responsive-data-td a span.link-pdf,.tabs .level2 a span:after,#SearchButtonContainer input,.site-print>a:after,.sidebar-main-social > a:after,#mobishownav .showmore1:after,#mobishownav .showmore:after,.mobisearch span.searchbg:after,.mobinav span.navbg:after,.snapdown-title p:after,.inv-branding a:after,.siteSearch,.home-slider .slick-arrow,.home-slider .bx-wrapper .bx-pager.bx-default-pager a:after{background-image: url("/template_files/1099/~/media/Images/T/Tomi-IR-V2/css/sprite.png"); background-repeat: repeat; content: " "; display: inline-block; position: absolute;}
#MainWrapper{float:left;width:100%}
.container-fluid{margin:0 auto; max-width:1570px;}
/*-------------- Main Body CSS Starts --------------*/
html{font-size:14px;-webkit-text-size-adjust: none;-ms-content-zooming: none;}
body{background-color:#fff; font-size:1.286em;line-height:23px; color:#2c2c2c; font-weight: 400;font-family: 'Open Sans', sans-serif;}
a{color:#8dc63f; text-decoration:none;}
a:hover{color:#4586c6; text-decoration:none;}
a{transition: all 0.3s ease 0s;}
a:focus, a:active{border:none; outline:0; _noFocusLine:expression(this.hideFocus=true); color:#76ae28; text-decoration:none; }
.hide{display:none;}
.invisible{position:absolute; left:-9999999px; top:auto; width:1px; height:1px; overflow:hidden; visibility:visible;}
img{outline-style:none;outline-width:0;border:0 none;}
sup{font-size:smaller;	font-weight:bold;}
sub{margin:2px 0; padding:2px 0;}
ul,ol{list-style:none;}
#twocolright ul{list-style-image:none; margin: 0 0 20px 10px; }
#twocolright ul ul{list-style: circle;margin: 5px 0 0 15px; font-size:inherit; }
#twocolright ol ol{margin: 5px 0 0 15px; font-size:inherit; }
#twocolright ol{ list-style: none; margin: 0 0 20px 20px;}
#twocolright ol li{list-style: decimal; margin: 0 0 5px; position: relative; padding-bottom: 6px;}
#twocolright ol li:last-child{margin-bottom:0;padding-bottom:0;}
#twocolright ul li{margin: 0 0 5px; list-style:none; position: relative; padding-bottom: 6px;}
#twocolright ul li:last-child{margin-bottom:0;padding-bottom:0;}
#twocolright ul li ol, #twocolright ol li ul { margin: 5px 0 0 15px; }
#twocolright ul li:after { content: "•"; font-size: 1rem; left: -10px; position: absolute; top: 0;}

hr{border-style:none none solid; border-width:0 0 1px; margin:5px 0;}
:active{outline-style:none; outline-width:0;}
*{margin:0; padding:0;}
.uppercase{text-transform:uppercase;}
p{padding: 0 0 18px;}
h1{font-size:2.333em; line-height:50px; margin: 0 0 40px;font-weight:600;color:#5b8f3a;text-align:center;}
h2{color: #424242; font-size: 1em; font-weight:700; line-height: 20px; margin: 0 0 24px;color:#2c2c2c;}
h3{font-size:1em; line-height:20px; margin:0 0 10px; font-weight:600;}
.float100{float:left;width:100%}
.hide { display:none }
/*.home-slider{height:924px;}*/
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
#bannerwrapper .sliderbanner{-webkit-animation:fadeIn ease-in 1; -moz-animation:fadeIn ease-in 1; animation:fadeIn ease-in 1; -webkit-animation-fill-mode:forwards; -moz-animation-fill-mode:forwards; animation-fill-mode:forwards; -webkit-animation-duration:1s; -moz-animation-duration:1s; animation-duration:1s;}

.global-button{display: inline-block;text-align: center;cursor: pointer;position: relative;z-index: 0;vertical-align: middle;   -ms-user-select: none;-moz-user-select: none;-webkit-user-select: none;user-select: none;text-decoration: none; text-shadow: none;transition: color .3s ease-out,border .3s ease-out,background .3s ease-out,box-shadow .3s ease-out!important;font: 400 14px 'Open Sans';border-radius: 100px;border: none;padding: 16px 30px;width: auto;-webkit-font-smoothing: auto;background: #7fbb42;color: #fff;box-shadow: 0 0 25px -14px #7fbb42;margin-left:10px;}
.global-button:hover,.global-button:focus{background: #000;color: #fff;box-shadow: 0 0 25px -14px #000;}
/*-------------- Main Body CSS Ends --------------*/


/*-------------- Header CSS Starts --------------*/
/*#headerwrapper { background: #1f2735; left: 0; margin: auto 0; padding: 20px 0 53px; right: 0; top: 0; z-index: 10000;position: relative;}
#headerlinks{overflow:hidden;}
#headerlinks ul li{border-right:1px solid #0000FF; float:left; padding:0 5px;}
#searchcontainer{clear:both; float:right; height:25px; margin:10px 0 0; overflow:hidden;}
#searchTextboxContainer{float:left; width: 80%;}
#searchTextboxContainer input{width:140px; height:23px;}
#SearchButtonContainer{float: left; position: relative; width: 20%;}
#SearchButtonContainer input{height:24px; width:44px;}
#toplinks{float:left;}
.toplinks-right{float:right;margin-top: 30px;}*/


header .container-fluid{max-width:1540px;}
header .header-top{background:rgba(129,185,75, 1);height:41px;}
header .header-top a[href^="tel:"]:hover,header .header-top a[href^="mailto:"]:hover{border-bottom:1px solid #3764eb;}
.header-top .social-links{margin-right:55px;}
.header-top .social-links li{float:left;}
.header-top .social-links a{display:inline-block;padding:7px 0px 8px 9.5px;font-size:18px;}
.header-top .social-links a,.header-top .social-links a:hover{color:#fff;}
.header-top .contact-info{text-align:right;}
.header-top .contact-info .phone,.header-top .contact-info .email{display:inline-block;padding:5px 8px 8px;}
.header-top .contact-info .phone{margin-right:79px;}
.header-top .contact-info .email{margin-right:11px;position:relative;}
.header-top .contact-info a{color:#fff !important;font-size:14px;line-height:20px;font-family:'Open Sans', sans-serif;}
.header-top .contact-info a:hover{border-bottom-color:rgba(55, 100, 235, 0.216);}
.header-top .contact-info .phone a{background-image:url(/template_files/1099/~/media/Images/T/Tomi-IR-V2/css/phone.png);background-repeat: no-repeat;background-position: left center;padding-left:35px;display:inline-block;}
.header-top .contact-info .email a{background-image:url(/template_files/1099/~/media/Images/T/Tomi-IR-V2/css/email.png);background-repeat: no-repeat;background-position: left center;padding-left:34px;display:inline-block;}
.header-top .contact-info .email:before{content:'';display:block;position:absolute;height:100%;width:100%;left:-55px;top:0;background-image:url(/template_files/1099/~/media/Images/T/Tomi-IR-V2/css/divider-1.svg);background-repeat: no-repeat;background-position: left center;}


.header-bottom{padding:0 55px;height:80px;}
.header-bottom .logo{width:396px;padding:13.5px 0;}

/*-------------- Header CSS Ends --------------*/

/* Navigation starts */
.sitenavigation{font-family: 'Open Sans', sans-serif;padding: 23px 20px 22px;margin-left: 30px;}
.sitenavigation ul li{    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
    -webkit-border-radius: 0 0 0 0;
    -moz-border-radius: 0 0 0 0;
    -ms-border-radius: 0 0 0 0;
    -o-border-radius: 0 0 0 0;
    border-radius: 0 0 0 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    background: none;
    border: 0;
    bottom: auto;
    box-sizing: border-box;
    clip: auto;
    color: #000;
    display: block;
    float: none;
    font-family: inherit;
    font-size: 14px;
    height: auto;
    left: auto;
    line-height: 0.5;
    list-style-type: none;
    margin: 0;
    min-height: 0;
    opacity: 1;
    outline: none;
    overflow: visible;
    padding: 0;
    position: relative;
    right: auto;
    text-align: left;
    text-decoration: none;
    text-transform: none;
    top: auto;
    vertical-align: baseline;
    visibility: inherit;
    width: auto;}
    
    .sitenavigation > ul >li {
    margin: 0 0px 0 0;
    display: inline-block;
    height: auto;
    vertical-align: middle;
    padding-right:1px;
}
    
    .sitenavigation ul > li > a{border-top: 0px solid rgba(255, 255, 255, 0);
    border-left: 0px solid rgba(255, 255, 255, 0);
    border-right: 0px solid rgba(255, 255, 255, 0);
    border-bottom: 0px solid rgba(255, 255, 255, 0);
    outline: none;
    text-decoration: none;
    padding: 0px 10px 0px 10px;
    line-height: 35px;
    font-weight: normal;
    height: 35px;
    vertical-align: baseline;
    /*text-align: right;*/
    width: auto;
    display: block;
    color: #2d3035;
    text-transform: none;
    text-decoration: none;
    background: rgba(0, 0, 0, 0);
    -webkit-border-radius: 0px 0px 0px 0px;
    -moz-border-radius: 0px 0px 0px 0px;
    -ms-border-radius: 0px 0px 0px 0px;
    -o-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
    font-family: inherit;
    font-size: 16px;}
    
    .sitenavigation ul a{cursor: pointer;
    display: inline;
    -webkit-transition: background 200ms linear, color 200ms linear;
    -moz-transition: background 200ms linear, color 200ms linear;
    -o-transition: background 200ms linear, color 200ms linear;
    transition: background 200ms linear, color 200ms linear;}
    .sitenavigation li ul{z-index: 999;
    position: absolute;
    width: 350px;
    border-top: 0px solid rgba(198, 35, 35, 0);
    border-left: 0px solid rgba(198, 35, 35, 0);
    border-right: 0px solid rgba(198, 35, 35, 0);
    border-bottom: 0px solid rgba(198, 35, 35, 0);
    padding: 10px 0 15px 0px;
    background: #fff;
    max-width: none;
    -webkit-box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.06);
    -ms-box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.06);
    -o-box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.06);}
    .sitenavigation > ul  li  ul{display: block;
    visibility: hidden;
    opacity: 1;
    pointer-events: auto;display:none;}
    
    .sitenavigation ul >li ul li a{
    display: block;
    background: #fff;
    color: #45545e;
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    padding: 0px 20px 0px 25px;
    line-height: 35px;
    text-decoration: none;
    text-transform: none;
    vertical-align: baseline;
    }
    
    .sitenavigation .append-navigation{position:relative;}
    .sitenavigation .append-navigation:after{content: " ";text-align: center;width: 20px;height: 3px;border-radius:6px;background: rgba(129,185,75, 1);display: block;position: absolute;top: calc(50% + 14px);left: calc(50% - 10px);}
    .sitenavigation .append-navigation ul a{text-align:right;}
    
        .sitenavigation .append-navigation ul li.haschildren > a{position:relative;}
        .sitenavigation .append-navigation ul li.haschildren > a:after{content:'\f053';font-family:'FontAwesome';display:block;color:inherit;position:absolute;left:30px;top:4px;font-size:0.750em;z-index:1;}
        
    .sitenavigation > ul li.toggle-on > ul{visibility:visible;}
    .sitenavigation ul li.append-navigation > a{padding-left:3px;}
    .sitenavigation ul li.append-navigation ul{right:0;}
    
    .sitenavigation > li ul li:first-child > a{border-top-left-radius: 0px;border-top-right-radius: 0px;}
    
    .sitenavigation ul > li > ul li ul{position: absolute;left: 100%; top: 0;}
    .sitenavigation ul  li  ul li ul{left: -100%;top: 0;}
    
    .sitenavigation .append-navigation > a,.sitenavigation ul li a:hover{color:#4586c6;}
    
    .sitenavigation li.current > a > span, .sitenavigation li.selected > a > span{color:#4586c6;}
    
    
    .header-bottom .search-icon{position:absolute;top:26px;right:11px;height:30px;width:30px;}
    .header-bottom .search-icon{background:url(/template_files/1099/~/media/Images/T/Tomi-IR-V2/css/search-icon.png) no-repeat center center;}
    .header-bottom .search-icon:hover{background:url(/template_files/1099/~/media/Images/T/Tomi-IR-V2/css/search-icon-hover.png) no-repeat center center;background-position: -4px -1px;}
    
    
    
    
    .remodal-wrapper{padding:0;}
    .remodal{max-width:none;height:100%;width:100%;margin:0;}
    .remodal-close{height:70px;width:70px;position: absolute;right: 20px;top: 20px;left:auto;border-radius:50%;color: #000;background: #fff;transition: all .3s ease;}
    .remodal-close:before{font-size:55px;padding:18px;}
    .remodal-close:hover{color:#fff;background:#7fbb42;}
    .search{position:absolute;top:35%;left:15%;right:15%;}
    #searchButtonContainer{opacity:0;visibility:hidden;}
    .search input[type="text"]{width: 100%;height: 120px;max-width: calc(100% - 40px);color:rgba(0,0,0,0.5);font-size:2.778em;font-family:sans-serif;font-weight: 100;border: none;border-bottom: 1px solid #5b8f3a;background: #fff;transition: all .3s;margin: auto;display: block;border-radius: 0;-webkit-appearance: none;-moz-appearance: none;  appearance: none;}
    .search input[type="text"]:focus{border-bottom:2px solid #7fbb42;}
/* Navigation ends */


/*-------------- Top Navigation CSS Starts --------------*/
/*#topnavigation{margin:4px auto 0;}
#topnavigation ul li {float:left; text-align:center;}
#topnavigation ul li.first{border-left: medium none; padding-left: 0;}
#topnavigation ul li.last {border-right: 0 none;}
#topnavigation ul li.selected a, #topnavigation ul li.current a{color:#424242;}*/
/*-------------- Top Navigation CSS Ends --------------*/


/*-------------- Left Navigation CSS Starts --------------*/
.leftnavigation li.selected.haschildren ul { display: block;}
#utility{margin-top:40px;}
.leftnavigation li {display: block; font-size: 1.071rem; border-bottom: 1px solid #f7f7f7;}
.leftnavigation ul li > ul > li a, .leftnavigation > ul > li > ul > li > span { padding: 11px 0 0;}
.leftnavigation li a:hover ul{display:block;}
.leftnavigation li.haschildren > ul {padding-left: 20px; margin-top: -5px;}
.leftnavigation li li {margin-top: 15px;}
.leftnavigation li a{color: #424242; display:block; }
.leftnavigation li a, .leftnavigation li > span{ padding: 11px 0 13px;}
.leftnavigation li a:hover{color:#4586c6}
.leftnavigation li:hover ul {display: block;}
.leftnavigation li span {display: block;}
.leftnavigation li ul li{list-style: none; margin: 0 0 5px; position: relative; border:none;}
.leftnavigation li ul li:after { content: "•"; font-size: 1rem; left: -13px; position: absolute; top: 11px;}
.leftnavigation li ul li a{}
.leftnavigation li ul li span { display: block; line-height: 23px;}
.leftnavigation ul li ul{display:none;}
.leftnavigation li > span, .leftnavigation li.selected > a > span { color: #4586c6; display: block; }
/* .leftnavigation li.first > a, .leftnavigation li.first.current > span {
padding-top: 6px;} */
/*-------------- Left Navigation CSS Ends --------------*/


/*-------------- Breadcrumb CSS Starts --------------*/
#breadcrumb{color: #fff; float: right; font-size: 0.929em; margin: 0;}
#breadcrumb > a { color: rgba(255, 255, 255, 0.6);}
/*-------------- Breadcrumb CSS Ends --------------*/


/*-------------- Search page CSS Starts --------------*/
.ip3search_highlight{font-weight:bold;}
.sitesearchpagination{padding-top:10px;float:left;width:100%;}
.sitesearchpagination ul{text-align:center;}
.sitesearchpagination ul li{display:inline; margin:0 10px 0 0 !important; padding:0;list-style:none !important;}
table.searchTable{width: 100%; word-break:break-all;}
table.searchTable tbody tr th{ text-align:left; height:22px;}
#tabs.sectionTabs{float:left; position:relative; width:100%; padding:0 0 10px;}
#tabs.sectionTabs ul{border-bottom:1px solid #000; float:left; list-style:none; padding:0; margin:0; width:100%;}
#tabs.sectionTabs li{float:left; padding:0; margin:0; border-left:1px solid #000; border-top:1px solid #000;}
#tabs.sectionTabs li.lastLI{border-right:1px solid #000;}
#tabs.sectionTabs li a span{display:block; text-align:center;}
#tabs.sectionTabs li a{display:block; padding:10px; text-align:center; background-color:#ccc;}
#tabs.sectionTabs li.current a, #tabs.sectionTabs li a:hover{background-color:#fff;}
#tabsDD{height:51px; font-size:1rem; width:180px;}
.searchresultpage #tabsDD{width: 280px;}
/*#tabs.sectionTabs span.select{position:absolute; font-size:1rem; top:0; left:0; height:35px; color:#424242; padding:7px 15px 10px 5px; background:url("/template_files/1099/~/media/Images/T/Tomi-IR-V2/css/searchTab-dd.png") no-repeat scroll 96% 15px #efefef; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; *behavior:url("/template_files/1099/~/media/Files/T/Tomi-IR-V2/htc-files/boxsizing.htc");}*/
#tabs.sectionTabs span.select{background:transparent url("data:image/svg+xml;utf8,<svg fill='black' height='25' viewBox='0 0 24 24' width='50' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat right center;padding: 15px 25px;height: auto;width: 100%;position: relative;outline: 0;border: solid 1px #5b8f3a;margin: 0;color: #000;margin-bottom: 10px;transition: all .4s;font-size:18px;line-height: 1.1em; border-radius:30px;font-family:'Open Sans',sans-serif;-webkit-appearance: none;-moz-appearance: none;appearance: none;position:absolute;top:0; left:0;}
/*#tabs.sectionTabs span.select:after{ background: #8dc63f; color: #fff; content: "\f107"; float: right; font-family: FontAwesome; height: 100%; line-height: 2.5; position: absolute; right: 0; text-align: center; top: 0; width: 39px;}*/

#twocolright .mobi-pr-tabs{display:none;}
#twocolright .mobi-pr-tabs ul {border: solid 1px #7b9dd4;border-radius:0;overflow: hidden;display: none; font-size: 1em; margin: 0 !important; float: left;width: 100%; }
.mobi-pr-tabs ul li{border: medium none; list-style-type: none !important; margin-bottom: 0 !important; padding-bottom: 0 !important;}
.mobi-pr-tabs ul li:first-child { border-top: 0 none;}
#twocolright .mobi-pr-tabs ul li:after { content: "";}
.newsWrapper{margin-top: 16px;}
.mobi-pr-tabs .year-item{padding:10px;position: relative; height:auto;}
.mobi-pr-tabs { cursor: pointer;}
/*.mobi-pr-tabs .year-item:after{content:"\f107";float: right; font-family: FontAwesome; height: 100%; line-height: 3; position: absolute; right: 0; text-align: center; top: 0; width: 39px; background: #8dc63f none repeat scroll 0 0; color: #fff;}
.mobi-pr-tabs .year-item.active:after{content:"\f106";}*/
.mobi-pr-tabs ul li a{padding:4px 25px;display:block;color:#000;}
.mobi-pr-tabs ul li:hover a{color:#fff;}
.mobi-pr-tabs ul li:hover{background:#1e90ff;}
.mobi-pr-tabs, .mobi-pr-tabs .year-item{float:left; width:100%; z-index:0;}
/*-------------- Search page CSS Ends --------------*/


/*-------------- Site Map CSS Starts --------------*/
#sitemapcontainer{ }
#sitemapcontainer li{ font-weight:bold}
#sitemapcontainer li a{ display:block; padding:3px;}
#sitemapcontainer li ul li{ font-weight:normal}
#sitemapcontainer li ul li a{ padding:0 0 0 3px;}
#sitemapcontainer li ul li ul{ margin-bottom:10px;}
#sitemapcontainer li ul li ul li{}
#sitemapcontainer li#nav-site-services-level1{display:none;}
/*-------------- Site Map CSS Ends --------------*/




/*
#bannerwrapperinner > .bx-wrapper{position: relative;}
#bannerwrapper .bx-controls .bx-pager{position:absolute; left: 45%; bottom:20px;}
#bannerwrapper .bx-controls .bx-controls-direction{bottom: 170px; position: absolute; right: 0;}
#bannerwrapper .bx-controls-direction a{display: inline-block; text-indent: -9999px;}
#bannerwrapper .bx-controls-direction a.disabled{display:none;}
#bannerwrapper .bx-controls-direction .bx-next{}
#bannerwrapper .bx-controls-direction, #bannerwrapper .bx-pager{float:left; clear:both;}
#bannerwrapper .bx-pager div{}
#bannerwrapper .bx-pager div{float:left;}
#bannerwrapperinner .bx-controls {margin: 0 auto;position: relative;}
#bannerwrapper .bx-controls-direction{width:100%;}
.home-slider .bx-wrapper .bx-pager.bx-default-pager a{display: block; padding-left: 20px; position: relative; text-indent: -9999px;}
.home-slider .bx-wrapper .bx-pager.bx-default-pager a:after {background-position: -104px -8px; height: 15px; left: 0px; top: 0; width: 15px;}
.home-slider .bx-wrapper .bx-pager.bx-default-pager a.active:after {background-position: -82px -8px; height: 15px; left: 0px; top: 0; width: 15px;}
.home-slider a.bx-prev:after {background-position: -8px -8px; height: 55px; left: 10px; top: 0; width: 31px;}
.home-slider a.bx-next:after {background-position: -45px -8px; height: 55px; right: 10px; top: 0; width: 31px;}
*/


/* --------------- Banner Starts ---------------*/
.home-slider{max-height:784px; /*background: rgba(0, 0, 0, 0) url("~/media/Images/T/Tomi-IR-V2/css/site-loader.gif") no-repeat scroll center center;*/}
.home-slider#bannerwrapper .sliderbanner{/*visibility:hidden;*/ float:left; transition: all 0s ease 0s;}
.banneritem{position:relative;height:478px;width:100%; overflow:hidden; float:left;}
.banneritem .bannertext{color: #fff;  left: 50%;  margin-right: -50%;  position: absolute;  text-align: center;  top: 13%; transform: translate(-50%, 0%); -webkit-transform: translate(-50%, 0%); -moz-transform: translate(-50%, 0%); -o-transform: translate(-50%, 0%); -ms-transform: translate(-50%, 0%); width: 80%;}
#bannerwrapper{position:relative; margin:0 auto;overflow:hidden;max-width:1572px;}
#bannerwrapper .sliderbanner{ width:100%; position:relative;}
.bannerOuterText {margin: 0 auto; max-width: 1100px; /*width:100%;position: relative;top: 43%;transform: translateY(-50%);*/}
.home-intro {}
.home-intro p{font-size: 1.6rem; line-height: 2.0rem;}
.BannerImage{display: block; height: auto; width: 100%;}
.bannertext p.sldTitle{font-size: 2.2rem; font-weight: 700; padding: 0 0 10px;}
.bannertext > h2 {color: #fff; line-height: 80px; font-size: 4.857em; font-weight: 100; margin-bottom: 45px; text-transform: none;}
.bannertext > h2 strong {font-weight:900;}
.bannertext p {font-size: 1.286em; font-weight: 100; line-height: 30px; padding: 0 0 10px;}
.bannertext p a {font-size: 1.6rem;}


.slick-dots{left: 0px;right: 0px;bottom:24px;margin: 0px auto;position: relative;text-align: center;}
.slick-dots li{display:inline-block;margin:0 5px;}
.slick-dots li button{border:none;background:rgba(229,229,229,0.8);height:3px;width:60px;text-indent:-99999px;}
.slick-dots li:hover button,.slick-dots li.slick-active button{background:rgba(141,198,63,0.8);}
.slick-arrow{position:absolute;top:45%;z-index:2;border:none;width:50px;height:50px;text-indent:-99999px;background-color:rgba(255,255,255,0);}
.slick-arrow.slick-prev{left:20px;background-position: -248px -121px;}
.slick-prev.slick-arrow:hover {background-position: -248px -175px;}
.slick-arrow.slick-next{right:20px;background-position:-303px -176px;}
.slick-next.slick-arrow:hover {background-position: -303px -121px;}


.siteSearch{background-color: transparent; background-position: -125px -8px; border: 0 none; height: 13px; right: 2px; text-indent: -9999px; width: 12px; position:absolute; top:0;}
.search{border:none;}
.searchbox { border-bottom: 1px solid #ababab; width: 200px; position:relative;}
.search-txt { border: medium none; background:none;}
/* --------------- Banner Ends ---------------*/

/* --------------- Content Wrapper Starts ---------------- */
#contentwrapper{clear: both;}
.container-fluid.home-container { margin-top: 40px;}
.page-intro-text {float: left;width: 100%;}
.page-content {float: left;width: 100%;}
/*.page-content p {font-size: 1.286em; font-weight: 400; line-height: 23px; letter-spacing: -1px;} */
.page-introtext p { font-weight: 400; line-height: 23px;}
/* --------------- Content Wrapper Ends ---------------- */

/* --------------- Snapdown Starts ---------------- */
.snapdown-container {float: left;width: 100%;}
.snapdown-title {cursor: pointer; float: left; overflow: hidden; padding:20px 15px; position: relative; width: 100%;}

.snapdown-content {float: left;width: 100%;display:none;padding:0 15px;line-height:20px;}
.snapdown-content p:last-child{margin-bottom: 0px;}
.snapdown-item {float: left;width: 100%;border-top:1px solid #f0efef;border-bottom:1px solid #f0efef;margin-bottom:10px;}
.show-hide {cursor: pointer;float: right;}
/*.snapdown-item.first .snapdown-content{display:block}*/
.snapdown-title p {margin-bottom: 0; position: relative;line-height:20px;}
.nojs .snapdown-title p:after,.nojs .snapdown-title p:before{display:none;}
.snapdown-title:hover {color: #3764eb;}
.snapdown-title:hover p:after,.snapdown-title:hover p:before{background:#3764eb;}
.snapdown-title p:after,.snapdown-title p:before{content:"";display:block;position:absolute;top:0;right:0;color:inherit;background:#2c2c2c;}
.snapdown-title p:after{height:19px;width:1px;top:0;right:10px;}
.snapdown-title p:before{height:1px;width:19px;top:9px;right: 1px;}
.snapdown-title.active p:after{display:none;}
.snap-with-navigation{margin-bottom:50px;}
/* --------------- Snapdown Ends ---------------- */

/* ---------------Starts Committee Composition ---------------- */
.category-key span{width:30%;float:left;}
.category-key{float:left;width:100%;margin-bottom: 20px;margin-top: 10px;}
.committee-composition-container {float: left;width: 100%;}
table.committee-composition-table {width: 100%;}
.category-key img {margin-top: -5px;display: inline;}
.committee-composition-table img {display: inline-block;}
table.committee-composition-table td {text-align: center;}
table.committee-composition-table td.textLeft{text-align: left;}
/* ---------------Ends Committee Composition ---------------- */

/* --------------- Events and Presentation Starts ---------------- */
.events-presentations-container {float: left;width: 100%;}
.events-presentations-container .event-date {width: 24%;}
.events-presentations-container .event-time { width: 18%;}
.events-presentations-container .event-title { width: 44%;}
.events-presentations-container .event-document { width: 14%; text-align: center;}
.event-table td{vertical-align:top;}
.webcast-event{ background: url("/template_files/1099/~/media/Images/T/Tomi-IR-V2/icons/audio-icon.png") no-repeat scroll 1px 1px;display: block;float: left;min-height:25px; padding:2px 2px 3px 26px;clear:left;}
table.upcoming-event-table {margin-bottom: 20px;}

.event-table strong.title-sub{ display: block;}
.event-document{}
.event-document img{ padding: 0 4px 0 2px; vertical-align: middle;display:inline}
.event-document a{     display: inline-block; padding: 2px 0; margin-right: 10px; text-align: center; }
.pdf-size{ display: block;float: left;padding:5px 0 3px 8px;}
.event-document.event-document-1 a{ padding: 3px 0 2px; }
.Outlook-link{ display: block; float: left; padding: 2px 0; margin-top: 9px;}
.Outlook-link img{ margin-right: 11px; vertical-align: middle; display:inline}
.rad-underline{text-decoration:underline;}
.event-time > span { display: block;}
/* --------------- Events and Presentation Ends ---------------- */

/* Calendar Of Events Starts */
.latest-webcast-tem{margin-bottom:20px;}
.webcast-link-container img{display:inline-block;}
.latest-webcast-tem .webcast-subject,.latest-webcast-tem .webcast-date{padding-left:30px;}


.financial-calendar-container,.subscriptionbox{float:left;margin-top:15px;}
.events-item-container,.formrow{margin-bottom:20px;}
.formrow label{margin-bottom:10px;}
.privacytext p{padding-bottom:0px;}
.supporting-material-item{margin-bottom:10px;}
.supporting-material-item.last{margin-bottom:0px;}
.supporting-material-item .doc-pdf-icon{float:right;}
.webcast-link .normal-text-link{display:inline-block;width:100%}

.calendar-past-event-item{float:left;width:100%;margin:20px 0 0;padding-bottom:20px;border-bottom:1px solid #efefef;}
.calendar-past-event-item.last{border-bottom:0px;}
.supporting-material-container .material-text{float:left;width:20%;}
.supporting-material-container .material-item{float:left;width:80%;}
.supporting-material-container .material-item a{float:right;}
/* Calendar Of Events Ends */


/* --------------- Listing Page Starts ---------------- */
.list-title {float: left;width: 89%;}
.list-document {float: left;padding: 7px 0;width: 11%;}
.list-document div {float: left;margin-right: 5px;}
.list-wrapper ul li.last {border-bottom: 4px solid #0380c1;}
.list-wrapper ul li.first {border-top: 4px solid #0380c1;}
.list-wrapper ul li {border-top: 1px solid #adcde4;clear: both;float: left;padding: 0;width: 100%;}
.list-wrapper ul li p {line-height: 16px;margin: 0;padding: 15px 10px 0 0;}
.noprint {font-size: 0.929em;}
.noprint span {float: left;}
.noprint div {display: inline-block;text-align: right;vertical-align: middle;}
.dwd-brief-link {margin-top: 5px;text-align: left;}
#twocolright .tabs ul {margin: 0; font-size: 1rem;}
#twocolright .tabs li{list-style:none;}
/*#twocolright .tabs .level2:after { content: "";}
.tabs .level2 {float: left;margin-right: 10px;}
.tabs .level2 a span{font-weight:bold;display: block;background-color: #fcfcfc;padding: 10px 20px 10px 20px;color:#424242;}
.tabs a:hover span:after{background:none;}
.tabs .level2:first-child a span:after{background:none;}
.tabs .level2 a span:after{background-position: -237px -121px; height: 26px; left: 0; top: 10px; width: 2px;}
.tabs .current span, .tabs a:hover span {background-color: #7fbb42;display: block;font-weight: 700; padding: 10px 20px 10px 20px; color:#FFF;}
.tabs .level2 a{font-weight:bold;display: block;background-color: #8dc63f;}*/
#twocolright .tabs li:after { content: "";}
.tabs li {float: left;margin-right: 10px;}
.tabs li a span{font-weight:bold;display: block;background-color: #fcfcfc;padding: 10px 15px 10px 15px;color:#424242;}
.tabs a:hover span:after{background:none;}
.tabs li:first-child a span:after{background:none;}
.tabs li a span:after{background-position: -237px -121px; height: 26px; left: 0; top: 10px; width: 2px;}
.iframe-tabs li.active span,.tabs .current span, .tabs a:hover span {background-color: #7fbb42;display: block;font-weight: 700; padding: 10px 15px 10px 15px; color:#FFF;}
.tabs li a{font-weight:bold;display: block;background-color: #8dc63f;}
.tabs ul {float: left;width: 100%;}
.tabs {}
.newsWrapper{margin-top: 20px;}
/* --------------- Listing Page Ends ---------------- */


/* Iframe with tabs starts */
.iframe-tabs-content-wrapper .iframe-tabs-content{display:none;}
.iframe-tabs-content-wrapper .iframe-tabs-content.active{display:block;}
/* Iframe with tabs ends */



.box-items {padding-top:23px}
.box-unit { margin-bottom:38px; }
#box-unit-4 { clear:left }
.header-gallery-unit { padding:15px 0 10px;clear:both; line-height: 18px; }
.header-gallery-unit h2{font-size:1.6rem;}
.box-unit p {font-size:1.4rem}
.box-unit p:last-child {margin-bottom:0}
.shareprice-box {  background:#333333; position:relative; }
.shareprice-box iframe{height: 150px; padding: 20px 15px 5px;}
.shareprice-box .inner-share-box-link{display: block; padding: 0 15px;}

/*---------- Table Styling ------------*/
thead th {padding:7.2px 7.2px 9px 0; text-align: left;border-bottom:2px solid rgb(187, 187, 187);font-weight:400;line-height:36px;}

td, tbody th {border-bottom: 1px solid rgb(238, 238, 238); padding:7.2px 7.2px 9px 0;position: relative;font-weight:400;line-height:36px;}
table.inv-responsive-table {width:100%; margin-bottom:10px}
tbody th {font-weight:normal; text-align: left;}
th.cAlign, td.cAlign {text-align: center; position: relative;}
td p{margin-bottom:0; padding-bottom:0}
.inv-responsive-header-td {font-weight:bold}
.inv-responsive-data-header {width:30%}
.inv-responsive-data-content {width:70%}

table.responsive-table{}
.pr-mobi-headers{display:none;}
/*---------- Table Styling ------------*/

/* Footer CSS Start */

footer a[href^="tel:"]:hover,footer a[href^="mailto:"]:hover{border-bottom:1px solid #3764eb;}

.footer-content{padding-left:70px;padding-right:70px;padding-bottom: 31px;border-bottom: 1px solid rgba(237,237,237, 1);}
.footer-content .column{margin-top:39px}
.footer-content .column1{margin-top:51px;padding-right:71px;}
.footer-content .column2{margin-left:-2px;}
.footer-content .column3{margin-left:13px;}
.footer-content .column4{margin-left:-7px;}
.footer-content .column1 img:first-child{margin-bottom:20px;}
.footer-content .column .column-heading{padding-bottom:19px;font-weight:700;}
.footer-content .column4 .column-heading{padding-bottom:35px;}

.footer-content .column p,.footer-content .column .column-heading{font-size:18px;line-height:22px;color:#0a0000;font-family:'Open Sans',sans-serif;}
.footer-content .column4 p,.footer-content .column4 p strong{font-size:22px;line-height:28px;}
.footer-content .column p{padding-bottom:18px;line-height:20px;}

.footer-contact-form .form-element{margin-bottom:11px;}
.footer-contact-form .form-label{display:none;}
.footer-contact-form .form-input input,.footer-contact-form .form-input select{padding: 15px 25px;height: auto;width: 100%;position: relative;outline: 0;border: solid 1px #5b8f3a;margin: 0;color: #000;background: #fff;margin-bottom: 10px;transition: all .4s;font-size:18px;line-height: 1.1em; border-radius:30px;font-family:'Open Sans',sans-serif;-webkit-appearance: none;-moz-appearance: none;appearance: none;}
.footer-contact-form .form-input input[type="text"]{height:51px;}
.footer-contact-form .form-input select{background:transparent url("data:image/svg+xml;utf8,<svg fill='black' height='25' viewBox='0 0 24 24' width='50' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat right center;padding-right: 40px!important;margin-bottom: 10px!important;}
.footer-contact-form .form-input input{}

.footer-contact-form .form-input{position:relative}
.footer-contact-form .form-input > span{position:absolute;bottom:-10px;left:0;width:100%;color:#e80000;font-size: 12px;line-height: 1.2em;background: #fee;padding:2.4px 8.4px;margin: 0; border-radius:15px;}
.footer-contact-form .form-input > span:before{content: "ⓘ";font-size: 13px;color: rgb(232, 0, 0);padding-right: 5px;  vertical-align: middle;}

.footer-contact-form input[type="submit"]{display: inline-block;text-align: center;cursor: pointer;position: relative;   z-index: 0;vertical-align: middle;-ms-user-select: none;-moz-user-select: none;-webkit-user-select: none;user-select: none;text-decoration: none;text-shadow: none;transition: color .3s ease-out,border .3s ease-out,background .3s ease-out,box-shadow .3s ease-out!important;font: 400 14px 'Open Sans'; border-radius: 100px;border: none;padding: 13px 30px;width:auto;-webkit-font-smoothing: auto;background: #7fbb42;color: #fff;box-shadow: 0 0 25px -14px #7fbb42;margin-top:10px;}
.footer-contact-form input[type="submit"]:hover{background: #000; color:#fff;box-shadow: 0 0 25px -14px #000;}
.footer-contact-form .form-msg span:not(:empty){text-align:center;background:rgb(238, 252, 224);border:1px solid rgb(203, 237, 170);padding:18px;display:block;}
.footer-contact-form .form-msg p{line-height:20px;padding:0;font-size:0.818em;}

.bottom-footer-content{padding:0 70px;padding-top:48px;padding-bottom:30px;}
.bottom-footer-content .copyright{padding-bottom:4px;}
.bottom-footer-content .copyright p,.bottom-footer-content .copyright .rad-link,.bottom-footer-content .bottom-content p{color:#45545e;padding:0;font-size:12px;line-height:16px;font-family:'Open Sans';font-weight:700;}
.bottom-footer-content .copyright .rad-link:hover{border-bottom:1px solid #3764eb;}
.bottom-footer-content .bottom-content p{font-weight:400;line-height:23px;}
.bottom-footer-content .footer-social{float:left;margin-left:112px;margin-top:10px;}
.bottom-footer-content .footer-social li{float:left;margin-right:15px;}
.bottom-footer-content .footer-social li a{font-size:22px;}
/* Footer CSS End */

/* Main Navigation Start */
#topnavigation>ul{box-sizing: border-box; float: right; text-transform: uppercase; font-size: 0.786em; letter-spacing: 0.42px;}
#topnavigation ul li a{display: block; color: #fff;}
#topnavigation ul li > a,  #topnavigation ul li > span { line-height: 25px; padding: 8px 20.4px 7.5px 20px;}
#topnavigation ul li.current > span, #topnavigation ul li.selected > a{ color:#8dc63f;}
#topnavigation ul li{position: relative;}
.appended-main-navigation{display:none;}
/*.append-navigation > ul {display: none;}*/
#mobishownav .append-navigation > ul{display:block;}

#topnavigation ul li:hover a{color:#FFF;}
#topnavigation ul li.current.level1.haschildren span.navhover{padding-bottom:17px;}

/*#topnavigation ul *, #topnavigation ul *:before{
transition: all .5s ease 0s;
-moz-transition: all .5s ease 0s;
-webkit-transition: all .5s ease 0s;
-ms-transition: all .5s ease 0s;
-o-transition: all .5s ease 0s;}
#topnavigation ul *:after{
transition: all .2s ease 0s;
-moz-transition: all .2s ease 0s;
-webkit-transition: all .2s ease 0s;
-ms-transition: all .2s ease 0s;
-o-transition: all .2s ease 0s;} */
#topnavigation ul li a{position: relative; display: block;}
#topnavigation ul li.append-navigation > a:before { background: #8dc63f; content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 4px;}

#topnavigation ul li.append-navigation > a{ background: rgba(47,47,47,.3);}
#topnavigation ul li.append-navigation > a:after { border-bottom: 4px solid transparent; border-left: 4px solid #6db32f; border-top: 4px solid transparent; content: ""; height: 0; left: 4px; position: absolute; top: 41%; width: 0;}
#topnavigation > ul > li:before { left: -100%; opacity: 0; width: 0;}
#topnavigation ul > li > ul > li > ul {left: -220px; padding-top: 1.55em; position: absolute; top: -15px;}
#topnavigation ul > li > ul > li > ul > li { padding:0; width: 220px; margin-bottom: 0; position: relative;}
#topnavigation > ul > li.navhover:before { background: rgba(43, 43, 43, 0.5); content: ""; height: 100%; left: 1px; opacity: 1; position: absolute; top: 0; width: 100%;}
/*#topnavigation ul li.append-navigation.navhover a:after { border-bottom: 3px solid transparent; border-left: 3px solid #6db32f; border-top: 3px solid transparent; left: 0; top: 44%;}
#topnavigation ul li.append-navigation.navhover a:before { background: transparent; left: -4px;}*/
#topnavigation ul li.navhover { position: relative;}

div#topnavigation > ul > li ul:before{ background: #8dc63f; content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 4px;}
/*div#topnavigation > ul > li > a{
-webkit-transition: all ease .6s;
-moz-transition: all ease .6s;
-ms-transition: all ease .6s;
-o-transition: all ease .6s;
transition: all ease .6s;} */
div#topnavigation > ul > li ul:after{ border-bottom: 4px solid transparent; border-left: 4px solid #6db32f; border-top: 4px solid transparent; content: ""; height: 0; left: 4px; position: absolute; top: 41%; width: 0;}
#topnavigation ul li ul li { display: block; text-align: left; width: 100%; line-height: 1rem;}
#topnavigation ul li ul.hoverd{display:block;}
div#topnavigation > ul > li ul { background: rgba(31, 39, 53, 1); position: absolute; width: 220px; display: none; top: 42px;}
#topnavigation ul > li:hover > ul{ top: 42px; height: auto; visibility:visible;}
#topnavigation ul > li > ul > li:hover > ul { height: auto; top: -15px; visibility: visible;}
#topnavigation ul li ul li > a, #topnavigation ul li ul li > span { display: block; line-height: 11px; padding: 0 16px 20px;}
#topnavigation ul li.navhover a, #topnavigation ul li.navhover a, #topnavigation ul li.append-navigation > a{position: relative;}
#topnavigation ul#section-Homepage-level1{margin-left:0%;}
div#topnavigation > ul > li > ul { font-size: 0.9225em; left:0; padding-top: 15px;}
#topnavigation ul li > ul li:hover > a, #topnavigation ul li > ul li:hover > span{ color: #8dc63f;}
.stick div#topnavigation > ul > li ul li ul { top: -9px;}
.stick div#topnavigation > ul > li ul { top: 60px;}

/*div#topnavigation > ul > li:last-child > ul , div#topnavigation > ul > li:nth-last-child(2) > ul{
right:0; left:auto;} */
.nojs #topnavigation ul ul ul { position:relative; }
/*div#topnavigation > ul > li > a, div#topnavigation > ul > li > a::before, div#topnavigation > ul > li > a::after {
transition: all 0.6s ease 0s;}
#topnavigation ul li.selected li.level2.current span, #topnavigation ul li.selected li.level2.selected a{background-color:#f9f9f9;margin-bottom:1px;} */
.mobiMenus{display:none;}
/* Main Navigation End */

/* Contact Form Start */
.ir-contact-form div.clearfix { border: medium none; margin-bottom: 10px;}
.ir-contact-form .form-left { float: left; margin-right: 10px; width: 120px;}
.ir-contact-form .form-left span.mandatory, span.mandatory { color: #ff0000;}
.ir-contact-form .form-right { float: left;}
.ir-contact-form .form-right input { border: 1px solid #d8d8d8; margin-right: 10px; padding: 5px 10px; width: 230px;}
.ir-contact-form .form-right textarea { border: 1px solid #d8d8d8; margin-right: 10px; padding: 5px 10px; width: 230px; height:80px; resize:none;}
.ir-contact-form .form-right input#txtCaptcha { float: none; margin-top: 10px;}
.ir-contact-form .form-right input[type="submit"] {background: #efefef none repeat scroll 0 0; border: 1px solid #dddddd; color: #666666; cursor: pointer; display: block; float: none; margin-top: 10px; padding: 5px 12px 6px; width: 100px;}
.form-right > div {margin-bottom: 10px;}
/* Contact Form End */

/* Mobile Menu-Search Start */
.mobishow { bottom: 0; display: none; float: right; margin: 0 1.3% 0 0; position: absolute; right: 1.3%; z-index: 99;}
.mobinav { border-right: 1px solid #fff; float: left; position: relative;}
.mobinav span.navbg { background-size: 54px auto; height: 37px; width: 54px;}
.mobinav span.navbg:after{background-position: -8px -66px; height: 40px; right: 0; top: 0; width: 40px;}
.mobinav span.navbg { cursor: pointer; display: block; height: 40px; text-indent: -999999px; width: 40px;}
.mobisearch { float: left;position: relative;}
.mobinav span.navbg.selected:after { background-position: -159px -66px;}
.mobisearch span.searchbg.selected:after { background-position: -203px -66px;}
.mobisearch span.searchbg:after{background-position: -52px -66px; height: 40px; right: 0; top: 0; width: 40px;}
.mobisearch span.searchbg { cursor: pointer; display: block; height: 40px; text-indent: -999999px; width: 40px;}
#mobishownav {overflow: hidden; position: absolute; right: 14px; top: 100%; width: 50%; z-index: 5000;}
#mobishownav > ul { border: 1px solid #c3c6c6; border-bottom:none; overflow: hidden;}
#mobishownav ul li { background-color: #f8f8f8; border-bottom: 1px solid #c3c6c6; float: left; padding: 8px 0; position: relative; text-transform: uppercase; width: 100%;}
#mobishownav ul li.navopen {background-color: #fff; border-bottom: medium none;}
#mobishownav ul li a { color: #5e6665; display: block; font-weight: bold; line-height: 20px; margin: 3px 45px 0 10px; min-height: 24px;}
#mobishownav ul li.append-navigation > a {color: #c41230;}
#mobishownav ul li.current span { color: #c41230; display: block; line-height: 20px; margin: 3px 45px 0 10px; min-height: 24px;}
#mobishownav ul li.level1.current span { font-weight: bold;}
#mobishownav ul li.level1.current li span { color: #5e6665; font-weight: normal;}
#mobishownav ul li.level1.selected a, #mobishownav ul li.level1.selected li.level2.selected a, #mobishownav ul li.level1.selected li.level2.selected li.level3.selected a { color: #c41230;}
#mobishownav ul li.level1.selected li a, #mobishownav ul li.level1.selected li.level2.selected li a { color: #5e6665;}
#mobishownav ul li.level1.last { border: 0 none;}
#mobishownav ul li.level1.first { margin: 3px 0 0;}
#mobishownav ul li ul li { background: none; border-bottom: 1px dashed #c3c6c6; position: static; text-transform: none; width: 100%;}
#mobishownav ul li ul li.last { background: rgba(0, 0, 0, 0) none repeat scroll 0 0;}
#mobishownav ul li ul li a { color: #5b5454; display: block; float: none; font-weight: normal; line-height: 20px;}
#mobishownav ul li a:hover { color: #c41230;}
#mobishownav ul li ul { display: none;}
#mobishownav .showmore:after,#mobishownav .showmore1:after{background-position: -96px -66px; height: 27px; right: 0; top: 0; width: 27px;}
#mobishownav .showmore, #mobishownav .showmore1 { cursor: pointer; display: block; height: 27px; margin: 0; position: absolute; right: 10px; top: 8px; width: 27px; z-index: 500;}
#mobishownav .showmore.selected:after, #mobishownav .showmore1.selected:after { background-position: -127px -66px;}
#mobishowsearch {background: #f8f8f8; border: 1px solid #c3c6c6; overflow: hidden; padding: 10px; position: absolute; right: 14px; top: 100%; width: 50%; z-index: 500;}
#mobishownav ul li ul li ul li {padding-left: 20px;}
/* Mobile Menu-Search End */

/* BOD Start */
.snapdown-content.board img {border: medium none; border-radius: 4px;overflow: hidden;  float:left; margin-right:20px; margin-bottom: 12px;}
.snapdown-title p{padding-bottom:0px;}
/* BOD End */

.auto-scroll{overflow:auto; width:100%;}

/* Reports and Presentations Start */

.media-link {font-size:1.9em; color:#a3b0b6}
.media-link:hover {font-size:1.9em; color:#6e8878}

/* Reports and Presentations End */

/* No JS Start */
.nojs .banneritem{display:none;}
.nojs .banneritem.banner1{display:block;}
.nojs .snapdown-content{display:block;}
/* No JS End */

.ir-contact-form .form-right textarea.errorClass, .ir-contact-form .form-right input.errorClass {border: 1px solid red;}
#body_0_main_1_ctl06_Submit{border:1px solid #efefef}

/* PR Start */
/*input.txt-search-pr,input.btn{background: #efefef; border: medium none; color: #424242; display: inline-block; margin-right: 9px; padding: 7px 10px; vertical-align: top; width: 200px;}*/
/*input.btn-pr-search{background: #8dc63f none repeat scroll 0 0; border: 1px solid #efefef; color: #FFF; cursor: pointer; display: inline-block; float: none; padding: 7px 12px; vertical-align: top; width: 80px;}*/
input.txt-search-pr,a.dk_toggle > span.dk_label,.mobi-pr-tabs .year-item{padding: 15px 25px;height: auto;width: 100%;position: relative;outline: 0;border: solid 1px #5b8f3a;margin: 0;color: #000;background: #fff;margin-bottom: 10px;transition: all .4s;font-size: 18px;line-height: 1.2em;    border-radius: 30px;font-family: 'Open Sans',sans-serif;-webkit-appearance: none; -moz-appearance: none; appearance: none;   height: 51px;width: 260px;display:inline-block;}
a.dk_toggle > span.dk_label,.mobi-pr-tabs .year-item{background:transparent url("data:image/svg+xml;utf8,<svg fill='black' height='25' viewBox='0 0 24 24' width='50' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat right center;cursor:pointer;}
a.dk_toggle > span.dk_label{margin:0;}
.mobi-pr-tabs .year-item{width:100%;margin-bottom:0;}
input.btn-pr-search{margin-top:-3px;padding:16px 30px;}
.news-filter { margin-left: 10px; margin-top: 30px; width:320px; }
.mobiDropdownPress { display: inline-block; position: relative; vertical-align: top; width: 215px; }
.mobiDropdownPress.finder-dropdown-sort { margin-left: 6px; width:260px; }
/*a.dk_toggle > span.dk_label:after { background-position: -297px -151px; height: 11px; right: 10px; top: 9px; width: 18px; }*/
/*a.dk_toggle > span.dk_label {background: #efefef; color: #424242; cursor: pointer; display: block; padding: 6px 40px 6px 6px; position: relative;}*/
.mobiDropdownPress .dk_options { display: none; position: absolute; width: 215px; z-index: 500; }
#twocolright .mobiDropdownPress .dk_options ul {background: #fff;left: 0; margin: 0; padding: 0; width: 100%; z-index: 5;}
#twocolright .mobiDropdownPress .dk_options ul li { cursor: pointer; float: none; font-weight: 400; list-style: none; margin: 0 !important; padding: 0; position: relative;}
#twocolright .mobiDropdownPress .dk_options ul li:after { content: "";}
#twocolright .mobiDropdownPress .dk_options ul{border: solid 1px #7b9dd4;overflow:hidden;}
#twocolright .mobiDropdownPress .dk_options ul li a {display: block; margin-right: 0; padding:3px 25px;color:#000; }
#twocolright .mobiDropdownPress .dk_options ul li:hover{background:#1e90ff;}
#twocolright .mobiDropdownPress .dk_options ul li:hover a{color:#fff;}
.mobiDropdownPress.dk_open .dk_options { display: block; }
.mobiDropdownPress.finder-dropdown-sort .dk_options { width: 260px; }
.press-text-filter { margin-top: 30px; width:385px; }
/*.dk_toggle .fa {background: #8dc63f; color: #fff; cursor: pointer; font-weight: 400; height: 100%; line-height: 2.6; position: absolute; right: 0; text-align: center; top: 0; width: 39px;}
.dk_toggle .fa:before { content: "\f107";}
.dk_toggle .fa.fa-minus:before{ content: "\f106";}*/
#twocolright .press-release-pagination-container{}
#twocolright .press-release-pagination-container ul{}
#twocolright .press-release-pagination-container ul li{float:left; list-style:none;}
#twocolright .press-release-pagination-container ul li.prev{}
#twocolright .press-release-pagination-container ul li.next{}
#twocolright .press-release-pagination-container ul li.prev a{}
#twocolright .press-release-pagination-container ul li.next a{}
#twocolright .press-release-pagination-container ul li a{display: block; padding: 0 5px;}
#twocolright .press-release-pagination-container ul li strong { padding: 0 5px;}
/* PR End */
/*--------------- non js navigation <strat>------------------*/
.nonjs-navigation { display:none; }
#Homepage.nojs .nonjs-navigation { display: block;float: left;margin-top: 2px;width: 100%; }
.nojs #bannerwrapper.home-slider .sliderbanner { visibility: visible; }
/*--------------- non js navigation <end>------------------*/

/* Home Page */
.home-webcast-events, .home-pr-listing, .home-sec-filings { margin: 0 auto; max-width: 1170px; }
.home-event-box > img { width: 100%; max-height: 294px; min-height: 294px;}
.home-event-box {float: left; position: relative; overflow: hidden; width: 25%; cursor: pointer;}
.home-event-box-ttl{ visibility: hidden;  bottom: 45px; color: #fff; font-size: 1.214em; left: 10px; position: absolute; text-transform: uppercase; transform: matrix3d(0.5, 0, -0.86602, 0.00072, 0.29619, 0.93969, 0.17101, -0.00014, 0.81379, -0.34202, 0.46984, -0.00039, -300, -100, 300, 0.75); -moz-transform:matrix3d(0.5, 0, -0.86602, 0.00072, 0.29619, 0.93969, 0.17101, -0.00014, 0.81379, -0.34202, 0.46984, -0.00039, -300, -100, 300, 0.75); -webkit-transform:matrix3d(0.5, 0, -0.86602, 0.00072, 0.29619, 0.93969, 0.17101, -0.00014, 0.81379, -0.34202, 0.46984, -0.00039, -300, -100, 300, 0.75); -o-transform:matrix3d(0.5, 0, -0.86602, 0.00072, 0.29619, 0.93969, 0.17101, -0.00014, 0.81379, -0.34202, 0.46984, -0.00039, -300, -100, 300, 0.75); -ms-transform:matrix3d(0.5, 0, -0.86602, 0.00072, 0.29619, 0.93969, 0.17101, -0.00014, 0.81379, -0.34202, 0.46984, -0.00039, -300, -100, 300, 0.75); transform-origin: 30% 10% 0; -webkit-transform-origin: 30% 10% 0; transform-style: flat; -webkit-transform-style: flat; transition: all 0.70s ease 0s; -webkit-transition: all 0.70s ease 0s; width: 90%;  }
.home-event-box-date{visibility: hidden; font-size:0.929em; color:#FFF; bottom: 0; left: 10px; position: absolute; transform: matrix3d(0.5, 0, 0.86602, -0.00072, 0.55667, 0.76604, -0.32139, 0.00026, -0.66341, 0.64278, 0.38302, -0.00031, 250, 50, 300, 0.75); -moz-transform:matrix3d(0.5, 0, 0.86602, -0.00072, 0.55667, 0.76604, -0.32139, 0.00026, -0.66341, 0.64278, 0.38302, -0.00031, 250, 50, 300, 0.75); -webkit-transform:matrix3d(0.5, 0, 0.86602, -0.00072, 0.55667, 0.76604, -0.32139, 0.00026, -0.66341, 0.64278, 0.38302, -0.00031, 250, 50, 300, 0.75); -o-transform:matrix3d(0.5, 0, 0.86602, -0.00072, 0.55667, 0.76604, -0.32139, 0.00026, -0.66341, 0.64278, 0.38302, -0.00031, 250, 50, 300, 0.75); -ms-transform:matrix3d(0.5, 0, 0.86602, -0.00072, 0.55667, 0.76604, -0.32139, 0.00026, -0.66341, 0.64278, 0.38302, -0.00031, 250, 50, 300, 0.75); transition: all 0.70s ease 0s; width:90%;  }
.home-event-box-shadow{  visibility: hidden; font-weight:400; background: rgba(10, 6, 6, 0.4); height: 100%; left: 0; position: absolute; top: 0; transform: matrix3d(0.8, 0, 0, 0, 0, 0, 0.8, -0.00066, 0, -1, 0, 0, 0, 0, 0, 1); -moz-transform:matrix3d(0.8, 0, 0, 0, 0, 0, 0.8, -0.00066, 0, -1, 0, 0, 0, 0, 0, 1); -webkit-transform:matrix3d(0.8, 0, 0, 0, 0, 0, 0.8, -0.00066, 0, -1, 0, 0, 0, 0, 0, 1); -o-transform:matrix3d(0.8, 0, 0, 0, 0, 0, 0.8, -0.00066, 0, -1, 0, 0, 0, 0, 0, 1); -ms-transform:matrix3d(0.8, 0, 0, 0, 0, 0, 0.8, -0.00066, 0, -1, 0, 0, 0, 0, 0, 1); transform-origin: 50% 100% 0; -webkit-transform-origin: 50% 100% 0; transform-style: flat; -webkit-transform-style: flat; transition: all 0.70s ease 0s; -webkit-transition: all 0.70s ease 0s; width: 100%; }
.home-event-box:hover .home-event-box-shadow,
.home-event-box:hover .home-event-box-ttl,
.home-event-box:hover .home-event-box-date{transform:none;}
.home-event-box:hover > a, .home-event-box:hover > p,.home-event-box:hover .home-event-box-shadow { visibility: visible;}
.home-event-box.active > a, .home-event-box.active > p,.home-event-box.active .home-event-box-shadow { visibility: visible;}
.home-container h2 { margin-bottom: 19px; font-size: 2em; text-transform: none; line-height: 45px;}

.site-view-more-link{margin: 31px auto 48px;text-align: center;}
/*.site-view-more-link a{ background: #8dc63f none repeat scroll 0 0; border-radius: 4px; border-width: 0; box-shadow: 0 2px 0 0 rgba(128, 128, 128, 0.1); color: #fff; font-size: 1.214em; display: inline-block; letter-spacing: 0; line-height: 23px; margin: 0; min-height: 0; min-width: 0; padding: 9px 81px 10px 18px; position: relative; transition: all 0.3s ease 0s; font-weight: 700; }
.site-view-more-link a:after{ background: #fff none repeat scroll 0 0; border-radius: 50%; color: #8dc63f; content: "\f105"; font-family: "FontAwesome"; font-size: 11px; height: 20px; line-height: 19px; position: absolute; right: 11px; text-align: center; top: 10px; transition: all 0.5s ease 0s; width: 20px; font-weight: 700; }
.site-view-more-link a:hover{ background-color: #76ae28; }*/
.home-banner-boxes{ background:#6db32f;max-width:1572px;margin:0 auto;}
.home-banner-boxes-inner{ max-width:1170px; margin:0 auto; }
.home-banner-inner-box{ color: #fff; float: left; line-height: 20px; margin: 0 auto; max-width: 282px; padding: 30px 60px 23px; text-align: center; width: 25%; }
.home-banner-inner-box > img { margin: 0 auto 19px; }
.home-brdr{ border-bottom:1px solid #e5e5e5; margin-bottom:30px; }
.homeSecWrap { text-align: center; font-size:1.214em; line-height:22px; }
.homeSecInner a{ border-color: #cdcdcd #cdcdcd #8dc63f; border-style: solid; border-width: 1px 1px 3px; padding: 30px 5px 0; display:block; }
.homeSecInner a:hover { border-color: #cdcdcd #cdcdcd #76ae28;}
.homeSecWrap a span.date{color: #bdbdbd; display: block; font-size: 13px; padding: 0 0 20px;}
.sc_socials_item { display: inline-block; margin-left: 3px; }
.sc_socials_item .social_icons { border: 2px solid #b6b6b6; border-radius: 50%; color: #b6b6b6; display: block; height: 22px; width: 22px; }
.sc_socials_item .social_icons:hover{ border: 2px solid #8dc63f; color:#8dc63f; }

.sc_socials_item .social_icons span { display: block; font-size: 11px; font-weight: 300; line-height: 17px; text-align: center; }

/*
.footer-copyright > p { font-size: 0.857em; line-height: 21px; color:#424242; padding:0;}
.footer-main-links-outer { background: #1f2735 none repeat scroll 0 0; }
.footer-main-links-inner { margin: 0 auto; max-width: 1170px; padding: 73px 0 61px; }
.footer-link-box { float: left; padding-right: 30px; width: 25%; }
.footer-link-box:nth-child(4) { padding-right: 0; }
.footer-link-box > p { color: #fff; font-size: 1.643em; line-height: 30px; margin-bottom: 25px; padding-bottom: 23px; position: relative; }
.footer-link-box strong { font-weight: 400; }
.footer-link-box > p:after{   border-top: 2px solid #8dc63f; bottom: 0; content: " "; display: block; height: 0; left: 0; position: absolute; width: 11%; }
.footer-link-box > ul { padding-left: 15px; }
.footer-link-box li { font-size: 1.071em; list-style: disc; font-weight: 400; line-height: 16px; margin-bottom: 14px; }
.footer-link-box li a { color: #fff; line-height: 28px; display: block;}
.footer-link-box li a:hover { color: #8dc63f; }
.home-pr-ttl { font-size: 1.286em; line-height: 22px; padding-bottom: 7px; }
.home-pr-date { color: #bdbdbd; font-size: 0.929em; line-height: 16px; padding-bottom: 6px; }
.home-pr-extracted { font-size: 1.071em; line-height: 23px; padding-bottom: 3px; color:#bdbdbd; }
.home-pr-link > a{ font-size: 1.143em; line-height: 23px; padding: 0; font-weight:700;}
.home-pr-listing .site-view-more-link { margin: 10px auto 50px;}
.home-container .home-sec-filings h2 { margin-bottom: 28px;}
.footer-signup-outer{margin-top:40px;}
#ip3-Homepage .footer-signup-outer{margin-top:0;}*/

.footer-signup-outer{ background: rgba(92,142,63, 1);padding:10px 60px 20px;}
.footer-signup-outer .content,.footer-signup-outer .home-alert{float:left;width:50%;}
.footer-signup-outer .content{margin-top: 32px;padding-left: 10px;}
.footer-signup-outer .home-alert{padding-left:9px;margin-top:19px;}
.footer-signup-outer .home-alert-sbmt{float:left;margin-left:26px;margin-top:1px;}
.footer-signup-inner p{ color: #fff; float: left; font-size: 18px; line-height:20px; padding: 0;font-family: 'Open Sans', sans-serif; }
.footer-signup-outer input[type="text"]{box-sizing: border-box;padding: 16px 25px;height: auto;float:left;width:73.5%;position: relative;outline: 0;border: solid 1px #5b8f3a;margin: 0;color:#000;background:#fff; margin-bottom: 10px;transition: all .4s;font-size:18px; line-height:19.8px;border-radius:30px;font-family:'Open Sans',sans-serif;-webkit-appearance: none;-moz-appearance: none;appearance: none;}
.footer-signup-outer input[type="submit"]{background:#fff;color:#000;border:none;border-radius:30px;padding:11px 30px 12px;min-width: 137px;font-size:0.779em;}
/*
.home-alert { float: left; margin-left: 27px; width: 425px; }
.footer-signup-inner p strong{  }
.sign-up { background: #f0f0f0 none repeat scroll 0 0; border: medium none; border-radius: 4px; color: #9598a0; float: left; font-size: 1.143em; height: 40px; padding: 0 12px; width: 224px; font-weight: 400; }

.home-alert-sbmt span:after { background: #fff none repeat scroll 0 0; border-radius: 50%; color: #8dc63f; content: "\f105"; font-family: "FontAwesome"; font-size: 11px; height: 20px; line-height: 19px; position: absolute; right: 11px; text-align: center; top: 10px; transition: all 0.5s ease 0s; width: 20px; font-weight: 700; }

.sign-up-btn { background: #8dc63f none repeat scroll 0 0; border-radius: 4px; border-width: 0; box-shadow: 0 2px 0 0 rgba(128, 128, 128, 0.1); color: #fff; display: inline-block; font-size: 1.214em; letter-spacing: 0; line-height: 23px; margin: 0 0 0 30px; min-height: 0; min-width: 0; padding: 8px 81px 9px 18px; position: relative; transition: all 0.3s ease 0s; width: 170px; font-weight: 700; }
.home-alert-sbmt { float: left; position: relative; }
.sign-up-btn:hover { background: #76ae28; }
*/


.breadcrumb-title-outer{ background:#8dc63f; color:#FFF; margin-bottom: 28px; }
.breadcrumb-title-inner{ margin: 0 auto; max-width: 1200px; padding: 14px 15px 15px;}
p#sectionheader {color: #fff; float: left; font-size: 1.429em; line-height: 20px; padding: 0; font-weight: 800;}

.auto-scroll table { width: 100%; margin-bottom: 20px;}


.site-print>a:after{background-position: -8px -120px; height: 14px; left: 0px; top: 13px; width: 16px; transition: all 0.3s ease 0s;}
.sidebar-main-social > a:after{background-position: -71px -122px; height: 16px; left: 0px; top: 13px; width: 16px; transition: all 0.3s ease 0s;}
.site-print{border-bottom: 1px solid #f7f7f7;}
.site-print a { color: #424242; display: block; padding: 10px 0 10px 25px; position: relative;}
.site-print a:hover{color:#8dc63f;}
.sidebar-main-social{border-bottom: 1px solid #f7f7f7;}
.sidebar-main-social > a { color: #424242; display: block; padding: 10px 0 10px 25px; position: relative;}
.sidebar-main-social a:hover{color:#8dc63f;}
.sidebar-inner-social{display:none; margin-bottom: 18px;}
.sidebar-main-social:hover .sidebar-inner-social{display:block;}
.sidebar-main-social:hover > a{color:#8dc63f;}

.site-print a:hover:after{background-position: -29px -120px;}
.sidebar-main-social a:hover:after, .sidebar-main-social:hover > a:after{background-position: -51px -122px;}
.sidebar-inner-social .sc_socials_item .social_icons { height: 35px; width: 34px;}
.sidebar-inner-social .sc_socials_item .social_icons span { font-size: 16px; line-height: 29px;}

#searchbox { background: #8dc63f none repeat scroll 0 0; color: #fff; margin-top: 38px; padding: 21px;}
.sidebar-ttl { font-size: 1.286em;}
#searchTextboxContainer input{ background:none; border: medium none; color: #7ac90e; font-size: 0.929em; height: 29px; padding: 0 15px; width: 185px;}
.sidebar-search{ background: #a2cf63; width: 232px; border-radius: 3px;}
#SearchButtonContainer input { background-color: transparent; background-position: -200px -115px; border: medium none; display: block; height: 29px; position: absolute; right: 8px; text-indent: -9999px; top: 0; width: 24px;}
#leftcol { float: right;margin-bottom:30px;}
#twocolright { /*width: 66.6667%;*/padding-left:69px;padding-top:30px;padding-right:60px;padding-bottom:30px;}
a.media-link span,a.pdf-swap span, .inv-responsive-data-td a span.link-pdf { display: block; height: 30px; left: 50%; margin-left: -12px; text-indent: -99999px; top: 15px; width: 25px;}
.cAlign a span.link-pdf, .inv-responsive-data-td a span.link-pdf,a.media-link span { background-position: -93px -120px;}
.pr-date-field { width: 25%;}
a.media-link span.link-webcast { background-position: -152px -120px; height: 30px; left: 30%; width: 16px;}
#contentwrapper a[href^="tel:"]:hover, a[href^="tel:"] { color: inherit !important; cursor: default; text-decoration: none;}
.home-pr-slick { width: 100%;}
.home-pr-slick li{ width: 25%;}
#newshomeXmlContainer ul { width: 100%;}
.homeSecWrap{float:left;}
#newshomeXmlContainer,.home-pr-slick-outer { clear: both; float: left; position: relative; width: 100%;}
table a.media-link span { position: relative; display: inline-block; top: 0; left: 0; margin-left: 0;}

#headerwrapper.stick { padding: 18px 0 16px; position: fixed; display:none; box-shadow: -4px 3px 0 0 rgba(0, 0, 0, 0.2); overflow:visible !important;}
#headerwrapper.stick #logo img { width: 65px;}
#headerwrapper.stick ul { margin-top: -6px;}

/*#headerwrapper.stick > .container-fluid { max-width: 980px;}*/

.mobi-banner-image{ display:none !important;}


#topnavigation ul li > i {font-weight: 800; position: absolute;  color: white;  right: 9px;  top: 15px;  font-size: 11px;}
#topnavigation ul li ul li > i{top:0;}
#topnavigation ul li ul li:hover i { color: #6db32f;}
.mobi-navigation,.mobi-menu-btn { display: none;}
/*#headerwrapper > .container-fluid { max-width: 970px;}*/
tbody th.no-evnt-msg { border: none;}
.lavalamp-object { background-color:rgba(47,47,47,0.3);}
.mobi-navigation ul li.active > a, .mobi-navigation ul li.current > span, .mobi-navigation ul li.current > a, .mobi-navigation ul li.selected > a{color: #8dc63f;} 
#breadcrumb > .separator{ color: rgba(255, 255, 255, 0.6);}
#breadcrumb > .separator:nth-last-child(2){ color: rgba(255, 255, 255, 1);}
#searchinnerRP {margin-bottom:10px;} 
#searchinnerRP > div {float:left;} 
#SearchTextboxRP {height:30px; padding:5px; width:220px;} 
/*#SearchbuttonRP { height:30px; width:35px;}*/
#searchinnerRP #SearchTextboxRP {padding: 15px 25px;height: auto;width: 100%;position: relative;outline: 0; border: solid 1px #5b8f3a; margin: 0;color: #000;background: #fff;margin-bottom: 10px;transition: all .4s; font-size: 18px;line-height: 1.1em; border-radius: 30px;font-family: 'Open Sans',sans-serif;-webkit-appearance: none;-moz-appearance: none; appearance: none;height:51px;}
#searchinnerRP { float: left; position: relative; width: 100%; margin-bottom: 20px;}
#searchButtonContainerRP { position: relative; right: 0; top: 0;}
#searchButtonContainerRP input { height: 100%; width: 100%;}
.searchresultpage .sectionTabs { float: left; position: relative; width: 100%;}
.mobi-navigation ul li > a, .mobi-navigation ul li > span { color: #fff; display: block; font-size: 11px; padding-bottom: 3px; padding-left: 20px; width: 90%;}
.black-overlay{ background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%;}

.page-content p { font-weight: 400; line-height: 20px;  }


#tabs.sectionTabs li:after { content: "";}
#tabs.sectionTabs li.current a, #tabs.sectionTabs li a:hover { background-color: #8dc63f !important; color: #fff !important;}
.finder-dropdown-category { display: none !important;}
.pr-title-field > a { display: block;}
#loadmore { padding: 20px 0; width: 100%;text-align:center;}
/*#loadmore a { background-color: #8dc63f; border-radius: 4px; box-shadow: 0 2px 0 0 rgba(128, 128, 128, 0.1); color: #fff; cursor: pointer; display: block; font-size: 1.286em; font-weight: 700; line-height: 23px; padding: 10px 0; text-align: center; text-decoration: none;}
#loadmore > a:hover { background: #76ae28 none repeat scroll 0 0;}*/

.mobi-navigation .append-navigation.active > ul { display: block; margin-bottom: 10px;}

body.ip3-edit #headerwrapper{z-index:10;}
body.ip3-edit .ui-menu .ui-menu-item a {line-height: 1;}
/*.append-navigation ul ul{display:none !important;}*/

.ui-autocomplete.ui-menu .ui-menu-item{width:100% !important;}
.ui-autocomplete.ui-menu a,.ui-autocomplete.ui-menu a:hover{height:30px;cursor:pointer;}
.ui-autocomplete.ui-menu a:hover{background:#7fbb42;color:#fff;}

/*---- media-queries-----*/
/*--------- iPad Landscape and Desktops ---------*/

@media all and (max-width: 1540px) {
	header [class^="col-"],footer [class^="col-"]{padding-left:0;padding-right:0;}
}

@media all and (min-width:1020px) and (max-width: 1025px) {
	.footer-content .column4{margin-left:-33px;}
    .footer-content .column3{margin-left:3px;}
}

@media all and (min-width:1280px) {
.banneritem{height:500px;}
}

@media all and (max-width: 1300px) {
.header-top .social-links{margin-right:40px;}
.header-top .contact-info .email{margin-right:-5px;}
.header-top .contact-info .email::before{left:-38px;}
.header-top .contact-info .phone{margin-right:60px;}
.header-bottom{padding:0 40px;}
.sitenavigation ul > li > a{padding:0 5px;}
.sitenavigation ul > li > a,.sitenavigation ul >li ul li a{font-size:1em;}
.footer-signup-outer{padding-left:30px;padding-right:30px;}
.footer-signup-outer .home-alert-sbmt{margin-left:15px;}
.footer-content{padding-left:40px;padding-right:40px;}
#twocolright{padding-left:20px;padding-right:20px;}
}

@media all and (max-width: 1270px) {
.header-bottom{padding:0 10px;}
.header-bottom .logo{width:auto;}
.sitenavigation{padding:13px 20px 12px 10px;margin-left:0;}
.sitenavigation ul > li > a{padding:0 2px;}
.sitenavigation > ul > li{padding-right:0;}
.sitenavigation ul > li > a,.sitenavigation ul >li ul li a{font-size:0.929em;}
.header-bottom .search-icon{top:20px;right:20px;height:25px;width:25px;background-size:cover !important;}
.footer-signup-outer{padding-left:5px;padding-right:5px;}
.footer-signup-outer .content{text-align:left;}
.footer-signup-outer .home-alert-sbmt{margin-left:5px;}
.footer-signup-outer input[type="text"]{width:70%;}

}
@media all and (max-width: 1210px) {
  .sidebar-search{width:100%;}
  .footer-signup-inner, .footer-main-links-inner  {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media all and (max-width: 1250px) {
#topnavigation ul li > a, #topnavigation ul li > span {padding: 8px 20.4px 7.5px 15px;}
#topnavigation { width: 74%;}
}
@media all and (max-width: 1100px) {
  #topnavigation ul li {width: auto !important;}
  
}
@media all and (max-width: 1080px) {
 
  .footer-signup-inner p{float:none; margin-bottom: 15px;}
  .home-alert {
    float: none;
    margin-left: 0;
    text-align: center;
    width: auto;
  }
  .sign-up {
    display: inline-block;
    float: none;
  }
  .home-alert-sbmt {
    display: inline-block;
    float: none;
    position: relative;
  }
}
@media all and (min-width: 768px) and (max-width: 1024px) {
  .home-event-box .home-event-box-shadow, .home-event-box .home-event-box-ttl,.home-event-box .home-event-box-date{
    -webkit-transform: translateZ(0px); 
  }
}
@media all and (max-width: 1023px) {
  .box-unit {margin-bottom: 10px;}
}
@media all and (min-width: 900px) {
  .mobi-menu-btn, .mobi-navigation{display:none !important;}
}


@media all and (max-width: 899px) {



  
  .header-bottom {padding: 0 30px;background:#fff;height:auto;/*position:fixed;top:0;left:0;right:0;*/z-index:1;}
  #contentwrapper{margin-top:70px;}
  .header-bottom .logo{width:304px;}
  .hamburger-icon{background-image:url(/template_files/1099/~/media/Images/T/Tomi-IR-V2/css/hamburger.png);background-repeat: no-repeat;background-position: center center;height:40px;width:40px;position:absolute;top:-48px;right:-10px;}
  .header-bottom .search-icon{right:46px;top:-45px;height:30px;width:30px;background-size: contain !important;}
  
  header{position: fixed;width: 100%;top: 0;left: 0;right: 0;height: auto;background: #fff;z-index: 3;overflow-y: auto;max-height: 100vh;}
  .menu-open .sitenavigation{display:block !important;}
  .menu-open .hamburger-icon{background-image:url(/template_files/1099/~/media/Images/T/Tomi-IR-V2/css/menu-close.png);}
  .sitenavigation{/*position: fixed;top: 70px;left: 0;right:0;*/width: 100%;background: #fff;padding: 23px 0;}
  .sitenavigation ul li{display:block;}
  .sitenavigation ul > li > a{font-size:1.857em;line-height:40px;margin-bottom: 5px;}
  .sitenavigation ul > li ul li a{font-size:1.143em;line-height:35px;}
  .sitenavigation li ul,.sitenavigation ul li ul li ul{position:static;}
  .sitenavigation > ul > li{float:left;width:100%;}
  .sitenavigation li ul{width:auto;float:left;}
  .sitenavigation ul li.append-navigation ul{float: left; padding-top: 0;width:100%;max-width:310px;padding-bottom: 0;}
  .sitenavigation .append-navigation ul a{text-align:left;}
  .sitenavigation .append-navigation ul li{float:left;width:100%;}
  .sitenavigation .append-navigation:after{display:none;}
  .sitenavigation .append-navigation ul li.haschildren > a:after{display:none;}
  
  .footer-signup-outer .content, .footer-signup-outer .home-alert{width:100%;}
  .footer-signup-outer .content{text-align:center;}
  .footer-content,.bottom-footer-content{padding-left:20px;padding-right:20px;}
  .footer-content .column1{text-align:center;}
  .footer-content .column1 img{display:inline-block;}
  .footer-content .column3{margin-left:0;}
  
  
  
  #box-unit-4 {clear: none;}
  .ir-contact-form .form-right input,.ir-contact-form .form-right textarea{width: 190px;}
  .home-slider {
    max-height: 468px;
  }
  .home-event-box-ttl{
    font-size: 1.1em;
  }
  .home-banner-inner-box{padding: 30px 28px 23px;}
  .home-event-box > img {
    max-height: 235px;
    min-height: 235px;
  }
  .home-webcast-events .slick-dots, .home-pr-slick .slick-dots, .home-sec-filings .slick-dots{
    margin-bottom: 5px;
    margin-top: 30px;
    bottom:0;
  }
  .home-webcast-events .slick-dots li, .home-pr-slick .slick-dots li, .home-sec-filings .slick-dots li{
    margin: 0 5px; width:auto !important;
  }
  .home-webcast-events .slick-dots li button, .home-pr-slick .slick-dots li button, .home-sec-filings .slick-dots li button{
    width: 30px;
  }
  .slick-dots li button{width:50px;}
  .slick-dots li {
    margin: 0 7px;
  }
  .banneritem{height: 468px;}
  .bannertext > h2 {
    font-size: 3.9em;
    line-height: 60px;
    margin-bottom: 14px;
  }
  .bannertext p {
    font-size: 1em;
    line-height: 23px;
  }
  .site-view-more-link {
    margin: 5px auto 50px;
  }
  .banneritem .bannertext{
    top: 112px;
  }
/*  .banneritem.banner3 .bannertext{
    top: 15px;
  }*/
  
  .footer-signup-inner p {
    float: none;
    margin-bottom: 16px;
    overflow: hidden;
  }
  .home-alert {
    float: none;
    margin: 0;
    overflow: hidden;
    width: auto;
  }
  
  .sign-up, .home-alert-sbmt{
    float:none;
    display:inline-block;
  }
  .homeSecInner a{
    padding: 30px 10px 10px;
  }
  .footer-main-links-inner{
    padding: 64px 15px 53px;
  }
  .footer-link-box > p{
    font-size: 1.343em;
    line-height: 25px;
  }
  .footer-link-box > p:after{
    width: 30px;
  }
  .footer-link-box li a{
    line-height: 19px;
  }
  #leftcol{
    display:none;
  }
  #twocolright{width:100% !important;}
  table.upcoming-event-table {
    margin-bottom: 34px;
  }
  
  
  /* mobi menu */
  .mobi-navigation {
    display: none;
    float: left;
    width: 100%;
  }
  .mobi-navigation ul {
    display: block;
    width: 100%;
    float:left;
  }
  .mobi-navigation ul li {
    display: block;
    width: 100%;
    position: relative;
    float:left;
  }
  /* .mobi-navigation ul li a span{
  display:block; float:left; width:100%;
} */
  .mobi-navigation > ul > li:first-child > a {
    padding-top: 7px;
  }
  .mobi-navigation ul li > a, .mobi-navigation ul li > span {
    color: #fff;
    display: block;
    font-size: 11px;
    padding-bottom: 3px;
    padding-left: 20px;
    width:85%;
    float:left;
    position:relative;
  }
  .mobi-navigation ul li i {
    color: #fff;
    cursor: pointer;
    font-size: 10px;
    height: 26px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 5px;
    width: 60px;
  }
  .mobi-navigation ul li > i:before{content:"\f107";}
  .mobi-navigation ul li.active > i:before{
    content:"\f106"
  }
  .mobi-navigation ul li ul {
    display: none;
  }
  .mobi-navigation > ul > li:last-child > a {
    padding-bottom: 12px;
  }
  .mobi-navigation > ul > li > ul > li > a, .mobi-navigation > ul > li > ul > li > span {
    padding-left: 40px;
  }
  .mobi-navigation > ul > li > ul > li > ul {
    margin: 0px;padding-left: 45px;
  }
  
  .mobi-menu-btn {
    display: block;
    width: 100%;
    float: left;
    text-align: center;
    line-height: 0px;
    
  }
  .mobi-menu-btn .burger-btn {
    clear: both;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
    text-align: center;
    width: 7px;
    line-height: 0px;
    font-size: 0px;
    padding-top: 22px;
    padding-bottom: 14px;
  }
  .mobi-menu-btn .burger-btn span {
    width: 100%;
    height: 1px;
    background: #fff;
    display: inline-block;
    text-align: center;
    line-height: 0px;
    margin-bottom: 1px;
  }
  .lavalamp-object{
    display:none;
  }
  
}


/*--------- iPad Portrait and large Tablets Portrait ---------*/
@media all and (min-width: 768px) and (max-width: 899px) {

.home-slider{margin-top:67px;}

  #logo {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }
  #logo > a {
    display: inline-block;
  }
  #topnavigation {
    margin: 20px auto 0;
    width: 100%; text-align: center;
  }
  #topnavigation > ul {
    clear: both;
    float: none;
  }
  #topnavigation ul li {
    display: inline-block;
    float: none;
    text-align: center;
  }
  #headerwrapper{padding: 20px 0 4px;}
  #topnavigation ul li ul li > a, #topnavigation ul li ul li > span{font-size: 9.4px;
    line-height: 11px;
    padding: 0 16px 15px;}
  #topnavigation ul li > a, #topnavigation ul li > span{font-size: 11px;}
}
@media all and (min-width:768px) {
  /*.mobi-pr-tabs{display:none;}*/
  
  
}
/*--------- All Small Tablets and Large Phones Global CSS ---------*/
@media (max-width: 767px) {

.home-slider{margin-top:58px;}
.header-bottom .logo{width:auto;}
.hamburger-icon{top:-43px;right:-20px;}
.header-bottom .search-icon{right:25px;top:-37px;}
.sitenavigation ul > li > a{font-size:1.286em;line-height:35px;}

.footer-signup-outer .content{text-align:left;}
.footer-signup-outer input[type="text"]{width:100%;}
.footer-signup-inner, .footer-main-links-inner{padding-left:10px;padding-right:10px;}
.footer-signup-inner p{margin-bottom:10px;}
.bottom-footer-content .footer-social{margin-left:0;}


.press-text-filter,.news-filter,input.txt-search-pr, a.dk_toggle > span.dk_label,input.btn-pr-search,.mobiDropdownPress.finder-dropdown-sort,.mobiDropdownPress.finder-dropdown-sort .dk_options{width:100%;margin-left:0;}
.news-filter{margin-top:20px;}
#twocolright .mobi-pr-tabs{display:block;}
.tabs{display:none;}
.iframe-tabs.tabs{display:block !important;}

.mobi-pr-tabs{
  float: left;
  width: 100%;
}
#topnavigation{display:none;}
#toplinks{display:none;}
.mobiMenus { display: block;}
.mobishow { display: block;}
.mobiMenus{display:block;}
.footer-right-side {float: none; margin-bottom: 25px;}
#leftcol{display:none;}
#twocolright{width:100%;}
/*.mobi-pr-tabs {display:none;}*/
.home-banner-inner-box{
  max-width: 100%; width: 100%; padding: 30px 28px 0;
}
.home-banner-inner-box:first-child {
  padding-top: 60px;
}
.home-banner-inner-box:last-child {
  padding-bottom: 40px;
}
.home-container h2{margin-bottom: 35px;}

.footer-signup-inner p {
  line-height: 30px;
  margin-bottom: 25px;

}
.sign-up {
  margin-bottom: 25px;
}
.sign-up-btn {
  margin: 0;
}
.footer-link-box {
  float: left;
  padding-right: 0;
  width: 100%;
}
.footer-link-box > p {
  margin-bottom: 25px;
  padding-bottom: 15px;
}
.footer-link-box strong {
  font-weight: 800;
}
.footer-copyright > p {
  margin-bottom: 20px;
  text-align: center;
}
.footer-social {
  float: none;
  margin-top: 0;
  text-align: center;
}
.footer-link-box > ul{
  display:none;
}
#breadcrumb {
  display: none;
}
.events-presentations-container h2{
  margin: 0 0 15px;
}

.home-slider {
  max-height: none;
  height: auto;
  
}
.banneritem {
  height: auto;
  background: none !important;
}
.banneritem .bannertext {
  background: #fff ;
  color: #424242;
  left: 0;
  margin-right: 0;
  padding: 25px 10px 0;
  position: relative;
  top: 0;
  transform: translate(0px,0px);
  -o-transform: translate(0px,0px);
  -ms-transform: translate(0px,0px);
  -webkit-transform: translate(0px,0px);
  -moz-transform: translate(0px,0px);
  width: 100%;
  float: left;
}
.bannerOuterText {
  margin: 0 auto;
  
  width: 100%;
  clear: both;
  overflow: hidden;
}
.bannertext > h2 {
  color: #424242;
  font-size: 2.25em;
  line-height: 44px;
}
h1 {
  font-size: 2.8em;
  line-height: 49px;
}

.home-alert {
  clear: both;
  float: none;
  margin: 0 auto;
  max-width: 320px;
  overflow: hidden;
  text-align: center;
  width: auto;
}
#headerwrapper.stick, #headerwrapper {
  padding: 10px 0 0px;
  position: relative !important;
}
#headerwrapper.stick #logo img, #headerwrapper #logo img {
  width: 65px !important ;
}
#headerwrapper.stick ul {
  margin-top: 0px;
}

#headerwrapper.stick > .container-fluid {
  max-width: 980px;
}

#bannerwrapperinner .mobi-banner-image{
  display:block !important;
  width:100%;
  height: auto;
}
/*#auto-top-link{
  display:none !important;
}*/

div#logo {
  text-align: center;
  margin: 0 auto;
}
#logo a {
  display: inline-block;
}
#logo img {
  display: block;
  margin: 0 auto;
}

}

@media (max-width: 736px) {
#bannerwrapper .slick-arrow {
  top: 27%;
}
.slick-dots {
  
  bottom: 355px;
  
}
}

@media (max-width: 667px) {
#bannerwrapper .slick-dots{
  bottom:395px;
}
}
@media (max-width: 640px) {

#bannerwrapper .slick-dots{
  bottom:415px;
}
/*PR Table starts*/
.prReports {margin-top: 20px;}
.trHeaders {display: none;}
.pr-date-field, .pr-document-field, .pr-title-field {clear: both;display: block;padding: 5px 0;width: 100%;}
.prReports tbody tr {border-bottom: 1px solid #ededed;display: block;}
.pr-mobi-headers {display: inline-block;font-weight: 700;vertical-align: top;width: 33%;}
.pr-span-other {display: inline-block;vertical-align: top;width: 65%;}
.pr-title-field a {display: inline-block;width: 65%;}
.pr-document-field > a {display: inline-block;vertical-align: top;}
.prReports tbody tr td.cAlign a img {margin: 0;text-align: left;}
.prReports th.cAlign, .prReports td.cAlign {text-align: left;}
.reportTable td, .reportTable tbody th {
  border-bottom: none;
}
.reportTable .pr-document-field a span.link-pdf {
  left: 0;
  margin: 0;
  position: relative;
  top: 0;
}
.prReports tbody tr.first {
  border-top: 1px solid #ededed;
}
.prReports tbody tr {
  padding-bottom: 20px;
  padding-top: 15px;
}

/*PR table end*/
.ir-contact-form .form-right input,.ir-contact-form .form-right textarea{display:block;}
.ir-contact-form .form-right { float: left;width: 100%;}
.form-right > span { display: inline-block;}
.category-key {margin-bottom: 10px;}
.category-key span { display: block; float: none; margin-bottom: 5px; width: 100%;}
#mobishownav{right: 9px; width: 70%;}
#mobishowsearch{right: 9px; width: 70%;}


.mobi-pr-tabs {display: block;float:left;padding: 0;width: 100%;}
.inv-responsive-header-td {font-weight: normal;}

#bannerwrapper .slick-arrow {
  top: 24%;
}
.inv-responsive-table td, .inv-responsive-table tbody th {
  border-bottom: none;
  padding: 5px 20px 5px 0;
}
.inv-responsive-data-header {
  font-weight: 700;
  width: 30%;
}
.inv-responsive-table-wrapper {
  margin-bottom: 45px;
}
.inv-responsive-table-wrapper a.media-link span.link-webcast{
  left: 0;
}
.inv-responsive-table a.media-link span {
  display: inline-block;
  left: 0;
  margin: 0;
  position: relative;
  top: 0;
}
.inv-responsive-table a.media-link {
  margin-right: 10px;
}
.inv-responsive-table tr:first-child td {
  padding-top: 15px;
}
.inv-responsive-table tr:last-child td {
  padding-bottom: 20px;
}
table.inv-responsive-table {
  border-bottom: 1px solid #ededed;
}
table.inv-responsive-table:first-child {
  border-top: 1px solid #ededed;
}
table.inv-responsive-table {
  margin-bottom: 0;
}
.inv-responsive-data-content {
  font-weight: normal !important;
}
}

@media (max-width: 639px) {
.home-event-box > img {
  max-height: none;
  min-height: 1px;
}
}

@media (max-width: 480px) {
#bannerwrapper .slick-dots {
  bottom: 465px;
}
.footer-link ul{margin-bottom: 25px;}
.footer-link ul li:first-child{margin-bottom:10px;}
.footer-link ul li{border-left: medium none; float: none; padding: 0;}
.snapdown-content.board img{float:none; width:100%; height:auto;}
.news-filter{margin-left: 0;}
/*.mobiDropdownPress.finder-dropdown-sort { display: block; margin-left: 0; margin-top: 10px; width: 215px;}*/
/*.mobiDropdownPress.finder-dropdown-sort .dk_options { width: 215px;}*/
.c-grid{float:left;width:90%!important;}
.c-event-grid{width:100%!important;margin-top:20px;height:auto!important;margin-bottom:20px;}
#bannerwrapper .slick-arrow {
  top: 17%;
}
}
@media (max-width: 414px) {
#bannerwrapper .slick-dots{
  bottom:540px;
}

}
@media (max-width: 375px) {
#bannerwrapper .slick-dots{
  bottom:535px;
}

}

@media (max-width: 360px) {
#bannerwrapper .slick-arrow {
  top: 13%;
}
#bannerwrapper .slick-dots{
  bottom:545px;
}
.slick-dots li button {
  width: 30px;
}
}


@media (max-width: 320px) {
#bannerwrapper .slick-arrow {
  top: 11%;
}
#bannerwrapper .slick-dots {
  bottom: 580px;
}
}

/*---- font-awesome-----*/
/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('/template_files/1099/~/media/files/T/Tomi-IR-V2/fonts/fontawesome-webfont-eot.eot);
  src: url('/template_files/1099/~/media/files/T/Tomi-IR-V2/fonts/fontawesome-webfont-eot.eot') format('embedded-opentype'), url('/template_files/1099/~/media/files/T/Tomi-IR-V2/fonts/fontawesome-webfont-woff2.woff2') format('woff2'), url('/template_files/1099/~/media/files/T/Tomi-IR-V2/fonts/fontawesome-webfont-woff.woff') format('woff'), url('/template_files/1099/~/media/files/T/Tomi-IR-V2/fonts/fontawesome-webfont-ttf.ttf') format('truetype'), url('/template_files/1099/~/media/files/T/Tomi-IR-V2/fonts/fontawesome-webfont-svg.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-genderless:before,
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}

/*---- jquery-ui-----*/
/*! jQuery UI - v1.10.2 - 2013-03-14
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright 2013 jQuery Foundation and other contributors Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0);
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin-top: 2px;
	padding: .5em .5em .5em .7em;
	min-height: 0; /* support: IE7 */
}
.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-noicons {
	padding-left: .7em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-button {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	overflow: visible; /* removes extra width in IE */
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
	width: 2.4em;
}
.ui-button-icons-only {
	width: 3.4em;
}
button.ui-button-icons-only {
	width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
	display: block;
	line-height: normal;
}
.ui-button-text-only .ui-button-text {
	padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
	padding: .4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
	left: 50%;
	margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
	left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
	right: .5em;
}

/* button sets */
.ui-buttonset {
	margin-right: 7px;
}
.ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month-year {
	width: 100%;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 49%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 21px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-menu {
	list-style: none;
	padding: 2px;
	margin: 0;
	display: block;
	outline: none;
}
.ui-menu .ui-menu {
	margin-top: -3px;
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	padding: 0;
	width: 100%;
}
.ui-menu-item:hover {
        /*background-color:#999999;*/
}
.ui-menu .ui-menu-divider {
	margin: 5px -2px 5px -2px;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-menu-item a {
	text-decoration: none;
	display: block;
	padding: 2px .4em;
	line-height: 1.5;
	min-height: 0; /* support: IE7 */
	font-weight: normal;
}
.ui-menu .ui-menu-item a.ui-state-focus, .ui-menu .ui-menu-item a.ui-state-active {
	font-weight: normal;
	/*margin: -1px;*/
}

.ui-menu .ui-state-disabled {
	font-weight: normal;
	margin: .4em 0 .2em;
	line-height: 1.5;
}
.ui-menu .ui-state-disabled a {
	cursor: default;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item a {
	position: relative;
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: .2em;
	left: .2em;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	position: static;
	float: right;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	height: 100%;
	filter: alpha(opacity=25);
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1em;
	display: block;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 22px;
}
.ui-spinner-button {
	width: 16px;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to overide default borders */
.ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none;
}
/* vertical centre icon */
.ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
	/* need to fix icons sprite */
	background-position: -65px -16px;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav li a {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
	cursor: text;
}
.ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
	border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
	/*font-size: 1.1em;*/
font-size: 1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1em;
}
.ui-widget-content {
	border: 1px solid #aaaaaa;
	background: #ffffff 50% 50% repeat-x;
	color: #222222;
}
.ui-widget-content a {
	color: #000;
}
.ui-widget-header {
	border: 1px solid #aaaaaa;
	background: #cccccc;
	color: #222222;
	font-weight: bold;
}
.ui-widget-header a {
	color: #222222;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: 1px solid #d3d3d3;
	background: #e6e6e6;
	font-weight: normal;
	color: #555555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #555555;
	text-decoration: none;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus a:hover {
	/*border: 1px solid #999999;
	background-color: #aaaaaa !important;
	font-weight: normal;
	color: #212121;*/
	background-color:#cccccc;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus a:focus {
	/*border: 1px solid #999999;
	background-color: #aaaaaa;
	font-weight: normal;
	color: #212121;*/
}

.ui-state-hover  a,
.ui-state-hover  a:hover,
.ui-state-hover  a:link,
.ui-state-hover  a:visited {
/*	color: #212121;
	text-decoration: none;*/
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	border: 1px solid #aaaaaa;
	background: #ffffff;
	font-weight: normal;
	color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #212121;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fcefa1;
	background: #fbf9ee;
	color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
        color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #fef1ec;
	color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70);
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35);
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
}
.ui-widget-header .ui-icon {
}
.ui-state-default .ui-icon {
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
}
.ui-state-active .ui-icon {
}
.ui-state-highlight .ui-icon {
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 4px;
}
/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa  50% 50% repeat-x;
	opacity: .3;
	filter: Alpha(Opacity=30);
}
.ui-widget-shadow {
	margin: -8px 0 0 -8px;
	padding: 8px;
	background: #aaaaaa  50% 50% repeat-x;
	opacity: .3;
	filter: Alpha(Opacity=30);
	border-radius: 8px;
}

.currentDomainCSS
{
    background: #D3D3D3 50% 50% repeat-x;
}

.serachTextBoxMiddle
{
    height: 18px;
    margin-left: 220px;
    right: 44px;
    width: 140px;
}
.serachButtonMiddle
{
    left: 363px;
    position: absolute;
    top: 53px!important;
}
.centerText
{
    margin-left: 195px;
}
.centerText1
{
margin:0 auto;
width: 180px;
}


.ui-menu {min-width: 210px !important; max-width: 300px !important;  }
.ui-menu a{background-color:#ffffff;height:20px;width:100%;position:relative;top:0px;margin-bottom:1px;}
.ui-menu a:hover{height:20px;width:100%;position:relative;top:0px;margin-bottom:1px;}


.ui-menu .ui-menu-item {padding: 0 !important;  width: 96% !important;}