﻿/**********************************************************
	GENERAL UI ELEMENTS
**********************************************************/
@import url(page_icon/nm_icon.css);

* {
    -webkit-user-select: none; /* Prevent copy paste for all elements except text fields */
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* set highlight color for user interaction */
    -ms-touch-action: none;
    -webkit-touch-callout: none; /* prevent the popup menu on any links*/
}

input, textarea {
    -webkit-user-select: text;
}
/* allow users to select text that appears in input fields */

* {
    -webkit-user-select: none; /* Prevent copy paste for all elements except text fields */
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* set highlight color for user interaction */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
/* Remove default padding and margins for all elements */

img {
    display: block;
    border: none;
}

/* Remove default borders for images */
a:link, a:visited {
    color: #2d2d2d;
    text-decoration: none;
}
 a:hover, a:active {
    color: #ff0066;
    text-decoration: none;
}

/*a[href^="http://"] {
    padding-right: 16px;
    background-image: url(../images/icon-16x16.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 10px;
}*/

body {
    overflow-x: hidden;
    -webkit-text-size-adjust: none;
    margin: 0px;
    background-color: #dedede;
    color: #323232;
    line-height: 180%;
    word-wrap: break-word;
    word-break: normal;
    /* We want to layout our first container vertically */
    -webkit-box-orient: vertical;
    /* we want our child elements to stretch to fit the container */
    -webkit-box-align: stretch;
}
/* General styles that apply to elements not contained within other classes and styles */





#jQui_modal {
    -webkit-backface-visibility: hidden;
    z-index: 9999 !important;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    top: 0px;
    overflow: hidden;
    background: rgba(29,29,28,1) !important;
    -webkit-perspective: 1000;
}

#modalContainer {
    width: 100%;
}

    #modalContainer > * {
        -webkit-backface-visibility: hidden;
        -webkit-perspective: 1000;
    }


.horzRule {
    position: relative;
    display: block;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(61,61,61,1)), to(rgba(61,61,61,1)), color-stop(.3,#999), color-stop(.7,#999));
    width: 100%;
    height: 1px;
}
/* Horizontal line. */

.jqmScrollbar {
    background: white !important;
}
/* Sets the color of the scrollbar */
.jqmScrollPanel {
    width: 100%;
    min-height: 100%;
}

#jQUi {
    overflow: hidden;
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 100%;
    min-width: 320px;
}

    #jQUi > #splashscreen {
        position: absolute;
        top: 0px;
        bottom: 0px;
        width: 100%;
        left: 0px;
        min-height: 100%;
        background: rgba(29,29,28,1) !important;
        color: white !important;
        font-size: 30px;
        text-align: center;
        z-index: 9999;
        display: block;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-top: 80px !important;
    }



    /**********************************************************
	header
**********************************************************/

    #jQUi > #header {
        display: block;
        z-index: 250;
        height: 48px;
        left: 0px;
        right: 0px;
           background-color: #ffffff;
    background-image: -webkit-linear-gradient(#e372e1, #ffffff);
    background-image: -moz-linear-gradient(#e372e1, #ffffff);
    background-image: -ms-linear-gradient(#e372e1, #ffffff);
    background-image: -o-linear-gradient(#e372e1, #ffffff);
    background-image: linear-gradient(#e372e1, #ffffff);
        box-shadow: 0px 0px 24px rgba(0,0,0,0.8);
    }
/* This is masthead bar that appears at the top of the UI */

#header > * {
    position: relative;
    z-index: 2;
}

#header > h1 {
    position: absolute;
    overflow: hidden;
    margin: 0px;
    width: 100%;
    z-index: 1;
    height: 48px;
    line-height: 48px;
    white-space: nowrap;
    font-weight: normal;
    font-size: 24px;
    text-align: center;
            color:#8f0b8d;
        text-shadow: 1px 1px 0 #fff;
    text-overflow: ellipsis;
    /*text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);*/
}
/* This is text that appears in the header at the top of the screen */

/*�޸�*/
#header > a {
    display: block;
    position: absolute;
    top: 0px;
    border: 0px;
    width: 48px;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    text-indent:-5000px;
}

#header > #backButton {
    left: 0px;
    background: url(../images/icon-36x36-back.png) no-repeat center;
    box-shadow: 0px 0px 0px;
}

#header > .home {
    right: 0px;
    background-image: url(../images/icon-36x36-home.png);
}

/**********************************************************
	BUTTON STYLES
**********************************************************/
#backButton {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    max-width: 50px;
    text-overflow: ellipsis;
}
    /* Sets up positioning of the back button which appears in the header */

    #backButton > div {
        max-width: 50px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
/* sets up sizing and handling of excess text for the type in the back button */

.button, .minibutton {
    position: relative;
    display: inline-block;
    border-radius: 3px;
}

.button, .minibutton, .controlgroup > * > * {
    border: 1px solid #ddd;
    border-bottom-color: #c5c5c5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.075);
    padding: 7px 15px;
    line-height: 100%;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    text-shadow: 0 1px 0 rgba(255,255,255,0.9);
    white-space: nowrap;
    background-color: #eaeaea;
    background-image: -webkit-linear-gradient(#fafafa, #eaeaea);
    background-image: -moz-linear-gradient(#fafafa, #eaeaea);
    background-image: -ms-linear-gradient(#fafafa, #eaeaea);
    background-image: -o-linear-gradient(#fafafa, #eaeaea);
    background-image: linear-gradient(#fafafa, #eaeaea);
    vertical-align: middle;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
}

    .button:hover, .button:active, .minibutton:hover, .minibutton:active, .button.selected, .button.on, .controlgroup > .selected > *, .controlgroup > * > *:hover {
        box-shadow: inset 0 2px 3px rgba(0,0,0,0.075);
        border-color: #bbb;
        background-color: #d5d5d5;
        background-image: -webkit-linear-gradient(#ccc, #d5d5d5);
        background-image: -moz-linear-gradient(#ccc, #d5d5d5);
        background-image: -ms-linear-gradient(#ccc, #d5d5d5);
        background-image: -o-linear-gradient(#ccc, #d5d5d5);
        background-image: linear-gradient(#ccc, #d5d5d5);
        background-repeat: repeat-x;
        color: #333;
        text-shadow: 0 1px 0 rgba(255,255,255,0.6);
    }

    .button:active, .minibutton:active, .controlgroup > * > *:active {
        border-color: #999;
        background-color: #d5d5d5;
        box-shadow: inset 0 3px 5px rgba(0,0,0,0.15);
    }
    /* Styling for CSS-generated buttons, including the back button. These buttons can bue used anywhere in the UI. */

    .button.pressed {
        color: #fff;
        text-shadow: #2e4987 0 1px 0;
        background-color: #5884d6;
        border-color: #7488b8;
        background-image: -webkit-gradient(linear,left top,left bottom, color-stop(0.01, #eee), color-stop(0.05, #709de7), color-stop(0.70, #5884d6), color-stop(1, #4470ca));
    }
/* behavior of button for touch interaction */

.modalbutton {
    position: absolute;
    top: 0px;
    right: 5px;
    height: 32px;
    width: 58px;
    line-height: 32px;
    z-index: 9999;
}

.closebutton {
    position: absolute;
    top: 6px;
    right: 6px;
    display: block;
    height: 24px !important;
    width: 24px !important;
    border-radius: 12px;
    border: 1px solid #666;
    background: #fff;
    color: #333;
    font: bold 21px/18px 'Arial Black', Arial Black, Gadget, Arial, Helvetica, sans-serif;
    text-align: center;
    text-decoration: none;
}

    .closebutton:before {
        content: 'x';
    }

    .closebutton.selected, .closebutton.modalButton.selected {
        color: #fff;
        background: #333;
    }


/*���� ��ť��*/
.controlgroup {
    display: table;
}

    .controlgroup > * {
        display: table-cell;
        width: 1%;
        vertical-align: top;
    }

        .controlgroup > * > * {
            display: block;
            text-align: center;
        }

        .controlgroup > *:first-child > * {
            border-top-left-radius: 3px;
            border-bottom-left-radius: 3px;
        }

        .controlgroup > *:last-child > * {
            border-top-right-radius: 3px;
            border-bottom-right-radius: 3px;
        }

/**********************************************************
	CONTENT AREA
**********************************************************/
#content {
    z-index: 180;
    display: block;
    position: absolute;
    top: 48px;
    bottom: 62px;
    left: 0px;
    right: 0px;
    overflow: hidden;
}
/* Accounts for positioning of the content area, which is everything below the header and above the navbar. */

.panel {
    z-index: 180;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}
    /* This class is applied to the divs that contain the various "views" or pages of the app. */

    .panel > * {
        -webkit-backface-visibility: hidden;
        -webkit-perspective: 1000;
    }


/**********************************************************
	TOOL BAR
**********************************************************/
/* Tool bar appears locked to the bottom of the screen. It is the primary navigation. can contain text or graphical navigation */
#navbar {
    position: fixed;
    bottom: 0px;
    z-index: 1000;
    left: 0px;
    right: 0px;
    padding: 0px 1px;
	background-image:url(../images/wap_x_bg.png);
    /*-webkit-box-shadow: 0px 0px 24px rgba(0,0,0,0.8);
    box-shadow: 0px 0px 24px rgba(0,0,0,0.8);*/
}

    #navbar a {
        overflow: hidden;
        display: inline-block;
        position: relative;
        float: left;
        width: 33%;
        height: 50px;
        line-height: 80px;
        color: #ffffff;
        text-align: center;
        font-size: 12px;
    }

        #navbar a:after {
            content: "";
            display: block;
            position: absolute;
            top: 0px;
            width: 100%;
            height: 100%;
            background-position: center 3px;
            background-repeat: no-repeat;
            background-size: 30px;
        }

    #navbar .phone:after {
        background-image: url(../images/icon-36x36-phone.png);
    }

    #navbar .contactus:after {
        background-image: url(../images/icon-36x36-contactus.png);
    }
 #navbar .products:after {
        background-image: url(../images/icon-36-header-menu.png);
    }

.menuButton:after {
    background-image: url(../images/icon-36x36-menu.png);
}

.hasMenu.on .menuButton:after {
    background-image: url(../images/icon-36x36-menu-on.png);
}


#navbar a:active, #navbar a:focus, #navbar a:active:focus, #navbar .selected {
    display: inline-block;
    font-weight: bold;
    background: #e4d4e5;
    background-image: -webkit-linear-gradient( #f7f2f7, #e4d4e5);
    background-image: -moz-linear-gradient( #f7f2f7, #e4d4e5);
    background-image: -ms-linear-gradient( #f7f2f7, #e4d4e5);
    background-image: -o-linear-gradient( #f7f2f7, #e4d4e5);
    background-image: linear-gradient( #f7f2f7, #e4d4e5 );
}


/* CUSTOM NAVBAR */

/*#navbar a:not(:last-of-type) {
            border-right: 1px solid rgba(80,80,80,.5);
        }

    #navbar .icon:before {
        line-height: 62px;
        text-align: center;
        position: absolute;
        top: -10px;
        left: 10px;
        font-size: 48px;
    }*/

.jq-badge {
    display: -webkit-box;
    -webkit-box-direction: reverse;
    position: absolute;
    font-size: 10px;
    border: 2px solid white;
    color: white;
    background: red;
    line-height: 12px;
    border-radius: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 20px;
    max-width: 90%;
    height: 20px;
    margin: 2px;
    padding: 1px 4px 1px 4px;
    top: 2px;
    right: 2px;
    text-align: center;
    z-index: 100;
}

    .jq-badge.br {
        bottom: 2px;
        right: 2px;
        top: auto;
        left: auto;
    }

    .jq-badge.bl {
        -webkit-box-direction: normal !important;
        bottom: 2px;
        left: 2px;
        top: auto;
        right: auto;
    }

    .jq-badge.tl {
        -webkit-box-direction: normal !important;
        top: 2px;
        left: 2px;
        right: auto;
        bottom: auto;
    }


/* Custom footers - always hidden */
#jQUi footer, #jQUi header, #jQUi nav {
    display: none;
}

#jQUi > #menu {
    display: none;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    width: 200px;
    height: 100%;
    background-color: #212121;
}

#menu_scroller {
    padding-bottom: 10px;
    -webkit-backface-visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
/*
#menu > * {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
*/
.jqMenuHeader {
    display: none;
    position: relative;
    text-align: center;
    margin-top: 2px;
    font-size: 24px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
    margin-bottom: 3px;
    z-index: 1;
    color: #ffffff;
}

.jqMenuClose {
    position: relative;
    z-index: 2;
    float: right;
}

#menu .title {
    border-top: 1px solid #1c1c1c;
    border-bottom: 1px solid #191919;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
}

    #menu .title > span {
        padding-right: 15px;
        background: url(../images/icon-8x8-menu-title.png) no-repeat right center;
    }

#menu ul {
    margin: 0px;
    padding: 0px;
    background-color: #2b2b2b;
}

    #menu ul > li {
        list-style: none;
        border-top: 1px solid #414141;
        border-bottom: 1px solid #181818;
    }
        /* A plain, non-interactive list item--best suited to a heading. */

        #menu ul > li > a {
            display: block;
            background-position: 8px center;
            background-repeat: no-repeat;
            background-size: 26px;
            line-height: 220%;
            color: #fff;
            text-indent: 42px;
            font-size: 18px;
        }

            #menu ul > li > a:after {
                content: "";
            }

        #menu ul > li:last-child > a {
            border-bottom: 1px solid black;
        }

    #menu ul.lan a {
        background-position: 11px center;
        background-size: 20px;
    }

    #menu ul.msv a {
        background-position: 11px center;
    }

        #menu ul.msv a.pc {
            background-image: url(../images/icon-32x32-msv-pc.png);
        }

        #menu ul.msv a.msv {
            background-image: url(../images/icon-32x32-msv-msv.png);
        }

        #menu ul.msv a.touch {
            background-image: url(../images/icon-32x32-msv-touch.png);
        }
