@charset "UTF-8";

.clearfix:after {
    content: " ";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.fix-animation {
    -webkit-perspective: 0;
    -moz-perspective: 0;
    -o-perspective: 0;
    -ms-perspective: 0;
    perspective: 0;
    -webkit-transform:translateZ(1);
    -moz-transform:translateZ(1);
    -o-transform:translateZ(1);
    -ms-transform:translateZ(1);
    transform:translateZ(1);
}

/* hide any elements flagged as an inline script */
.script {
	display: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}
.HARDCODED {
    background: url(/static/images/backgrounds/error-underline.gif) repeat-x bottom left !important;
}

/*
    Rounded corner classes
*/
.rounded {

}
.rounded.all-corners {
    -moz-border-radius:8px;
    -webkit-border-radius:8px;
    border-radius:8px;
}
.rounded.tl-corner {
    -moz-border-radius-topleft:8px;
    -webkit-border-radius-topleft:8px;
    border-top-left-radius:8px;
    -pie-border-radius:8px 0 0 0;
}
.rounded.tr-corner {
    -webkit-border-radius-topright:8px;
    -moz-border-radius-topright:8px;
    border-top-right-radius:8px;
    -pie-border-radius:0 8px 0 0;
}
.rounded.br-corner {
    -webkit-border-radius-bottomright:8px;
    -moz-border-radius-bottomright:8px;
    border-bottom-right-radius:8px;
    -pie-border-radius:0 0 0 8px;
}
.rounded.bl-corner {
    -webkit-border-radius-bottomleft:8px;
    -moz-border-radius-bottomleft:8px;
    border-bottom-left-radius:8px;
    -pie-border-radius: 0 0 8px 0;
}
.rounded.tl-corner.tr-corner {
    -pie-border-radius:8px 8px 0 0;
}
.rounded.bl-corner.br-corner {
    -pie-border-radius:0 0 8px 8px;
}

/* CSS Tooltips
    - a basic popup upon hovering, for footnotes and such
    - requires the .tooltip text to exist as a direct child of the reference element / trigger with class .css_tooltip
    - tooltip js: \static\js\widgets\V2\tooltip.js
*/
.css_tooltip,
.css_tooltip * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.css_tooltip {
    cursor: pointer;
}
.included-items .css_tooltip.hover,
.included-items .css_tooltip:hover,
.included-items .css_tooltip:focus {
    text-decoration:underline;
}
.css_tooltip > .tooltip {
    /* hidden by default */
    background: #fff !important;
    border:1px solid #b2b2b2;
    border-radius: 8px;
    bottom:175%;
    box-shadow:0 0 2px #909090; /*d8d8d8*/
    cursor: default;
    font-size:0.833333333333333em;
    line-height: 1.4em;
    margin: 0;
    padding:0;
    position: absolute;
    right: -80px;
    width: 182px;
}
.css_tooltip > .tooltip,
.css_tooltip > .tooltip > * {
    margin: 0;
    max-height:0;
    opacity: 0;
    padding: 10px;
    -webkit-transition: opacity .1s ease, z-index .1s ease, max-height .1s ease .2s;
    -moz-transition: opacity .1s ease, z-index .1s ease, max-height .1s ease .2s;
    transition: opacity .1s ease, z-index .1s ease, max-height .1s ease .2s;
    z-index:-10;
}
.ie8 .css_tooltip > .tooltip {
    filter: alpha(opacity=0);
    font-size:1em;
}
.css_tooltip.hover > .tooltip,
.css_tooltip.hover > .tooltip > *,
.css_tooltip:hover > .tooltip,
.wishlist.css_tooltip > .text-link:hover + .tooltip,
.css_tooltip:hover > .tooltip > *,
.wishlist.css_tooltip > .text-link:hover + .tooltip > *,
.css_tooltip > .tooltip:hover,
.css_tooltip > .tooltip:hover > *,
.css_tooltip:focus > .tooltip,
.css_tooltip:focus > .tooltip > * {
    max-height:1000px;
    opacity: 1;
    z-index: 100;
}
.css_tooltip.hover > .tooltip > *,
.css_tooltip > .tooltip > *,
.css_tooltip > .tooltip:hover > *,
.css_tooltip:hover > .tooltip > *,
.wishlist.css_tooltip > .text-link:hover + .tooltip > * {
    -webkit-transition: opacity .1s ease .3s, z-index .1s ease .3s, max-height .1s ease .3s;
    -moz-transition: opacity .1s ease .3s, z-index .1s ease .3s, max-height .1s ease .3s;
    transition: opacity .1s ease .3s, z-index .1s ease .3s, max-height .1s ease .3s;
}
.css_tooltip.disabled.hover > .tooltip,
.css_tooltip.disabled:hover > .tooltip,
.css_tooltip.disabled:focus > .tooltip {
    max-height:0;
    opacity:0;
    z-index: 0;
}
.ie8 .css_tooltip.hover > .tooltip,
.ie8 .css_tooltip:hover > .tooltip,
.ie8 .css_tooltip:focus > .tooltip,
.ie8 .wishlist.css_tooltip > .text-link:hover + .tooltip {
    filter: alpha(opacity=100);
    max-height:1000px;
    z-index: 100;
}
.css_tooltip > .tooltip:after {
    border-color: #fff transparent;
    border-style: solid;
    border-width: 8px 8px 0;
    bottom: -8px;
    content: "";
    display: block;
    position: absolute;
    right: calc(50% - 10px);
    width: 0;
    z-index: 200;
}
.css_tooltip > .tooltip:before {
    border-color: #C8C8C8 transparent;
    border-style: solid;
    border-width: 10px 10px 0;
    bottom: -10px;
    content: "";
    display: block;
    position: absolute;
    right: calc(50% - 12px);
    width: 0;
}

/*
    Old Browser Overlay
*/
.old-browser-alert {
    position: fixed;
    top: 200px;
    left: 50%;
    display: none;
    margin-left:-307px;
    background-color: #fff;
    border: 1px solid #c2c2c2;
    width: 615px;
    padding: 16px 30px 20px;
}
.old-browser-alert .title {
    margin: 0;
    color:#454545;
    font: normal 18px/25px Arial;
    text-align: center;
}
.browser-icons {
    margin: 16px auto 0;
    padding: 0;
    width: 568px; overflow: hidden;
    list-style: none outside none;
    list-style-image: none;
}
.browser-icons .icon {
    float: left;
    margin: 0;
    padding:0;
    width: 142px;
    text-align: center;
}
.browser-icons .icon a {
    display: block;
    background: url(/static/images/icons/browser-alert-icons-sprite.png) 50% 0 no-repeat;
    padding: 44px 0 0;
    color:#454545;
    font-weight: normal;
}
.old-browser-alert #browser-ch a {background-position:50% -1px;}
.old-browser-alert #browser-ff a {background-position:50% -70px;}
.old-browser-alert #browser-ie a {background-position:50% -140px;}
.old-browser-alert #browser-sf a {background-position:50% -210px;}
.browser-icons .icon a:hover {text-decoration: underline;}

.old-browser-alert .close {
    position: absolute; top:10px; right:8px;
    display: block;
    width:13px;
    height: 12px;
    background: url("/static/images/icons/mb_buttons.gif") -31px -72px no-repeat;
    text-indent: -999em;
    cursor:pointer;
}
/*
    "Open" Fading borders
    Add "fading-border" class to root element
    Call xsl template "Utils.FadingBorder"
*/
.fading-border {
    margin: 3px;
    min-height: 212px;
    position: relative;
}
.fading-border .border,
.fading-border .border-shadow,
.fading-border .border-fade,
.fading-border .border-shadow-fade {
    display: block;
    position: absolute;
}
.fading-border .border {
    border: solid #c8c8c8;
}
.fading-border .border-top,
.fading-border .border-bottom {
    height: 10px;
    left: -1px;
    width: 100%;
}
.fading-border .border-top {
    border-width: 1px 1px 0;
    -moz-border-radius: 8px 8px 0 0;
    -webkit-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
    top: -1px;

}
.fading-border .border-bottom {
    border-width: 0 1px 1px;
    -moz-border-radius: 0 0 8px 8px;
    -webkit-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
    bottom: -1px;

}
.fading-border .border-shadow {
    border: 0 solid rgb(200,200,200);
    border: 0 solid rgba(200,200,200, 0.3);
}
.fading-border .border-shadow-top,
.fading-border .border-shadow-bottom {
    height: 10px;
    left: -2px;
    width: 100%;
}
.fading-border .border-shadow-top {
    border-width: 1px 1px 0;
    -moz-border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;
    padding: 1px 1px 0;
    top: -2px;

}
.fading-border .border-shadow-bottom {
    border-width: 0 1px 1px;
    -moz-border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
    bottom: -2px;
    padding: 0 1px 1px;

}
.fading-border .border-shadow-fade,
.fading-border .border-fade {
    height: 96px;
    width: 1px;
}
.fading-border .border-fade-bl,
.fading-border .border-fade-tl {
    left: -1px;
}
.fading-border .border-fade-br,
.fading-border .border-fade-tr {
    right: -1px;
}
.fading-border .border-shadow-fade-tl,
.fading-border .border-shadow-fade-tr,
.fading-border .border-fade-tl,
.fading-border .border-fade-tr {
    top:8px;
}
.fading-border .border-shadow-fade-bl,
.fading-border .border-shadow-fade-tl {
    left: -2px;
}
.fading-border .border-shadow-fade-br,
.fading-border .border-shadow-fade-tr {
    right: -2px;
}
.fading-border .border-shadow-fade-bl,
.fading-border .border-shadow-fade-br,
.fading-border .border-fade-bl,
.fading-border .border-fade-br {
    bottom:8px;
}
.fading-border .border-fade-tl,
.fading-border .border-fade-tr {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZGRkZGQiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top,  rgba(200,200,200,1) 10%, rgba(200,200,200,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%,rgba(200,200,200,1)), color-stop(100%,rgba(200,200,200,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(200,200,200,1) 10%,rgba(200,200,200,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(200,200,200,1) 10%,rgba(200,200,200,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(200,200,200,1) 10%,rgba(200,200,200,0) 100%); /* IE10+ */
    background: linear-gradient(top,  rgba(200,200,200,1) 10%,rgba(200,200,200,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c8c8c8', endColorstr='#00c8c8c8',GradientType=0 ); /* IE6-8 */
    filter: none\9; /* IE9 */
}
.fading-border .border-shadow-fade-tl,
.fading-border .border-shadow-fade-tr {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZGRkZGQiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top,  rgba(200,200,200,0.3) 10%, rgba(200,200,200,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%,rgba(200,200,200,0.3)), color-stop(100%,rgba(200,200,200,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(200,200,200,0.3) 10%,rgba(200,200,200,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(200,200,200,0.3) 10%,rgba(200,200,200,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(200,200,200,0.3) 10%,rgba(200,200,200,0) 100%); /* IE10+ */
    background: linear-gradient(top,  rgba(200,200,200,0.3) 10%,rgba(200,200,200,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4dc8c8c8', endColorstr='#00c8c8c8',GradientType=0 ); /* IE6-8 */
    filter: none\9; /* IE9 */
}
.fading-border .border-fade-bl,
.fading-border .border-fade-br {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2M4YzhjOCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iI2M4YzhjOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
    background: -moz-linear-gradient(top,  rgba(200,200,200,0) 0%, rgba(200,200,200,1) 90%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(200,200,200,0)), color-stop(90%,rgba(200,200,200,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(200,200,200,0) 0%,rgba(200,200,200,1) 90%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(200,200,200,0) 0%,rgba(200,200,200,1) 90%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(200,200,200,0) 0%,rgba(200,200,200,1) 90%); /* IE10+ */
    background: linear-gradient(top,  rgba(200,200,200,0) 0%,rgba(200,200,200,1) 90%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00c8c8c8', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-8 */
    filter: none\9; /* IE9 */
}
.fading-border .border-shadow-fade-bl,
.fading-border .border-shadow-fade-br {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2M4YzhjOCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iI2M4YzhjOCIgc3RvcC1vcGFjaXR5PSIwLjMiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
    background: -moz-linear-gradient(top,  rgba(200,200,200,0) 0%, rgba(200,200,200,0.3) 90%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(200,200,200,0)), color-stop(90%,rgba(200,200,200,0.3))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(200,200,200,0) 0%,rgba(200,200,200,0.3) 90%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(200,200,200,0) 0%,rgba(200,200,200,0.3) 90%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(200,200,200,0) 0%,rgba(200,200,200,0.3) 90%); /* IE10+ */
    background: linear-gradient(top,  rgba(200,200,200,0) 0%,rgba(200,200,200,0.3) 90%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00c8c8c8', endColorstr='#4dc8c8c8',GradientType=0 ); /* IE6-8 */
    filter: none\9; /* IE9 */
}

@media \0screen { /* IE8 */
    .fading-border {
        border: 1px solid #ccc !important;
        margin: 0px;
    }
    .fading-border .border,
    .fading-border .border-shadow,
    .fading-border .border-fade,
    .fading-border .border-shadow-fade {
        display: none !important;
    }
}

.bordered {
    border:1px solid #C8C8C8;
    box-shadow:0 0 1px #B6B6B6;
}
.bordered.faded {
    position:relative;
}
.bordered.faded:before,
.bordered.faded:after {
    content:"";
    height:100%;
    width:5px;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 250px, rgba(255,255,255,1) calc(100% - 250px), rgba(255,255,255,0) 100%);
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 250px, rgba(255,255,255,1) calc(100% - 250px), rgba(255,255,255,0) 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 250px, rgba(255,255,255,1) calc(100% - 250px), rgba(255,255,255,0) 100%);
    position:absolute;
    top:0;
    left:-3px;
}
.bordered.faded:after {
    right:-3px;
    left:auto;
}
/*
    Carousel Round Next/Prev buttons
*/
.nikon-reset .round-nav-left,
.nikon-reset .round-nav-right,
.round-nav-left,
.round-nav-right {
    background:url(/static/images/icons/sprite_icon_carousel.png) no-repeat scroll 0 0 transparent;
    border:0;
    cursor: pointer;
    display: inline-block;
    height: 29px;
    margin: 0 10px;
    overflow: hidden;
    padding: 0;
    text-indent:-999em;
    vertical-align: middle;
    width: 29px;
}
.nikon-reset .round-nav-left,
.round-nav-left {
    background-position:0 -40px;
}
.nikon-reset .round-nav-left:hover,
.round-nav-left:hover {
    background-position:-40px -40px;
}
.nikon-reset .round-nav-right:hover,
.round-nav-right:hover {
    background-position:-40px 0;
}
.nikon-reset .round-nav-left.disabled,
.round-nav-left.disabled {
    background-position:-80px -40px;
    cursor:not-allowed;
}
.nikon-reset .round-nav-right.disabled,
.round-nav-right.disabled {
    background-position:-80px 0;
    cursor:not-allowed;
}
.shade-bottom {
    padding-bottom:60px;
    background-image:radial-gradient(elipsis at center bottom, #efeeeb, rgba(255,255,255,0) 70%);
    background-repeat: no-repeat;
    background-size: 100% 106px;
    background-position: 0 -webkit-calc(100% + 53px);
    background-position: 0 calc(100% + 53px);
    position:relative;
}
.ielte9 .shade-bottom {
    background: url(/static/images/backgrounds/bg-box-ad-sponsors-shade-bottom.gif) no-repeat 0 bottom;
}
.shade-bottom:before {
    content:"";
    position:absolute;
    display:block;
    bottom:-5px;
    left:0;
    height:5px;
    width:100%;
    border-top:1px solid #fff;
    background: -moz-radial-gradient(top, ellipse cover,  rgba(204,204,204,0.65) 0%, rgba(204,204,204,0.3) 35%, rgba(204,204,204,0.15) 70%, rgba(255,255,255,0) 90%);
    background: -webkit-radial-gradient(top, ellipse cover,  rgba(204,204,204,0.65) 0%,rgba(204,204,204,0.3) 35%,rgba(204,204,204,0.15) 70%,rgba(255,255,255,0) 90%);
    background: -o-radial-gradient(top, ellipse cover,  rgba(204,204,204,0.65) 0%,rgba(204,204,204,0.3) 35%,rgba(204,204,204,0.15) 70%,rgba(255,255,255,0) 90%);
    background: -ms-radial-gradient(top, ellipse cover,  rgba(204,204,204,0.65) 0%,rgba(204,204,204,0.3) 35%,rgba(204,204,204,0.15) 70%,rgba(255,255,255,0) 90%);
    background: radial-gradient(ellipse at center top , rgba(204, 204, 204, 0.65) 0%, rgba(204, 204, 204, 0.3) 35%, rgba(204, 204, 204, 0.15) 70%, rgba(255, 255, 255, 0) 90%);
}
.shade-top {
    padding-top:60px;
    background-image:radial-gradient(#efeeeb, white 70%);
    background-repeat: no-repeat;
    background-size: 100% 106px;
    background-position: 0 -53px;
    position:relative;
}
.ielte9 .shade-top {
    background: url(/static/images/backgrounds/bg-box-ad-sponsors-shade.gif) no-repeat 0 bottom;
}
.shade-top:before {
    content:"";
    position:absolute;
    display:block;
    top:-5px;
    left:0;
    height:5px;
    width:100%;
    border-bottom:1px solid #fff;
    background: -moz-radial-gradient(bottom, ellipse cover,  rgba(204,204,204,0.65) 0%, rgba(204,204,204,0.3) 35%, rgba(204,204,204,0.15) 70%, rgba(255,255,255,0) 90%);
    background: -webkit-radial-gradient(bottom, ellipse cover,  rgba(204,204,204,0.65) 0%,rgba(204,204,204,0.3) 35%,rgba(204,204,204,0.15) 70%,rgba(255,255,255,0) 90%);
    background: -o-radial-gradient(bottom, ellipse cover,  rgba(204,204,204,0.65) 0%,rgba(204,204,204,0.3) 35%,rgba(204,204,204,0.15) 70%,rgba(255,255,255,0) 90%);
    background: -ms-radial-gradient(bottom, ellipse cover,  rgba(204,204,204,0.65) 0%,rgba(204,204,204,0.3) 35%,rgba(204,204,204,0.15) 70%,rgba(255,255,255,0) 90%);
    background: radial-gradient(ellipse at center bottom , rgba(204, 204, 204, 0.65) 0%, rgba(204, 204, 204, 0.3) 35%, rgba(204, 204, 204, 0.15) 70%, rgba(255, 255, 255, 0) 90%);
}
.faded-separator:before {
    background: transparent;
    background:-moz-radial-gradient(right top, ellipse cover, rgba(0, 0, 0, 0.2) 0%, transparent 75%), -moz-linear-gradient(top, rgba(0,0,0, 0.2) 0%, rgba(0,0,0, 0) 100%),-moz-radial-gradient(left top, ellipse cover, rgba(0, 0, 0, 0.2) 0%, transparent 6755%);
    background:-webkit-radial-gradient(right top, ellipse cover, rgba(0, 0, 0, 0.2) 0%, transparent 75%), -webkit-linear-gradient(top, rgba(0,0,0, 0.2) 0%, rgba(0,0,0, 0) 100%),-webkit-radial-gradient(left top, ellipse cover, rgba(0, 0, 0, 0.2) 0%, transparent 75%);
    background:-o-radial-gradient(right top, ellipse cover, rgba(0, 0, 0, 0.2) 0%, transparent 75%), -o-linear-gradient(top, rgba(0,0,0, 0.2) 0%, rgba(0,0,0, 0) 100%),-o-radial-gradient(left top, ellipse cover, rgba(0, 0, 0, 0.2) 0%, transparent 75%);
    background:-ms-radial-gradient(right top, ellipse cover, rgba(0, 0, 0, 0.2) 0%, transparent 75%), -ms-linear-gradient(top, rgba(0,0,0, 0.2) 0%, rgba(0,0,0, 0) 100%),-ms-radial-gradient(left top, ellipse cover, rgba(0, 0, 0, 0.2) 0%, transparent 75%);
    background:radial-gradient(ellipse at right top , rgba(0, 0, 0, 0.2) 0%, transparent 75%), linear-gradient(to bottom, rgba(0,0,0, 0.2) 0%, rgba(0,0,0, 0) 100%),radial-gradient(ellipse at left top , rgba(0, 0, 0, 0.2) 0%, transparent 75%);
    background-repeat: no-repeat;
    background-size:100px 100%, 1060px 100%,100px 100%;
    background-position:10px 0, center center,1170px 0;
    bottom:-5px;
    content: "";
    display: block;
    height:5px;
    left: -webkit-calc(50% - 640px);
    left:calc(50% - 640px);
    position: absolute;
    width: 1280px;
    border-top:1px solid #fff;
}
.ie9 .faded-separator:before {
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM0NTQ1NDUiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSI4MCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvcmFkaWFsR3JhZGllbnQ+CiAgPHJlY3QgeD0iLTUwIiB5PSItNTAiIHdpZHRoPSIxMDEiIGhlaWdodD0iMTAxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
}
hr.faded-separator{
    border:none;
    width:100%;
    min-width: 960px;
    max-width: 1440px;
    margin: 0px auto;
    position:relative;
}
.scrollable {
    background-clip: border-box;
    background-color: white;
    background-image:
        linear-gradient(white 30%, rgba(255, 255, 255, 0)),
        linear-gradient(rgba(255, 255, 255, 0), white 70%),
        radial-gradient(farthest-side at 50% 0px, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)),
        radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    background-origin:padding-box;
    background-position-x:0%, 0px, 0%, 0px;
    background-position-y:0%, 100%, 0%, 100%;
    background-repeat: no-repeat;
    background-color:white;
    background-size:100% 40px,100% 40px,100% 6px,100% 6px;
    /*background-attachment:local,scroll,local,scroll;*/
    background-attachment:local,local,scroll,scroll;
}


/*
    Flexbox
*/
.flexbox .flex-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.flex-container.vertical {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.flex-container.wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}
.flex-container.wrap-reverse {
    -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
}
.flexbox .flex-container > .flex-item {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}


/*
    No Flexbox styles
*/
.no-flexbox .flex-container,
.flexboxlegacy .flex-container.wrap,
.flexboxlegacy .flex-container.wrap > .flex-item,
.no-flexbox .flex-item {
    display: inline-block;
}

/* Debug Output */
samp.debug {
    background: #efefef;
    border: 1px dashed #717171;
    display: inline-block;
    font-family: monospace;
    font-size:0.916666666666667em;
    margin: 10px;
    padding: 0 10px 10px;
    white-space: pre;
}

table.debug {
    border-collapse: collapse;
    clear: both;
    margin: 2em 0;
    font-family: courier,monospace;
}
table.debug caption {
    background: #efefef;
    color: #000;
    font-size: 1.1em;
    font-weight: bold;
    padding: 5px 10px;
    text-align: left;
}
table.debug th,
table.debug td {
    border: 1px dotted #ddd;
    padding: 5px 10px;
    vertical-align: top;
}
