/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #434e61;
    background: #eaeef1;
    overflow-y: scroll;
}

.header {
    height: 100px;
    background: #434e60;
}

.container {
    margin: 0 auto;
    width: 960px;
}

.print {
    display: none;
}

@media print {
    .screen {
        display: none;
    }

    .print {
        display: block;
    }

    .print-header {
        overflow: auto;
    }

        .print-header h4 {
            margin-bottom: 5px;
        }

    .float-left {
        float: left;
    }

    .float-right {
        float: right;
    }

    table th {
        text-align: left;
    }

    .print-header-wrapper h4 + h4 {
        border-left: 1px solid #808080;
    }

    .print-header-wrapper h4 {
        float: left;
        padding: 10px 20px 10px 10px;
        margin: 0;
    }

    .print-header-wrapper {
        border: 1px solid #808080;
        overflow: auto;
        margin-bottom: 10px;
    }

        .print-header-wrapper small {
            font-weight: normal;
            left: 10px;
            position: relative;
        }

        .print-header-wrapper .header-col-1 {
            width: 65%;
        }
}

@media (max-width: 992px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

h1 {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h2 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

h4 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
}

a {
    text-decoration: none;
}

/* Header styling */

.header .logo {
    color: #ebeef0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    float: left;
    font-weight: bold;
    margin-top: 42px;
}

.main-menu {
    float: right;
    margin-top: 42px;
}

    .main-menu ul {
        overflow: auto;
        height: 34px;
    }

    .main-menu li {
        float: left;
    }

        .main-menu li a {
            text-transform: uppercase;
            color: #ebeef0;
            font-weight: bold;
            font-size: 11px;
            line-height: 17px;
        }

@media(min-width: 1200px) {
    .main-menu li a {
        font-size: 15px;
    }
}

.main-menu li a:hover, .main-menu li.active a {
    color: #e33f47;
}

.main-menu li + li {
    margin-left: 18px;
}

@media(min-width: 1200px) {
    .main-menu li + li {
        margin-left: 18px;
    }
}

a.log-out {
    cursor: pointer;
}

/* Content styling */

.content,
.breadcrumbs {
    background: #fff;
}

    .content .container {
        padding: 40px 0;
    }

.nav-breadcrumb {
    height: 16px;
    line-height: 16px;
    padding: 14px 0 0 4px;
}

    .nav-breadcrumb li {
        float: left;
    }

        .nav-breadcrumb li,
        .nav-breadcrumb li a:hover {
            color: #e33f47;
        }

            .nav-breadcrumb li a,
            .nav-breadcrumb li.nav-separator {
                color: #434e61;
            }

            .nav-breadcrumb li.nav-separator {
                margin: 0 10px;
            }

.shadow-box {
    background: url('/images/shadow.png') repeat;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}

.modal-wrapper {
    position: fixed;
    width: 600px;
    left: 50%;
    margin-left: -300px;
    top: 20%;
    z-index: 101;
    display: none;
    background: #fff;
    -ms-border-radius: 5px;
    border-radius: 5px;
}

.modal-header {
    padding: 20px;
}

    .modal-header h3 {
        margin: 0;
    }

.modal-body {
    padding: 20px;
    border-top: 1px solid #e6e6e6;
}

    .modal-body p {
        line-height: 1.3em;
    }

.modal-close {
    float: right;
}

    .modal-close:hover {
        cursor: pointer;
    }

.search-form {
    float: right;
}

    .search-form input[type="submit"] {
        display: none;
    }

    .search-form input[type="text"] {
        display: block;
        width: 180px;
        padding: 8px 10px;
        margin: 32px 0 0 40px;
        outline: none;
        color: #fff;
        background: #313946;
        border: 1px solid #313946;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        border-radius: 20px;
        -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
        -moz-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
        -ms-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
        -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    }

        .search-form input[type="text"]:focus {
            border: 1px solid #e33f47;
            -webkit-box-shadow: 0 2px 2px rgba(0,0,0,.075);
            -ms-box-shadow: 0 2px 2px rgba(0,0,0,.075);
            box-shadow: 0 2px 2px rgba(0,0,0,.075);
        }

/* Login Form */
.login-form fieldset {
    width: 300px;
    margin: 100px auto;
    background: #ebeef0;
    padding: 20px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

.login-form .form-group input {
    display: block;
    width: 290px;
    padding: 8px 4px;
    margin: 4px 0 0 0;
    outline: none;
    color: #434e61;
    border: 1px solid #ccc;
    -ms-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -moz-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -ms-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

    .login-form .form-group input:focus {
        border: 1px solid #66afe9;
        -webkit-box-shadow: 0 2px 2px rgba(0,0,0,.075);
        -ms-box-shadow: 0 2px 2px rgba(0,0,0,.075);
        box-shadow: 0 2px 2px rgba(0,0,0,.075);
    }

.form-group + .form-group {
    margin-top: 25px;
}

.login-form .form-button {
    margin-top: 25px;
    width: 300px;
    height: 40px;
    display: block;
    background: #b0373d;
    border: 0;
    border-bottom: 4px solid #73262b;
    color: #e3e5ea;
    text-transform: uppercase;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
}

    .login-form .form-button:hover {
        background: #b5232a;
        border-bottom: 4px solid #b0373d;
    }

.login-form .field-validation-error {
    color: #b5232a;
}

.login-form .validation-summary-errors li {
    color: #b5232a;
    text-align: center;
    margin-bottom: 15px;
}

/* Columns */

.row {
    overflow: auto;
}

.small-col {
    width: 135px;
}

.semi-small-col {
    width: 217px;
}

.single-col {
    width: 300px;
}

.medium-col {
    width: 465px;
}

.double-col {
    width: 630px;
}

.triple-col {
    width: 960px;
}

.small-col,
.semi-small-col,
.single-col,
.medium-col,
.double-col,
.triple-col {
    float: left;
}

    .small-col + .small-col,
    .small-col + .single-col,
    .small-col + .medium-col,
    .small-col + .double-col,
    .semi-small-col + .medium-col,
    .single-col + .small-col,
    .single-col + .single-col,
    .single-col + .medium-col,
    .single-col + .double-col,
    .medium-col + .small-col,
    .medium-col + .single-col,
    .medium-col + .semi-small-col,
    .double-col + .small-col,
    .double-col + .single-col {
        margin-left: 30px;
    }

@media (min-width: 1200px) {

    .small-col {
        width: 170px;
    }

    .semi-small-col {
        width: 270px;
    }

    .single-col {
        width: 370px;
    }

    .medium-col {
        width: 570px;
    }

    .double-col {
        width: 770px;
    }

    .triple-col {
        width: 1170px;
    }
}

/* Forside */

.side-nav {
    border-bottom: 1px solid #434e61;
}

    .side-nav li {
        padding: 4px 0;
    }

        .side-nav li a {
            display: block;
            font-size: 14px;
            text-transform: uppercase;
            text-decoration: none;
            color: #343c4a;
            padding: 11px 10px;
            font-weight: bold;
            line-height: 1.3em;
        }

            .side-nav li a i {
                display: inline-block;
                position: relative;
                vertical-align: bottom;
            }

        .side-nav li strong {
            display: block;
            font-size: 14px;
            text-transform: uppercase;
            text-decoration: none;
            color: #343c4a;
            background: #eaeef1;
            padding: 13px 10px;
            font-weight: bold;
        }

        .side-nav li.indent_1 a,
        .side-nav li.indent_1 strong {
            padding-left: 20px;
        }

        .side-nav li.indent_2 a,
        .side-nav li.indent_2 strong {
            padding-left: 30px;
        }

        .side-nav li.indent_3 a,
        .side-nav li.indent_3 strong {
            padding-left: 40px;
        }

        .side-nav li.hasChildren {
            padding-bottom: 0;
        }

            .side-nav li.hasChildren > a {
                background: #ececec;
                margin-bottom: 5px;
            }

        .side-nav li.active > a,
        .side-nav li a:hover {
            background: #b0373d;
            color: #ebeef0;
        }

        /*SUB NAV*/
        .side-nav li.active ul li {
        }

        .side-nav li ul li a {
            color: #343c4a;
            padding: 4px 10px 4px 35px;
        }

        .side-nav li ul li.active a,
        side-nav li ul li a:hover {
            background: #b0373d !important;
            color: #ebeef0 !important;
        }

    .side-nav li {
        border-top: 1px solid #434e61;
    }

#left-nav li:hover {
    cursor: pointer;
}

/* Håndbøger */

.big-nav {
    border-top: 1px solid #434e61;
    border-bottom: 1px solid #434e61;
}


    .big-nav li {
        padding: 4px 0;
    }

        .big-nav li a {
            display: block;
            font-size: 18px;
            text-transform: uppercase;
            text-decoration: none;
            color: #343c4a;
            padding: 16px 10px;
            font-weight: bold;
        }

            .big-nav li a:hover {
                background: #b0373d;
                color: #ebeef0;
            }

            .big-nav li a small {
                float: right;
                font-size: 14px;
                line-height: 18px;
            }

        .big-nav li + li {
            border-top: 1px solid #434e61;
        }

/* Håndbog */

.table-of-contents {
}

    .table-of-contents li {
        margin: 5px 0;
    }

        .table-of-contents li a {
            color: #434e61;
        }

            .table-of-contents li a:hover {
                color: #e33f47;
            }

    .table-of-contents .indent_0 {
        margin-left: 20px;
    }

    .table-of-contents .indent_1 {
        margin-left: 40px;
    }

    .table-of-contents .indent_2 {
        margin-left: 60px;
    }

    .table-of-contents .indent_3 {
        margin-left: 80px;
    }

/* Afsnit */

.info-list {
    margin: 20px 0 30px;
}

    .info-list li {
        margin: 5px 0;
    }

        .info-list li a {
            color: #e33f47;
        }

            .info-list li a:hover {
                text-decoration: underline;
                cursor: pointer;
            }

.text-content p {
    line-height: 1.3em;
    margin: 0;
}

.text-content img {
    width: 100%;
}

.text-content ul {
    margin: 5px 0 5px 35px;
    list-style: outside;
    line-height: 1.3em;
}

.text-content li {
    margin: 5px 0;
}

.text-content ol {
    margin: 5px 0 5px 35px;
    list-style-type: decimal;
    line-height: 1.3em;
}

/* Nyheder */

.news-item {
    padding-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #434e61;
}

    .news-item p {
        line-height: 1.3em;
    }

    .news-item h3 small {
        float: right;
        line-height: 22px;
        font-size: 15px;
    }

    .news-item a {
        color: #e33f47;
    }

        .news-item a:hover {
            text-decoration: underline;
        }

    .news-item .read-more {
        display: inline-block;
        margin-top: 5px;
    }

.news-wrapper p {
    line-height: 1.3em;
}

.not-found {
    text-align: center;
}

    .not-found h1 {
        font-size: 48px;
        margin-top: 50px;
    }

    .not-found p {
        font-size: 26px;
        margin: 50px 0 100px;
    }

    .not-found a {
        color: #e33f47;
    }

        .not-found a:hover {
            text-decoration: underline;
        }

/* Contour */

.contour .contourFieldSet {
    padding: 0;
}

    .contour .contourFieldSet legend {
        margin-bottom: 15px;
    }

.contour .contourPage .contourField .fieldLabel {
    float: none;
    padding: 0;
    display: block;
    margin-bottom: 5px;
}

.contour .contourPage .contourField .text {
    padding: 6px 12px;
    margin: 0;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -ms-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -moz-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -ms-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    display: inline-block;
}

    .contour .contourPage .contourField .text:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        -ms-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    }

.contourField {
    margin-top: 15px;
}

.contour input[type="submit"] {
    display: inline-block;
    margin: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

    .contour input[type="submit"]:focus,
    .contour input[type="submit"]:hover {
        color: #333;
        background-color: #ebebeb;
        border-color: #adadad;
    }










/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */
