﻿/* 
File: SVEA - script-styles.css
Content: Styles only for javascript enabled browsers
*/


/* ========================== Visibility and display ========================== */
.script-show {
    display: block !important;
}

.script-hide,
.jqTransformHidden {
    display: none;
}

select {
    visibility: hidden; /* replaced by other elements by jqTransform */
}


/* ========================== Message dialog ========================== */
#message-dialog {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 382px;
    z-index: 10101;
    padding-bottom: 19px;
    /*background:url(../images/skin/bg-message-dialog.png) no-repeat right bottom;	*/
    margin-left: -191px;
}

#message-dialog-inner {
    /*background:url(../images/skin/bg-message-dialog.png) no-repeat;	*/
    padding: 28px 25px 8px 25px;
    overflow: hidden;
    z-index: 10100;
    text-align: center;
}

#message-dialog h2 {
    font-weight: bold;
    text-align: center;
}

#message-dialog p {
    margin-bottom: 1em;
}

#message-dialog .buttons {
    float: left;
    position: relative;
    left: 50%;
    text-align: left;
    padding-top: 10px;
}

#message-dialog .close {
    display: block;
    margin: 0 auto;
    background: url(../Content/images/buttons/btn-close.png) no-repeat;
    float: left;
    padding-left: 7px;
    color: #000;
    position: relative;
    left: -50%;
    cursor: pointer;
    text-decoration: none;
}

    #message-dialog .close span {
        display: block;
        padding: 6px 33px 8px 26px;
        font-weight: bold;
        background: url(../Content/images/buttons/btn-close.png) no-repeat right -29px;
        float: left;
        position: relative;
    }

    #message-dialog .close:hover {
        text-decoration: none;
        background: url(../Content/images/buttons/btn-close.png) no-repeat 0 -58px;
    }

        #message-dialog .close:hover span {
            background: url(../Content/images/buttons/btn-close.png) no-repeat right -87px;
        }

#message-dialog .close2 {
    display: block;
    margin: 0 auto;
    background: url(../Content/images/buttons/btn-close.png) no-repeat;
    float: left;
    padding-left: 7px;
    color: #000;
    position: relative;
    left: -50%;
    cursor: pointer;
    text-decoration: none;
}

    #message-dialog .close2 span {
        display: block;
        padding: 6px 33px 8px 26px;
        font-weight: bold;
        background: url(../Content/images/buttons/btn-close.png) no-repeat right -29px;
        float: left;
        position: relative;
    }

    #message-dialog .close2:hover {
        text-decoration: none;
        background: url(../Content/images/buttons/btn-close.png) no-repeat 0 -58px;
    }

        #message-dialog .close2:hover span {
            background: url(../Content/images/buttons/btn-close.png) no-repeat right -87px;
        }

.dialogStandard {
    background: url(../Content/images/skin/bg-message-dialog-standard.png) no-repeat right bottom;
}

.dialogInnerStandard {
    background: url(../Content/images/skin/bg-message-dialog-standard.png) no-repeat;
}

.dialogError {
    background: url(../Content/images/skin/bg-message-dialog.png) no-repeat right bottom;
}

.dialogInnerError {
    background: url(../Content/images/skin/bg-message-dialog.png) no-repeat;
}

#message-dialog-codebehind {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 382px;
    z-index: 10100;
    padding-bottom: 19px;
    background: url(../Content/images/skin/bg-message-dialog.png) no-repeat right bottom;
    margin-left: -191px;
}

#message-dialog-codebehind-inner {
    background: url(../Content/images/skin/bg-message-dialog.png) no-repeat;
    padding: 28px 25px 8px 25px;
    overflow: hidden;
}

#message-dialog-codebehind h2 {
    font-weight: bold;
    text-align: center;
}

#message-dialog-codebehind .buttons {
    float: left;
    position: relative;
    left: 50%;
    text-align: left;
    padding-top: 10px;
}

