
/**
 * Base stylesheet
 *
 * Content:
 * 1. Global
 * 2. Basic elements/styles
 * 3. Typography
 * 4. Utility classes
 * 5. Generic shadows
 * 6. Generic bevel/emboss/gloss styles
 * 7. Generic effects
 * 8. Columns
 * 9. Lists & tags
 * 10. List arrows, count & sort handle
 * 11. Block arrows
 * 12. Generic elements
 * 13. Icons
 * 14. Main layout elements
 * 15. Menus styles
 * 16. Custom scrollbars
 * 17. Buttons
 * 18. Loaders
 * 19. Messages
 * 20. Tabs
 * 21. Notifications
 * 22. Tooltips
 * 23. Extra stuff
 */

/**
 * Z-index hierachy guide :
 *
 * Main elements
 * -------------
 * 1 : shortcuts (tablet and desktop) & menu (desktop)
 * 2 : main content
 * 3 : title bar
 * 4 : Menu opener
 * 5 : Shortcuts opener
 * 99 : shortcuts (mobile) & menu (mobile and tablet)
 *
 * Other styles
 * -------------
 * 88, 89 or 90 : Positioned elements at normal level
 * 98 or 99 : Positioned for menus, drop-down menus
 * 100 : Elements over drop-down menus
 * 1000 : Dragged elements
 * 999000 : scrollbars
 * 999100 : tooltips
 * 999200 : open selects
 * 999300 : modal windows
 * 999400 : notifications
 * 999500 : tooltips over modals and notifications
 * 999600 : open selects over modals and notifications
 */

/********************************************************/
/*                       1. Global                      */
/********************************************************/

html {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    tap-highlight-color: rgba(0,0,0,0);
    /*background: white*/;
}

body, button, input, textarea {
    font-family: lato;
    font-size: 12px;
    line-height: 16px;
    color: #666666;
    -webkit-text-size-adjust: none
}
input::-ms-clear {
    display: none;
}

/********************************************************/
/*               2. Basic elements/styles               */
/********************************************************/

#page_mask {
    /*visibility: visible;*/
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999400;
    background-color: #353535;
    opacity: 0.7;
}
    .page_maskimg{
     z-index: 999991;
     position:fixed;
     top:50%;
     left:50%;
     margin:-64px 0px 0px -64px;
}
/*p, ul, ol, dl {
    margin-bottom: 16px;
}*/

    ul.no-bullets,
    ul.unstyled-list {
        list-style-type: none;
        margin-left: 0;
    }

    ul.unstyled-list {
        margin-bottom: 0;
    }

    p:last-child,
    ul:last-child,
    ol:last-child,
    dl:last-child,
    fieldset:last-child,
    .fieldset:last-child {
        margin-bottom: 0;
    }
    /* IE7 */
    p.last-child,
    ul.last-child,
    ol.last-child {
        margin-bottom: 0;
    }

    ol > li {
        margin-top: 10px;
    }

        ol > li:first-child {
            margin-top: 0;
        }

a {
    text-decoration: none;
}

    /*a:hover {
        color: #0099ff;
    }*/

/*a[href="/Teacher/Deck"] {
     background: none !important;
}*/
 .fa.fa-edit.editimg {
       display: none !important;
   }
   #txtLessonTitle:hover {
       background: yellow;
   }
   #txtContentTitle:hover{
       background: yellow;
    }
small, .small {
    font-size: 11px;
    line-height: 13px;
    color: #999999;
}

    small.input-info,
    .small.input-info {
        font-size: 10px;
        font-weight: bold;
        text-transform: uppercase;
    }

.strong {
    font-weight: bold;
}

iframe {
    display: block;
}

.js noscript {
    display: none;
}


/********************************************************/
/*                    3. Typography                     */
/********************************************************/

/*h1, h2 {
    padding: 0;
  
}

h1 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 26px;
}

h2 {
    font-size: 24px;
    line-height: 28px;
    margin: 32px 0 22px;
}

h3 {
    font-size: 21px;
    line-height: 25px;
    margin: 30px 0 20px;
}

h4 {
    font-size: 16px;
    line-height: 19px;
    margin: 25px 0 15px;
}

h5 {
    margin: 20px 0 10px;
}

h6 {
    font-size: 11px;
    text-transform: uppercase;
}*/

    h2:first-child,
    h3:first-child,
    h4:first-child,
    h5:first-child,
    h6:first-child {
        margin-top: 0;
    }

.thin,
.thin h1,
.thin h2,
.thin h3,
.thin h4,
.thin h5,
.thin h6 {
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
}

.underline {
    padding-bottom: 0.15em;
    border-bottom: 1px solid;
}

/* Text styles */
.big-text {
    font-size: 18px;
    line-height: 24px;
}

.intro {
    font-style: italic;
    color: #afafaf;
}

/* Box styling */
.left-border {
    border-left: 2px solid;
    padding-left: 10px;
}

.right-border {
    border-right: 2px solid;
    padding-right: 10px;
    text-align: right;
}

.wrapped {
    display: block;
    border-width: 1px;
    border-style: solid;
    padding: 10px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.boxed {
    display: block;
    padding: 16px;
}


/********************************************************/
/*                  4. Utility classes                  */
/********************************************************/

/* Align */
.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

/* Floating elements */
.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-left {
    clear: left;
}

.clear-right {
    clear: right;
}

.clear-both {
    clear: both;
}

/* Padding */
.with-padding {
    padding: 20px 0px 20px 0px;
}

.with-mid-padding {
    padding: 10px !important;
}

.with-small-padding {
    padding: 5px !important;
}

.no-padding {
    padding: 0 !important;
}

/* Margins */
.large-margin-top {
    margin-top: 30px !important;
}

.margin-top {
    margin-top: 16px !important;
}

.mid-margin-top {
    margin-top: 8px !important;
}

.small-margin-top {
    margin-top: 4px !important;
}

.no-margin-top {
    margin-top: 0 !important;
}

.large-margin-right {
    margin-right: 30px !important;
}

.margin-right {
    margin-right: 16px !important;
}

.mid-margin-right {
    margin-right: 8px !important;
}

.small-margin-right {
    margin-right: 4px !important;
}

.no-margin-right {
    margin-right: 0 !important;
}

.large-margin-left {
    margin-left: 30px !important;
}

.margin-left {
    margin-left: 16px !important;
}

.mid-margin-left {
    margin-left: 16px !important;
}

.small-margin-left {
    margin-left: 4px !important;
}

.no-margin-left {
    margin-left: 0 !important;
}

.large-margin-bottom {
    margin-bottom: 30px !important;
}

.margin-bottom {
    margin-bottom: 16px !important;
}

.mid-margin-bottom {
    margin-bottom: 8px !important;
}

.small-margin-bottom {
    margin-bottom: 4px !important;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

/* Absolute positioning */
.relative {
    position: relative;
}

.absolute-left,
.absolute-right {
    position: absolute;
    top: 50%;
    margin-top: -8px;
}

.absolute-left {
    left: 0;
}

.absolute-right {
    right: 0;
}

/* This class disables mouse events on compatible browsers, a polyfill is provded in setup.js for others */
.no-pointer-events {
    pointer-events: none;
}

/* This class is only active if the device does not handle touch */
.no-touch .show-on-parent-hover {
    pointer-events: none;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transition: opacity 200ms;
    -moz-transition: opacity 200ms;
    -ms-transition: opacity 200ms;
    -o-transition: opacity 200ms;
    transition: opacity 200ms;
}

.no-touch :hover > .show-on-parent-hover {
    pointer-events: auto;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

/* Class used to determine which media queries are on */
#mediaquery-checker {
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
}

/* IE7 vertically aligned images fix */
.vert-align {
    display: inline;
    width: 0;
    margin-right: -4px;
}

/* Contextual elements */
.hidden-on-mobile,
.only-on-tablet,
.only-on-desktop {
    display: none;
}

.hidden-on-tablet,
.hidden-on-desktop,
.only-on-mobile {
    display: block;
}


/********************************************************/
/*                  5. Generic shadows                  */
/********************************************************/

.lite-box-shadow {
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.box-shadow {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.strong-box-shadow {
    -webkit-box-shadow: 0 1px 3px black;
    -moz-box-shadow: 0 1px 3px black;
    box-shadow: 0 1px 3px black;
}

.large-box-shadow {
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.45);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.45);
}

.lite-text-shadow {
    -webkit-text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    -moz-text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.text-shadow {
    -webkit-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    -moz-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.strong-text-shadow {
    -webkit-text-shadow: 0 1px 2px black;
    -moz-text-shadow: 0 1px 2px black;
    text-shadow: 0 1px 2px black;
}

.large-text-shadow {
    -webkit-text-shadow: 0 3px 8px rgba(0, 0, 0, 0.45);
    -moz-text-shadow: 0 3px 8px rgba(0, 0, 0, 0.45);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.45);
}

/********************************************************/
/*         6. Generic bevel/emboss/gloss styles         */
/********************************************************/

.top-bevel {
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.top-bevel-on-light {
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.top-bevel-on-dark {
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.bottom-bevel {
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.bottom-bevel-on-light {
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.bottom-bevel-on-dark {
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.bevel,
.bevel-subs > li,
.big-menu > li,
li.big-menu,
.calendar-menu > li,
li.calendar-menu,
.title-menu > li,
li.title-menu {
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.no-boxshadow .big-menu > li {
    border-bottom: 1px solid #666666;
}

.bevel-on-light,
.bevel-on-light-subs > li,
.message-menu > li,
li.message-menu {
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.bevel-on-dark,
.bevel-on-dark-subs > li,
#menu header,
#profile,
#access {
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.emboss,
.emboss-subs > li {
    -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.25);
}

.emboss-on-dark,
.emboss-on-dark-subs > li {
    -webkit-box-shadow: inset 0 1px 4px black;
    -moz-box-shadow: inset 0 1px 4px black;
    box-shadow: inset 0 1px 4px black;
}

.bright-text-bevel,
.big-menu,
.title-menu {
    -webkit-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    -moz-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.bright-text-bevel-on-dark,
#menu header,
#profile {
    -webkit-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    -moz-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.dark-text-bevel,
.calendar-menu > li,
li.calendar-menu,
.message-menu > li,
li.message-menu {
    -webkit-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
    -moz-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.dark-text-bevel-on-dark {
    -webkit-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
    -moz-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}


/********************************************************/
/*                  7. Generic effects                  */
/********************************************************/

.with-border {
    border-width: 1px;
    border-style: solid;
}

.glow,
#title-bar {
    position: relative;
}

    .glow:before,
    #title-bar:before {
        display: block;
        content: ' ';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        /*background: url(../img/effects/glow.png) no-repeat center center;*/
        pointer-events: none;
        -webkit-background-size: 100% 100%;
        -moz-background-size: 100% 100%;
        -o-background-size: 100% 100%;
        background-size: 100% 100%;
    }

/* Stripes */
.thin-stripes, .dark-thin-stripes,
.stripes, .dark-stripes,
.big-stripes, .dark-big-stripes {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    border-radius: inherit;
}

.thin-stripes,
.dark-thin-stripes {
    -webkit-background-size: 10px 10px;
    -moz-background-size: 10px 10px;
    background-size: 10px 10px;
}

.stripes,
.dark-stripes {
    -webkit-background-size: 20px 20px;
    -moz-background-size: 20px 20px;
    background-size: 20px 20px;
}

.big-stripes,
.dark-big-stripes {
    -webkit-background-size: 40px 40px;
    -moz-background-size: 40px 40px;
    background-size: 40px 40px;
}

.thin-stripes,
.stripes,
.big-stripes {
    background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0.25, rgba(255, 255, 255, 0.05)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.05)), color-stop(0.75, rgba(255, 255, 255, 0.05)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-image: -ms-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
}

.no-cssgradients .thin-stripes {
    background-image: url(../img/old-browsers/stripes-white-10.png);
}

.no-cssgradients .stripes {
    background-image: url(../img/old-browsers/stripes-white-20.png);
}

.no-cssgradients .big-stripes {
    background-image: url(../img/old-browsers/stripes-white-40.png);
}

.dark-thin-stripes,
.dark-stripes,
.dark-big-stripes {
    background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0.25, rgba(0, 0, 0, 0.05)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(0, 0, 0, 0.05)), color-stop(0.75, rgba(0, 0, 0, 0.05)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 75%, transparent 75%, transparent);
    background-image: -ms-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 75%, transparent 75%, transparent);
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 75%, transparent 75%, transparent);
}

.no-cssgradients .dark-thin-stripes {
    background-image: url(../img/old-browsers/stripes-black-10.png);
}

.no-cssgradients .dark-stripes {
    background-image: url(../img/old-browsers/stripes-black-20.png);
}

.no-cssgradients .dark-big-stripes {
    background-image: url(../img/old-browsers/stripes-black-40.png);
}

/* Animated stripes */
.thin-stripes.animated,
.dark-thin-stripes.animated {
    -webkit-animation: animate-thin-stripes 3s linear infinite;
    -moz-animation: animate-thin-stripes 3s linear infinite;
    -ms-animation: animate-thin-stripes 3s linear infinite;
    -o-animation: animate-thin-stripes 3s linear infinite;
}

.stripes.animated,
.dark-stripes.animated {
    -webkit-animation: animate-stripes 4s linear infinite;
    -moz-animation: animate-stripes 4s linear infinite;
    -ms-animation: animate-stripes 4s linear infinite;
    -o-animation: animate-stripes 4s linear infinite;
}

.big-stripes.animated,
.dark-big-stripes.animated {
    -webkit-animation: animate-big-stripes 5s linear infinite;
    -moz-animation: animate-big-stripes 5s linear infinite;
    -ms-animation: animate-big-stripes 5s linear infinite;
    -o-animation: animate-big-stripes 5s linear infinite;
}

@-webkit-keyframes animate-thin-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -20px 0;
    }
}

@-moz-keyframes animate-thin-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -20px 0;
    }
}

@-ms-keyframes animate-thin-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -20px 0;
    }
}

@-o-keyframes animate-thin-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -20px 0;
    }
}

@-webkit-keyframes animate-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -40px 0;
    }
}

@-moz-keyframes animate-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -40px 0;
    }
}

@-ms-keyframes animate-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -40px 0;
    }
}

@-o-keyframes animate-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -40px 0;
    }
}

@-webkit-keyframes animate-big-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -80px 0;
    }
}

@-moz-keyframes animate-big-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -80px 0;
    }
}

@-ms-keyframes animate-big-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -80px 0;
    }
}

@-o-keyframes animate-big-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -80px 0;
    }
}


/********************************************************/
/*                      8. Columns                      */
/********************************************************/

/* Columns */
/*.columns {
    margin-left: -2.25%;
}*/

    .columns:last-child {
        margin-bottom: -20px;
    }

    .columns > div,
    .columns > form {
        float: left;
        margin: 0 0 20px 2.25%;
    }

/* These styles define the columns size. They must be redefined for each responsive size */
.column,
.one-column,
.one-column-tablet,
.one-column-mobile,
.one-column-mobile-landscape,
.one-column-mobile-portrait {
    width: 6.0833%;
}

.two-columns,
.two-columns-tablet,
.two-columns-mobile,
.two-columns-mobile-landscape,
.two-columns-mobile-portrait {
    width: 14.4167%;
}

.three-columns,
.three-columns-tablet,
.three-columns-mobile,
.three-columns-mobile-landscape,
.three-columns-mobile-portrait {
    width: 22.75%;
}

.four-columns,
.four-columns-tablet,
.four-columns-mobile,
.four-columns-mobile-landscape,
.four-columns-mobile-portrait {
    width: 31.0833%;
}

