@charset "utf-8";
/* sprytabbedpanels.css - version 0.6 - spry pre-release 1.6.1 */

/* copyright (c) 2006. adobe systems incorporated. all rights reserved. */

/* horizontal tabbed panels
 *
 * the default style for a tabbedpanels widget places all tab buttons
 * (left aligned) above the content panel.
 */

/* this is the selector for the main tabbedpanels container. for our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * tabbedpanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * if you want to constrain the width of the tabbedpanels widget, set a
 * width on the tabbedpanels container. by default, the tabbedpanels widget
 * expands horizontally to fill up available space.
 *
 * the name of the class ("tabbedpanels") used in this selector is not
 * necessary to make the widget function. you can use any class name you
 * want to style the tabbedpanels container.
 */
.tabbedpanels {
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    margin-top: 15px;
    clear: none;
    width: 100%; /* ie hack to force proper layout when preceded by a paragraph. (haslayout bug)*/
}
/* this is the selector for the tabgroup. the tabgroup container houses
 * all of the tab buttons for each tabbed panel in the widget. this container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * the name of the class ("tabbedpanelstabgroup") used in this selector is not
 * necessary to make the widget function. you can use any class name you
 * want to style the tabgroup container.
 */
#tabbedpanels1 .tabbedpanelstabgroup {
    margin: 0px;
    padding: 0px;
    height: 45px;
    overflow: hidden;
    background-color: transparent;
    position: relative;
}
/* this is the selector for the tabbedpanelstab. this container houses
 * the title for the panel. this is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * for our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. this allows each tab to overlap the content
 * panel that renders below it. each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. this gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * the name of the class ("tabbedpanelstab") used in this selector is not
 * necessary to make the widget function. you can use any class name you want
 * to style this tab container.
 */

#tabbedpanels1 .tabbedpanelstab {
    position: relative;
    float: left;
    width: 11.11111111111111%;
    font-size: 16px;
    color: #333;
    line-height: 45px;
    background-color: #f2f2f2;
    list-style: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    cursor: pointer;
    border-bottom: none;
}
#tabbedpanels1 .tabbedpanelstab:last-of-type {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    height: 45px;
}
#tabbedpanels1 .tabbedpanelstab.more_nav {
    background-image: ;
    background-repeat: no-repeat;
    background-position: 90% center;
    background-color: transparent;
}
#tabbedpanels1 .tabbedpanelstab.line2.tabbedpanelstabselected {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}
#tabbedpanels1 .tabbedpanelstab:nth-of-type(8) {
    width: 11.2%;
}
/* this selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. the class "tabbedpanelstabhover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
#tabbedpanels1 .tabbedpanelstabhover {
    background-color: #fff;
}
/* this selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * the class "tabbedpanelstabselected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * as mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. when the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
#tabbedpanels1 .tabbedpanelstabselected {
    background-color: #c9081d;
    color: #fff;
}
/* this selector is an example of how to make a link inside of a tab button
 * look like normal text. users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.tabbedpanelstab a {
    color: black;
    text-decoration: none;
}
/* this is the selector for the contentgroup. the contentgroup container houses
 * all of the content panels for each tabbed panel in the widget. for our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * the name of the class ("tabbedpanelscontentgroup") used in this selector is
 * not necessary to make the widget function. you can use any class name you
 * want to style the contentgroup container.
 */
.tabbedpanelscontentgroup {
    clear: both;
    padding-top: 15px;
}
/* this is the selector for the content panel. the content panel holds the
 * content for a single tabbed panel. for our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * the name of the class ("tabbedpanelscontent") used in this selector is
 * not necessary to make the widget function. you can use any class name you
 * want to style the content container.
 */
.tabbedpanelscontent {
    overflow: hidden;
}
/* this selector is an example of how to change the appearnce of the currently
 * active container panel. the class "tabbedpanelscontentvisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.tabbedpanelscontentvisible {
}
/* vertical tabbed panels
 *
 * the following rules override some of the default rules above so that the
 * tabbedpanels widget renders with its tab buttons along the left side of
 * the currently active content panel.
 *
 * with the rules defined below, the only change that will have to be made
 * to switch a horizontal tabbed panels widget to a vertical tabbed panels
 * widget, is to use the "vtabbedpanels" class on the top-level widget
 * container element, instead of "tabbedpanels".
 */

.vtabbedpanels {
    overflow: hidden;
    zoom: 1;
}
/* this selector floats the tabgroup so that the tab buttons it contains
 * render to the left of the active content panel. a border is drawn around
 * the group container to make it look like a list container.
 */
.vtabbedpanels .tabbedpanelstabgroup {
    float: left;
    width: 10em;
    height: 20em;
    background-color: #eee;
    position: relative;
}
/* this selector disables the float property that is placed on each tab button
 * by the default tabbedpanelstab selector rule above. it also draws a bottom
 * border for the tab. the tab button will get its left and right border from
 * the tabgroup, and its top border from the tabgroup or tab button above it.
 */
.vtabbedpanels .tabbedpanelstab {
    float: none;
    margin: 0px;
    border-top: none;
    border-left: none;
    border-right: none;
}
/* this selector disables the float property that is placed on each tab button
 * by the default tabbedpanelstab selector rule above. it also draws a bottom
 * border for the tab. the tab button will get its left and right border from
 * the tabgroup, and its top border from the tabgroup or tab button above it.
 */