#message-dialog-codebehind .close {
    display: block;
    margin: 0 auto;
    background: url(../Content/images/buttons/btn-close.png) no-repeat;
    float: left;
    padding-left: 7px;
    color: #000;
    position: relative;
    left: -50%;
    cursor: pointer;
    text-decoration: none;
}

    #message-dialog-codebehind .close span {
        display: block;
        padding: 6px 33px 8px 26px;
        font-weight: bold;
        background: url(../Content/images/buttons/btn-close.png) no-repeat right -29px;
        float: left;
        position: relative;
    }

    #message-dialog-codebehind .close:hover {
        text-decoration: none;
        background: url(../Content/images/buttons/btn-close.png) no-repeat 0 -58px;
    }

        #message-dialog-codebehind .close:hover span {
            background: url(../Content/images/buttons/btn-close.png) no-repeat right -87px;
        }

.dialogInnerError {
    background: url(../Content/images/skin/bg-message-dialog.png) no-repeat;
}

/* ========================== Buttons ========================== */
.btn-next {
    background: #fff url(../Content/images/buttons/btn-next-left.png) no-repeat 0 center;
    padding: 0 0 0 9px;
    visibility: hidden; /*overriden by jqTransformButton*/
    outline: none;
}

    .btn-next span {
        background: url(../Content/images/buttons/btn-next.png) repeat-x right center;
        display: block;
        color: #fff;
        padding: 8px 35px 14px 8px;
    }

    .btn-next strong {
        display: block;
        font-size: 1.1em;
        padding-bottom: 2px;
    }

.btn-previous {
    background: #fff url(../Content/images/buttons/btn-previous-right.png) no-repeat right center;
    padding: 0 9px 0 0;
    visibility: hidden; /*overriden by jqTransformButton*/
}

    .btn-previous span {
        background: url(../Content/images/buttons/btn-previous.png) repeat-x 0 center;
        display: block;
        color: #fff;
        padding: 8px 8px 14px 35px;
        margin: 0;
    }

    .btn-previous strong {
        display: block;
        font-size: 1.1em;
        padding-bottom: 2px;
    }

.jqTransformButton {
    visibility: visible;
}


/* ========================== Content ========================== */
.big-hint {
    width: 18px;
    height: 17px;
    background: url(../Content/images/icons/ico-field-symbols.png) no-repeat;
    cursor: pointer;
    display: inline-block;
}

.big-hint-content {
    position: absolute;
    background: #fff;
    width: 350px;
    background: url(../Content/images/skin/bg-big-hint-bottom.png) no-repeat 0 bottom;
    z-index: 2;
    display: none;
    padding-bottom: 16px;
    font-size: .9em;
}

    .big-hint-content div {
        background: url(../Content/images/skin/bg-big-hint-top.png) no-repeat;
        padding: 20px 20px 4px 45px;
        min-height: 50px;
    }

    *html .big-hint-content div {
        _height: 50px;
    }

*html .big-hint-content {
    background: url(../Content/images/skin/bg-big-hint-bottom-ie.png) no-repeat 0 bottom;
    padding-bottom: 9px;
}

    *html .big-hint-content div {
        background: url(../Content/images/skin/bg-big-hint-top-ie.png) no-repeat;
    }


/* ========================== Fields and user-input: TextBoxes ========================== */

.field {
    padding: 5px 28px 5px 5px;
    position: relative;
    background: #f0f0f0 url(../Content/images/skin/bg-form-field.png) repeat-x;
    border: 1px solid #d2d2d2;
    margin: 0;
}

    .field input {
        background: none;
        margin: 0;
        padding: 0;
        border: 0px;
    }

    .field.error {
        border: 1px solid #dc3200;
    }

.field-wrapper .hint {
    width: 18px;
    height: 17px;
    position: absolute;
    right: 5px;
    top: 5px;
    background: url(../Content/images/icons/ico-field-symbols.png) no-repeat;
    cursor: pointer;
}

.field-wrapper .empty {
    background: none;
    cursor: default;
}