.five-columns,
.five-columns-tablet,
.five-columns-mobile,
.five-columns-mobile-landscape,
.five-columns-mobile-portrait {
    width: 39.4167%;
}

.six-columns,
.six-columns-tablet,
.six-columns-mobile,
.six-columns-mobile-landscape,
.six-columns-mobile-portrait {
    width: 47.75%;
}

.seven-columns,
.seven-columns-tablet,
.seven-columns-mobile,
.seven-columns-mobile-landscape,
.seven-columns-mobile-portrait {
    width: 56.0833%;
}

.eight-columns,
.eight-columns-tablet,
.eight-columns-mobile,
.eight-columns-mobile-landscape,
.eight-columns-mobile-portrait {
    width: 64.4167%;
}

.nine-columns,
.nine-columns-tablet,
.nine-columns-mobile,
.nine-columns-mobile-landscape,
.nine-columns-mobile-portrait {
    width: 72.72%;
}

.ten-columns,
.ten-columns-tablet,
.ten-columns-mobile,
.ten-columns-mobile-landscape,
.ten-columns-mobile-portrait {
    width: 81.0833%;
}

.eleven-columns,
.eleven-columns-tablet,
.eleven-columns-mobile,
.eleven-columns-mobile-landscape,
.eleven-columns-mobile-portrait {
    width: 89.4167%;
}

.twelve-columns,
.twelve-columns-tablet,
.twelve-columns-mobile,
.twelve-columns-mobile-landscape,
.twelve-columns-mobile-portrait {
    width: 97.75%;
}

/* Line breaks to ensure correct float */
.new-row,
.new-row-mobile,
.new-row-mobile-portrait {
    clear: left;
}

/* Fixed columns */
.left-column-200px .left-column,
.right-column-200px .right-column {
    margin-bottom: 20px;
}

/* Content panels */
.content-panel,
.content-panel.mobile-panels {
    border: 1px solid #cccccc;
    position: relative;
    overflow: hidden;
    padding-left: 0;
    zoom: 1;
}

.panel-navigation,
.mobile-panels > .panel-navigation {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: auto;
    border-right: 0;
    overflow: auto;
}

.panel-content {
    -webkit-box-shadow: inset 0 2px 9px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 2px 9px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 2px 9px rgba(0, 0, 0, 0.2);
    overflow: auto;
}

    .panel-content.linen,
    .panel-content.carbon {
        -webkit-box-shadow: inset 0 2px 9px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: inset 0 2px 9px rgba(0, 0, 0, 0.75);
        box-shadow: inset 0 2px 9px rgba(0, 0, 0, 0.75);
    }

/* Bar for controls */
.panel-control {
    display: block;
    padding: 5px;
    height: 30px;
    line-height: 30px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 1px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 1px 1px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 1px 1px rgba(0, 0, 0, 0.15);
}

.linen > .panel-control,
.carbon > .panel-control {
    -webkit-box-shadow: 0 2px 9px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0 2px 9px rgba(0, 0, 0, 0.75);
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.75);
}

/* Styles when js is enabled */
.enabled-panels > .panel-navigation,
.mobile-panels.enabled-panels > .panel-navigation {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: left 200ms, right 200ms;
    -moz-transition: left 200ms, right 200ms;
    -ms-transition: left 200ms, right 200ms;
    -o-transition: left 200ms, right 200ms;
    transition: left 200ms, right 200ms;
}

.enabled-panels.show-panel-content > .panel-navigation,
.mobile-panels.enabled-panels.show-panel-content > .panel-navigation {
    left: -100%;
    right: 100%;
}

.enabled-panels > .panel-content,
.mobile-panels.enabled-panels > .panel-content {
    width: 100%;
    margin-left: 100%;
    -webkit-transition: margin-left 200ms;
    -moz-transition: margin-left 200ms;
    -ms-transition: margin-left 200ms;
    -o-transition: margin-left 200ms;
    transition: margin-left 200ms;
}

.enabled-panels.show-panel-content > .panel-content,
.mobile-panels.enabled-panels.show-panel-content > .panel-content {
    margin-left: 0;
}

.mobile-panels > .panel-content > .back {
    display: block;
}


/********************************************************/
/*                    9. Lists & tags                   */
/********************************************************/

/* Bullet list */
.bullet-list {
    margin-left: 0;
    list-style-type: none;
}

    .bullet-list > li {
        padding-top: 10px;
        padding-left: 16px;
    }

        .bullet-list > li:first-child {
            padding-top: 0;
        }

        .bullet-list > li:before {
            display: block;
            float: left;
            width: 16px;
            margin: 1px 0 0 -16px;
            font-weight: normal;
            font-style: normal;
            font-family: 'EntypoRegular';
            content: '\f010';
            font-size: 25px;
            color: #cccccc;
        }
/* IE7 */
.bullet-list-before {
    display: block;
    float: left;
    width: 16px;
    margin: 1px 0 0 -16px;
    font-weight: normal;
    font-style: normal;
    font-family: 'EntypoRegular';
    font-size: 25px;
    color: #cccccc;
}

/* Definition lists */
.definition > dt {
    font-weight: bold;
    color: black;
    margin-bottom: 4px;
}

.definition > dd {
    font-style: italic;
    margin-bottom: 10px;
    padding-left: 16px;
}

/* Generic list style */
.list {
    list-style-type: none;
    margin-left: 0;
}

    .list > li,
    .list-link {
        padding: 4px 0;
        color: #808080;
        min-height: 16px;
        line-height: 16px;
    }

    .list.spaced > li,
    .list.spaced > li > .list-link {
        padding: 12px 0;
    }

    .list > li {
        border-top: 1px dotted #cccccc;
        position: relative;
    }

        .list > li:first-child {
            border-top: 0;
        }

.list-link {
    display: block;
    margin: -4px 0;
}

.list.spaced > li > .list-link {
    margin: -12px 0;
}

.list > li > strong,
.list-link > strong {
    color: black;
}

/* jQuery UI classes for sorting interaction */
.list > li.ui-state-highlight {
    background: url(../../img/textures/grid.png);
}

.list > li.ui-sortable-helper {
    background: white;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
    filter: alpha(opacity=75);
    -khtml-opacity: 0.75;
    -moz-opacity: 0.75;
    opacity: 0.75;
    -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.25);
    border-top: 1px dotted #cccccc;
    border-bottom: 1px dotted #cccccc;
}

/* Blocks list */
.blocks-list {
    margin-left: -5px;
    list-style-type: none;
}

    .blocks-list > li {
        float: left;
        margin: 0 0 5px 5px;
        padding: 3px 6px;
        border-width: 1px;
        border-style: solid;
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 1px 1px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 1px 1px rgba(0, 0, 0, 0.15);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 1px 1px rgba(0, 0, 0, 0.15);
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
    }

        .blocks-list > li > [class^="icon-"]:before,
        .blocks-list > li > [class*=" icon-"] {
            border: 1px solid transparent;
        }

/* Fixed sizes */
.fixed-size-50 > li {
    width: 36px;
}

.fixed-size-100 {
    margin-left: -7px;
}

    .fixed-size-100 > li {
        width: 86px;
        margin: 0 0 7px 7px;
    }

.fixed-size-150,
.fixed-size-200,
.fixed-size-250 {
    margin-left: -10px;
}

    .fixed-size-150 > li {
        width: 136px;
        margin: 0 0 10px 10px;
    }

    .fixed-size-200 > li {
        width: 186px;
        margin: 0 0 10px 10px;
    }

    .fixed-size-250 > li {
        width: 236px;
        margin: 0 0 10px 10px;
    }

/* Square sizes */
.square-26 > li {
    text-align: center;
    padding: 4px;
    width: 16px;
    height: 16px;
    line-height: 16px;
}

.square-46 {
    margin-left: -7px;
}

    .square-46 > li {
        text-align: center;
        padding: 6px;
        width: 32px;
        height: 32px;
        line-height: 32px;
        margin: 0 0 7px 7px;
    }

.square-66,
.square-90,
.square-134 {
    margin-left: -10px;
}

    .square-66 > li {
        text-align: center;
        padding: 8px;
        width: 48px;
        height: 48px;
        line-height: 48px;
        margin: 0 0 10px 10px;
    }

    .square-90 > li {
        text-align: center;
        padding: 12px;
        width: 64px;
        height: 64px;
        line-height: 64px;
        margin: 0 0 10px 10px;
    }

    .square-134 > li {
        text-align: center;
        padding: 18px;
        width: 96px;
        height: 96px;
        line-height: 96px;
        margin: 0 0 10px 10px;
    }

/* Version history */
.version-history {
    margin: 0 0 20px 0;
    padding: 0;
    list-style-type: none;
}

    .version-history > li {
        margin: 0 0 7px 0;
        padding: 0 0 0 62px;
        zoom: 1;
    }

.version-new,
.version-fixed,
.version-upgraded {
    float: left;
    font-size: 10px;
    margin-left: -62px;
    width: 55px;
    color: white;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.version-new {
    background: #7dc35b;
}

.version-fixed {
    background: #e9a130;
}

.version-upgraded {
    background: #61b3de;
}

/* Tags */
.tag {
    padding: 0 4px 2px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.ie9 .tag {
    padding: 1px 4px;
}

small.tag {
    font-size: 10px;
    line-height: 14px;
    text-transform: uppercase;
    padding: 0 2px;
    vertical-align: 1px;
    border-width: 1px;
    border-style: solid;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}


/********************************************************/
/*         10. List arrows, count & sort handle         */
/********************************************************/

/* Arrows */
.with-left-arrow,
.with-right-arrow,
.tabs > li > a {
    position: relative;
}

    .with-left-arrow:after,
    .with-right-arrow:after,
    .tabs > li > a:after {
        display: block;
        content: '';
        width: 15px;
        height: 20px;
        position: absolute;
        top: 50%;
        margin: -11px 15px 0 0;
        padding: 0;
        border: 0;
    }
/* IE7 */
.with-arrow-after {
    display: block;
    width: 15px !important;
    height: 20px !important;
    position: absolute !important;
    top: 50%;
    margin: -11px 0 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.with-left-arrow:after {
    left: 7px;
    background: url(../img/standard/sprites.png) no-repeat -209px 0;
}
/* IE7 */
.with-left-arrow > .with-arrow-after {
    left: 7px;
    background: url(../img/standard/sprites.png) no-repeat -209px 0;
}

.with-right-arrow:after,
.tabs > li > a:after {
    right: 0px;
    background: url(../img/standard/sprites.png) no-repeat -224px 0;
}
/* IE7 */
.with-right-arrow > .with-arrow-after,
.tabs > li > a > .with-arrow-after {
    right: 0px;
    background: url(../img/standard/sprites.png) no-repeat -224px 0;
}

/* Variations */
.with-left-arrow.grey-arrow:after {
    background-position: -209px -20px;
}

.with-left-arrow.black-arrow:after {
    background-position: -209px -40px;
}

.with-right-arrow.grey-arrow:after,
.tabs > li > a:after {
    background-position: -224px -20px;
}

.with-right-arrow.black-arrow:after {
    background-position: -224px -40px;
}
/* IE7 */
.with-left-arrow.grey-arrow > .with-arrow-after {
    background-position: -209px -20px;
}

.with-left-arrow.black-arrow > .with-arrow-after {
    background-position: -209px -40px;
}

.with-right-arrow.grey-arrow > .with-arrow-after,
.tabs > li > a > .with-arrow-after {
    background-position: -224px -20px;
}

.with-right-arrow.black-arrow > .with-arrow-after {
    background-position: -224px -40px;
}

/* Arrow up */
.arrow-up:after {
    background-position: -239px 0;
    width: 20px;
    height: 15px;
    margin: -8px -2px 0 -2px;
}

.arrow-up.grey-arrow:after {
    background-position: -239px -15px;
}

.arrow-up.black-arrow:after {
    background-position: -239px -30px;
}
/* IE7 */
.arrow-up > .with-arrow-after {
    background-position: -239px 0;
    width: 20px !important;
    height: 15px !important;
    margin: -8px -2px 0 -2px !important;
}

.arrow-up.grey-arrow > .with-arrow-after {
    background-position: -239px -15px;
}

.arrow-up.black-arrow > .with-arrow-after {
    background-position: -239px -30px;
}

/* Arrow down */
.arrow-down:after {
    background-position: -259px 0;
    width: 20px;
    height: 15px;
    margin: -8px -2px 0 -2px;
}

.arrow-down.grey-arrow:after {
    background-position: -259px -15px;
}

.arrow-down.black-arrow:after {
    background-position: -259px -30px;
}
/* IE7 */
.arrow-down > .with-arrow-after {
    background-position: -259px 0;
    width: 20px !important;
    height: 15px !important;
    margin: -8px -2px 0 -2px !important;
}

.arrow-down.grey-arrow > .with-arrow-after {
    background-position: -259px -15px;
}

.arrow-down.black-arrow > .with-arrow-after {
    background-position: -259px -30px;
}

/* Count */
.list-count {
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: 13px;
    line-height: 16px;
    height: 16px;
    padding: 1px 6px;
    margin: -9px 0;
    min-width: 11px;
    text-align: center;
    background: url(../img/old-browsers/grey20.png);
    background: rgba(128, 128, 128, 0.2);
    -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.5);
    -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.5);
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
    -webkit-text-shadow: none;
    -moz-text-shadow: none;
    text-shadow: none;
}

.with-right-arrow > .list-count, .with-right-arrow > a > .list-count, .with-right-arrow > span > .list-count,
.tabs > li > .list-count, .tabs > li > a > .list-count, .tabs > li > span > .list-count {
    right: 15px;
}

.no-boxshadow .list-count {
    padding: 0 6px;
    border: 1px solid white;
}

/* Sort handle */
.list-sort {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -4px;
    width: 11px;
    height: 8px;
    background: url(../img/standard/sprites.png) no-repeat -154px 0;
    cursor: move;
}


/********************************************************/
/*                   11. Block arrows                   */
/********************************************************/

.block-arrow {
    display: block;
    width: 0;
    height: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    margin: 1px 0 0 -6px;
    border: 6px solid transparent;
    border-top-color: inherit;
    //border-top-color:expression(this.parentNode.currentStyle['border-top-color']);
}

    .block-arrow > span {
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        margin: -7px -6px -5px -6px;
        border: 6px solid transparent;
        border-top-color: #e4e7eb;
    }

.silver-gradient > .block-arrow > span {
    border-top-color: #d6dadf;
}

.translucid > .block-arrow > span, .notification > .block-arrow > span,
.black-gradient > .block-arrow > span {
    border-top-color: #000000;
}

.anthracite-gradient > .block-arrow > span {
    border-top-color: #404040;
}

.grey-gradient > .block-arrow > span {
    border-top-color: #939393;
}

.red-gradient > .block-arrow > span {
    border-top-color: #d52607;
}

.orange-gradient > .block-arrow > span {
    border-top-color: #ff9e00;
}

.green-gradient > .block-arrow > span {
    border-top-color: #87ba17;
}

.blue-gradient > .block-arrow > span {
    border-top-color: #00438d;
}

.block-arrow.top {
    top: auto;
    left: 50%;
    bottom: 100%;
    margin: 0 0 1px -6px;
    border-top-color: transparent;
    border-bottom-color: inherit;
    //border-bottom-color:expression(this.parentNode.currentStyle['border-bottom-color']);
}

    .block-arrow.top > span {
        margin: -5px -6px -7px -6px;
        border-top-color: transparent;
        border-bottom-color: #f7f7fa;
    }

.silver-gradient > .block-arrow.top > span {
    border-bottom-color: #efeff4;
}

.translucid > .block-arrow.top > span, .notification > .block-arrow.top > span,
.black-gradient > .block-arrow.top > span {
    border-bottom-color: #333333;
}

.anthracite-gradient > .block-arrow.top > span {
    border-bottom-color: #565656;
}

.grey-gradient > .block-arrow.top > span {
    border-bottom-color: #b3b3b3;
}

.red-gradient > .block-arrow.top > span {
    border-bottom-color: #e24913;
}

.orange-gradient > .block-arrow.top > span {
    border-bottom-color: #ffb900;
}

.green-gradient > .block-arrow.top > span {
    border-bottom-color: #a7cf34;
}

.blue-gradient > .block-arrow.top > span {
    border-bottom-color: #006aac;
}

.block-arrow.right {
    top: 50%;
    left: 100%;
    margin: -6px 0 0 1px;
    border-top-color: transparent;
    border-left-color: inherit;
    //border-left-color:expression(this.parentNode.currentStyle['border-left-color']);
}

    .block-arrow.right > span {
        margin: -6px -5px -6px -7px;
        border-top-color: transparent;
        border-left-color: #eeeff2;
    }

.silver-gradient > .block-arrow.right > span {
    border-left-color: #e3e4ea;
}

.translucid > .block-arrow.right > span, .notification > .block-arrow.right > span,
.black-gradient > .block-arrow.right > span {
    border-left-color: #1a1a1a;
}

.anthracite-gradient > .block-arrow.right > span {
    border-left-color: #4b4b4b;
}

.grey-gradient > .block-arrow.right > span {
    border-left-color: #a3a3a3;
}

.red-gradient > .block-arrow.right > span {
    border-left-color: #db370c;
}

.orange-gradient > .block-arrow.right > span {
    border-left-color: #ffac00;
}

.green-gradient > .block-arrow.right > span {
    border-left-color: #97c526;
}

.blue-gradient > .block-arrow.right > span {
    border-left-color: #00569c;
}

.block-arrow.left {
    top: 50%;
    left: auto;
    right: 100%;
    margin: -6px 1px 0 0;
    border-top-color: transparent;
    border-right-color: inherit;
    //border-right-color:expression(this.parentNode.currentStyle['border-right-color']);
}

    .block-arrow.left > span {
        margin: -6px -7px -6px -5px;
        border-top-color: transparent;
        border-right-color: #eeeff2;
    }

.silver-gradient > .block-arrow.left > span {
    border-right-color: #e3e4ea;
}

.translucid > .block-arrow.left > span, .notification > .block-arrow.left > span,
.black-gradient > .block-arrow.left > span {
    border-right-color: #1a1a1a;
}

.anthracite-gradient > .block-arrow.left > span {
    border-right-color: #4b4b4b;
}

.grey-gradient > .block-arrow.left > span {
    border-right-color: #a3a3a3;
}

.red-gradient > .block-arrow.left > span {
    border-right-color: #db370c;
}

.orange-gradient > .block-arrow.left > span {
    border-right-color: #ffac00;
}

.green-gradient > .block-arrow.left > span {
    border-right-color: #97c526;
}

.blue-gradient > .block-arrow.left > span {
    border-right-color: #00569c;
}


/********************************************************/
/*                 12. Generic elements                 */
/********************************************************/

/* Count & close */
.count,
.close {
    position: absolute;
    z-index: 88;
    top: 0;
    padding: 0 2px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 16px;
    font-weight: bold;
    height: 16px;
    min-width: 12px;
    text-align: center;
    -webkit-background-clip: padding-box;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
    border-width: 1px;
    border-style: solid;
    font-weight: bold;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 1px 3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 1px 3px rgba(0, 0, 0, 0.75);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 1px 3px rgba(0, 0, 0, 0.75);
    -webkit-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    -moz-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

    .count.simpler,
    .close.simpler {
        border-color: #808080;
        background: #808080;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        -webkit-text-shadow: none;
        -moz-text-shadow: none;
        text-shadow: none;
    }

.count {
    right: 6%;
    margin: -10px 0 0 0;
}

.close {
    cursor: pointer;
}

.count.right,
.count.inset,
.close {
    right: 0;
    margin: -10px -10px 0 0;
}

    .count.left,
    .close.left {
        right: auto;
        left: 0;
        margin: -10px 0 0 -10px;
    }

    .count.inset,
    .close.inset {
        margin: 4px 4px 0 0;
    }

    .count.left.inset,
    .close.left.inset {
        margin: 4px 0 0 4px;
    }

#access > li > .count,
#access > li > a > .count {
    right: 50%;
    margin: 10px -25px 0 0;
}

#access > li > a > .count {
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -ms-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms;
}