/* End side menu css */

.splashscreen {
    background: rgba(29,29,28,1) !important;
    padding-left: 40px;
    padding-top: 30px !important;
    min-height: 100%;
}

/* A touchable, interactive list item. */
/**********************************************************
	UL > LI 
**********************************************************/
/* The unordered list/list item classes are the basis of the secondary navigation used in JQ.Mobi: the stacked, listed menu system. */





.collapsed:after {
    float: right;
    content: '';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    display: block;
    position: absolute;
    top: 16px;
    right: 13px;
}

.collapsed:before {
    float: right;
    content: '';
    color: transparent;
    background: transparent;
    width: 14px;
    height: 14px;
    display: block;
    border: 2px solid white;
    border-radius: 3px;
    position: absolute;
    top: 9px;
    right: 9px;
}

.expanded:after {
    float: right;
    content: '';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 6px solid #fff;
    display: block;
    position: absolute;
    top: 14px;
    right: 13px;
}

.expanded:before {
    float: right;
    content: '';
    color: transparent;
    background: transparent;
    width: 14px;
    height: 14px;
    display: block;
    border: 2px solid white;
    border-radius: 3px;
    position: absolute;
    top: 9px;
    right: 9px;
}


/**********************************************************
	UI
**********************************************************/
.ui-icon {
    background: #666;
    background: rgba(0,0,0,.4);
    background-repeat: no-repeat;
    border-radius: 9px;
}

.ui-loader {
    display: none;
    position: absolute;
    opacity: .85;
    z-index: 100;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    margin-top: -35px;
    padding: 10px 30px;
    background: #666;
    background: rgba(0,0,0,.4);
    border-radius: 9px;
}

    .ui-loader h1 {
        font-size: 15px;
        text-align: center;
    }

    .ui-loader .ui-icon {
        position: static;
        display: block;
        opacity: .9;
        margin: 0 auto;
        width: 35px;
        height: 35px;
        background-color: transparent;
    }

.spin {
    -webkit-transform: rotate(360deg);
    -webkit-animation-name: spin;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.ui-icon-loading {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjBAMAAADs965qAAAAA3NCSVQICAjb4U/gAAAAMFBMVEX////x8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHvvEhiAAAAEHRSTlMAESIzRFVmd4iZqrvM3e7/dpUBFQAAAAlwSFlzAAAK6wAACusBgosNWgAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAAEaSURBVCiRY2AgATCapaUqoIiIzN5z5syZJiQRltW7gUJ3705C6OraDRG6GwATkli1evdusNBTuKJVq3c4MjBX3733DqqMfdWqFWDbau+9ewIRspy5KgHMYL737g1EX+fMaVAjbN+9KwDLzZxZAHPMu3cXwEbNnAl397p3YDslOmD6GBjs/v8AURodzXAh3v+/QZRHRyNciPP/f4hQA1yIHVMICtzLC9CFzMuL0IXEy0vQhdjK0+BsRqgv0tIMYEKCggJgmbS0QJgiQUEIwy0tVQCmCCokmhYaCFMElWMKDQ01BIkoKcKEGFRDQ1yMlISUgEIwe5iAQi7GxkpKSjBFwMh2cXEGCSkiOVcFLIQswsAgZGxshCpCBgAA0FNYp5zwDegAAAAASUVORK5CYII=);
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-size: 35px 35px;
}

.ui-corner-all {
    border-radius: .6em;
}

#jQui_mask {
    position: absolute;
    top: 45%;
}


/**********************************************************
	FORM ELEMENTS
**********************************************************/

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

fieldset h4 {
    text-align: left;
    color: #a8b4bb;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: -8px;
    margin-top: 8px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}
/* Style for subhead for a group of labels/inputs within a fieldset. */


fieldset {
    margin: 12px 8px;
    padding: 12px 18px 12px 18px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #595d61;
    outline: 0;
    width: 95%;
}
    /* Styles the border line, background image and spacing for fieldsets. */

    fieldset p {
        display: block;
        position: relative;
        overflow: hidden;
        padding: 0px;
        padding-bottom: 8px;
        padding-top: 8px;
        font-size: 14px;
        line-height: 10px;
        background: transparent;
        height: 37px !important;
        -webkit-box-shadow: none;
    }
/* The paragraph within a fieldset is used as a wrapper to help manage the replacement of native input elements. */

legend {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    overflow: hidden;
    text-transform: uppercase;
    /*text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);*/
}
/* This is the name that appears at the top left of the fieldset. */

textarea.jq-ui-forms {
    display: block;
    margin-top: 4px;
    margin-bottom: 18px;
    padding: 8px;
    border: solid 1px #999;
    outline: 0;
    /*color: #fff;
    background: #595D61;*/
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: inset 2px 2px 6px rgba(0,0,0,.5);
    box-shadow: inset 2px 2px 6px rgba(0,0,0,.5);
    width: 85%;
    min-height: 150px;
    line-height: 120%;
}
/* These properties determine the look of textarea inputs. */