.field-wrapper.datepicker .hint {
    background: url(../Content/images/icons/ico-field-symbols.png) no-repeat 0 -65px;
    cursor: pointer;
}

.field-wrapper .error .hint {
    background: url(../Content/images/icons/ico-field-symbols.png) no-repeat 0 -28px;
    cursor: pointer;
}

.field-wrapper .hint-content {
    position: absolute;
    background: #fff;
    width: 279px;
    background: url(../Content/images/skin/bg-field-hint-bottom.png) no-repeat 0 bottom;
    z-index: 2;
    display: none;
    padding-bottom: 16px;
}

    .field-wrapper .hint-content p {
        background: url(../Content/images/skin/bg-field-hint-top-vert.png) no-repeat;
        padding: 40px 20px 4px 45px;
        min-height: 50px;
        z-index: 10000;
    }

    *html .field-wrapper .hint-content p {
        _height: 50px;
    }

*html .field-wrapper .hint-content {
    background: url(../Content/images/skin/bg-field-hint-bottom-ie.png) no-repeat 0 bottom;
}

    *html .field-wrapper .hint-content p {
        background: url(../Content/images/skin/bg-field-hint-top-vert-ie.gif) no-repeat;
    }

.info-field {
    padding: 2px 0 0 0;
    border: 0;
    margin: 0;
}

    .info-field input {
        background: none;
        margin: 0;
        padding: 0;
        border: none;
    }

    .info-field.error {
        border: 0;
    }

    .info-field.empty {
        border: 0;
    }

.info-field-wrapper .info-hint {
    width: 18px;
    height: 17px;
    background: url(../Content/images/icons/ico-field-symbols.png) no-repeat;
    cursor: pointer;
    display: inline-block;
}

.info-field-wrapper .empty {
    background: none;
    cursor: default;
}

.info-field-wrapper.datepicker .info-hint {
    background: url(../Content/images/icons/ico-field-symbols.png) no-repeat 0 -65px;
    cursor: pointer;
}

.info-field-wrapper .error .info-hint {
    background: url(../Content/images/icons/ico-field-symbols-info.png) no-repeat 0 -28px;
    cursor: pointer;
}

.info-field-wrapper .info-hint-content {
    position: absolute;
    background: #fff;
    width: 279px;
    background: url(../Content/images/skin/bg-field-hint-bottom.png) no-repeat 0 bottom;
    z-index: 10000;
    display: none;
    padding-bottom: 16px;
}

    .info-field-wrapper .info-hint-content p {
        background: url(../Content/images/skin/bg-field-hint-top-vert.png) no-repeat;
        padding: 40px 20px 4px 45px;
        min-height: 50px;
        z-index: 10000;
    }

    *html .info-field-wrapper .info-hint-content p {
        _height: 50px;
    }

*html .info-field-wrapper .info-hint-content {
    background: url(../Content/images/skin/bg-field-hint-bottom-ie.png) no-repeat 0 bottom;
}

    *html .info-field-wrapper .info-hint-content p {
        background: url(../Content/images/skin/bg-field-hint-top-vert-ie.gif) no-repeat;
    }

.list-field {
    padding: 5px 28px 5px 5px;
    position: relative;
    background: #f0f0f0 url(../Content/images/skin/bg-form-field.png) repeat-x;
    border: 1px solid #d2d2d2;
    margin: 0;
    width: 225px;
}

    .list-field input {
        background: none;
        margin: 0;
        padding: 0;
        border: 0px;
        outline: none;
        width: 225px;
    }

    .list-field.error {
        border: 1px solid #dc3200;
    }

    .list-field.empty {
        border: 0;
    }

.list-field-wrapper .list-hint {
    width: 18px;
    height: 17px;
    position: absolute;
    right: 5px;
    top: 5px;
    background: url(../Content/images/icons/ico-field-symbols.png) no-repeat;
    cursor: pointer;
}

.list-field-wrapper .empty {
    background: none;
    cursor: default;
}