.vtabbedpanels .tabbedpanelstabselected {
    background-color: #eee;
    border-bottom: solid 1px #999;
}
/* this selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.vtabbedpanels .tabbedpanelscontentgroup {
    clear: none;
    float: left;
    padding: 0px;
    width: 30em;
    height: 20em;
}
/*#tabbedpanels4 {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 0;
}*/
#tabbedpanels4.tabbedpanels {
    margin-top: 0;
}
#tabbedpanels4 .tabbedpanelstabgroup {
    display: none;
    overflow: initial;
    background-color: #f2f2f2;
    position: absolute;
    top: 45px;
}
#tabbedpanels4 .tabbedpanelscontentgroup {
    display: none;
}
#tabbedpanels4 .tabbedpanelstab {
    position: relative;
    float: left;
    width: 11.11111111111111%;
    font-size: 16px;
    color: #333;
    line-height: 45px;
    background-color: #f2f2f2;
    list-style: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    cursor: pointer;
    border-bottom: none;
}
#tabbedpanels4 .tabbedpanelstab:last-of-type {
    width: 26%;
}
/*#tabbedpanels4 .tabbedpanelstab:last-of-type {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background: none;
    height: 45px;
}*/
#tabbedpanels4 .tabbedpanelstab.more_nav {
    background-image: ;
    background-repeat: no-repeat;
    background-position: 90% center;
}
#tabbedpanels4 .tabbedpanelstab.line2.tabbedpanelstabselected.top-right {
    position: absolute;
    top: -45px;
    right: 0;
    z-index: 0;
    background-color: #c9081d;
    color: #fff;
    display: block !important;
    width: 11.11111111111111%;
    height: 45px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	padding: 0 10px;
	box-sizing: border-box;
}
#tabbedpanels4 .tabbedpanelstab:nth-of-type(8) {
    width: 11.2%;
}
#tabbedpanels4 .tabbedpanelstabhover {
    background-color: #fff;
}
#tabbedpanels4 .tabbedpanelstabselected {
}
.video .tabbedpanels {
    overflow: visible;
    margin: 0px;
    padding: 0px;
    margin-top: 15px;
    clear: none;
    width: 100%;
}
.video .tabbedpanelstabgroup {
    margin: 0px;
    padding: 0px;
    overflow: visible;
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    height: 45px;
    position: relative;
}
.video .tabbedpanelstabgroup a {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 16px;
    color: #c9081d;
    line-height: 45px;
}
.video .tabbedpanelstabgroup a:hover {
    text-decoration: underline;
}
.video .tabbedpanelscontentgroup {
    clear: both;
    padding-top: 15px;
}
.video .tabbedpanelscontent {
    overflow: hidden;
}
.video .tabbedpanelstab {
    position: relative;
    float: left;
    width: auto;
    padding: 0 65px;
    display: inline;
    font-size: 22px;
    color: #606060;
    line-height: 45px;
    background-color: #f2f2f2;
    list-style: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    cursor: pointer;
}
.video .tabbedpanelstabselected {
    background-color: #fff;
    color: #000;
    border-top: 3px solid #c9081d;
    position: relative;
    top: -3px;
    left: -1px;
    border-bottom: 1px solid #fff;
}
.link .tabbedpanels {
    overflow: visible;
    margin: 0px;
    padding: 0px;
    clear: none;
    width: 100%;
}
.link .tabbedpanelstabgroup {
    margin: 0px auto;
    padding: 0px;
    overflow: visible;
    background-color: #fff;
    height: 40px;
    position: relative;
}
.link .tabbedpanelstabgroup a {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 16px;
    color: #000;
    line-height: 45px;
    background-image: url(/uploads/image/s2images/icon_link.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 25px;
}
.link .tabbedpanelstabgroup a:hover {
    text-decoration: underline;
    color: #c9081d;
}
.link .tabbedpanelscontentgroup {
    clear: both;
    padding-top: 0;
    border-top: 1px solid #ddd;
}
.link .tabbedpanelscontent {
    overflow: hidden;
}
.link .tabbedpanelstab {
    position: relative;
    float: left;
    width: auto;
    padding: 0 20px;
    display: inline;
    font-size: 22px;
    color: #606060;
    line-height: 45px;
    background-color: #f2f2f2;
    list-style: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    line-height: 40px;
}
.link .tabbedpanelstabselected {
    background-color: #fff;
    color: #000;
    /* border-top: 3px solid #ff0000; */
    /* position: relative; */
    /* top: -3px; */
    /* left: -1px; */
    /* border-bottom: 1px solid #fff; */
    /* border-right: 1px solid #eee; */
    background-color: #c9081d;
    color: #fff;
}

/* styles for printing */
@media print {
.tabbedpanels {
    overflow: visible !important;
}
.tabbedpanelscontentgroup {
    display: block !important;
    overflow: visible !important;
    height: auto !important;
}
.tabbedpanelscontent {
    overflow: visible !important;
    display: block !important;
    clear: both !important;
}
.tabbedpanelstab {
    overflow: visible !important;
    display: block !important;
    clear: both !important;
}
}