input.jq-ui-forms {
    display: block;
    width: 65%;
    margin-top: 4px;
    margin-bottom: 12px;
    padding: 8px;
    border: solid 1px #999;
    outline: 0;
    /*color: #fff;
    background: #595D61;*/
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: inset 2px 2px 6px rgba(0,0,0,.5);
    box-shadow: inset 2px 2px 6px rgba(0,0,0,.5);
}
/* These properties combine to create the look of the input fields. */


#jQUi label {
    position: relative;
    overflow: visible;
    white-space: nowrap;
    display: block;
    margin-bottom: 6px;
    font-weight: normal;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    display: block;
    float: none;
}


input.jq-ui-forms:hover, textarea.jq-ui-forms:hover, input.jq-ui-forms:focus, textarea.jq-ui-forms:focus {
    border-color: #ccc;
}
/* Changes the border color of the input field while active. */


input.jq-ui-forms[type=checkbox], input.jq-ui-forms[type=radio] {
    position: absolute;
    left: 0;
    -webkit-appearance: none;
    opacity: 0;
    margin-bottom: 30px;
    width: 0px;
    display: none;
}
    /* Blocks rendering of the native radio controls. */

    input.jq-ui-forms[type=checkbox] + label, input.jq-ui-forms[type=radio] + label {
        float: left;
        font-size: 15px;
        font-weight: bold;
        line-height: 26px; /* changing this value will change the vertical relationship to the radios & checkboxes. */
        margin-left: 10px;
        padding-left: 30px;
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAGQCAYAAABbIcvHAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAABiaSURBVHic7Z19cBxHmcaf7pnZmZ1dSbYsy5Zk2VrLBgw2cbCd2EFxTMVUIriUcxWgUq7KBQNWAkXwQQwBEsBJVY4EUoBTV65KTIhDjqQIHCRAUiZUOXYIwQHJ8aUCIrYlWcG2JOvDlvZrduej74/dHvXMzkpaac3d5fatmvJqd6effrt7un/z9rtjwhh7D4CfAGgBQAA4KN2UgPMsAK8D2E0YY38EQNavX3/lmTNnIMsyJEkCpRSUUhBCSlZkjKG1tRUvvvjiMQBJwhgb+eAHP7igt7cXoVAIoVAIsixDlmVXqFRzHAeO42DVqlV45plnLsoAqnt6eqCqKjRNg6ZpUFUViqK4Hs1GxLZtnD59GgCoDCApSdK8UCgETdOg6zo0TXM9KlWEMQbHcWBZFrLZLABABgBJkiBJEhRFcZssFApBUZSS+4WLmKbpnicDACEElFJIkgRZlqEoinvMtrm4oEfEf/BOn40IAE8LTFkCr0mp5j9P5m/ygw8/27Zn7QU/nzdbgYgo5DjOrLzhIrZtF4qIH87WG38lPSLiB1yAEDJrTwJF/P0xV5Epm6tcngR2vN8LSZJg2/acmivQE78Y/6xsnnABUWimc5a/IkX7RPSgHJ6I11hgc/FOn4tIUU9ELy6ZCF9sRIG5rIyWZbkixvvf/3789a9/ddV5wYyxWYOEbdtYvXo1AKQIY+wQgOqtW7eu6+7udpddvlrORiQajSIWi+Hpp5/uApAgjLG1AL4HYBVjTC+5REACYPvecwghBoC3AHxBfvTRRw0ANQBC+S+XCncmguFOBpDlLx4HYD700EO1ExMTZYO72tpa7Ny5cwGAf5cBrNy7d++CeDwOVVXLBneGYeCpp576wPbt23NwNzo6ekngLpVKARW4m84qcFeSVeCuZE8qcFeSSAXuSvKkAncli3jgrrGxEefPny873NXX1wNAigLovuOOO7oaGhpcEcuy5nRQSlFfX4+bb765C8Bb5JFHHnHhDkAYucBaKRYIdwAm4S7/B4c7BxW4E6wCdyWLVOBuxlaBuxlbBe5mLVKBu0CrwF0F7tzz/sfhTiu52rnWsPwtBiAD4ATykbte27YnAOiEEAWlEyQX8hhjjDLGUrIsj8uMsedt295w4cIFlV+hvB9m2x/5AaMtWLBgs23bB2TG2AfOnz+vhsNhd13m/85FxHEcjIyMROrr66+QKaV6JpNBJBLxwINfZCpB8VriAsL3ZdlxHCsUCsmigChSKnPxYe84jnspyAA8zVQOEe6ZB+74G37umq0Ib668J6wo3M3GE3+F+Z8F4/sSiEwS5GwLnIlRLnApbXYc+r9JJD+U2T9C5B3QXB6R2d7slCRyqc0VESe22Rg/N6iMoGVz1oKikFhG4O3cbESKCXg8CbpvnMt6wtkLAGTGWIoxVs0L5jbXRUu4ncvIlNK/LVy48AMXLlyQ+ZIpFu4nmKBm9EcgeCvU1dWNA+iWCSHbFUV5fOHChZdVVVVpqqr6qz5l5xBCKADHLx6Pxw3TNP9CCPmsvH//fmX+/PmRSCRiAUgyxkrOuZMkSXHEts55YyUSieTExARIX1/fHwGQG2644crh4eGyRe4aGxvx5JNPHnMcJ0mGhoZG2tvbF5w7d67sOXdLly7FgQMHLsq6rlefPXt21pE7PwJx5rJtG8PDwyCEUNkwjFlH7vgtuJ+zCCHlidzxmyXxVlrsRzErwQWJYpE7RVHcPuKHKMoYw8aNGxGLxVxE5WKKokx6MhXU+a96y7I8t+MtLS340pe+BAC466678PbbbxfnLtHEu1d+MMZgWZZ7u2eaJpYuXYoHH3wQ0WgU0WgUDz74IFpaWtwmLDoLm6YJSqk7wfG2FUeNZVlYtmwZvvOd7yAajRZUkE8rgWEPXmvTNGHbNpqamnD+/HlXhH+npaUFDz30kEcgkUjgzjvvxOnTpyHLsife5a7xvJamaSKbzWL37t3Yt28fmpubkc1mkclkkM1mEQqFcN999xUIfPGLX0Rvb68nfOVBItELy7Lwta99De3t7YhGo/j+97+PpUuXugI/+MEPsHjxYo/Arl270NPT47nl4E3nivBOsm0bkUgE11xzjVtINBrFww8/jDVr1uDhhx/GihUr3M/i8TjuuOMO9PT0FFxPYtijACQmJibQ0dGBeDzunlBVVYV9+/Zh5cqVHoHPf/7zOHXqVMGQFYOlnuYSj7feegu33XabR0i0eDyOz33ucx4B3v7+aKxHRDRCCE6cOBEoFI/Hcfvtt+PkyZNFBab0hAvwDjx58qRHKB6P47bbbsOpU6eK9oH/8IgERbQJITh58iTuvPNOxONxdHR0uB6I5o8pzyhyJ96PE0Jw7NgxbNmyRbyjBT+P19YvWlLkzj9ZipUKEphWxB+54/OWeAWL81gxK4jcWZZlrFy5En19fWWP3C1fvhyWZaVIT0/PIUpp9fbt29f19/eXJecuHA6jsbERe/fu7XIcJ0GOHTu2tqam5nu6rq+SJKnkbVlCiOQ4jqdzGGOO4zhGOp1+a3x8/Avyn//858q2bFEr+7bsVHBXlm3ZCtxV4M5TwQrcVeDO21wVuPM3UQXu/o/AHd6p27KVnDuPVeAu0CpwV4E7TwUrcFeBO29zVeDO30QVuKvAXSXnbkohj7FKzt1UBYuv+fKbt7nn3InD3H8dlSXnzn8didOR6P2sc+54YYwxVFdXI5vNIp1Ou14I89zscu5EgXA4jKamJgBAX1+fKyT0EymAu2IEGTRRhsNhxGIxF19jsRjC4XBB5Qqay9+2/lWTf65pGlpaWiBJUmBzilaQcyfOuIqiFIgUE7Dt3NN7DMMIFvELAEBTUxNaW1uhaZpnUaOUorm5uahA0GwRCNyNjY2YN28eKKVoaWmBpuXmTUopYrEYQqHQjATylS7MuaOUorq62v1bkiS0tLRA13XEYjFXcCYeeDBVNMdx0NfX51n5JEkqWcBT8aA3DcNw97iCrBQBVyToxtIwDJw+fbpAqFSBQE+mEpqNgEek2K2yYRj4+9//PuNODrp4i+bc8audEIJkMonu7u6CKT3oQhXLKEqQ4uEvSPR0pgIeT/wCfLouNgsHmb8MlyDZOzLnjhCiopC7ps25Y8EpdAYh5C+EkM8W7fT80cIY+1fG2EuMMTvgOMQY28UYWzZVOaRIJy4FcC+Af5mYmBh//vnnE4cPH27u7u7G6OgoamtrsWHDBrS3tw9eccUVSk1NTQ2A/wDwLQBvF3gbILINwI8GBgbMu+++O3r06NEIIcQNV/mjeaFQCJs2bUp95StfSdTX1ysAdgB4biqRWx3H2bd///6J/fv3L06lUm7ci4ekRGQSR1E4HMbOnTuHP/axj9UC+AyAA0Ei2wD85549e7JPPfVUmMcj+b9cxB8yFG94TNPEzTffbNx+++0KgJu4R1xkGYDjP/3pT6377ruvjlLqxiN5qJDHJMWokXjRiYGfXbt2jbS3t0sALgfQz0UeHx4e/qdNmzbVqaqKcDgMTdMQDoc9EVbuhX9iFL3hcccf//jHI7W1tb8BsIPmvbjlrrvuCvM4JI9FiqFBUSCINnlokYeh9u7dqwO4BcAyCuDGsbGxsSNHjkT88UcxPhzEvOKg4WL8nK6uLj2RSMQB3EgBbPv9739v8drwGvmbRhxJUwUGuJjjOHj99dczALZRAJt/+9vfNviJPqi9i920ip+Lgq+99toiAJtlAHjzzTc9JO/v1Jneavubsbu7G0BuPZGGhoYKggJiDLHU6Z6fOzo66oqwcDhM0uk0gMkoHm+mmXoRJFJXVwcgDxKXX365pxPnGizgfbRq1SpX5MhNN900KAZd/MGc2R6bNm06D+BlGcBzbW1taxRF8YQ9eBOVulEjNvXatWvDAH5FAfxy3rx58zZu3Jjkkxw/5tJk119/fVrXdR3AL92569y5c9dv27ZtcTweLzohzsQLxhhqamrwi1/8IqXr+jPIz10A8K3Gxkb1y1/+8kg2mwU/RI+m80z83u7du8d0Xc8A2OOOLuSWzB2f+MQnanbt2mVQSj3NJgoEdTD/DAB27NhhbN26tQa5FbIfCFgZATz27LPPXvzGN76xwDTNgtWwGOzV1NTg7rvvHvvwhz9cA+DTAJ7gnxdb4w+MjIxY999/v37o0CGdB8qCgI8xho9+9KOpe+65h+m6ngXwSQC/EgssRivL8u15y/j4+MXOzk7rlVdeWXT8+HGMjIygrq4Ol112Ga655pqhDRs2qNFotArAk/lz+v2FFRMRxW7Me7c54POXkVvHnw0qnFvBrQMAPProo24lfMe01tHRUfCexxOhcBfuDMMY7+7uTvT19TUPDw8jnU5D13UsWbIEK1euHFyyZIkSDocL4E4Uc0UEgW0AfjQxMWEePHgweubMmQi/KIPgjlKKpqamVFtbWyIajbpwN5XIrYyxfUePHp3o7OxcbNv2jOGOUorLLrts+H3ve58H7jo6OiA1Njaiq6uLe/CT3/3ud05nZ+d8WZZdLOKIJO4Ni7uqfIPz3LlzkWw2m21sbPxnAP8F4K1169aBPPLII0Ae7o4fP2699NJLdVxgNnBnmibWrl07smLFChfueOPuSSQS1osvvlhHKYWqqu6uNn8t1pzXXmQ0EWnfeOONunQ6bUOYu5YBuOWFF14oG9xRStHV1eWFu1QqNdbX11dWuBseHtaz2ewk3PX29pYd7gghGBoaygDYJgPYfOLECWkquBNrW8zEm1L+emBgYFFzc3OdDACDg4OXBO7GxsYA5OEukUhAluWywx1nORkAk2WZ+N0tB9xFIhFXBE1NTXj77bcL9rVYPrA5m6iEZVmora11RY6sWbPmPadPn17shzsxUlSqSH4//zyAv8gAnovFYmt45kY54W7RokWTcBcOh+c1NzeXFe5isVhaURQdwC8pcsvmk+3t7XFVVQNZqhgKFUMjWZaxceNGhty6706Q36qpqVE3b95cFrjbuHHjmKIoLtxJv/71r9HV1TUO4G+LFy++hTFmnj17VhbDS9Md4tSydu1aY82aNTqA7QBe6+jo8ERTnwOw8+qrr1auu+66UUKIp5mmmrccx0EoFMLWrVvHrrzySgU5uHOX4GJr/IFkMmkdOnRI7+vr08XrJQju3vWud6W2bNnCFEXxwF2BiE/Ihbt0On3x7NmzVn9//6LBwUGkUinouo6Ghga0tLQMLVmyRA2FQh6482NRINz5xEqCuyDuCoQ7sRIoEe4CC6nAXQXuKnCXG0EVuKvAXQXuShKpwF0F7gBU4G7SZgR3gSLr16/nL9sA3AlgC4B5ASIXABwG8BCAVwGgs7NzahGh8I3Iub8CgGNZVjKbzVbxYSrLMl/X05IkhZD7ecgp5Jbbo34xGiDwbwBeZYy1JJNJY3R0lMbj8Sr3JwVyjmyz2SwSiUR4YmJCMgwjg9x/xPZq/vxgT/Ii+wF8xjTNRCKRiAIIHFX+XSM+ieq6ns7/Cvox5AAPnZ2dkH0efCaTyZjJZDI6VWpckAhjDMlkMhwOhy1FUT4N4DyArwMAWbduHQBcBeAVy7KM8fHxsMi8Mwmh+yEjEokYkiSpyA2cV3mfPAHAEQWCIHuqQ/x+Op3WkEsdfQLILVpXAViRTCYNSqkUVMBUSRlBDGbbNjKZjKWq6goAV1EAuwHYhmFonFj8AsXIUSRI/7mmaap5b3bLALbYtp2hlOpBhYor41QrJN+K5efk+ylLKd0iA5ifzWaL1pJbMQFxpPnPtW1bo5RqFID7OOupjqms2DmelPdiyWJzNb7wuRmdYo3KYbxvgLwnqqoCQMFQnIsxxtw0RgrgYigUSpelZJ9JkmQAuEABHJYkKTQdLExX66CD5HKTjlAA3wUgqapqTFV4MSH/d/gRCoWyyEUxvkuRWwNOaZom8S9yvPG/ng6LxIrJsqwgt5C5E+QthBA5EokYQbdp0wmJ33McB6qqZvLl3goANL9MHgXwgCRJmq7r1nSMNQ1/Wfm+eADAq52dnR64+zqAH8qyLEejUUMMAsykcMYYNE3LSJIkA/ghgK/zdZ4CnkV/J4BvU0rVaDRqK4qSCcou8L8nSVJG0zRGCAkBuD9fjmvFaOUq5BacFQBsx3FM27Y1LiAsZgalNJSv7Kl8H7zqx6LpuOsq5NabLQDmF3xxhtwVGLkTvngOOUqcj2CCPA7gCICzQeVwq+TcFUTuKjl3bs5dLBZDS0sLqqqqXA+SySTOnDmDwcFBjzdBOXeEMbYMQM+nPvUp4w9/+EOEBzbD4TCqq6tx7bXXIjd4gi0ej+NPf/oTstksbNt275w3bNiQuvfee1UArTImc+4Waprmidy1t7dj/vzcNVhVVYVFixa5j/0fGhpCPB6Hpmloa2vDSy+95EbuHMfhOXcXo9HojTKK5Ny9973vRUNDAwCgoaGhwJtoNIrx8XEMDAxA0zTEYjHPT0Aty8Lrr7+eufrqq4vn3K1fvx6apqGmpga6rhdk5JimCV3XUVNTA03TsHr16tJz7pqbmwEAuq67KTxBFolEQAhBU1OTGx/jItPm3Ik/opgKJPhwByZ/Zc4v0Glz7sTfNUxlvLODRKbNuRsZGfFckNMdo6OjpefcHTp0qCSRI0eOFM25o8jl3Cn+nLvDhw9jcHBwRgJDQ0N4+eWXPefPOOfunnvuca+DYsfAwAC++c1vzj3nrr29HR//+MfR2trqdnhPTw9+/vOf4+DBg+57fPj6c+64yFIAx5955hn7q1/9al2xqX2mYfQHHnhgbOvWrQS+/ZNKzh0Yq+TcVXLuKtuy5diW5aPL3Zbl27Ditux0cMcxiTfjG2+8UdfU1DQSDof3ANghY3Jb1vBvy0YikaJwp2kaFixYgOXLl7twB0w+v6Crq0tva2u7BcAeGZPbsmWFu/y27MVQKJSDu6Bt2bnCHd+WbW5uzsHdiRMnLgncDQwMTMJd0LZsOeBu2m3ZcsDdtNuy5YC7abdlR0ZGsGTJkhkJAcDZs2dhWVbgtixFblv2ksBdfls2B3exWEzxb8uWA+5mtC07F7gTt2WlG264YRxArLm5eembb74Z5ZvLhBBks1m88MILGB0dRXNzM+rr691Ei/7+fjz++OPYu3cvMpmMp8MVRcF1111nSpL0NIAn+Cy8FLlZ2D548OCc4e7aa68da21tdeGusi3raab/P9uylZw7t4AK3FXgDkAF7ipwV4G7CtxV4K4Cd+9EuLukkTthY9mFO8dxxjOZTIIx1izmCuWBYlCSJIVSWgB34kazPx0OyMOdbdtmKpWKAoiI/4uIH+7yoytFCElQSl24m0rkVgD7ksnkhG3bi3mW4EzgzrIsGIYxTCn1wJ0/524bgMcSiUTWcZzF/m1ZvzfcRO4KhUIL0+m0Ydv2D5Hbq89ty+Zz7pYBOJ5Opy3TNOv8j2bmAkGZUvxf7o1pmhgfHx9xHKcQ7mzbtjKZTJ3/BxSSJGF4eBgDAwNIJpOuB7quo6mpCQ0NDQVkWV1dXXfhwoURQsgeADvIunXrlgHoGR8fNyil7rasqqqglOLUqVOBD2Pjpmka3v3ud0PTNEiSBMdxYJomEolEKp1OT27L2rY95jjOQv/s29/fD8YYVFXF8uXL0dbWBk3TYBgGXnnlFfT29oIxht7eXrS2trqeS5KEcDisp9PpiwBulBobG7+dyWRqHcep4h2tKApSqRQMw4Asy/jIRz6CD33oQ6iuroau66iursbq1atRW1uL/v5+EEJ45o0HqwzDGGeMLZABbDZNUxKHZv4LUFUVdXV1qK2txcDAQEFT1dbWoqmpCSMjI8hms+6zvXhel6qqi9LpdO4HFbZtu4/D5iOFr4D19fUYGhoq2if19fXuY2gzmYyLR6KYDEASFyguwrPXEomES+xBls1m3e8ahuE+M1psFRm5B0554I4Q4p6YTqddEixm/LvJZNK9MHlZXMTzIGj3g/wIm6n5YYIx5nls+ZFQKPQewzAW82WWEIJMJuPem8zE+I41FwIAy7Imf1ChquqadDrtukpI7mFt8+fPnxETp1IpTExMIBwOA/A8NGwS7iil8yilSRHOHMdxHz0n3kf6D9M0ceLECc8D1/NXfRpADu4aGxvHAcRkWV6ayWSi4gSYvy1DNpuFruvQdd0d2qlUCqdPn0ZPT4/7hHgulO8TE0AO7vKz8FIAx1OplG0YRp34rHrextw73qniCikuAwBACBkjObcmk2Pya8o2AD9LJpO2aZqaOL37O5SLiDnCwtRv5DMHb0J+hRRB4jkAOyORyGOGYYxmMpkFwOSDjP3Lbr5AD4NJkjSWX+8/3dnZ6WZGFVvjD9i2bRmGoTPG9GILFveKUpqSJIkRQrIAPtnZ2enZlnWrJiz8zwFYK0nSbyKRiKrr+qgsy0NimIM3G6V0SFGUi7Isq4SQn+X7wCPg8UQ0wauS4S4o5+6/AUFikxzzSQ70AAAAAElFTkSuQmCC) 0 0px no-repeat;
        background-repeat: none;
        height: 25px;
    }
    /* Styling for the labels. */


    /* Following block of paragraph classes sets up the usage of the custom radio and checkbox graphics. */


    input.jq-ui-forms[type=radio] + label {
        background-position: 0 -225px;
    }

    input.jq-ui-forms[type=checkbox] + label {
        background-position: 0 -25px;
    }

    /* Styles for "checked." */
    input.jq-ui-forms[type=radio]:checked + label {
        background-position: 0 -300px;
    }

        input.jq-ui-forms[type=radio]:hover:checked + label,
        input.jq-ui-forms[type=radio]:focus:checked + label,
        input.jq-ui-forms[type=radio]:checked + label:hover,
        input.jq-ui-forms[type=radio]:focus:checked + label {
            background-position: 0 -300px;
        }

    input.jq-ui-forms[type=checkbox]:checked + label {
        background-position: 0 -100px;
    }

        input.jq-ui-forms[type=checkbox]:hover:checked + label,
        input.jq-ui-forms[type=checkbox]:focus:checked + label,
        input.jq-ui-forms[type=checkbox]:checked + label:hover,
        input.jq-ui-forms[type=checkbox]:focus:checked + label {
            background-position: 0 -100px;
        }


    /* Styles for "hover/focus." */
    input.jq-ui-forms[type=checkbox]:hover + label,
    input.jq-ui-forms[type=checkbox]:focus + label,
    input.jq-ui-forms[type=checkbox] + label:hover {
        background-position: 0 -0x;
    }

    input.jq-ui-forms[type=radio]:hover + label,
    input.jq-ui-forms[type=radio]:focus + label,
    input.jq-ui-forms[type=radio] + label:hover {
        background-position: 0 -200px;
    }

    /* Styles for "active." */
    input.jq-ui-forms[type=checkbox]:active + label,
    input.jq-ui-forms[type=checkbox] + label:hover:active {
        background-position: 0 -0px;
    }

    input.jq-ui-forms[type=radio]:active + label,
    input.jq-ui-forms[type=radio] + label:hover:active {
        background-position: 0 -200px;
    }


    input.jq-ui-forms[type=checkbox]:active:checked + label,
    input.jq-ui-forms[type=checkbox]:checked + label:hover:active {
        background-position: 0 -100px;
    }

    input.jq-ui-forms[type=radio]:active:checked + label,
    input.jq-ui-forms[type=radio]:checked + label:hover:active {
        background-position: 0 -300px;
    }

    /* Styles for "disabled." */
    input.jq-ui-forms[type=checkbox]:disabled + label,
    input.jq-ui-forms[type=checkbox]:hover:disabled + label,
    input.jq-ui-forms[type=checkbox]:focus:disabled + label,
    input.jq-ui-forms[type=checkbox]:disabled + label:hover,
    input.jq-ui-forms[type=checkbox]:disabled + label:hover:active {
        background-position: 0 -175px;
        opacity: .5 !important;
    }

    input.jq-ui-forms[type=radio]:disabled + label,
    input.jq-ui-forms[type=radio]:hover:disabled + label,
    input.jq-ui-forms[type=radio]:focus:disabled + label,
    input.jq-ui-forms[type=radio]:disabled + label:hover,
    input.jq-ui-forms[type=radio]:disabled + label:hover:active {
        background-position: 0 -250px;
        opacity: .5 !important;
    }

    input.jq-ui-forms[type=checkbox]:disabled:checked + label,
    input.jq-ui-forms[type=checkbox]:hover:disabled:checked + label,
    input.jq-ui-forms[type=checkbox]:focus:disabled:checked + label,
    input.jq-ui-forms[type=checkbox]:disabled:checked + label:hover,
    input.jq-ui-forms[type=checkbox]:disabled:checked + label:hover:active {
        background-position: 0 -200px;
        opacity: .5 !important;
    }

    input.jq-ui-forms[type=radio]:disabled:checked + label,
    input.jq-ui-forms[type=radio]:hover:disabled:checked + label,
    input.jq-ui-forms[type=radio]:focus:disabled:checked + label,
    input.jq-ui-forms[type=radio]:disabled:checked + label:hover,
    input.jq-ui-forms[type=radio]:disabled:checked + label:hover:active {
        background-position: 0 -375px;
        opacity: .5 !important;
    }

    input.jq-ui-forms[type=radio]:active:checked + label,
    input.jq-ui-forms[type=checkbox]:active:checked + label,
    input.jq-ui-forms[type=radio]:active + label,
    input.jq-ui-forms[type=checkbox]:active + label,
    input.jq-ui-slider[type=checkbox]:checked + label,
    input.jq-ui-slider[type=radio]:checked + label {
        background-position: -28px 0px;
    }


/********    slider controls */
input.jq-ui-slider {
    position: absolute;
    left: 0;
    opacity: 0;
    -webkit-appearance: none;
    display: none;
}
    /* Blocks rendering of the native radio controls. */


    input.jq-ui-slider + label {
        float: left;
        font-size: 15px;
        font-weight: normal;
        line-height: 24px; /* changing this value will change the vertical relationship to the radios & checkboxes. */
        margin-left: 10px;
        padding-left: 57px;
        /*color: #fff;*/
        background-image: url(data:image/png;base64,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);
        height: 24px;
        width: 0px;
        display: inline-block;
        transition: all 0.3s ease-in-out;
        background-repeat: no-repeat;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    input.jq-ui-slider[type=radio]:disabled:checked + label,
    input.jq-ui-slider[type=radio]:focus:disabled:checked + label,
    input.jq-ui-slider[type=checkbox]:disabled:checked + label,
    input.jq-ui-slider[type=checkbox]:focus:disabled:checked + label {
        background-position: -29px 0px;
        opacity: .7 !important;
    }

    /* Styles for "disabled." */
    input.jq-ui-slider[type=checkbox]:disabled + label,
    input.jq-ui-slider[type=checkbox]:focus:disabled + label,
    input.jq-ui-slider[type=radio]:disabled + label,
    input.jq-ui-slider[type=radio]:focus:disabled + label {
        background-position: 0 0;
        opacity: .7 !important;
    }





select[disabled] ~ div {
    opacity: .7;
}


.hasMenu {
    /*removed - should neve be all (performance), 300ms param should go into jq.ui.js; also default should not have accelaration, avoid iPhone blur*/
    /* -webkit-transition: all 300ms; */
    position: absolute !important;
    left: 0px !important;
}
    /*menu on/off mechanism, note .hasMenu.off and #menu.on default to no transform*/
    .hasMenu.to-on {
        -webkit-transition: -webkit-transform 150ms;
        transition: transform 150ms;
    }

    .hasMenu.on, .hasMenu.to-on {
        -webkit-transform: translate3d(200px,0px,0px);
        transform: translate(200px,0px);
    }

    .hasMenu.to-off {
        -webkit-transition: -webkit-transform 150ms;
        -webkit-transform: translate3d(0px,0px,0px);
        transition: transform 150ms;
        transform: translate(0px,0px);
    }

#menu.on {
    -webkit-transform: none;
    -webkit-transition: none;
    transform: none;
    transition: none;
}