.list-field-wrapper.datepicker .list-hint {
    background: url(../Content/images/icons/ico-field-symbols.png) no-repeat 0 -65px;
    cursor: pointer;
}

.list-field-wrapper .error .list-hint {
    background: url(../Content/images/icons/ico-field-symbols.png) no-repeat 0 -38px;
    cursor: pointer;
}

.list-field-wrapper .list-hint-content {
    position: fixed;
    background: #fff;
    width: 279px;
    background: url(../Content/images/skin/bg-field-hint-bottom.png) no-repeat 0 bottom;
    z-index: 10000;
    display: none;
    padding-bottom: 16px;
}

    .list-field-wrapper .list-hint-content p {
        background: url(../Content/images/skin/bg-field-hint-top-vert.png) no-repeat;
        padding: 40px 20px 4px 45px;
        min-height: 50px;
        z-index: 10000;
    }

    *html .list-field-wrapper .list-hint-content p {
        _height: 50px;
    }

*html .list-field-wrapper .list-hint-content {
    background: url(../Content/images/skin/bg-field-hint-bottom-ie.png) no-repeat 0 bottom;
}

    *html .list-field-wrapper .list-hint-content p {
        background: url(../Content/images/skin/bg-field-hint-top-vert-ie.gif) no-repeat;
    }

/* ========================== Fields and user-input: Selects ========================== */
.myDivWrapper {
    width: 170px;
    position: relative;
    bottom: 5px;
    left: 0px;
    height: 25px;
    float: left;
}

    .myDivWrapper div span {
        font-size: 12px;
        float: left;
        position: absolute;
        white-space: nowrap;
        height: 31px;
        line-height: 15px;
        padding: 4px 0 0 12px;
        cursor: pointer;
    }

    .myDivWrapper ul {
        position: absolute;
        width: 43px;
        top: 30px;
        left: 10px;
        list-style: none;
        background-color: #FFF;
        border: solid 1px #CCC;
        display: none;
        margin: 0px;
        padding: 0px;
        height: 150px;
        overflow: auto;
        z-index: 10;
    }

        .myDivWrapper ul a {
            display: block;
            padding: 5px;
            text-decoration: none;
            color: #333;
            background-color: #FFF;
            font-size: 12px;
        }

            .myDivWrapper ul a.selected {
                background: #EDEDED;
                color: #333;
            }

                .myDivWrapper ul a:hover, .myDivWrapper ul a.selected:hover {
                    background: #4e9fed;
                    color: #fff;
                }


.jqTransformSelectWrapper {
    width: 200px;
    position: relative;
    bottom: 5px;
    left: 0px;
    height: 25px;
    background: url(../Content/images/skin/bg-select-left.png) no-repeat top left;
    float: left;
    margin-top: 5px;
}

    .jqTransformSelectWrapper div span {
        font-size: 12px;
        float: left;
        position: absolute;
        white-space: nowrap;
        height: 31px;
        line-height: 15px;
        padding: 4px 0 0 12px;
        cursor: pointer;
    }

    .jqTransformSelectWrapper a.jqTransformSelectOpen {
        display: block;
        position: absolute;
        right: -10px;
        width: 25px;
        height: 25px;
        background: url(../Content/images/skin/bg-select-right.png) no-repeat center center;
    }

        .jqTransformSelectWrapper a.jqTransformSelectOpen:hover,
        .jqTransformSelectWrapper a.jqTransformSelectOpen:active,
        .jqTransformSelectWrapper a.jqTransformSelectOpen:focus {
            border: 1px dotted #999;
            width: 23px;
            height: 23px;
        }

    .jqTransformSelectWrapper ul {
        position: absolute;
        width: 43px;
        top: 30px;
        left: 10px;
        list-style: none;
        background-color: #FFF;
        border: solid 1px #CCC;
        display: none;
        margin: 0px;
        padding: 0px;
        height: 150px;
        overflow: auto;
        z-index: 10;
    }

        .jqTransformSelectWrapper ul a {
            display: block;
            padding: 5px;
            text-decoration: none;
            color: #333;
            background-color: #FFF;
            font-size: 12px;
        }

            .jqTransformSelectWrapper ul a.selected {
                background: #EDEDED;
                color: #333;
            }

                .jqTransformSelectWrapper ul a:hover, .jqTransformSelectWrapper ul a.selected:hover {
                    background: #4e9fed;
                    color: #fff;
                }