#access > li > a:hover > .count {
    margin-top: 6px;
}

/* Blocks */
.block, details.details {
    border: 1px solid #bfbfbf;
    position: relative;
    background-color: white;
    color: #666666;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
}

    .block-title, details.details > summary {
        display: block;
        position: relative;
        padding: 18px 19px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        cursor: pointer;
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 1px 1px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 1px 1px rgba(0, 0, 0, 0.15);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 1px 1px rgba(0, 0, 0, 0.15);
        -webkit-text-shadow: 0 1px 0 white;
        -moz-text-shadow: 0 1px 0 white;
        text-shadow: 0 1px 0 white;
    }

.block-title {
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

details.details > summary {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

details.details.open > summary,
html.details details.details[open] > summary {
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-bottomright: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

details.details > summary:before {
    content: '►';
    padding-right: 5px;
}

html.details details.details > summary:before {
    display: none;
}

details.details.open > summary:before {
    content: '▼';
}

h3.block-title {
    padding: 15px 19px;
    margin: 0;
}

.block-title > h3,
details.details > summary > h3 {
    padding: 0;
    margin: -3px 0;
}

.block-title > .absolute-right {
    right: 17px;
}

/* Accordions */
.accordion {
    border: 1px solid #bfbfbf;
    position: relative;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

    .accordion > dt {
        display: block;
        position: relative;
        padding: 10px 11px;
        border-top-width: 1px;
        border-top-style: solid;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        cursor: pointer;
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 1px 1px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 1px 1px rgba(0, 0, 0, 0.15);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 1px 1px rgba(0, 0, 0, 0.15);
    }

        .accordion > dt:first-child {
            border-top-width: 0;
            -webkit-border-top-left-radius: 5px;
            -webkit-border-top-right-radius: 5px;
            -moz-border-radius-topleft: 5px;
            -moz-border-radius-topright: 5px;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }

        .accordion > dt.closed {
            margin-bottom: -1px;
        }

            .accordion > dt.closed:last-of-type {
                border-bottom-width: 0;
                margin-bottom: 0;
                -webkit-border-bottom-left-radius: 5px;
                -webkit-border-bottom-right-radius: 5px;
                -moz-border-radius-bottomleft: 5px;
                -moz-border-radius-bottomright: 5px;
                border-bottom-left-radius: 5px;
                border-bottom-right-radius: 5px;
            }

/* Ribbon, from Chris Coyer CSS Tricks : http://css-tricks.com/snippets/css/corner-ribbon */
.ribbon {
    display: block;
    width: 85px;
    height: 88px;
    overflow: hidden;
    position: absolute;
    z-index: 88;
    top: -5px;
    right: -5px;
}

.no-csstransforms .ribbon {
    width: 70px;
    height: 46px;
}

.ribbon.tiny {
    width: 43px;
    height: 44px;
    top: -4px;
    right: -4px;
}

.no-csstransforms .ribbon.tiny {
    width: 40px;
    height: 23px;
}

.ribbon-inner {
    display: block;
    font-weight: bold;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: relative;
    padding: 7px 0;
    left: -7px;
    top: 17px;
    width: 120px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-text-shadow: rgba(0, 0, 0, 0.25) 0 1px 1px;
    -moz-text-shadow: rgba(0, 0, 0, 0.25) 0 1px 1px;
    text-shadow: rgba(0, 0, 0, 0.25) 0 1px 1px;
}

.no-csstransforms .ribbon-inner {
    left: -25px;
}

.tiny > .ribbon-inner {
    font-size: 10px;
    line-height: 10px;
    padding: 3px 0;
    left: -2px;
    top: 7px;
    width: 60px;
}

.no-csstransforms .tiny > .ribbon-inner {
    left: -9px;
}

.ribbon-inner:before,
.ribbon-inner:after {
    content: '';
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid;
    border-top-color: inherit;
    position: absolute;
    bottom: -3px;
}

.tiny > .ribbon-inner:before,
.tiny > .ribbon-inner:after {
    border-left-width: 2px;
    border-right-width: 2px;
    border-top-width: 2px;
    bottom: -2px;
}

.ribbon-inner:before {
    left: 1px;
}

.ribbon-inner:after {
    right: 1px;
}

/* Meter bars */
.meter {
    display: inline-block;
    height: 11px;
    line-height: 11px;
    width: 4px;
    margin-left: -2px;
    *margin-left: 2px;
    *vertical-align: middle;
    background: #999999 url(../img/old-browsers/style/bg_meter.png) repeat-x;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#808080), to(#999999));
    background: -webkit-linear-gradient(top, #808080, #999999);
    background: -moz-linear-gradient(top, #808080, #999999);
    background: -ms-linear-gradient(top, #808080, #999999);
    background: -o-linear-gradient(top, #808080, #999999);
    background: linear-gradient(top, #808080, #999999);
    -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.75), 0 1px 0 rgba(255, 255, 255, 0.25);
    -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.75), 0 1px 0 rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.75), 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Information spot */
.info-spot {
    display: inline-block;
    width: 16px;
    height: 16px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 16px;
    font-weight: normal;
    vertical-align: middle;
    *vertical-align: baseline;
    position: relative;
    margin: -1px 0 1px;
    -webkit-text-shadow: none;
    -moz-text-shadow: none;
    text-shadow: none;
    cursor: help;
}

    .info-spot > [class^="icon-"],
    .info-spot > [class*=" icon-"] {
        position: absolute;
        font-size: 17px;
        top: 0;
        left: 1px;
    }

    .info-spot:hover > [class^="icon-"],
    .info-spot:hover > [class*=" icon-"] {
        color: white;
        z-index: 99;
    }

.info-bubble {
    display: none;
    position: absolute;
    z-index: 98;
    top: -5px;
    left: 15px;
    min-width: 250px;
    padding: 8px 11px;
    background: #4c4c4c;
    color: white;
    text-align: left;
    -webkit-border-radius: 5px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 0 5px 5px 5px;
    border-radius: 0 5px 5px 5px;
}

.info-spot:hover > .info-bubble {
    display: block;
}

.info-bubble:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 26px;
    width: 21px;
    background-color: inherit;
    -webkit-border-top-left-radius: 13px;
    -webkit-border-bottom-left-radius: 13px;
    -moz-border-radius: 13px 0 0 13px;
    border-radius: 13px 0 0 13px;
}
/* IE7 */
.info-bubble-before {
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 26px;
    width: 21px;
    //background-color:expression(this.parentNode.currentStyle['background-color']);
}

/* Flipped */
.on-top > .info-bubble {
    top: auto;
    bottom: -5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius: 5px 5px 5px 0;
    border-radius: 5px 5px 5px 0;
}

    .on-top > .info-bubble:before {
        top: auto;
        bottom: 0;
    }
    /* IE7 */
    .on-top > .info-bubble > .info-bubble-before {
        top: auto;
        bottom: 0;
    }

.on-left > .info-bubble {
    left: auto;
    right: 15px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 5px 0 5px 5px;
    border-radius: 5px 0 5px 5px;
}

    .on-left > .info-bubble:before {
        right: auto;
        left: 100%;
        -webkit-border-radius: 0;
        -webkit-border-top-right-radius: 13px;
        -webkit-border-bottom-right-radius: 13px;
        -moz-border-radius: 0 13px 13px 0;
        border-radius: 0 13px 13px 0;
    }
    /* IE7 */
    .on-left > .info-bubble > .info-bubble-before {
        right: auto;
        left: 100%;
    }

.on-top.on-left > .info-bubble {
    left: auto;
    right: 15px;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius: 5px 5px 0 5px;
    border-radius: 5px 5px 0 5px;
}
    /* IE7 */
    .on-top.on-left > .info-bubble > .info-bubble-before {
        left: auto;
        right: 15px;
    }

/* Touch screen do not handle hover correctly, the text is shown on an modal */
.js.touch .info-spot:hover > [class^="icon-"],
.js.touch .info-spot:hover > [class*=" icon-"] {
    color: inherit;
}

.js.touch .info-spot:hover > .info-bubble {
    display: none;
}

/********************************************************/
/*                       13. Icons                      */
/********************************************************/

@font-face {
    font-family: 'EntypoRegular';
    src: url('Entypo/entypo-webfont.eot');
    src: url('Entypo/entypo-webfont.eot?#iefix') format('embedded-opentype'), url('Entypo/entypo-webfont.woff') format('woff'), url('Entypo/entypo-webfont.ttf') format('truetype'), url('Entypo/entypo-webfont.svg#EntypoRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
    display: inline-block;
    font-weight: normal;
    font-style: normal;
    font-family: 'EntypoRegular';
    font-size: 2em;
    line-height: 1em;
    margin: -0.5em 0.115em -0.5em -0.077em;
}

.button.icon:before, .button > .icon:before,
.button-icon.icon:before, .button-icon > .icon:before {
    font-size: 2.3em;
    margin-top: -0.65em;
    margin-bottom: -0.65em;
}

/* Sizes */
.icon-size2:before {
    font-size: 3.5em;
    margin-top: -1.25em;
    margin-bottom: -1.25em;
    vertical-align: middle;
}

.icon-size3:before {
    font-size: 4.5em;
    margin-top: -1.75em;
    margin-bottom: -1.75em;
    vertical-align: middle;
}

.icon-size4:before {
    font-size: 7em;
    margin-top: -3em;
    margin-bottom: -3em;
    vertical-align: middle;
}

.icon-size5:before {
    font-size: 10em;
    margin-top: -4.5em;
    margin-bottom: -4.5em;
    vertical-align: middle;
}

/* IE9 and 10 go crazy with relative font-sizes */
:root .icon-size2:before,
:root .icon-size3:before,
:root .icon-size4:before,
:root .icon-size5:before {
    font-size: 0.25em \0/IE9; /* Ugly hack, but this is the only solution to target IE10 */
}

/* Empty icons */
[class^="icon-"]:empty:before,
[class*=" icon-"]:empty:before {
    margin-right: -0.077em;
    margin-left: -0.077em;
}

/* IE7 */
.font-icon {
    font-weight: normal;
    font-style: normal;
    font-family: 'EntypoRegular';
    font-size: 2em;
    margin: -0.5em 0.115em -0.5em -0.077em;
    vertical-align: middle;
}

    .font-icon.empty {
        margin-right: -2px;
        margin-left: -2px;
    }
/* Sizes */
.icon-size2 > .font-icon {
    font-size: 3.5em;
    margin-top: -1.25em;
    margin-bottom: -1.25em;
    vertical-align: middle;
}

.icon-size3 > .font-icon {
    font-size: 4.5em;
    margin-top: -1.75em;
    margin-bottom: -1.75em;
    vertical-align: middle;
}

.icon-size4 > .font-icon {
    font-size: 7em;
    margin-top: -3em;
    margin-bottom: -3em;
    vertical-align: middle;
}

.icon-size5 > .font-icon {
    font-size: 10em;
    margin-top: -4.5em;
    margin-bottom: -4.5em;
    vertical-align: middle;
}

/* IE8 */
[class^="icon-"].font-icon-empty:before,
[class*=" icon-"].font-icon-empty:before {
    margin-right: -0.077em;
    margin-left: -0.077em;
}

.left-icon {
    padding-left: 20px;
    position: relative;
    min-height: 16px;
}

.wrapped.left-icon {
    padding-left: 30px;
}

.boxed.left-icon {
    padding-left: 36px;
}

.big-left-icon {
    padding-left: 38px;
    position: relative;
    min-height: 32px;
}

.wrapped.big-left-icon {
    padding-left: 48px;
}

.boxed.big-left-icon {
    padding-left: 54px;
}

.huge-left-icon {
    padding-left: 68px;
    position: relative;
    min-height: 64px;
}

.wrapped.huge-left-icon {
    padding-left: 78px;
}

.boxed.huge-left-icon {
    padding-left: 84px;
}

.left-icon:before,
.big-left-icon:before,
.huge-left-icon:before {
    position: absolute;
    display: block;
    margin: 0;
}

.left-icon:before {
    top: 0;
    left: -1px;
    font-size: 30px;
    line-height: 18px;
}

.wrapped.left-icon:before {
    top: 10px;
    left: 9px;
}

.boxed.left-icon:before {
    top: 16px;
    left: 15px;
}

.big-left-icon:before {
    top: -1px;
    left: -2px;
    font-size: 60px;
    line-height: 36px;
}

.wrapped.big-left-icon:before {
    top: 9px;
    left: 8px;
}

.boxed.big-left-icon:before {
    top: 15px;
    left: 14px;
}

.huge-left-icon:before {
    top: -3px;
    left: -5px;
    font-size: 120px;
    line-height: 72px;
}

.wrapped.huge-left-icon:before {
    top: 7px;
    left: 5px;
}

.boxed.huge-left-icon:before {
    top: 13px;
    left: 11px;
}

.icon-plus:before {
    content: '\f016';
}

.icon-minus:before {
    content: '\f019';
}

.icon-info:before {
    content: '\f01e';
}

.icon-left-thin:before {
    content: '\f08d';
}

.icon-up-thin:before {
    content: '\f08f';
}

.icon-right-thin:before {
    content: '\f08e';
}

.icon-down-thin:before {
    content: '\f08c';
}

.icon-level-up:before {
    content: '\f094';
}

.icon-level-down:before {
    content: '\f093';
}

.icon-switch:before {
    content: '\f097';
}

.icon-infinity:before {
    content: '\f0c3';
}

.icon-squared-plus:before {
    content: '\f018';
}

.icon-squared-minus:before {
    content: '\f01b';
}

.icon-home:before {
    content: '\f022';
}

.icon-keyboard:before {
    content: '\f03b';
}

.icon-erase:before {
    content: '\f0c4';
}

.icon-pause:before {
    content: '\f09a';
}

.icon-forward:before {
    content: '\f09e';
}

.icon-backward:before {
    content: '\f09f';
}

.icon-next:before {
    content: '\f09c';
}

.icon-previous:before {
    content: '\f09d';
}

.icon-hourglass:before {
    content: '\f064';
}

.icon-stop:before {
    content: '\f099';
}

.icon-triangle-up:before {
    content: '\f087';
}

.icon-play:before {
    content: '\f098';
}

.icon-triangle-right:before {
    content: '\f086';
}

.icon-triangle-down:before {
    content: '\f084';
}

.icon-triangle-left:before {
    content: '\f085';
}

.icon-adjust:before {
    content: '\f068';
}

.icon-cloud:before {
    content: '\f0b3';
}

.icon-star:before {
    content: '\f008';
}

.icon-star-empty:before {
    content: '\f009';
}

.icon-cup:before {
    content: '\f047';
}

.icon-list:before {
    content: '\f011';
}

.icon-moon:before {
    content: '\f0b6';
}

.icon-heart-empty:before {
    content: '\f007';
}

.icon-heart:before {
    content: '\f006';
}

.icon-music-note:before {
    content: '\f000';
}

.icon-beamed-note:before {
    content: '\f001';
}

.icon-thumbs:before {
    content: '\f010';
}

.menu-icon {
    margin-right: 10px !important;
    font-size: 20px !important;
    margin-left: 10px !important;
}

.menu-style {
   font-size: 16px;line-height: 26px;display: block;
}
.icon-flag:before {
    content: '\f02b';
}

.icon-tools:before {
    content: '\f057';
}

.icon-gear:before {
    content: '\f056';
}

.icon-warning:before {
    content: '\f03f';
}

.icon-lightning:before {
    content: '\f0b5';
}

.icon-record:before {
    content: '\f09b';
}

.icon-thunder-cloud:before {
    content: '\f0b4';
}

.icon-voicemail:before {
    content: '\f0c9';
}

.icon-plane:before {
    content: '\f0b7';
}

.icon-mail:before {
    content: '\f005';
}

.icon-pencil:before {
    content: '\f037';
}

.icon-feather:before {
    content: '\f038';
}

.icon-tick:before {
    content: '\f012';
}

.icon-cross:before {
    content: '\f013';
}

.icon-cross-round:before {
    content: '\f014';
}

.icon-squared-cross:before {
    content: '\f015';
}

.icon-question:before {
    content: '\f01c';
}

.icon-quote:before {
    content: '\f034';
}

.icon-plus-round:before {
    content: '\f017';
}

.icon-minus-round:before {
    content: '\f01a';
}

.icon-right:before {
    content: '\f082';
}

.icon-arrow:before {
    content: '\f045';
}

.icon-fwd:before {
    content: '\f033';
}

.icon-undo:before {
    content: '\f090';
}

.icon-redo:before {
    content: '\f091';
}

.icon-left:before {
    content: '\f081';
}

.icon-up:before {
    content: '\f083';
}

.icon-down:before {
    content: '\f080';
}

.icon-list-add:before {
    content: '\f0a7';
}

.icon-numbered-list:before {
    content: '\f0a6';
}

.icon-left-fat:before {
    content: '\f089';
}

.icon-right-fat:before {
    content: '\f08a';
}

.icon-up-fat:before {
    content: '\f08b';
}

.icon-down-fat:before {
    content: '\f088';
}

.icon-add-user:before {
    content: '\f00c';
}

.icon-question-round:before {
    content: '\f01d';
}

.icon-info-round:before {
    content: '\f01f';
}

.icon-eye:before {
    content: '\f027';
}

.icon-price-tag:before {
    content: '\f028';
}

.icon-cloud-upload:before {
    content: '\f030';
}

.icon-reply:before {
    content: '\f031';
}

.icon-reply-all:before {
    content: '\f032';
}

.icon-code:before {
    content: '\f035';
}

.icon-extract:before {
    content: '\f036';
}

.icon-printer:before {
    content: '\f039';
}

.icon-refresh:before {
    content: '\f03a';
}

.icon-speech:before {
    content: '\f03c';
}

.icon-chat:before {
    content: '\f03d';
}

.icon-card:before {
    content: '\f041';
}

.icon-directions:before {
    content: '\f042';
}

.icon-marker:before {
    content: '\f043';
}

.icon-map:before {
    content: '\f044';
}

.icon-compass:before {
    content: '\f046';
}

.icon-trash:before {
    content: '\f048';
}

.icon-page:before {
    content: '\f049';
}

.icon-page-list-inverted:before {
    content: '\f04d';
}

.icon-pages:before {
    content: '\f04a';
}

.icon-frame:before {
    content: '\f04b';
}

.icon-drawer:before {
    content: '\f052';
}

.icon-rss:before {
    content: '\f054';
}

.icon-path:before {
    content: '\f058';
}

.icon-cart:before {
    content: '\f05a';
}

.icon-shareable:before {
    content: '\f059';
}

.icon-login:before {
    content: '\f05d';
}

.icon-logout:before {
    content: '\f05e';
}

.icon-volume:before {
    content: '\f062';
}

.icon-expand:before {
    content: '\f06a';
}

.icon-reduce:before {
    content: '\f06b';
}

.icon-new-tab:before {
    content: '\f06c';
}

.icon-publish:before {
    content: '\f06d';
}

.icon-browser:before {
    content: '\f06e';
}

.icon-arrow-combo:before {
    content: '\f06f';
}

.icon-pie-chart:before {
    content: '\f0c5';
}

.icon-language:before {
    content: '\f0cb';
}

.icon-air:before {
    content: '\f0cf';
}

.icon-database:before {
    content: '\f0d4';
}

.icon-drive:before {
    content: '\f0d5';
}

.icon-bucket:before {
    content: '\f0d6';
}

.icon-thermometer:before {
    content: '\f0d7';
}

.icon-down-round:before {
    content: '\f070';
}

.icon-left-round:before {
    content: '\f071';
}

.icon-right-round:before {
    content: '\f072';
}

.icon-up-round:before {
    content: '\f073';
}

.icon-chevron-down:before {
    content: '\f074';
}

.icon-chevron-left:before {
    content: '\f075';
}

.icon-chevron-right:before {
    content: '\f076';
}

.icon-chevron-up:before {
    content: '\f077';
}

.icon-chevron-small-down:before {
    content: '\f078';
}

.icon-chevron-small-left:before {
    content: '\f079';
}

.icon-chevron-small-right:before {
    content: '\f07a';
}

.icon-chevron-small-up:before {
    content: '\f07b';
}

.icon-chevron-thin-down:before {
    content: '\f07c';
}

.icon-chevron-thin-left:before {
    content: '\f07d';
}

.icon-chevron-thin-right:before {
    content: '\f07e';
}

.icon-chevron-thin-up:before {
    content: '\f07f';
}

.icon-progress-0:before {
    content: '\f0a0';
}

.icon-progress-1:before {
    content: '\f0a1';
}

.icon-progress-2:before {
    content: '\f0a2';
}

.icon-progress-3:before {
    content: '\f0a3';
}

.icon-back-in-time:before {
    content: '\f0ab';
}

.icon-network:before {
    content: '\f0ae';
}

.icon-mailbox:before {
    content: '\f0b0';
}

.icon-download:before {
    content: '\f0b1';
}

.icon-buoy:before {
    content: '\f0ba';
}

.icon-tag:before {
    content: '\f0bb';
}

.icon-dot:before {
    content: '\f0be';
}

.icon-two-dots:before {
    content: '\f0bf';
}

.icon-ellipsis:before {
    content: '\f0c0';
}

.icon-suitcase:before {
    content: '\f0bd';
}

.icon-flow-cascade:before {
    content: '\f0d9';
}

.icon-flow-branch:before {
    content: '\f0da';
}

.icon-flow-tree:before {
    content: '\f0db';
}

.icon-flow-line:before {
    content: '\f0dc';
}

.icon-flow-parallel:before {
    content: '\f0dd';
}

.icon-brush:before {
    content: '\f0c1';
}

.icon-paper-plane:before {
    content: '\f0b8';
}

.icon-magnet:before {
    content: '\f0c2';
}

.icon-gauge:before {
    content: '\f0df';
}

.icon-traffic-cone:before {
    content: '\f0e0';
}

.icon-creative-commons:before {
    content: '\f0e1';
}

.icon-cc-by:before {
    content: '\f0e2';
}

.icon-cc-nc:before {
    content: '\f0e3';
}

.icon-cc-nc-eu:before {
    content: '\f0e4';
}

.icon-cc-nc-jp:before {
    content: '\f0e5';
}

.icon-cc-sa:before {
    content: '\f0e6';
}

.icon-cc-nd:before {
    content: '\f0e7';
}

.icon-cc-pd:before {
    content: '\f0e8';
}

.icon-cc-zero:before {
    content: '\f0e9';
}

.icon-cc-share:before {
    content: '\f0ea';
}

.icon-cc-remix:before {
    content: '\f0eb';
}

.icon-github:before {
    content: '\f0ec';
}

.icon-github-circled:before {
    content: '\f0ed';
}

.icon-flickr:before {
    content: '\f0ee';
}

.icon-flickr-circled:before {
    content: '\f0ef';
}

.icon-vimeo:before {
    content: '\f0f0';
}

.icon-vimeo-circled:before {
    content: '\f0f1';
}

.icon-twitter:before {
    content: '\f0f2';
}

.icon-twitter-circled:before {
    content: '\f0f3';
}

.icon-facebook:before {
    content: '\f0f4';
}

.icon-facebook-circled:before {
    content: '\f0f5';
}

.icon-facebook-squared:before {
    content: '\f0f6';
}

.icon-gplus:before {
    content: '\f0f7';
}

.icon-gplus-circled:before {
    content: '\f0f8';
}

.icon-pinterest:before {
    content: '\f0f9';
}

.icon-pinterest-circled:before {
    content: '\f0fa';
}

.icon-tumblr:before {
    content: '\f0fb';
}

.icon-tumblr-circled:before {
    content: '\f0fc';
}

.icon-linkedin:before {
    content: '\f0fd';
}

.icon-linkedin-circled:before {
    content: '\f0fe';
}

.icon-dribbble:before {
    content: '\f0ff';
}

.icon-dribbble-circled:before {
    content: '\f100';
}

.icon-stumbleupon:before {
    content: '\f101';
}

.icon-stumbleupon-circled:before {
    content: '\f102';
}

.icon-lastfm:before {
    content: '\f103';
}

.icon-lastfm-circled:before {
    content: '\f104';
}

.icon-rdio:before {
    content: '\f105';
}

.icon-rdio-circled:before {
    content: '\f106';
}

.icon-spotify:before {
    content: '\f107';
}

.icon-spotify-circled:before {
    content: '\f108';
}

.icon-qq:before {
    content: '\f109';
}

.icon-instagrem:before {
    content: '\f10a';
}

.icon-dropbox:before {
    content: '\f10b';
}

.icon-evernote:before {
    content: '\f10c';
}

.icon-flattr:before {
    content: '\f10d';
}

.icon-skype:before {
    content: '\f10e';
}

.icon-skype-circled:before {
    content: '\f10f';
}

.icon-renren:before {
    content: '\f110';
}

.icon-sina-weibo:before {
    content: '\f111';
}

.icon-paypal:before {
    content: '\f112';
}

.icon-picasa:before {
    content: '\f113';
}

.icon-soundcloud:before {
    content: '\f114';
}

.icon-mixi:before {
    content: '\f115';
}

.icon-behance:before {
    content: '\f116';
}

.icon-google-circles:before {
    content: '\f117';
}

.icon-vkontakte:before {
    content: '\f118';
}

.icon-smashing:before {
    content: '\f119';
}

.icon-db-shape:before {
    content: '\f11b';
}

.icon-bullet-list:before {
    content: '\f11a';
}

.icon-db-logo:before {
    content: '\f11c';
}

.icon-pictures:before {
    content: '\f00e';
}

.icon-globe:before {
    content: '\f0b2';
}

.icon-leaf:before {
    content: '\f0b9';
}

.icon-graduation-cap:before {
    content: '\f0ca';
}

.icon-mic:before {
    content: '\f05f';
}

.icon-palette:before {
    content: '\f0a5';
}

.icon-ticket:before {
    content: '\f0cc';
}

.icon-movie:before {
    content: '\f00d';
}

.icon-target:before {
    content: '\f0a4';
}

.icon-music:before {
    content: '\f002';
}

.icon-trophy:before {
    content: '\f0a9';
}

.icon-like:before {
    content: '\f02c';
}

.icon-unlike:before {
    content: '\f02d';
}

.icon-bag:before {
    content: '\f05b';
}

.icon-user:before {
    content: '\f00a';
}

.icon-users:before {
    content: '\f00b';
}

.icon-light-bulb:before {
    content: '\f065';
}

.icon-new:before {
    content: '\f040';
}

.icon-water:before {
    content: '\f0cd';
}

.icon-droplet:before {
    content: '\f0ce';
}

.icon-camera:before {
    content: "\f030";
}

.icon-credit-card:before {
    content: '\f0d0';
}

.icon-monitor:before {
    content: '\f0ac';
}

.icon-briefcase:before {
    content: '\f0bc';
}

.icon-save:before {
    content: '\f0d1';
}

.icon-cd:before {
    content: '\f0af';
}

.icon-folder:before {
    content: '\f051';
}

.icon-page-list {
    cursor: pointer;
}

.icon-view-progress {
    width: 15px!important;
    height: 16px!important;
    margin: 0 0.115em -0.05em 0.115em!important;
    background: url(../Images/check-progress.png) no-repeat center bottom/contain;
    background-position: center bottom!important;
}

.icon-page-list:before {
    content: '\f04c';
}

.icon-calendar:before {
    content: '\f05c';
}

.icon-line-graph:before {
    content: '\f0c6';
}

.icon-bar-graph:before {
    content: '\f0c7';
}

.icon-clipboard:before {
    content: '\f0d2';
}

.icon-paperclip:before {
    content: '\f024';
}

.icon-ribbons:before {
    content: '\f02a';
}

.icon-book:before {
    content: '\f050';
}

.icon-read:before {
    content: '\f04f';
}

.icon-phone:before {
    content: '\f055';
}

.icon-megaphone:before {
    content: '\f0d3';
}

.icon-outbox:before {
    content: '\f02f';
}

.icon-inbox:before {
    content: '\f02e';
}

.icon-box:before {
    content: '\f053';
}

.icon-newspaper:before {
    content: '\f04e';
}

.icon-mobile:before {
    content: '\f0ad';
}

.icon-wifi:before {
    content: '\f0a8';
}

.icon-camera:before {
    content: '\f00f';
}

.icon-swap:before {
    content: '\f095';
}

.icon-loop:before {
    content: '\f096';
}

.icon-cycle:before {
    content: '\f092';
}

.icon-light-down:before {
    content: '\f066';
}

.icon-light-up:before {
    content: '\f067';
}

.icon-mute:before {
    content: '\f060';
}

.icon-loud:before {
    content: '\f061';
}

.icon-battery:before {
    content: '\f0aa';
}

.icon-search:before {
    content: '\f003';
}

.icon-key:before {
    content: '\f0d8';
}

.icon-lock:before {
    content: '\f025';
}

.icon-unlock:before {
    content: '\f026';
}

.icon-bell:before {
    content: '\f03e';
}

.icon-ribbon:before {
    content: '\f029';
}

.icon-link:before {
    content: '\f023';
}

.icon-revert:before {
    content: '\f021';
}

.icon-flashlight:before {
    content: '\f004';
}

.icon-area-graph:before {
    content: '\f0c8';
}

.icon-clock:before {
    content: '\f063';
}

.icon-rocket:before {
    content: '\f0de';
}

.icon-forbidden:before {
    content: '\f069';
}


/********************************************************/
/*               14. Main layout elements               */
/********************************************************/

/* Black title bar */
#title-bar {
    height: 40px;
    line-height: 38px;
    text-align: center;
    z-index: 3;
    padding: 0 10px;
}

.fixed-title-bar > #title-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.with-shortcuts #title-bar {
    padding-left: 43px;
}

.reversed.with-shortcuts #title-bar {
    padding-left: 10px;
    padding-right: 43px;
}

.with-menu #title-bar {
    padding-right: 92px;
}

.reversed.with-menu #title-bar {
    padding-right: 10px;
    padding-left: 92px;
}

.reversed.with-shortcuts.with-menu #title-bar {
    padding-right: 43px;
    padding-left: 92px;
}

#title-bar h2 {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    line-height: 36px;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-text-shadow: 0 -1px 0 black;
    -moz-text-shadow: 0 -1px 0 black;
    text-shadow: 0 -1px 0 black;
}

#title-bar h2 label {
    font-size: 12px;
    font-weight: 400;
    float: right;
    display: inline-block; 
    margin-right: 30px;
}
#title-bar h2 label  i {
    margin-right: 10px;
}
#title-bar h2 label a {
    color: #0099CC;
}
#title-bar h2 label a:hover {
    color: #ccc;
}
/* Menu opener icon */
#open-menu, .open-menu {
    /*position:absolute;*/
    z-index: 4;
    top: 5px;
    right: 8px;
    -webkit-tap-highlight-color: transparent;
}

body.reversed #open-menu, body.reversed .open-menu {
    left: 8px;
    right: auto;
}

.fixed-title-bar > #open-menu, .fixed-title-bar > .open-menu {
    position: fixed;
}

/*#open-shortcuts > span{
    padding: 0 8px 0 30px;
    font-size: 16px;
    height: 27px;
    line-height: 27px;
}*/
#open-menu > span, .open-menu > span {
    padding: 0 8px 0 30px;
    background: url(../img/menu.png) no-repeat 7px center;
    font-size: 16px;
    height: 27px;
    line-height: 27px;
}

/*.open-menu.networkstatus {
    right: 12px;
    top: 10px;
}

.open-menu.studentslist {
    right: 12px;
    top: 70px;
}

.open-menu.seeanswer {
    right: 12px;
    top: 130px;
}
.open-menu.sessionphoto {
    right: 12px;
    top: 190px;
}

.open-menu.interactstart {
    right: 12px;
    top: 250px;
}


.open-menu.interactstop {
    right: 12px;
    top: 250px;
}

.open-menu.interactbackward {
    right: 12px;
    top: 310px;
}

.open-menu.interactforward {
    right: 12px;
    top: 370px;
}


.open-menu.interactquestion {
    right: 12px;
    top: 430px;
}

.open-menu.interactchat {
    right: 12px;
    top: 430px;
}

.open-menu.interactprevious {
    right: 12px;
    top: 490px;
}

.open-menu.interactnext {
    right: 12px;
    top: 550px;
}*/
.interactpad_menu {
    right:12px;
    top:10px;
    position:absolute;
}
.interactpad_menu li{
    margin-top:10px;
    list-style-type:none;
}
.open-menu > span {
    padding: 2px;
    background: none;
    font-size: 25px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    width: 45px;
    background-color: rgba(0, 0, 0, 0.3) !important;
}

#open-menu > span, .open-menu > span,
#open-shortcuts {
    display: block;
    border: 1px solid #020203;
    color: white;
    -webkit-text-shadow: 0 -1px 0 black;
    -moz-text-shadow: 0 -1px 0 black;
    text-shadow: 0 -1px 0 black;
    background-color: #454545;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0 rgba(255, 255, 255, 0.25);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0 rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0 rgba(255, 255, 255, 0.25);
    -webkit-background-clip: padding-box;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/* Shortcuts opener icon */
#open-shortcuts {
    position: absolute;
    z-index: 5;
    top: 5px;
    left: 8px;
    -webkit-tap-highlight-color: transparent;
    text-align: center;
    font-size: 24px;
    height: 25px;
    line-height: 25px;
    width: 75px;
    padding: 2px 0 0 2px;
}

body.reversed #open-shortcuts {
    left: auto;
    right: 8px;
}

.fixed-title-bar > #open-shortcuts {
    position: fixed;
}


/* Main content */
#main {
    position: relative;
    z-index: 2;
    width:100%;
    height:100%;
}

.fixed-title-bar > #main {
    margin-top: 40px;
}

/* Title */
#main-title {
    color: #b3b5b8;
    padding-bottom: 0px;
  
    position: relative;
}

    #main-title + .with-padding {
        padding-top: 0 !important;
    }

    #main-title h1,
    #main-title h2 {
        margin: 0;
        padding: 12px 0;
    }

    #main-title h2 {
        position: absolute;
        top: 17px;
        right: 20px;
        font-size: 22px;
    }

        #main-title h2 strong {
            font-size: 30px;
            vertical-align: -3px;
        }

/* Side tabs shortcuts */
#shortcuts {
    display: none;
    position: absolute;
    z-index: 99;
    top: 44px;
    left: 10px;
    margin: 0;
    width: 240px;
    list-style-type: none;
    padding: 15px 4px 5px 14px;
    *padding-bottom: 25px;
    border: 1px solid white;
    background: #d9d9d9 url(../img/old-browsers/style/bg_shortcuts.png) repeat-x;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#d9d9d9));
    background: -webkit-linear-gradient( white, #d9d9d9 );
    background: -moz-linear-gradient( white, #d9d9d9 );
    background: -ms-linear-gradient( white, #d9d9d9 );
    background: -o-linear-gradient( white, #d9d9d9 );
    background: linear-gradient( white, #d9d9d9 );
    -webkit-background-clip: padding-box;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 7px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0 1px 7px rgba(0, 0, 0, 0.8);
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.8);
}

.reversed #shortcuts {
    left: auto;
    right: 10px;
}

body.shortcuts-open #shortcuts {
    display: block;
}

.fixed-title-bar > #shortcuts {
    position: fixed;
}

#shortcuts:before {
    display: block;
    content: ' ';
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-bottom-color: white;
    position: absolute;
    bottom: 100%;
    left: 6px;
}

.reversed #shortcuts:before {
    left: auto;
    right: 6px;
}

#shortcuts > li {
    width: 70px;
    height: 70px;
    float: left;
    margin: -5px 10px 25px 0;
}

    #shortcuts > li > a,
    #shortcuts > li > span {
        display: block;
        background-image: url(../img/standard/shortcuts.png);
        background-repeat: no-repeat;
        width: 70px;
        height: 5px;
        padding-top: 65px;
        color: #666666;
        text-align: center;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    #shortcuts > li > span {
        color: #999999;
    }

    #shortcuts > li.current > a {
        color: #3399cc;
    }

.shortcut-dashboard {
    background-position: -66px -5px;
}

.shortcut-agenda {
    background-position: -66px -75px;
}

.shortcut-material {
    background-position: -66px -145px;
}

.shortcut-section {
    background-position: -66px -215px;
}

.shortcut-studentgroup {
    background-position: -66px -285px;
}

.shortcut-teacherlist {
    background-position: -66px -355px;
}

.shortcut-interact {
    background-position: -66px -425px;
}

.shortcut-teacherclass {
    background-position: -66px -495px;
}

.shortcut-studentlist {
    background-position: -66px -565px;
}
.shortcut-booklist {
    background-position: -66px -635px;
}

span.shortcut-dashboard {
    background-position: 1px -5px;
}

span.shortcut-agenda {
    background-position: 1px -75px;
}

span.shortcut-material {
    background-position: 1px -145px;
}

span.shortcut-section {
    background-position: 1px -215px;
}

span.shortcut-studentgroup {
    background-position: 1px -285px;
}

span.shortcut-teacherlist {
    background-position: 1px -355px;
}

span.shortcut-interact {
    background-position: 1px -425px;
}

span.shortcut-teacherclass {
    background-position: 1px -495px;
}

span.shortcut-studentlist {
    background-position: 1px -565px;
}

span.shortcut-booklist {
    background-position: 1px -635px;
}

/* Sidebar/drop-down menu */
#menu {
    display: none;
    position: absolute;
    z-index: 99;
    top: 40px;
    left: 0;
    right: 0;
    background: #3c4044;
    color: white;
}

body.menu-open #menu, body.studentsShow #menu {
    display: block;
}

.fixed-title-bar > #menu {
    position: fixed;
}

#menu:after {
    display: block;
    content: ' ';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    pointer-events: none;
    background: url(../img/old-browsers/style/bg_menu_after.png) repeat-x;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0)), color-stop(0.1, rgba(0, 0, 0, 0.5)), color-stop(0.25, rgba(0, 0, 0, 0.3)), color-stop(0.5, rgba(0, 0, 0, 0.2)));
    background: -webkit-linear-gradient( top, rgba(0,0,0,0.75), rgba(0,0,0,0.5) 10%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0));
    background: -moz-linear-gradient( top, rgba(0,0,0,0.75), rgba(0,0,0,0.5) 10%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0));
    background: -ms-linear-gradient( top, rgba(0,0,0,0.75), rgba(0,0,0,0.5) 10%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0));
    background: -o-linear-gradient( top, rgba(0,0,0,0.75), rgba(0,0,0,0.5) 10%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0));
    background: linear-gradient( top, rgba(0,0,0,0.75), rgba(0,0,0,0.5) 10%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0));
}
/* IE7 */
#menu-before {
    display: none;
}

#menu-after {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    background: url(../img/old-browsers/style/bg_menu_after.png) repeat-x;
}

#menu-content {
    zoom: 1;
}

#menu-footer {
    padding: 10px;
    background: url(../img/old-browsers/style/bg_menu-footer.png) repeat-x;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.37)), to(rgba(255, 255, 255, 0)), color-stop(0.04, rgba(255, 255, 255, 0.31)), color-stop(0.44, rgba(255, 255, 255, 0.15)), color-stop(0.49, rgba(255, 255, 255, 0.11)), color-stop(0.5, rgba(255, 255, 255, 0.02)));
    background: -webkit-linear-gradient( top, rgba(255,255,255,0.37), rgba(255,255,255,0.31) 4%, rgba(255,255,255,0.15) 44%, rgba(255,255,255,0.11) 49%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0));
    background: -moz-linear-gradient( top, rgba(255,255,255,0.37), rgba(255,255,255,0.31) 4%, rgba(255,255,255,0.15) 44%, rgba(255,255,255,0.11) 49%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0));
    background: -ms-linear-gradient( top, rgba(255,255,255,0.37), rgba(255,255,255,0.31) 4%, rgba(255,255,255,0.15) 44%, rgba(255,255,255,0.11) 49%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0));
    background: -o-linear-gradient( top, rgba(255,255,255,0.37), rgba(255,255,255,0.31) 4%, rgba(255,255,255,0.15) 44%, rgba(255,255,255,0.11) 49%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0));
    background: linear-gradient( top, rgba(255,255,255,0.37), rgba(255,255,255,0.31) 4%, rgba(255,255,255,0.15) 44%, rgba(255,255,255,0.11) 49%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0));
    background-color: #575d62;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

/* Header, for example for user status */
#menu header {
    padding: 11px 12px;
    color: #bfbfbf;
    text-transform: uppercase;
    font-weight: bold;
    font-family: Corbel, Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Bitstream Vera Sans, Liberation Sans, Verdana;
    background: #4e5458 url(../img/old-browsers/style/bg_menu_header.png) repeat-x;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#60666c), to(#4e5458));
    background: -webkit-linear-gradient( top, #60666c, #4e5458 );
    background: -moz-linear-gradient( top, #60666c, #4e5458 );
    background: -ms-linear-gradient( top, #60666c, #4e5458 );
    background: -o-linear-gradient( top, #60666c, #4e5458 );
    background: linear-gradient( top, #60666c, #4e5458 );
}

.no-boxshadow #menu header {
    border-bottom: 1px solid #2c3033;
}

body.reversed #menu header {
    text-align: right;
}

/* User name/profile */
#profile {
    display: block;
    padding: 20px;
    font-size: 14px;
    line-height: 14px;
    color: #b2b2b2;
    background: #31363a url(../img/old-browsers/style/bg_profile.png) repeat-x;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#383e42), to(#31363a));
    background: -webkit-linear-gradient( top, #383e42, #31363a );
    background: -moz-linear-gradient( top, #383e42, #31363a );
    background: -ms-linear-gradient( top, #383e42, #31363a );
    background: -o-linear-gradient( top, #383e42, #31363a );
    background: linear-gradient( top, #383e42, #31363a );
}

    #profile .user-icon {
        float: left;
        margin: 0 10px 0 -2px;
    }

    #profile .name {
        display: block;
        font-size: 24px;
        line-height: 22px;
        color: white;
        margin-bottom: 4px;
    }

#access {
    min-height: 62px;
    width: 100%;
    margin: 0;
    text-align: center;
    list-style-type: none;
}

    #access > li {
        float: left;
        width: 25%;
        height: 62px;
        font-size: 26px;
        line-height: 62px;
        position: relative;
        color: #707070;
        color: rgba(255, 255, 255, 0.5);
    }

        #access > li.disabled {
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
            filter: alpha(opacity=50);
            -khtml-opacity: 0.5;
            -moz-opacity: 0.5;
            opacity: 0.5;
        }

        #access > li > img {
            vertical-align: middle;
        }

        #access > li > span {
            *vertical-align: middle;
        }

        #access > li > a {
            display: block;
            height: 54px;
            padding: 4px 0;
            line-height: 54px;
            color: #cccccc;
            color: rgba(255, 255, 255, 0.75);
            *color: #cccccc;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            -webkit-transition: all 200ms;
            -moz-transition: all 200ms;
            -ms-transition: all 200ms;
            -o-transition: all 200ms;
            transition: all 200ms;
        }

            #access > li > a:after {
                position: absolute;
                content: ' ';
                left: 4px;
                right: 4px;
                bottom: 4px;
                height: 1px;
                background: #3399cc;
                border-bottom: 1px solid #66ccff;
                -webkit-box-shadow: 0 0 5px 2px rgb(51, 153, 204), 0 -2px 10px rgba(51, 153, 204, 0.75);
                -moz-box-shadow: 0 0 5px 2px rgb(51, 153, 204), 0 -2px 10px rgba(51, 153, 204, 0.75);
                box-shadow: 0 0 5px 2px rgb(51, 153, 204), 0 -2px 10px rgba(51, 153, 204, 0.75);
                -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
                filter: alpha(opacity=0);
                -khtml-opacity: 0;
                -moz-opacity: 0;
                opacity: 0;
            }

.ie8 #access > li > a:after {
    display: none;
}

#access > li > a:hover {
    padding-top: 0;
    padding-bottom: 8px;
    color: white;
}

    #access > li > a:hover:after {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
        -khtml-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
    }

.ie8 #access > li > a:hover:after {
    display: block;
}

.no-generatedcontent #access > li > a:hover {
    padding-bottom: 4px;
    border-bottom: 4px solid #66ccff;
}

/********************************************************/
/*                   15. Menus styles                   */
/********************************************************/

/* Big green menu */
.big-menu {
    margin: 0;
    min-height: 0;
    list-style-type: none;
}

    .big-menu > li,
    li.big-menu {
        padding: 16px 15px;
        font-size: 14px;
        line-height: 18px;
        font-weight: bold;
        position: relative;
    }

        .big-menu > li.with-right-arrow,
        li.big-menu.with-right-arrow {
            padding-right: 50px;
        }

        .big-menu > li > span,
        li.big-menu > span,
        .big-menu > li > a,
        li.big-menu > a {
            display: block;
            margin: -16px -15px;
            padding: 16px 15px;
            color: inherit;
            //color:expression(this.parentNode.currentStyle['color']);
            position: relative;
        }
/* IE7, your mysteries will always amaze me... */
.ie7 li.big-menu > span,
.ie7 li.big-menu > a {
    zoom: 1;
}

.big-menu > li.with-right-arrow > span,
li.big-menu.with-right-arrow > span,
.big-menu > li.with-right-arrow > a,
li.big-menu.with-right-arrow > a {
    margin-right: -32px;
    padding-right: 32px;
}

.big-menu > li > span,
li.big-menu > span,
.big-menu > li > a,
li.big-menu > a {
    cursor: pointer;
    border-left: 0px solid #404040;
    border-left: 0px solid rgba(0, 0, 0, 0.5);
    padding-right: 20px; /* Menu padding + hovered border width */
    -webkit-transition: border-left-width 100ms, padding-right 100ms;
    -moz-transition: border-left-width 100ms, padding-right 100ms;
    -ms-transition: border-left-width 100ms, padding-right 100ms;
    -o-transition: border-left-width 100ms, padding-right 100ms;
    transition: border-left-width 100ms, padding-right 100ms;
    word-break: break-all;
}

.no-touch .big-menu > li > span:hover,
.no-touch li.big-menu > span:hover,
.no-touch .big-menu > li > a:hover,
.no-touch li.big-menu > a:hover,
.no-touch .big-menu > li > .current,
.no-touch li.big-menu > .current {
    border-left-width: 4px;
    padding-right: 12px;
}

.no-touch .big-menu > li.with-right-arrow > span:hover,
.no-touch li.big-menu.with-right-arrow > span:hover,
.no-touch .big-menu > li.with-right-arrow > a:hover,
.no-touch li.big-menu.with-right-arrow > a:hover,
.no-touch .big-menu > li.with-right-arrow > .current,
.no-touch li.big-menu.with-right-arrow > .current {
    padding-right: 28px;
}

.no-touch .big-menu > li > .current:before,
.no-touch li.big-menu > .current:before {
    display: block;
    content: '';
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -5px;
    border: 5px solid transparent;
    border-left-color: #404040;
}

/* Thin grey menu */
.title-menu {
    margin: 0;
    min-height: 0;
    list-style-type: none;
}

    .title-menu > li,
    li.title-menu {
        padding: 1px 8px 3px;
        font-size: 13px;
        line-height: 16px;
        font-weight: normal;
        text-align: center;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

        .title-menu > li > a,
        li.title-menu > a {
            display: block;
            margin: -2px -8px;
            padding: 2px 8px;
            color: inherit;
            white-space: nowrap;
            text-overflow: ellipsis;
            position: relative;
        }

/* Calendar events menu */
.calendar-menu {
    margin: 0;
    min-height: 0;
    list-style-type: none;
    -webkit-text-shadow: none;
    -moz-text-shadow: none;
    text-shadow: none;
}

    .calendar-menu > li,
    li.calendar-menu {
        padding: 10px 10px 10px 50px;
        font-size: 13px;
        line-height: 16px;
        font-weight: normal;
        min-height: 40px;
        line-height: 14px;
    }

        .calendar-menu > li > a,
        li.calendar-menu > a {
            display: block;
            margin: -10px -10px -10px -50px;
            padding: 10px 14px 10px 50px;
            min-height: 40px;
            color: inherit;
        }

        .calendar-menu > li time,
        li.calendar-menu time {
            float: left;
            display: block;
            width: 30px;
            margin-left: -40px;
            color: #CCCCCC;
            color: rgba(0, 0, 0, 0.2);
            text-transform: uppercase;
            text-align: center;
            line-height: 12px;
        }

            .calendar-menu > li time > b,
            li.calendar-menu time > b {
                display: block;
                font-family: Arial, Helvetica, sans-serif;
                font-size: 26px;
                line-height: 28px;
                margin-bottom: -3px;
            }

        .calendar-menu > li small,
        li.calendar-menu small {
            display: block;
        }

/* Messages menu */
.message-menu {
    margin: 0;
    min-height: 0;
    list-style-type: none;
    -webkit-text-shadow: none;
    -moz-text-shadow: none;
    text-shadow: none;
}

    .message-menu > li,
    li.message-menu {
        padding: 9px 65px 10px 10px;
        min-height: 41px;
        color: #4c4c4c;
        font-size: 13px;
        line-height: 14px;
        font-weight: normal;
        position: relative;
    }

        .message-menu > li > a,
        li.message-menu > a {
            display: block;
            margin: -9px -65px -10px -30px;
            padding: 9px 69px 10px 30px;
            min-height: 41px;
            color: #4c4c4c;
            position: relative;
        }

.message-status {
    float: left;
    margin: -1px 0 0 -22px;
    width: 16px;
    text-align: center;
}

    .message-status > a,
    .message-status > span {
        height: 16px;
        font-weight: bold;
    }

.message-info {
    position: absolute;
    top: 9px;
    right: 7px;
    width: 50px;
    margin-left: 0;
    list-style-type: none;
    text-align: right;
}

    .message-info > a,
    .message-info > span {
        display: block;
        float: right;
        height: 16px;
    }

.starred, .unstarred, .new-message, .attach {
    display: block;
    overflow: hidden;
    text-indent: -9999px;
    text-align: left;
    width: 16px;
    white-space: nowrap;
}

.starred {
    background: url(../img/standard/sprites.png) no-repeat 0 -34px;
}

a.starred:hover {
    background: url(../img/standard/sprites.png) no-repeat 0 -50px;
}

.unstarred {
    background: url(../img/standard/sprites.png) no-repeat -16px -34px;
}

a.unstarred:hover {
    background: url(../img/standard/sprites.png) no-repeat -16px -50px;
}

.new-message {
    background: url(../img/standard/sprites.png) no-repeat -32px -34px;
}

a.new-message:hover {
    background: url(../img/standard/sprites.png) no-repeat -32px -50px;
}

.attach {
    background: url(../img/standard/sprites.png) no-repeat -48px -34px;
}

a.attach:hover {
    background: url(../img/standard/sprites.png) no-repeat -48px -50px;
}


.message-menu > li img {
    width: 42px;
    height: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    border-radius: 42px;
}

.calendar-menu > li > a,
li.calendar-menu > a,
.message-menu > li > a,
li.message-menu > a {
    border-left: 0px solid #404040;
    border-left: 0px solid rgba(0, 0, 0, 0.5);
    -webkit-transition: border-left-width 100ms, padding-right 100ms;
    -moz-transition: border-left-width 100ms, padding-right 100ms;
    -ms-transition: border-left-width 100ms, padding-right 100ms;
    -o-transition: border-left-width 100ms, padding-right 100ms;
    transition: border-left-width 100ms, padding-right 100ms;
}

.no-touch .calendar-menu > li > a:hover,
.no-touch li.calendar-menu > a:hover,
.no-touch .message-menu > li > a:hover,
.no-touch li.message-menu > a:hover {
    border-left-width: 4px;
}

.no-touch .calendar-menu > li > a:hover,
.no-touch li.calendar-menu > a:hover {
    padding-right: 10px;
}

.no-touch .message-menu > li > a:hover,
.no-touch li.message-menu > a:hover {
    padding-right: 65px;
}

.message-menu > li > .message-status + a,
li.message-menu > .message-status + a,
.message-menu > li > .message-info + a,
li.message-menu > .message-info + a {
    margin: 0;
    padding: 10px 10px 0 0;
    -webkit-transition: border-left-width 100ms, padding-left 100ms, padding-right 100ms;
    -moz-transition: border-left-width 100ms, padding-left 100ms, padding-right 100ms;
    -ms-transition: border-left-width 100ms, padding-left 100ms, padding-right 100ms;
    -o-transition: border-left-width 100ms, padding-left 100ms, padding-right 100ms;
    transition: border-left-width 100ms, padding-left 100ms, padding-right 100ms;
}

.no-touch .message-menu > li > .message-status + a:hover,
.no-touch li.message-menu > .message-status + a:hover,
.no-touch .message-menu > li > .message-info + a:hover,
.no-touch li.message-menu > .message-info + a:hover {
    padding-left: 6px;
    padding-right: 0;
}

/* Navigable menus classes */
.navigable {
    overflow: hidden;
    position: relative;
    padding: 0;
}

    .navigable > .load {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 10%;
        padding: 0;
        margin: 0;
        cursor: wait;
        background: black url(../img/standard/loaders/loading16_anthracite.gif) no-repeat center 4px;
    }

    .navigable ul.fixed {
        position: absolute;
        left: 0;
        width: 100%;
    }

    .navigable ul ul {
        position: absolute;
        left: 100%;
        top: 0;
        width: 100%;
        display: none;
    }

.navigable-ajax,
.navigable-ajax-loaded {
    cursor: pointer;
}

/* Collapsible menus */
.collapsible ul {
    display: none;
    position: relative;
}

.collapsible li > .load {
    display: block;
    padding: 0;
    margin: 0;
    height: 24px;
    cursor: wait;
    background: black url(../img/standard/loaders/loading16_anthracite.gif) no-repeat 4px 4px;
}

/* Substyles tweaks */
.collapsible.big-menu > li > ul,
.collapsible li.big-menu > ul,
.collapsible .big-menu > li > ul,
.collapsible.big-menu > li > .load,
.collapsible li.big-menu > .load,
.collapsible .big-menu > li > .load {
    margin: 16px -15px -16px;
    -webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.no-boxshadow .collapsible.big-menu > li > ul,
.no-boxshadow .collapsible li.big-menu > ul,
.no-boxshadow .collapsible .big-menu > li > ul,
.no-boxshadow .collapsible.big-menu > li > .load,
.no-boxshadow .collapsible li.big-menu > .load,
.no-boxshadow .collapsible .big-menu > li > .load {
    border-top: 1px solid #666666;
}

.collapsible li.with-left-arrow:after,
.collapsible li.with-right-arrow:after {
    top: 25px;
}
/* IE7 */
.collapsible .with-arrow-after {
    top: 25px;
}

.collapsible.big-menu > li.with-right-arrow > ul,
.collapsible li.big-menu.with-right-arrow > ul,
.collapsible .big-menu > li.with-right-arrow > ul,
.collapsible.big-menu > li.with-right-arrow > .load,
.collapsible li.big-menu.with-right-arrow > .load,
.collapsible .big-menu > li.with-right-arrow > .load {
    margin-right: -32px;
}

/* Back element */
.back {
    position: relative;
    padding: 16px 15px 16px 32px;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    cursor: pointer;
    -webkit-box-shadow: inset 0 1px 10px black;
    -moz-box-shadow: inset 0 1px 10px black;
    box-shadow: inset 0 1px 10px black;
}

    .back > .back-arrow {
        display: block;
        width: 11px;
        height: 9px;
        position: absolute;
        top: 50%;
        margin-top: -5px;
        left: 11px;
        background: url(../img/standard/sprites.png) no-repeat -187px 0px;
    }

/********************************************************/
/*                 16. Custom scrollbars                */
/********************************************************/

.custom-scroll {
    overflow: hidden !important;
}

.custom-hscrollbar,
.custom-vscrollbar {
    position: absolute;
    z-index: 999000;
    padding: 0;
    margin: 0;
    border: 0;
    background: url(../img/old-browsers/grey20.png);
    background: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.custom-hscrollbar {
    height: 8px;
}

.custom-vscrollbar {
    width: 8px;
}

    .custom-hscrollbar > div,
    .custom-vscrollbar > div {
        position: absolute;
        background: url(../img/old-browsers/grey50.png);
        background: rgba(0, 0, 0, 1);
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        cursor: pointer;
        -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
        -moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    }

.custom-hscrollbar > div {
    top: 0;
    bottom: 0;
}

.custom-vscrollbar > div {
    left: 0;
    right: 0;
}


/********************************************************/
/*                      17. Buttons                     */
/********************************************************/

/* Set line-height so buttons fit */
.button-height {
    line-height: 20px;
    margin-top: -2px;
    margin-bottom: -2px;
}

    .button-height.wrapped {
        padding: 8px 10px;
        margin-top: 0;
    }

p.button-height,
ul.button-height,
ol.button-height {
    margin-bottom: 14px;
}

    p.button-height:last-child,
    ul.button-height:last-child,
    ol.button-height:last-child {
        margin-bottom: -2px;
    }
    /* IE7 */
    p.button-height.last-child,
    ul.button-height.last-child,
    ol.button-height.last-child {
        margin-bottom: -2px;
    }

.button-height.absolute-left,
.button-height.absolute-right {
    margin-top: -17px;
    margin-bottom: 0;
}

/* Disabled elements */
.disabled, .disabled span,
.disabled .input, .disabled input,
.disabled .label, .disabled label,
.disabled .button, .disabled button,
.disabled a,
:disabled {
    cursor: not-allowed !important;
}

.button {
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: baseline;
   position: relative;
    text-align: center;
    /*font-weight:400;*/
    text-transform: none;
    padding: 0 6px;
    font-size: 12px;
    /*line-height: 24px;
    height: 24px;*/
    -webkit-background-clip: padding-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    min-width: 6px;
    border-width: 1px;
    border-style: solid;
    -webkit-background-clip: padding-box;
    -webkit-appearance: none;
    background-position: center center; /* This is required for glossy gradients image fallbacck*/
    color:#666666;
    font-family:Lato;
    margin:0px 2px;

}

.ie7 button.button {
    line-height: 24px;
    height: 28px;
}

.ie7 .button {
    margin-left: 4px;
}

    .ie7 .button:first-child {
        margin-left: 0;
    }

.button.full-width {
    width: 100%;
    margin: 0;
    height: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.no-boxsizing .button.full-width {
    width: 94%;
}

.no-boxsizing button.button.full-width {
    width: 100%;
}

.button-height .button.float-left,
.button-height .button.float-right {
    margin-top: 2px;
}

.button.absolute-left,
.button.absolute-right {
    position: absolute;
    margin-top: -15px;
}


/* Buttons in inputs */
.input .button {
    margin-top: -1px;
    margin-bottom: -1px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

    .input .button:first-child {
        margin-left: -9px;
    }

.ie7 .input .button:first-child {
    margin-left: 0;
    margin-right: 3px;
}

.input.large .button,
.input .button:first-child {
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}

.input .button:last-child {
    margin-right: -9px;
}
/* IE7 */
.input .button.last-child {
    margin-right: -9px;
}

.input.large .button,
.input .button:last-child {
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    -moz-border-radius-bottomright: 3px;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}



/********************************************************/
/*                      18. Loaders                     */
/********************************************************/

.loader {
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    line-height: 16px;
    background: url(../img/standard/loaders/loading16.gif) no-repeat center center;
    margin-top: -1px;
    margin-bottom: 1px;
}

.input .loader:first-child {
    margin-left: -1px;
}

.input .loader:last-child {
    margin-right: -1px;
}
/* IE7 */
.input .loader.last-child {
    margin-right: -1px;
}

.loader.waiting {
    background-image: url(../img/standard/loaders/waiting16.gif);
}

.loader.working {
    background-image: url(../img/standard/loaders/working16.gif);
}

.loader.refreshing {
    background-image: url(../img/standard/loaders/refreshing16.gif);
}

.loader.on-dark {
    background-image: url(../img/standard/loaders/loading16_anthracite.gif);
}

.loader.waiting.on-dark {
    background-image: url(../img/standard/loaders/waiting16_anthracite.gif);
}

.loader.working.on-dark {
    background-image: url(../img/standard/loaders/working16_anthracite.gif);
}

.loader.refreshing.on-dark {
    background-image: url(../img/standard/loaders/refreshing16_anthracite.gif);
}

.loader.big {
    background-image: url(../img/standard/loaders/loading32.gif);
    width: 32px;
    height: 32px;
}

    .loader.big.waiting {
        background-image: url(../img/standard/loaders/waiting32.gif);
    }

    .loader.big.working {
        background-image: url(../img/standard/loaders/working32.gif);
    }

    .loader.big.refreshing {
        background-image: url(../img/standard/loaders/refreshing32.gif);
    }

    .loader.big.on-dark {
        background-image: url(../img/standard/loaders/loading32_anthracite.gif);
    }

    .loader.big.waiting.on-dark {
        background-image: url(../img/standard/loaders/waiting32_anthracite.gif);
    }

    .loader.big.working.on-dark {
        background-image: url(../img/standard/loaders/working32_anthracite.gif);
    }

    .loader.big.refreshing.on-dark {
        background-image: url(../img/standard/loaders/refreshing32_anthracite.gif);
    }

.loader.huge {
    background-image: url(../img/standard/loaders/loading64.gif);
    width: 64px;
    height: 64px;
}

    .loader.huge.waiting {
        background-image: url(../img/standard/loaders/waiting64.gif);
    }

    .loader.huge.working {
        background-image: url(../img/standard/loaders/working64.gif);
    }

    .loader.huge.refreshing {
        background-image: url(../img/standard/loaders/refreshing64.gif);
    }

    .loader.huge.on-dark {
        background-image: url(../img/standard/loaders/loading64_anthracite.gif);
    }

    .loader.huge.waiting.on-dark {
        background-image: url(../img/standard/loaders/waiting64_anthracite.gif);
    }

    .loader.huge.working.on-dark {
        background-image: url(../img/standard/loaders/working64_anthracite.gif);
    }

    .loader.huge.refreshing.on-dark {
        background-image: url(../img/standard/loaders/refreshing64_anthracite.gif);
    }


/********************************************************/
/*                     19. Messages                     */
/********************************************************/

.message, .big-message {
    display: block;
    position: relative;
    border-width: 1px;
    border-style: solid;
    line-height: 16px;
    -webkit-background-clip: padding-box;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 0 white, 0 1px 5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 1px 0 white, 0 1px 5px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 1px 0 white, 0 1px 5px rgba(0, 0, 0, 0.3);
}

.message {
    padding: 6px 8px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #666666;
    background: #fff!important;
}

    .message .icon {
        margin-top: -3px;
    }

    .message.compact {
        padding: 3px 4px;
        font-size: 11px;
        line-height: 12px;
    }

.big-message {
    padding: 16px 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.6);
}

    .big-message strong {
        color: black;
        font-size: 18px;
        font-weight: normal;
    }

    .message.silver-gradient, .big-message.silver-gradient,
    .message.white-gradient, .big-message.white-gradient {
        -webkit-box-shadow: inset 0 1px 0 white, 0 1px 5px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: inset 0 1px 0 white, 0 1px 5px rgba(0, 0, 0, 0.3);
        box-shadow: inset 0 1px 0 white, 0 1px 5px rgba(0, 0, 0, 0.3);
        color: rgba(0, 0, 0, 0.6);
    }

    .message.black-gradient, .big-message.black-gradient,
    .message.anthracite-gradient, .big-message.anthracite-gradient,
    .message.grey-gradient, .big-message.grey-gradient,
    .message.red-gradient, .big-message.red-gradient,
    .message.orange-gradient, .big-message.orange-gradient,
    .message.green-gradient, .big-message.green-gradient,
    .message.blue-gradient, .big-message.blue-gradient {
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 1px 5px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 1px 5px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 1px 5px rgba(0, 0, 0, 0.4);
        color: rgba(255, 255, 255, 0.45);
    }

        .message.black-gradient, .big-message.black-gradient strong,
        .message.anthracite-gradient, .big-message.anthracite-gradient strong,
        .message.grey-gradient, .big-message.grey-gradient strong,
        .message.red-gradient, .big-message.red-gradient strong,
        .message.orange-gradient, .big-message.orange-gradient strong,
        .message.green-gradient, .big-message.green-gradient strong,
        .message.blue-gradient, .big-message.blue-gradient strong {
            color: white;
        }

    .big-message.black-gradient,
    .big-message.anthracite-gradient,
    .big-message.grey-gradient,
    .big-message.red-gradient,
    .big-message.orange-gradient,
    .big-message.green-gradient,
    .big-message.blue-gradient {
        color: rgba(255, 255, 255, 0.45);
    }

    .message.simpler, .big-message.simpler {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

.big-message-icon {
    float: left;
    margin: 0 17px 0 -3px;
    text-align: center;
}

    .big-message-icon:before {
        display: block;
        font-weight: normal;
        font-style: normal;
        font-family: 'EntypoRegular';
        font-size: 80px;
        line-height: 36px;
        margin: 0;
    }

    .big-message-icon.with-text {
        margin: -6px 20px -6px -6px;
    }

        .big-message-icon.with-text:before {
            font-size: 56px;
            line-height: 29px;
        }

    .big-message-icon.right-side {
        float: right;
        margin-left: 17px;
        margin-right: -6px;
    }

    .big-message-icon.with-text.right-side {
        margin-left: 20px;
        margin-right: -6px;
    }


/********************************************************/
/*                       20. Tabs                       */
/********************************************************/

/* This wrapper class is required to handle responsive variations */
.standard-tabs,
.swipe-tabs,
.side-tabs {
    border: 1px solid #cccccc;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    zoom: 1;
}

/* Actual tabs */
.tabs {
    list-style-type: none;
    margin: 0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

    .tabs > li {
        padding: 12px 30px 12px 12px;
        border-top: 1px solid #cccccc;
        color: #c0c0c0;
    }

.moveLeft, .moveRight {
    display: none;
}

        .tabs > li:first-child {
            border-top: 0;
        }

        .tabs > li > a {
            display: block;
            margin: -12px -30px -12px -12px;
            padding: 12px 30px 12px 12px;
            color: #666666;
        }

            .tabs > li > a:focus {
                outline: 0;
            }

.no-touch .tabs > li > a:hover {
    color: black;
}

.tabs > li.disabled > a,
.no-touch .tabs > li.disabled > a:hover {
    color: #c0c0c0;
}

/* Content */
.tabs-content {
    background: white;
    color: #666666;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
}

/* Back button */
.tabs-back {
    display: block;
    padding: 12px 12px 12px 30px;
    color: #666666;
    border-bottom: 1px solid #cccccc;
    cursor: pointer;
    position: relative;
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
}

/* When js is activated */
.tabs-active > .tabs,
.tabs-active > .tabs-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.tabs-active > .tabs-content {
    left: 100%;
}

/* When transistions are enabled */
.tabs-animated {
    -webkit-transition: height 300ms;
    -moz-transition: height 300ms;
    -ms-transition: height 300ms;
    -o-transition: height 300ms;
    transition: height 300ms;
}
/* Animation must be disabled for inner tabs within equalized tabs, because it give false results */
.same-height .tabs-animated {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

.tabs-animated > .tabs,
.tabs-animated > .tabs-content {
    -webkit-transition: left 300ms;
    -moz-transition: left 300ms;
    -ms-transition: left 300ms;
    -o-transition: left 300ms;
    transition: left 300ms;
}

.csstransforms .tabs-animated > .tabs,
.csstransforms .tabs-animated > .tabs-content {
    -webkit-transition: -webkit-transform 300ms;
    -moz-transition: -moz-transform 300ms;
    -ms-transition: -ms-transform 300ms;
    -o-transition: -o-transform 300ms;
    transition: translatex 300ms;
}

/* When a tab is opened */
.tab-opened > .tabs {
    left: -100%;
}

.csstransforms .tab-opened > .tabs {
    left: 0;
    -webkit-transform: translatex(-100%);
    -moz-transform: translatex(-100%);
    -ms-transform: translatex(-100%);
    -o-transform: translatex(-100%);
    transform: translatex(-100%);
}

.tab-opened > .tabs-content {
    left: 0;
}

.csstransforms .tab-opened > .tabs-content {
    left: 100%;
    -webkit-transform: translatex(-100%);
    -moz-transform: translatex(-100%);
    -ms-transform: translatex(-100%);
    -o-transform: translatex(-100%);
    transform: translatex(-100%);
}

/* Recursive tabs */
.inner-tabs {
    border: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.with-padding > .inner-tabs {
    margin: -20px;
}

.inner-tabs > .tabs-content > .tabs-back {
    display: none;
}


/********************************************************/
/*                   21. Notifications                  */
/********************************************************/

#top-notifications,
#bottom-notifications {
    position: absolute; /* This is for older iOS devices that do not support position: fixed */
    position: fixed;
    z-index: 999400;
    right: 0;
    left: 0;
    text-align: left;
}

#top-notifications {
    top: 0;
}

#bottom-notifications {
    bottom: 0;
}

    #top-notifications > ul,
    #bottom-notifications > ul {
        list-style-type: none;
        margin: 0;
    }

.notification {
    border-width: 1px;
    border-style: solid;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin: 5px;
    position: relative;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 2px 7px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 2px 7px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 2px 7px rgba(0, 0, 0, 0.5);
}

    .notification > .close {
        margin: -3px -3px 0 0;
    }

    .notification > a,
    .notification > div {
        display: block;
        text-decoration: none;
        padding: 6px 10px;
        color: inherit;
        margin: 0;
    }

    .notification.no-title > a,
    .notification.no-title > div {
        color: white;
    }

    .notification > a > h3,
    .notification > div > h3 {
        color: white;
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 4px;
    }

    .notification > a > b,
    .notification > div > b,
    .notification > div > a {
        color: white;
    }

    .notification.silver-gradient.no-title > a, .notification.silver-gradient.no-title > div,
    .notification.silver-gradient > a > h3, .notification.silver-gradient > div > h3,
    .notification.white-gradient.no-title > a, .notification.white-gradient.no-title > div,
    .notification.white-gradient > a > h3, .notification.white-gradient > div > h3,
    .notification.silver-gradient > a > b, .notification.silver-gradient > div > b,
    .notification.white-gradient > a > b, .notification.white-gradient > div > b {
        color: #333333;
    }

.notification-icon {
    float: left;
    margin: 7px 6px 7px 8px;
}

.notification > .block-arrow {
    display: none;
}

.extra-notifications {
    padding: 2px 6px;
    font-weight: bold;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 -1px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 -1px 0 rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 -1px 0 rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

.more-notifications {
    padding: 3px 7px;
    cursor: pointer;
}


/********************************************************/
/*                     22. Tooltips                     */
/********************************************************/

/* Root elements */
#tooltips, #tooltips-over {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#tooltips {
    z-index: 999301;
    font-size: 15px!important;
   
}

#tooltips-over {
    z-index: 999999;
}

.tooltip {
    position: absolute;
    overflow: hidden;
    text-overflow: clip;
    max-width:18%;
    line-height: 24px!important;
}

/* Tooltips inserted inside some elements */
.message.inner-tooltip {
    position: absolute;
    display: block;
    left: 50%;
    bottom: 100%;
    text-align: center;
    margin: 0 0 10px 0;
    min-width: 16px;
    max-width: 250px;
    z-index: 89;
    pointer-events: none;
    white-space: nowrap;
}

    .message.inner-tooltip.right {
        left: 100%;
        top: 50%;
        bottom: auto;
        margin: -15px 0 0 10px;
    }

    .message.inner-tooltip.bottom {
        top: 100%;
        bottom: auto;
        margin: 10px 0 0 0;
    }

    .message.inner-tooltip.left {
        left: auto;
        right: 100%;
        top: 50%;
        bottom: auto;
        margin: -15px 10px 0 0;
    }

        .message.inner-tooltip.right.compact,
        .message.inner-tooltip.left.compact {
            margin-top: -10px;
        }

/********************************************************/
/*                    23. Extra stuff                   */
/********************************************************/

/* Fix mobile browsers increased font-size */
body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}


a:hover {
    -webkit-tap-highlight-color: #fff;
}

/* Better resized images under IE7 */
.ie7 img,
.iem7 img {
    -ms-interpolation-mode: bicubic;
}

/* The legen - wait for it - dary clearfix */
.clearfix:before, .clearfix:after,
.columns:before, .columns:after,
.left-column-200px:before, .left-column-200px:after,
.right-column-200px:before, .right-column-200px:after,
#profile:before, #profile:after,
#main-title:before, #main-title:after,
.notification:before, .notification:after,
.inline-small-label:before, .inline-small-label:after,
.inline-label:before, .inline-label:after,
.inline-medium-label:before, .inline-medium-label:after,
.inline-large-label:before, .inline-large-label:after,
.definition.inline:before, .definition.inline:after,
.blocks-list:before, .blocks-list:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden;
}

.clearfix:after,
.columns:after,
.left-column-200px:after,
.right-column-200px:after,
#profile:after,
#main-title:after,
.notification:after,
.inline-small-label:after,
.inline-label:after,
.inline-medium-label:after,
.inline-large-label:after,
.definition.inline:after,
.blocks-list:after {
    clear: both;
}

.clearfix,
.columns,
.left-column-200px,
.right-column-200px,
#profile,
#main-title,
.notification,
.inline-small-label,
.inline-label,
.inline-medium-label,
.inline-large-label,
.definition.inline,
.blocks-list {
    zoom: 1;
}

/* Image replacement */
.ir {
    display: block;
    text-indent: -999em;
    overflow: hidden;
    background-repeat: no-repeat;
    text-align: left;
    direction: ltr;
}

/* Hide for screenreaders and visual browsers */
.hidden {
    display: none;
    visibility: hidden;
}

/* Hide visually */
.visuallyhidden {
    position: absolute;
    clip: rect(0 0 0 0);
    overflow: hidden;
    margin: -1px;
    padding: 0;
    height: 1px;
    width: 1px;
    border: 0;
}

    /* Allow an element to be focusable via keyboard  */
    .visuallyhidden.focusable:active,
    .visuallyhidden.focusable:focus {
        position: static;
        clip: auto;
        overflow: visible;
        height: auto;
        margin: 0;
        width: auto;
    }

/* Hide but maintain layout */
.invisible {
    visibility: hidden;
}

.left-column {
    float: left;
    width: 86%;
    /*margin-bottom: 10px;*/
    line-height: 50px;
    font-size: 14px;
    padding-left: 10px;
}

.left-column {
    float: left;
    width: 86%;
    /*margin-bottom: 10px;*/
    line-height: 50px;
    font-size: 14px;
    padding-left: 10px;
}

.left-column-no-width {
    float: left;
    /*width: 86%;*/
    /*margin-bottom: 10px;*/
    line-height: 50px;
    font-size: 14px;
    padding-left: 10px;
}

.left-column-no-float {
    /*float: left;*/
    /*width: 86%;*/
    /*margin-bottom: 10px;*/
    line-height: 50px;
    font-size: 14px;
    padding-left: 10px;
}

.column-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin:15px 0;
}


.column-header .left-column-header .list-check{
    margin-right: 10px;
}

.column-header .left-column-header .left-column-contain{
    display: none;
}


.column-header .left-column-header #select-all{
    cursor: pointer;
}

.column-header .right-column-header{
    margin:8px 0px 8px 0px;
}


.right-column {
    float: right;
    /*margin-bottom: 10px;*/
    margin:8px 0px 8px 0px;
}

#hide-icon {
    display: none;
}

.interact {
    padding: 5px 20px;
}

.thumb-list {
    margin: 0;
    display: inline-block;
}

    .thumb-list img {
        max-height: 90px;
    }

.body-place img {
    max-height: 300px;
}

#questionType, .body-place {
    margin-bottom: 20px;
}

.tabs > li > a > span {
    background: url("../img/material-toolbar.png") top left no-repeat;
    display: inline-block;
    text-indent: -9999em;
}

.t1 {
    width: 64px;
    height: 64px;
    background-position: -10px -10px !important;
}

.t2 {
    width: 64px;
    height: 64px;
    background-position: -10px -84px !important;
}

.t3 {
    width: 64px;
    height: 64px;
    background-position: -10px -158px !important;
}

.t4 {
    width: 64px;
    height: 64px;
    background-position: -10px -232px !important;
}

.t5 {
    width: 64px;
    height: 64px;
    background-position: -10px -306px !important;
}

.t6 {
    width: 64px;
    height: 64px;
    background-position: -10px -380px !important;
}

.t7 {
    width: 64px;
    height: 64px;
    background-position: -10px -454px !important;
}

.t8 {
    width: 64px;
    height: 64px;
    background-position: -10px -528px !important;
}

.t9 {
    width: 64px;
    height: 64px;
    background-position: -10px -602px !important;
}

.t10 {
    width: 64px;
    height: 64px;
    background-position: -10px -676px !important;
}

.t11 {
    width: 64px;
    height: 64px;
    background-position: -10px -750px !important;
}

#questionTbody td {
    padding-right: 10px;
}

    #questionTbody td a {
        padding: 0 5px;
    }

.mac-hide {
    display: none;
}

.mac-hide-all {
    padding-left: 0;
}

#book {
    width: 960px;
    height: 530px;
}

    #book p {
        margin: 0;
        padding: 0;
    }

    #book .turn-page {
        background-color: white;
    }

    #book .cover {
        background: #333;
    }

        #book .cover h1 {
            color: white;
            text-align: center;
            font-size: 50px;
            line-height: 500px;
            margin: 0px;
        }

    #book .loader {
        background-image: url(../img/loader.gif);
        width: 24px;
        height: 24px;
        display: block;
        position: absolute;
        top: 238px;
        left: 188px;
    }

    #book .data {
        text-align: center;
        font-size: 40px;
        color: #999;
        line-height: 500px;
    }

#controls {
    width: 800px;
    text-align: center;
    margin: 20px 0px;
    font: 30px arial;
}

    #controls input, #controls label {
        font: 30px arial;
    }

#book .odd {
    background-image: -webkit-linear-gradient(left, #FFF 95%, #ddd 100%);
    background-image: -moz-linear-gradient(left, #FFF 95%, #ddd 100%);
    background-image: -o-linear-gradient(left, #FFF 95%, #ddd 100%);
    background-image: -ms-linear-gradient(left, #FFF 95%, #ddd 100%);
}

#book .even {
    background-image: -webkit-linear-gradient(right, #FFF 95%, #ddd 100%);
    background-image: -moz-linear-gradient(right, #FFF 95%, #ddd 100%);
    background-image: -o-linear-gradient(right, #FFF 95%, #ddd 100%);
    background-image: -ms-linear-gradient(right, #FFF 95%, #ddd 100%);
}

/***question preview***/
#livetip {
    position: absolute;
    /*background-color: #fff;
    padding: 10px;
    border: 1px solid #ccc;*/
    /*border-radius: 5px;*/
    /*text-align: left;*/
    z-index: 999;
    /*-moz-box-shadow:2px 2px 5px #333333;
    -webkit-box-shadow:2px 2px 5px #333333;
    box-shadow:2px 2px 5px #333333;*/

}

#root {
    position: relative;
    font-family: tahoma, arial, "SimSun", "Helvetica Neue", Helvetica, sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #666;
    border: none !important;
    box-sizing: content-box;
}

.eqlCtl {
    position: absolute;
    display: block;
    padding: 10px;
}


    .eqlCtl ul {
        margin: 0;
    }

    .eqlCtl.image {
        padding: 0;
    }

    .eqlCtl.singleChoice, .eqlCtl.multipleChoice, .eqlCtl.text {
        display: inline-block;
    }

        .eqlCtl.singleChoice ul li, .eqlCtl.multipleChoice ul li, .eqlCtl.text ul li {
            padding: 10px 0;
            line-height: 22px;
        }

    .eqlCtl.fillBlank {
        padding-right: 0px;
    }

        .eqlCtl.fillBlank .shade {
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
        }

    .eqlCtl.openEnded {
        padding-right: 0px;
    }

        .eqlCtl.openEnded .shade {
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .eqlCtl.text {
        line-height: 1.6;
    }

/*.question-preview{
    position:relative;
    width: 1024px;
    height: 768px;
}*/ 
/*.question-preview .eqlCtl {
    position: absolute
}

.question-preview img {
    vertical-align: middle;
}*/
/*
.question-preview ul img{
    width: 100px !important;
    vertical-align:middle;
}*/

#menu.studentsStatus {
    z-index: 999009;
    display: none;
}

.answer-place > p {
    line-height: 60px;
}

#deck-table tbody td:first-child {
    text-align: center;
}

.template-group .green-gradient, .template-group a.green-gradient:hover {
    background: none;
}

    .template-group .green-gradient img {
        opacity: 1;
    }

.template-group img {
    opacity: .5;
}

.ipad {
    background: url(/img/pad.png) no-repeat;
    padding-left: 78px;
    padding-top: 98px;
    height: 535px;
    width: 893px;
}

#quickcreate .ipad{
    background:0 none;
}
.ipad > img.ebook{
    height: 458px;
    max-width: 696px;
    
}


.button-height.template-group img {
    height: 32px !important;
    width: 37px !important;
}
#childQuestionDiv {
    margin-bottom: 20px;
}
.new-row-mobile {
    display: none;
}
 .upcoming-sessions {
        display: block
    }
  .upcoming-sessions .events > li {
     min-height: 20px;
     padding: 10px 20px 5px 20px
 }

/******end*********/
.app {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 300;
    height: 30px;
    display: block;
}
.app2 {
    position: absolute;
    top: 30px;
    right: 130px;
    z-index: 300;
    height: 30px;
    display: block;
}
.app img,.app2 img {
    height: 100%;
}

#show-help {
    cursor: pointer;
}

.red-hover a{
   display:block;
    font-size:20px;
    margin-left:1rem;
}
.red-hover a:hover{
   transform:rotate(360deg);
	-webkit-transform:rotate(360deg);
	-moz-transform:rotate(360deg);
	-o-transform:rotate(360deg);
	-ms-transform:rotate(360deg);
     transition:All 0.4s ease-in-out;
	-webkit-transition:All 0.4s ease-in-out;
	-moz-transition:All 0.4s ease-in-out;
	-o-transition:All 0.4s ease-in-out;
    transform-origin:50%;
    -moz-transform-origin: 50%;
    -webkit-transform-origin:50%;
    -o-transform-origin:50%;
}

#video_camera,#video_camerapad{
    position:absolute;
    top:20px;
    right:10px;
    width:240px;
    height:240px;
    background:rgba(0, 0, 0, 0.75);
     padding: 11px 10px 10px;
    background: #575d62;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 1px 7px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 1px 7px rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 1px 7px rgba(0, 0, 0, 0.8);
    border: 1px solid #262626;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
#video_camerapad{
    z-index:99;
    top:20px;
    right:70px;
}

#video_cramera_mian,#video_camerapad_mian{
    width:240px;
    height:240px;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5), 0 -1px 1px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5),
     0 -1px 1px rgba(0, 0, 0, 0.8);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5), 0 -1px 1px rgba(0, 0, 0, 0.8);
    position: relative;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
#btnUpOrDown{
    margin:10px 0px;
     border-radius: 4px;
}
#agora_local{
    margin:0px auto;
}

/*颜色*/
/* Blue */


.button-icon,
.progress-bar,
.slider-bar,
.table-header,
.table-footer {
    color: white;
    background: #00438d url(../img/old-browsers/colors/bg_button-icon.png) repeat-x;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#006aac), to(#00438d));
    background: -webkit-linear-gradient(top, #006aac, #00438d);
    background: -moz-linear-gradient(top, #006aac, #00438d);
    background: -ms-linear-gradient(top, #006aac, #00438d);
    background: -o-linear-gradient(top, #006aac, #00438d);
    background: linear-gradient(top, #006aac, #00438d);
    border-color: #004795;
}



.button-icon.glossy, .glossy > .button-icon,
.progress-bar, .slider-bar {
    background: #0a5db8 url(../img/old-browsers/colors/bg_button-icon_glossy.png) repeat-x;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#65b2dd), to(#0a5db8), color-stop(0.5, #045ab2), color-stop(0.5, #004995));
    background: -webkit-linear-gradient(top, #65b2dd, #045ab2 50%, #004995 50%, #0a5db8);
    background: -moz-linear-gradient(top, #65b2dd, #045ab2 50%, #004995 50%, #0a5db8);
    background: -ms-linear-gradient(top, #65b2dd, #045ab2 50%, #004995 50%, #0a5db8);
    background: -o-linear-gradient(top, #65b2dd, #045ab2 50%, #004995 50%, #0a5db8);
    background: linear-gradient(top, #65b2dd, #045ab2 50%, #004995 50%, #0a5db8);
}

:hover > .button-icon.glossy, .glossy:hover > .button-icon {
    background: #056fc9 url(../img/old-browsers/colors/bg_hover_button-icon_glossy.png) repeat-x;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#46bde5), to(#056fc9), color-stop(0.5, #026cc4), color-stop(0.5, #005cac));
    background: -webkit-linear-gradient(top, #46bde5, #026cc4 50%, #005cac 50%, #056fc9);
    background: -moz-linear-gradient(top, #46bde5, #026cc4 50%, #005cac 50%, #056fc9);
    background: -ms-linear-gradient(top, #46bde5, #026cc4 50%, #005cac 50%, #056fc9);
    background: -o-linear-gradient(top, #46bde5, #026cc4 50%, #005cac 50%, #056fc9);
    background: linear-gradient(top, #46bde5, #026cc4 50%, #005cac 50%, #056fc9);
}


/* White */
.calendar-menu > li,
li.calendar-menu,
.message-menu > li,
li.message-menu,
.message, .big-message,
.table > thead > tr > .header:hover {
    color: #666666;
    background: #e4e7eb url(../img/old-browsers/colors/bg_message.png) repeat-x;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#f7f7fa), to(#e4e7eb));
    background: -webkit-linear-gradient(top, #f7f7fa, #e4e7eb);
    background: -moz-linear-gradient(top, #f7f7fa, #e4e7eb);
    background: -ms-linear-gradient(top, #f7f7fa, #e4e7eb);
    background: -o-linear-gradient(top, #f7f7fa, #e4e7eb);
    background: linear-gradient(top, #f7f7fa, #e4e7eb);
    border-color: #cccccc;
}

    .message.glossy, .big-message.glossy {
        background: #e8e8eb url(../img/old-browsers/colors/bg_message_glossy.png) repeat-x;
        -webkit-background-size: 100% 100%;
        -moz-background-size: 100% 100%;
        -o-background-size: 100% 100%;
        background-size: 100% 100%;
        background: -webkit-gradient(linear, left top, left bottom, from(#fafafc), to(#e8e8eb), color-stop(0.5, #ededf0), color-stop(0.5, #e3e3e5));
        background: -webkit-linear-gradient(top, #fafafc, #ededf0 50%, #e3e3e5 50%, #e8e8eb);
        background: -moz-linear-gradient(top, #fafafc, #ededf0 50%, #e3e3e5 50%, #e8e8eb);
        background: -ms-linear-gradient(top, #fafafc, #ededf0 50%, #e3e3e5 50%, #e8e8eb);
        background: -o-linear-gradient(top, #fafafc, #ededf0 50%, #e3e3e5 50%, #e8e8eb);
        background: linear-gradient(top, #fafafc, #ededf0 50%, #e3e3e5 50%, #e8e8eb);
    }
    
    
.element-ui-select{
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    font-size: inherit;
    height: 40px;
    line-height: 40px;
    outline: none;
    transition: border-color .2s cubic-bezier(.645,.045,.355,1);
}
    
.element-ui-input{
    font:99% sans-serif;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    font-size: inherit;
    height: 40px;
    line-height: 40px;
    outline: none;
    transition: border-color .2s cubic-bezier(.645,.045,.355,1);
}

.element-ui-button{
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid #dcdfe6;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    transition: .1s;
    font-weight: 500;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 50%;
}

.password-field {
    position: relative;
    display: inline-block;
}
.eye-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #000;
}
.eye-button:hover {
    color: #000;
}
.eye-button .fa-eye,.eye-button .fa-eye-slash{
    font-size: 15px;
    font-style: normal;
}

.password-field input[type='text'].input, input[type='password'].input {
    min-width: 275px;
    padding-right: 35px;
    width: fit-content !important;
    margin-top: 0 !important;
}