#menu.to-on {
    -webkit-transition: -webkit-transform 150ms;
    -webkit-transform: translate3d(0px,0px,0px);
    transition: transform 150ms;
    transform: translate(0px,0px);
}

#menu.to-off {
    -webkit-transition: -webkit-transform 150ms;
    transition: transform 150ms;
}

#menu, #menu.off, #menu.to-off {
    -webkit-transform: translate3d(00px,0px,0px);
    transform: translate(00px,0px);
}
/*
.menuButton {
    display: inline-block;
    float: left;
    border-right: 1px solid #f9f9f9;
    border-bottom: 2px solid #e60050;
    box-shadow: 1px 0 0 #dbdbdb;
    width: 48px;
    height: 46px;
    background: url(../images/icon-36-header-menu.png) no-repeat center;
}



.menuButton {
    display: inline-block;
    position: relative;
    border-right: 1px solid #f9f9f9;
    border-bottom: 2px solid #e60050;
    box-shadow: 1px 0 0 #dbdbdb;
    width: 48px;
    height: 46px;
    padding: 9px 4px;
    background-color: transparent;
}

    .menuButton:active {
        background: rgba(255,255,255,0.4);
    }

    .menuButton:before {
        content: '';
        position: absolute;
        width: 80%;
        height: 6px;
        border-radius: 20px;
        background: #dcdcdc;
        -webkit-box-shadow: 0 12px 0 #dcdcdc;
        box-shadow: 0 12px 0 #dcdcdc;
    }

    .menuButton:after {
        content: '';
        position: absolute;
        top: 33px;
        width: 80%;
        height: 6px;
        border-radius: 20px;
        background: #dcdcdc;
    }*/

@media handheld, only screen and (min-width: 768px) {
    .hasMenu, .hasMenu.on {
        position: absolute !important;
        left: 256px !important;
        -webkit-transition: all 0ms !important;
        -webkit-transform: translate3d(0,0,0);
        transform: translate(0,0,0);
    }

    #badgephone {
        display: none !important;
    }

    #badgetablet {
        display: inline-block !important;
    }

    .jqMenuClose {
        display: none !important;
    }

    nav ~ #menu {
        z-index: 200 !important;
        width: 256px !important;
        bottom: 0px !important;
        height: 100% !important;
        display: block !important;
        position: absolute !important;
        top: 0px !important;
        left: 0px !important;
        background: rgba(29,29,28,1) !important;
        -webkit-transform: translate3d(0px,0px,0px) !important;
        -webkit-transition: none !important;
        transform: translate(0px,0px) !important;
        transition: none !important;
    }

    .hasMenu.to-on {
        -webkit-transition: none !important;
        transition: none !important;
    }

    .hasMenu.on, .hasMenu.to-on {
        -webkit-transform: translate3d(0px,0px,0px) !important;
        -webkit-transition: none !important;
        transform: translate(0px,0px) !important;
        transition: none !important;
    }

    .hasMenu.to-off {
        -webkit-transform: translate3d(0px,0px,0px) !important;
        -webkit-transition: none !important;
        transform: translate(0px,0px) !important;
        transition: none !important;
    }
}

#jq_actionsheet {
    position: absolute;
    left: 0px;
    right: 0px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    margin: auto;
    background: black;
    float: left;
    z-index: 9999;
    border-top: #fff 1px solid;
    background: rgba(71,71,71,.95);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.4)), to(rgba(255,255,255,0)), color-stop(.08,rgba(255,255,255,.1)), color-stop(.08,rgba(255,255,255,0)));
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,.4) 0%, rgba(255,255,255,.1) 8%, rgba(255,255,255,0) 8%);
    box-shadow: 0px -1px 2px rgba(0,0,0,.4);
    transition: all 300ms;
    -webkit-transition: all 300ms;
}

    #jq_actionsheet a {
        text-decoration: none;
        -webkit-transition: all 0.4s ease;
        text-shadow: 0px -1px rgba(0,0,0,.8);
        padding: 0px .25em;
        border: 1px solid rgba(0,0,0,.8);
        text-overflow: ellipsis;
        -webkit-border-radius: .75em;
        border-radius: .75em;
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.4)), to(rgba(255,255,255,0)), color-stop(.5,rgba(255,255,255,.1)), color-stop(.5,rgba(255,255,255,0)));
        background-image: -webkit-linear-gradient(top, rgba(255,255,255,.5) 0%, rgba(255,255,255,.2) 50%, rgba(255,255,255,0) 50%);
        -webkit-box-shadow: 0px 1px 1px rgba(255,255,255,0.7);
        box-shadow: 0px 1px 1px rgba(255,255,255,0.7);
        display: block;
        color: white;
        text-align: center;
        line-height: 36px;
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
        background-color: rgba(130,130,130,1);
    }

        #jq_actionsheet a.selected {
            background-color: rgba(150,150,150,1);
        }

        #jq_actionsheet a.cancel {
            background-color: rgba(43,43,43,1);
        }

            #jq_actionsheet a.cancel.selected {
                background-color: rgba(73,73,73,1);
            }

        #jq_actionsheet a.red {
            color: white;
            background-color: rgba(204,0,0,1);
        }

            #jq_actionsheet a.red.selected {
                background-color: rgba(255,0,0,1);
            }

BODY > DIV#mask {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999999;
    position: absolute;
    top: 0;
    left: 0;
}

.jqPopup {
    display: block;
    width: 280px;
    float: left;
    border: solid 1px #72767b;
    -webkit-box-shadow: 0px 4px 6px #555, 0 0 20px rgba(255,255,255,0.5);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 10px;
    opacity: 1;
    -webkit-transform: scale(1);
    -webkit-transition: all 0.20s ease-in-out;
    transform: scale(1);
    transition: all 0.20s ease-in-out;
    position: absolute;
    z-index: 1000000;
    margin-left: auto!important;
    margin-right: auto!important;
    background: rgba(70,70,70,1);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(70,70,70,0.8)), to(rgba(0,20,20,0.8)));
}

    .jqPopup * {
        color: white;
    }

    .jqPopup.hidden {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
        top: 50%;
        left: 50%;
        margin: 0px auto;
    }

    .jqPopup header {
        font-weight: bold;
        font-size: 20px;
        margin: 0;
        padding: 0;
        display: block !important;
    }

    .jqPopup div {
        font-size: 12px;
    }

    .jqPopup footer {
        width: 100%;
        text-align: center;
        display: block !important;
    }

        .jqPopup footer a#cancel {
            float: left;
        }

        .jqPopup footer a#action {
            float: right;
            margin-right: 4px;
        }

        .jqPopup footer a.center {
            float: none!important;
            width: 80%;
            margin: 8px;
        }




/** This can be your default scrollbar class.  You must use !important to override the default inline styles */
.scrollBar {
    position: absolute !important;
    width: 5px !important;
    height: 20px !important;
    border-radius: 2px !important;
    border: 1px soldid black !important;
    background: black !important;
    opacity: 0 !important;
}
/*
 * Since the styles are built in, you have to override values with !important
 */

/* Row of selected item */
.jqmobiSelectRowFound {
}

/* Button (radio) for the found item in the list */
.jqmobiSelectRowButtonFound {
}


/* Row for items in the list */
.jqmobiSelectRow {
}

/* button for the items in the list */
.jqmobiSelectRowButton {
}

/* class for the item text displayed */
.jqmobiSelectRowText {
}

/* Header for select box */
#jqmobiSelectBoxHeader {
}

/* div that holds the options listed*/
#jqmobiSelectBoxFix {
}


/* ------------- ��վͨ�ù���ģ�� ------------- */

/*��������*/
.popbox {
    display: none;
    position: absolute;
    border: 1px solid #acacac;
    padding: 2px;
    background-color: rgba(255, 255, 255, 1);
}

    .popbox > * {
        margin: 3px;
        padding-left: 5px;
        padding-right: 5px;
    }

.logo {
    margin: auto;
    max-height: 100%;
}

.sortBotton {
    display: inline-block;
    float: right;
    width: 48px;
    height: 46px;
    background: url(../images/icon-32x32-header-sort.png) no-repeat center;
    text-indent: -5000px;
}

/*����*/
.sortbar {
    display: block;
    top: 1px;
    right: 5px;
}

    .sortbar > * {
        display: block;
        border-bottom: 1px solid #dcdcdc;
        line-height: 220%;
    }

        .sortbar > *:last-of-type {
            border-bottom: 0px;
        }

/* ��ҳ */
.pagePrevNext {
    margin: 10px;
}

    .pagePrevNext .pagecount {
        width: 0.1%;
    }

.list_more {
    margin: 10px;
    text-align: right;
}

.appMore > a {
    width: 100%;
    text-align: center;
}


/*�б�*/

/*����*/
.list.alinks .title {
    display: block;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #ffffff;
                                  background-color: #e4d4e5;
        background-image: -webkit-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -moz-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -ms-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -o-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: linear-gradient(#f7f2f7, #e4d4e5);
    line-height: 220%;
    text-align: center;
    font-size: 12px;
}

    .list.alinks .title > span {
        display: inline-block;
        border-bottom: 1px solid #ffffff;
    }

.list.alinks ol {
    margin: 0px;
    padding: 0px;
    background-color: #f5f5f5;
}

.list.alinks li {
    list-style: none;
}


.list.alinks ol a {
    display: block;
    border-bottom: 1px solid #ffffff;
    box-shadow: 0px 1px 0px #dcdcdc;
    height: 55px;
}

.list.alinks li:nth-child(1) a {
    border-top: 0px;
}

.list.alinks ol a img {
    float: left;
    margin: 5px;
    border: 1px solid #bfbfbf;
    border-radius: 5px;
    width: 100px;
    height: 45px;
    padding: 1px;
    background-color: #ffffff;
}

    .list.alinks ol a img ~ span {
        margin-left: 100px;
    }

.list.alinks li > a > span {
    display: block;
    text-indent: 10px;
}

    .list.alinks li > a > span:nth-of-type(1) {
        line-height: 220%;
    }

    .list.alinks li > a > span:nth-of-type(2) {
        color: #8c8c8c;
        font-size: 12px;
        line-height: 150%;
    }


/*����*/
.list.downs .title {
    display: block;
    border-top: 1px solid #b0b0b0;
    border-bottom: 1px solid #ffffff;
                              background-color: #e4d4e5;
        background-image: -webkit-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -moz-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -ms-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -o-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: linear-gradient(#f7f2f7, #e4d4e5);
    color: #323232;
    text-align: center;
    font-size: 12px;
}

    .list.downs .title > span {
        display: inline-block;
        border-bottom: 1px solid #ffffff;
    }

.list.downs ol {
    margin: 0px;
    padding: 0px;
}

.list.downs li {
    list-style: none;
}

.list.downs ol a {
    display: block;
    border-bottom: 1px solid #ffffff;
    box-shadow: 0px 1px 0px #dcdcdc;
    height: 52px;
     background-color: #f5f5f5;
    white-space: nowrap;
}

.list.downs li a > small {
    display: block;
    float: left;
    width: 50px;
    background-image: url(../images/icon-32x26-downs.png);
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    line-height: 50px;
    text-align: center;
}

.list.downs li > a > span {
    display: block;
    margin-left: 50px;
}


    .list.downs li > a > span:nth-of-type(1) {
        line-height: 220%;
    }

    .list.downs li > a > span:nth-of-type(2) {
        color: #8c8c8c;
        font-size: 12px;
        line-height: 150%;
    }

    .list.downs li > a > span:only-of-type {
        line-height: 52px;
    }

/*����*/
.list.gbook .title {
    border-bottom: 1px solid #ffffff;
                               background-color: #e4d4e5;
        background-image: -webkit-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -moz-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -ms-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -o-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: linear-gradient(#f7f2f7, #e4d4e5);
}

    .list.gbook .title > span {
        display: inline-block;
        width: 49%;
        text-align: center;
    }

        .list.gbook .title > span.on {
            border-bottom: 3px solid #ffffff;
        }

.list.gbook .gbook-list {
    padding: 10px;
}
/*��Ƹ*/
.list.jobs .title {
    display: block;
    border-top: 1px solid #b0b0b0;
    border-bottom: 1px solid #ffffff;
                           background-color: #e4d4e5;
        background-image: -webkit-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -moz-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -ms-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -o-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: linear-gradient(#f7f2f7, #e4d4e5);
    color: #323232;
    text-align: center;
    font-size: 12px;
}

    .list.jobs .title > span {
        display: inline-block;
        border-bottom: 1px solid #ffffff;
    }

.list.jobs ol {
    margin: 0px;
    padding: 0px;
    background-color: #f5f5f5;
}

.list.jobs li {
    list-style: none;
    position: relative;
}


.list.jobs ol li > a {
    display: block;
    border-bottom: 1px solid #ffffff;
    box-shadow: 0px 1px 0px #dcdcdc;
    height: 52px;
    padding-left: 50px;
    background: url(../images/icon-32x32-list-jobs.png) no-repeat 10px center;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list.jobs li:nth-child(1) > a {
    border-top: 0px;
}

.list.jobs li > a > span {
    display: block;
    line-height: 52px;
}

.list.jobs li > i {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px;
    height: 50px;
    background-image: url(../images/icon-11x11-attributeitems.png);
    background-position: 30px 30px;
    background-repeat: no-repeat;
}

    .list.jobs li > i.on {
        background-image: url(../images/icon-11x11-attributeitems1.png);
    }

.list.jobs li > div {
    display: none;
    background-color: #484848;
    color: #ffffff;
    width: 100%;
}

    .list.jobs li > div > span {
        display: block;
        float: left;
        width: 20%;
        line-height: 250%;
        font-size: 12px;
        text-align: center;
    }

        .list.jobs li > div > span > span {
            display: block;
        }

.list.jobs li span > a {
    color: #ffffff;
}

.list.jobs li > i.on + div {
    display: inline-block;
}
/*����*/
.list.news .title {
    display: block;
    border-top: 1px solid #b0b0b0;
    border-bottom: 1px solid #ffffff;
                       background-color: #e4d4e5;
        background-image: -webkit-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -moz-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -ms-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -o-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: linear-gradient(#f7f2f7, #e4d4e5);
    color: #323232;
    text-align: center;
    font-size: 12px;
}

    .list.news .title > span {
        display: inline-block;
        border-bottom: 1px solid #ffffff;
    }

.list.news ol {
    margin: 0px;
    padding: 0px;
    background-color: #f5f5f5;
}

.list.news li {
    list-style: none;
    position: relative;
    border-bottom: 1px solid #ffffff;
    box-shadow: 0px 1px 0px #dcdcdc;
}


.list.news ol li > a {
    display: block;
    overflow: hidden;
    margin-right: 25px;
    height: 52px;
    padding-left: 50px;
    background: url(../images/icon-32x32-list-news.png) no-repeat 10px center;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list.news li:nth-child(1) a {
    border-top: 0px;
}

.list.news li > a > span {
    display: block;
}

    .list.news li > a > span:nth-child(1) {
        line-height: 220%;
    }

    .list.news li > a > span:nth-child(2) {
        color: #8c8c8c;
        font-size: 12px;
        line-height: 150%;
    }

    .list.news li > a > span:only-child {
        line-height: 52px;
    }

.list.news a > .i {
    text-indent: 16px;
    background: url(../images/icon-16x16-news-img.png) no-repeat left center;
}

.list.news li > i {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px;
    height: 50px;
    background-image: url(../images/icon-11x11-attributeitems.png);
    background-position: 30px 30px;
    background-repeat: no-repeat;
}

    .list.news li > i.on {
        background-image: url(../images/icon-11x11-attributeitems1.png);
    }

.list.news li > div {
    display: none;
    background-color: #484848;
    color: #ffffff;
    width: 100%;
}

.list.news li > i.on + div {
    display: inline-block;
}

.list.news li > div > * {
    display: block;
    float: left;
    width: 20%;
    height: 50px;
    background-position: center top;
    background-repeat: no-repeat;
    line-height: 70px;
    font-size: 12px;
    text-align: center;
    color: #ffffff;
}

.list.news li > div > .share {
    background-image: url(../images/icon-32x32-share.png);
}

    .list.news li > div > .share.on {
        background-image: url(../images/icon-32x32-share1.png);
    }

.list.news li > div > .publish {
    background-image: url(../images/icon-32x32-list-comm.png);
}

.list.news li > div > .more {
    background-image: url(../images/icon-32x32-list-more.png);
}

/*��Ʒ*/
.list.products {
    margin-left: 28px;
}

    .list.products > * {
        border-left: 1px solid #dddddd;
    }

    .list.products > .pagePrevNext {
        border-left: 0px;
    }

    .list.products > .list_more {
        border-left: 0px;
    }

    .list.products .title {
        display: block;
        position: relative;
        border-top: 1px solid #dcdcdc;
        border-bottom: 1px solid #ffffff;
        box-shadow: 0px -1px 0px #ffffff;
                    background-color: #e4d4e5;
        background-image: -webkit-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -moz-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -ms-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -o-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: linear-gradient(#f7f2f7, #e4d4e5);
        line-height: 220%;
        font-size: 12px;
        text-indent: 15px;
    }

        .list.products .title::before {
            content: "";
            display: block;
            position: absolute;
            left: -8px;
            top: 5px;
            border-radius: 8px;
            border: 5px solid #ffffff;
            box-shadow: 0px 0px 3px #ccc;
            width: 5px;
            height: 5px;
            background: #ccc;
        }
    .list.products .pl {
    padding:10px 0px;
    background-color:#f5f5f5;
    }   
          .list.products .pl a {
            display: inline-block;
            margin: 0px 0px 0px 10px;
            width: 60px;
            height:85px;
            overflow: hidden;
            white-space: nowrap;
        text-align: center;
        }

    .list.products .pl a > span:nth-child(1) {
        display: block;
        overflow: hidden;
        border: 1px solid #bfbfbf;
        border-radius: 5px;
        height: 60px;
        background-color: #ffffff;
    }

    .list.products .pl img {
        width:100%;
        min-height: 100%;
    }

/*ͼƬ�б�(�ٲ�������)*/
.waterfall {
    min-width: 292px;
    border-bottom: 1px solid #ffffff;
    padding: 10px; /*-webkit-column-count: 2;*/
    column-width: 130px;
    column-gap: 10px;
    -webkit-column-width: 130px;
    -webkit-column-gap: 10px;
    -moz-column-width: 130px;
    -moz-column-gap: 10px;
    -ms-column-width: 130px;
    -ms-column-gap: 10px;
    -o-column-width: 130px;
    -o-column-gap: 10px;
    background-color:#f5f5f5;
}

    .waterfall > a {
        display: inline-block;
        overflow: hidden;
        margin: 5px auto;
        border: 1px solid #d5d7d5;
        padding: 5px;
        width: 100%;
        background: #faf9fe;
        line-height: 180%;
        color:#ffffff;
        font-size: 12px;
        text-align:center;

    }


    .waterfall .img {
        background-repeat: no-repeat;
        background-size: 100%;
    }

    .waterfall img {
        width: 100%;
        opacity: 0;
    }

    .waterfall span {
        display: block;
        margin-top: -20px;
        padding: 10px 0px 0px;
        background-image: -webkit-gradient(linear,0% 0%, 0% 30%, from(rgba(161,24,159,0)), to(rgba(161,24,159,1)));
        background-image: -moz-linear-gradient(top, rgba(161,24,159,0)0%,rgba(161,24,159,1)30%);
        background-image: -ms-linear-gradient(rgba(161,24,159,0), rgba(161,24,159,1)50%);
        background-image: -o-linear-gradient(top, rgba(161,24,159,0)0%,rgba(161,24,159,1)30%);
        background-image: linear-gradient(top, rgba(161,24,159,0)0%,rgba(161,24,159,1)30%);
    }


/*��Ƶ*/
.list.videos {
    margin-left: 28px;
}

    .list.videos > * {
        border-left: 1px solid #dddddd;
    }

    .list.videos > .pagePrevNext {
        border-left: 0px;
    }

    .list.videos > .list_more {
        border-left: 0px;
    }

    .list.videos .title {
        display: block;
        position: relative;
        border-top: 1px solid #dcdcdc;
        border-bottom: 1px solid #ffffff;
        box-shadow: 0px -1px 0px #ffffff;
                    background-color: #e4d4e5;
        background-image: -webkit-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -moz-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -ms-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -o-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: linear-gradient(#f7f2f7, #e4d4e5);
        line-height: 220%;
        font-size: 12px;
        text-indent: 15px;
    }

        .list.videos .title::before {
            content: "";
            display: block;
            position: absolute;
            left: -8px;
            top: 5px;
            border-radius: 8px;
            border: 5px solid #ffffff;
            box-shadow: 0px 0px 3px #ccc;
            width: 5px;
            height: 5px;
            background: #ccc;
        }


    .list.videos .vl {
        overflow: hidden;
        border-bottom: 1px solid #ffffff;
        padding-top: 10px;
        background-color: #f5f5f5;
    }

        .list.videos .vl a {
            display: block;
            float: left;
            margin: 0px 0px 0px 10px;
            width: 85px;
            overflow: hidden;
            white-space: nowrap;
        }

    .list.videos .vl a > span:nth-child(1) {
        display: block;
        overflow: hidden;
        border: 1px solid #bfbfbf;
        border-radius: 5px;
        height: 85px;
        background-color: #ffffff;
    }

    .list.videos .vl a > span > img {
        width:100%;
        min-height: 100%;
    }

    .list.videos .vl a > span:nth-child(2) {
        display: block;
        line-height: 250%;
        text-align: center;
    }







/*��ϸҳ*/

.view {
    padding: 0px 10px 10px;
}

    /*.view .title {
    }*/

    .view .infos {
        border-bottom: 1px solid #e0e0e0;
        line-height: 200%;
        font-size: 12px;
    }

    .view .img {
        display: block;
        text-align: center;
    }

        .view .img img {
            margin: 10px auto;
            border: 1px solid #e0e0e0;
            max-width: 100%;
            padding: 3px;
        }

    .view .remark {
        margin-bottom: 10px;
        line-height: 180%;
    }

        .view .remark img {
            max-width: 100% !important;
        }

.view_btn_box > * {
    margin: 5px;
}





/*����*/
.comment .title {
    border-top: 1px solid #dddddd;
    border-bottom: 2px solid #dcdcdc;
    line-height: 250%;
}

    .comment .title > .all {
        float: right;
    }

.comment dl {
    margin-top: 0px;
}

.comment dt time, .comment .cbbox time {
    float: right;
}

.comment dd, .comment .cbbox > p {
    color: #686868;
}

.comment dd {
    overflow: hidden;
    margin: 0px;
    border-bottom: 1px solid #ffffff;
    box-shadow: 0px 1px 0px #dcdcdc;
}

.comment .cbbox {
    margin: 3px 0;
    border: 1px solid #eae9d7;
    padding: 7px 14px;
    background: #f9f7e8;
}

    .comment .cbbox > p {
        overflow: hidden;
        margin: 0px 0px 10px;
    }

.comment .publish, .comment .pagenext > a {
    width: 100%;
    text-align: center;
}

.comment .form {
    clear: both;
    overflow: hidden;
    margin-bottom: 10px;
}






/*��վ���*/
.sitead {
    position: relative;
    margin: 0px auto;
}

    .sitead img {
        width: 100%;
    }
    .sitead .title {
    position:absolute;
    bottom:0px;
    width:inherit;
    background-color:rgba(0, 0, 0, 0.5);
    color:#ffffff;
    text-indent:10px;
    }
    .sitead > .dots {
        text-align: center;
        margin: auto;
        position: absolute;
        bottom: -10px;
        right: 5px;
        z-index: 200;
        width: auto!important;
    }

        .sitead > .dots > * {
            float: left;
            width: 8px!important;
            height: 8px!important;
        }

.sitead_paging {
    border-radius: 8px;
    background: #ccc;
}

.sitead_paging_selected {
    border-radius: 10px;
    background: #f00;
}

/*��վ��ͼ*/
.piclist {
    position: relative;
    text-align: center;
}

    .piclist > .dots {
        text-align: center;
        margin: auto;
        position: absolute;
        bottom: -10px;
        right: 5px;
        z-index: 200;
    }

        .piclist > .dots > * {
            float: left;
            width: 10px!important;
            height: 10px!important;
        }

.piclist_paging {
    border-radius: 10px;
    background: #ccc;
}

.piclist_paging_selected {
    border-radius: 10px;
    background: #f00;
}

.piclist #piclist_content > * {
    text-align: center;
}

.piclist #piclist_content img {
    margin: auto;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

/* ------------- �ֲ�ҳ�� ------------- */

/*��ҳ*/
.menuvice {
    border-top: solid 1px #750773;
border-bottom: solid 1px #750773;
    background-color:#a1189f;
    text-align:center;
}




            .menuvice a {
                display: inline-block;
                padding:0px 10px;
                line-height:2.5em;
                color:#ffffff;
            }


.listbox {
margin:5px;
}
    .listbox .title {
        border-top-right-radius:3px;
        border-top-left-radius:3px;
        padding:0px 10px;
            background-color: #e4d4e5;
        background-image: -webkit-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -moz-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -ms-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: -o-linear-gradient(#f7f2f7, #e4d4e5);
        background-image: linear-gradient(#f7f2f7, #e4d4e5);
        color:#8f0b8d;
        text-shadow: 1px 1px 0 #fff;
    }
        .listbox .title a {
            float:right;
        }

    .listbox .nl {
    background-color:#faf8fa;
    }
    .listbox .nl a {
    display:block;
    overflow:hidden;
    border-top:1px solid #ffffff;
    border-bottom:1px solid #dadada;
    height:2.5em;
    line-height:2.5em;
    text-indent:10px;
    
    }
        .listbox .nl a:hover {
        background-color:#f8e9f8;
        }
       .listbox .list.products,.listbox .list.videos {
    margin-left: 0px;}

   .listbox .list.products > *,.listbox .list.videos>* {
        border-left:0px;
    }
/* sitemap_view */
.view.sitemap {
    padding: 10px;
}

    .view.sitemap > ol {
        margin: 0px auto;
        padding: 0px;
        list-style: none;
        border: solid 1px #72767b;
        border-radius: 10px;
        width: 90%;
        padding: 10px;
        background-color: #eaeaea;
        background-image: -webkit-linear-gradient(#fafafa, #eaeaea);
        background-image: -moz-linear-gradient(#fafafa, #eaeaea);
        background-image: -ms-linear-gradient(#fafafa, #eaeaea);
        background-image: -o-linear-gradient(#fafafa, #eaeaea);
        background-image: linear-gradient(#fafafa, #eaeaea);
    }

    .view.sitemap li {
        padding-left: 10px;
        line-height: 35px;
        list-style: none;
    }

    .view.sitemap > ol li {
        counter-increment: item;
    }

        .view.sitemap > ol li:before {
            content: counter(item)". ";
            color: #6f943d;
        }

        .view.sitemap > ol li li {
            counter-increment: item2;
        }

            .view.sitemap > ol li li:before {
                content: counter(item)"."counter(item2)". ";
            }

            .view.sitemap > ol li li li {
                counter-increment: item3;
            }

                .view.sitemap > ol li li li:before {
                    content: counter(item)"."counter(item2)"."counter(item3)". ";
                }

                .view.sitemap > ol li li li li {
                    counter-increment: item4;
                }

                    .view.sitemap > ol li li li li:before {
                        content: counter(item)"."counter(item2)"."counter(item3)"."counter(item4)". ";
                    }

                    .view.sitemap > ol li li li li li {
                        counter-increment: item5;
                    }

                        .view.sitemap > ol li li li li li:before {
                            content: counter(item)"."counter(item2)"."counter(item3)"."counter(item4)"."counter(item5)". ";
                        }
/* sitemap_view End */

/* contact-view */
.contactus-view {
    padding: 15px;
}

    .contactus-view dl {
        line-height: 220%;
    }

    .contactus-view dt {
        font-size: 18px;
        padding-bottom: 10px;
        margin: 0;
    }

    .contactus-view dd > span {
        display: block;
        width: 70px;
        float: left;
        line-height: 170%;
        font-size: 16px;
        text-align: right;
    }

    .contactus-view dd a {
        line-height: 170%;
        font-size: 16px;
        position: relative;
    }

    .contactus-view .phone:before, .contactus-view .email:before, .contactus-view .map:before {
        content: " ";
        position: absolute;
        right: -35px;
        display: block;
        width: 25px;
        height: 25px;
        background-position: center;
        background-repeat: no-repeat;
    }

    .contactus-view .phone:before {
        background-image: url("../images/icon-18x18-tel.png");
    }

    .contactus-view .email:before {
        background-image: url("../images/icon-18x18-mael.png");
    }

    .contactus-view .map:before {
    }

    .contactus-view .button .phone span, .contactus-view .button .email span, .contactus-view .button .map span {
        display: inline-block;
        padding-left: 25px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
        color: #ccc;
        text-shadow: 1px 1px 0 #000000;
    }

        .contactus-view .button .phone span:before, .contactus-view .button .email span:before, .contactus-view .button .map span:before {
            font-size: 26px;
            padding-right: 5px;
        }
/* contact-view End */