.jqTransformSelectErrorWrapper {
    width: 200px;
    position: relative;
    bottom: 5px;
    left: 0px;
    height: 25px;
    background: url(../Content/images/skin/bg-select-left-error.png) no-repeat top left;
    float: left;
}

    .jqTransformSelectErrorWrapper div span {
        font-size: 12px;
        float: left;
        position: absolute;
        white-space: nowrap;
        height: 31px;
        line-height: 15px;
        padding: 4px 0 0 12px;
        cursor: pointer;
    }

    .jqTransformSelectErrorWrapper a.jqTransformSelectOpen {
        display: block;
        position: absolute;
        right: -10px;
        width: 25px;
        height: 25px;
        background: url(../Content/images/skin/bg-select-right-error.png) no-repeat center center;
    }

        .jqTransformSelectErrorWrapper a.jqTransformSelectOpen:hover,
        .jqTransformSelectErrorWrapper a.jqTransformSelectOpen:active,
        .jqTransformSelectErrorWrapper a.jqTransformSelectOpen:focus {
            border: 1px dotted #999;
            width: 23px;
            height: 23px;
        }

    .jqTransformSelectErrorWrapper ul {
        position: absolute;
        width: 43px;
        top: 30px;
        left: 10px;
        list-style: none;
        background-color: #FFF;
        border: solid 1px #CCC;
        display: none;
        margin: 0px;
        padding: 0px;
        height: 150px;
        overflow: auto;
        z-index: 10;
    }

        .jqTransformSelectErrorWrapper ul a {
            display: block;
            padding: 5px;
            text-decoration: none;
            color: #333;
            background-color: #FFF;
            font-size: 12px;
        }

            .jqTransformSelectErrorWrapper ul a.selected {
                background: #EDEDED;
                color: #333;
            }

                .jqTransformSelectErrorWrapper ul a:hover, .jqTransformSelectErrorWrapper ul a.selected:hover {
                    background: #4e9fed;
                    color: #fff;
                }

/* ========================== Fields and user-input: Radiobuttons ========================== */
.radio-btns input {
    display: none; /* taken care of by jqTransformButton*/
}

.radio-btns .datepicker input {
    display: block;
}

.radio-btns .date {
    min-height: 30px;
}

.radio-btns .date-container {
    padding-bottom: 0;
    margin-left: 0;
    float: left;
}

.radio-btns .date label {
    float: left;
    margin-right: 4px;
}

.radio-btns .date .datepicker label {
    font-weight: normal;
}

.first {
    padding-top: 0;
}

.radio-btns .field {
    margin-top: -5px;
}

.jqTransformCheckboxWrapper {
    float: left;
    display: block;
    margin: -1px 10px 0 2px;
}

.has-hints .jqTransformCheckboxWrapper {
    margin-top: 0;
}

.jqTransformCheckbox {
    background: transparent url(../Content/images/buttons/btn-check.png) no-repeat;
    vertical-align: middle;
    height: 16px;
    width: 16px;
    display: block; /*display: -moz-inline-block;*/
}

.jqTransformRadioWrapper {
    float: left;
    display: block;
    margin: -1px 10px 0 2px;
}

.has-hints .jqTransformRadioWrapper {
    margin-top: 0;
}

.jqTransformRadio {
    background: transparent url(../Content/images/buttons/btn-radio.png) no-repeat;
    vertical-align: middle;
    height: 16px;
    width: 16px;
    display: block; /*display: -moz-inline-block;*/
}

a.jqTransformChecked {
    background-position: 0 bottom;
}

*html .jqTransformRadio {
    height: 17px;
}


.radio-btns .hint {
    width: 18px;
    height: 17px;
    float: left;
    margin-left: 10px;
    background: url(../Content/images/icons/ico-field-symbols.png) no-repeat;
    cursor: pointer;
}

.radio-btns.has-hints label {
    float: left;
}

.radio-btns .hint-content {
    position: absolute;
    background: #fff;
    width: 279px;
    background: url(../Content/images/skin/bg-field-hint-bottom.png) no-repeat 0 bottom;
    z-index: 2;
    display: none;
    padding-bottom: 16px;
}

    .radio-btns .hint-content p {
        background: url(../Content/images/skin/bg-field-hint-top.png) no-repeat;
        padding: 20px 20px 4px 45px;
        min-height: 50px;
    }

    *html .radio-btns .hint-content p {
        _height: 50px;
    }

*html .radio-btns .hint-content {
    background: url(../Content/images/skin/bg-field-hint-bottom-ie.png) no-repeat 0 bottom;
}

    *html .radio-btns .hint-content p {
        background: url(../Content/images/skin/bg-field-hint-top-ie.png) no-repeat;
    }

/* ========================== Fields and user-input: Checkboxes ========================== */
.jqTransformCheckboxWrapper {
    float: left;
    margin-right: 10px;
}

.jqTransformCheckbox {
    background: transparent url(/Content/images/buttons/btn-checkbox.png) no-repeat 0 1px;
    vertical-align: middle;
    height: 19px;
    width: 17px;
    display: block;
    border: 1px solid #fff;
    margin-top: -3px;
}

    .jqTransformCheckbox:focus {
        border: 1px dotted #999;
    }

a.jqTransformCheckbox.error {
    background-position: 0 bottom;
}

a.jqTransformCheckbox.jqTransformChecked {
    background-position: 0 -21px;
}

/* ========================== Top-menu ========================== */

#main-navigation {
    top: 12px;
}

    #main-navigation a {
        font-size: 13px; /* fixed units to control Cufon rendering */
        line-height: 18px;
        padding: 10px 6px 12px 6px;
    }

    #main-navigation .extendable a {
        padding: 10px 16px 12px 15px;
    }


    #main-navigation .extendable .item {
        background: url(../Content/images/arrows/arrow-top-navigation.png) no-repeat right 7px;
        padding-right: 15px;
        display: block;
    }

    #main-navigation .hover .wrapper {
        background: #fff url(../Content/images/skin/bg-top-menu-hover-left.png) no-repeat;
        position: relative;
        z-index: 3;
    }

    #main-navigation .hover a {
        background: url(../Content/images/skin/bg-top-menu-hover-right.png) no-repeat right 0;
        position: relative;
        z-index: 3;
    }
    /* Foldout */
    #main-navigation li .sub-items {
        position: absolute;
        z-index: 2;
        width: 191px;
        background: url(../Content/images/skin/bg-top-menu-foldout-top.png) no-repeat 0 top;
        padding-top: 13px;
        margin-left: -35px;
        margin-top: -8px;
    }

    #main-navigation ul,
    #main-navigation li div div {
        background: url(../Content/images/skin/bg-top-menu-foldout-bottom.png) no-repeat 0 bottom;
        padding: 0 10px 17px 10px;
    }

    #main-navigation li li {
        float: none;
        background: #fff;
        border-bottom: 1px solid #fff;
    }

#header #main-navigation li li a {
    color: #929292;
    padding: 7px 10px 4px 14px;
    background: url(../Content/images/arrows/arrow-top-navigation-small.png) no-repeat 5px 13px;
    z-index: 2;
    font-size: 16px; /* fixed units to control Cufon rendering */
    line-height: 16px;
}

    #header #main-navigation li li a:hover {
        color: #555;
    }

/* ========================== FunctionalNavigation ========================== */
#functional-navigation {
    top: 12px;
}

    #functional-navigation a {
        font-size: 13px; /* fixed units to control Cufon rendering */
        line-height: 18px;
        padding: 10px 0 12px 11px;
    }
