﻿@charset "utf-8";
/* CSS Document */

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,
caption, 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;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

html, button, input, select, textarea {
    font-family: sans-serif;
    color: #222;
}

/*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection declarations have to be separate
     * Also: hot pink! (or customize the background color to match your design)
     */

::-moz-selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

::selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

body {
    color: #444;
    font-size: 12px;
    line-height: 18px;
    font-family: Tahoma, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

/*-------------------------------------*/
/* HEADER STYLES */
/*-------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    display: block;
    color: #333;
    font-family: Tahoma, Helvetica, sans-serif;
    font-weight: bold;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        font-weight: inherit;
    }

h1 {
    font-size: 38px;
    line-height: 54px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h2 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h3 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: normal;
}

h5 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: normal;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: normal;
}

/* Module titles */
.Head {
    display: inline-block;
    margin-bottom: 6px;
}

/* Some old forge modules use .Head, .SubHead, .SubSubHead in table td, We keep this to be compatible */
td.Head, td.SubHead, td.SubSubHead {
    display: table-cell;
    margin-bottom: 0;
}

input[type="image"] + span.Head, input[type="image"] + span.SubHead {
    display: inline;
}

/*-------------------------------------*/
/* PARAGRAPH STYLES */
/*-------------------------------------*/
p {
    margin: 0 0 18px 0;
}
    /* margin bottom is equal to line-height */
    p img {
        margin: 0;
    }

em, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

small {
    font-size: 80%;
}

/* Set text size in modules*/
.Normal,
.NormalDisabled,
.NormalDeleted {
    color: #444;
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
}

/* disabled text styles */
.NormalDisabled,
.NormalDeleted {
    color: #999;
}

/* text style used for help text rendered by modules */
.Help {
    padding: 2px;
    border: #000 1px solid;
    background-color: #ff9;
    font-weight: normal;
    font-size: 11px;
    color: #000;
}
/* text style used for rendered text which requires emphasis */
.NormalBold {
    font-weight: bold;
    color: #222;
}

/* text style used for error messages */
.NormalRed {
    font-weight: bold;
    color: red;
}

/* text style used for rendered text which should appear deleted */
.NormalDeleted {
    text-decoration: line-through;
}

/*	Blockquotes  */
blockquote, blockquote p {
    font-size: 17px;
    line-height: 24px;
    color: #777;
    font-style: italic;
}

blockquote {
    margin: 0 0 20px;
    padding: 9px 20px 0 19px;
    border-left: 1px solid #ddd;
}

    blockquote cite {
        display: block;
        font-size: 12px;
        color: #555;
    }

        blockquote cite:before {
            content: "\2014 \0020";
        }

        blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
            color: #555;
        }

hr {
    clear: both;
    margin: 17px 0 17px;
    height: 0;
    border: solid #ddd;
    border-width: 1px 0 0;
}

/*-------------------------------------*/
/* ANCHOR STYLES */
/*-------------------------------------*/
a, a:visited {
    color: rgb(2,139,255); /*blue*/
    text-decoration: underline;
    outline: 0;
}

    a:hover, a:focus, a:active {
        color: #222;
        outline: 0;
    }

p a, p a:visited {
    line-height: inherit;
}

/*-------------------------------------*/
/* IMAGE STYLES */
/*-------------------------------------*/
img.dnn-scale-img {
    max-width: 100%;
    height: auto;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

#dnn_dnnLOGO_imgLogo {
     border: 0;
}

/*-------------------------------------*/
/* lIST STYLES */
/*-------------------------------------*/
ul, ol {
    margin-bottom: 18px;
    margin-left: 18px;
}

ul {
    list-style: square outside;
}

ol {
    list-style: decimal;
}

    /* Nested Styles */
    ul ul, ul ol,
    ol ol, ol ul {
        margin-left: 18px;
        margin-bottom: 0;
    }

    ol ol {
        list-style: lower-roman;
    }

li p {
    line-height: 18px;
}

/*-------------------------------------*/
/* MESSAGE STYLES */
/*-------------------------------------*/
.dnnFormMessage {
    display: block;
    padding: 17px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2,139,255,0.2); /* blue */
    background: rgba(2,139,255,0.15); /* blue */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    max-width: 980px;
}

    .dnnFormMessage.dnnFormError,
    .dnnFormMessage.dnnFormValidationSummary {
        background-color: rgba(255,0,0,0.15); /* red */
        border-color: rgba(255,0,0,0.2); /* red */
    }

    .dnnFormMessage.dnnFormWarning {
        background-color: rgba(255,255,0,0.15); /* yellow */
        border-color: #CDB21F; /* yellow */
    }

    .dnnFormMessage.dnnFormSuccess {
        background-color: rgba(0,255,0,0.15); /* green */
        border-color: rgba(0,255,0,0.5); /* green */
    }

/*-------------------------------------*/
/* TABLE STYLES */
/*-------------------------------------*/
.dnnTableHeader {
    display: block;
    padding: 15px;
    background: none repeat scroll 0 0 #E3E3E5;
}
.dnnTableHeader a,
.dnnTableHeader input, 
.dnnTableHeader select{
    margin: 0;
}
.dnnTableDisplay {
    margin-bottom: 18px;
    border: 1px solid #d1d1d1;
    border-left: 0;
    border-bottom: 0;
}

    .dnnTableDisplay td, .dnnTableDisplay th {
        padding: 5px 9px;
        border-bottom: 1px solid #d1d1d1;
    }

    .dnnTableDisplay th {
        padding: 0;
        border-left: 1px solid #d1d1d1;
        -webkit-box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
        box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
    }

        .dnnTableDisplay th > span,
        .dnnTableDisplay th > a {
            display: block;
            padding: 5px 9px;
        }

    .dnnTableDisplay td:first-child {
        border-left: 1px solid #cfcfcf;
    }

    .dnnTableDisplay label {
        display: inline;
        padding-left: 5px;
    }

    .dnnTableDisplay caption {
        display: none;
    }

    /* thead styles */
    .dnnTableDisplay th {
        background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
        background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
        text-align: left;
        text-shadow: 1px 1px 0px rgba(255,255,255,0.8);
        color: #333;
    }

        .dnnTableDisplay th a, .dnnTableDisplay th label {
            font-weight: normal;
            color: #333;
            text-decoration: none;
        }

        .dnnTableDisplay th a {
            padding: 8px 9px;
        }

            .dnnTableDisplay th a:hover {
                background: #fefefe; /* Old browsers */
                background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
                background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
                color: #333;
            }

            .dnnTableDisplay th a:active {
                border-color: #999;
                background: #c6c6c6; /* Old browsers */
                background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
                background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
                -webkit-box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
                box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
            }
    /* tbody styles */
    .dnnTableDisplay tr:nth-child(2n) td {
        background: rgba(0,0,0,0.04);
    }

    .dnnTableDisplay tr:hover td {
        background: rgba(2,139,255,0.15); /* blue */
    }

    /* tfooter styles */
    .dnnTableDisplay tfoot tr:hover td {
        background: none;
    }

/* table filter styles */
.dnnTableFilter {
    margin-bottom: 18px;
    background: rgba(0,0,0,0.04);
}

    .dnnTableFilter .dnnTableDisplay {
        margin-bottom: 0;
    }

.dnnFilterSet {
    padding: 18px;
}

    .dnnFilterSet label {
        display: inline-block;
    }

    .dnnFilterSet input,
    .dnnFilterSet select {
        display: inline-block;
        margin: 0 5px;
    }

/* table filter vertical styles */
.verticalFilter .dnnFilterSet {
    float: left;
    width: 20%;
    padding: 2% 18px;
}

.verticalFilter .dnnTableDisplay {
    float: right;
    width: 75%;
}

.verticalFilter input[type=search], .verticalFilter select, .verticalFilter input[type=text] {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box; /* Safari */
}

/*-------------------------------------*/
/* PAGINATION & RESULT STYLES */
/*-------------------------------------*/
.dnnResults {
    float: left;
    margin-bottom: 0;
}

.dnnPagination {
    float: right;
    margin: 0;
    padding: 0;
}

    .dnnPagination li {
        float: left;
        list-style: none;
    }

        .dnnPagination li a, .dnnPagination li span {
            display: inline-block;
            padding: 0 5px;
            text-decoration: none;
            color: #333;
        }

            .dnnPagination li a:hover {
                text-decoration: underline;
                color: #222;
            }

        .dnnPagination li span {
            color: #222;
            text-decoration: underline;
        }

/*-------------------------------------*/
/* FORM STYLES */
/*-------------------------------------*/

.dnnFormItem input[type="text"],
.dnnFormItem select,
.dnnFormItem textarea,
.dnnFormItem input[type="email"],
.dnnFormItem input[type="search"],
.dnnFormItem input[type="password"] {
    margin-bottom: 18px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 12px;
}

    .dnnFormItem input.aspNetDisabled,
    .dnnFormItem textarea.aspNetDisabled {
        background: #ebebeb;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #a7a7a7;
        border-width: 1px;
    }

.aspNetDisabled, a.aspNetDisabled,
.dnnDisabled, a.dnnDisabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: none;
}

/* Active and Focus States */
.dnnFormItem input[type="text"]:active, .dnnFormItem input[type="text"]:focus,
.dnnFormItem input[type="password"]:focus, .dnnFormItem input[type="password"]:active,
.dnnFormItem input[type="email"]:active, .dnnFormItem input[type="email"]:focus,
.dnnFormItem select:active, .dnnFormItem select:focus,
.dnnFormItem textarea:active, .dnnFormItem textarea:focus,
.dnnFormItem input[type="search"]:active, .dnnFormItem input[type="search"]:focus {
    background: #fff;
    border: 1px solid rgba(2,139,255,0.5); /* blue */
    -webkit-box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    color: #333;
}
/* Required Fields */
.required label:after,
legend.required:after {
    display: inline-block;
    margin-top: -2px;
    margin-left: 9px;
    padding: 1px 9px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: rgba(0,0,0,0.03);
    content: 'Required';
    font-weight: normal;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: italic;
    color: #777;
}

/* Error Styles */
.error label, legend.error {
    color: rgba(255,0,0,0.9); /* opaque red*/
}

.error input[type="text"],
.error select, .error textarea,
.error input[type="email"],
.error input[type="search"] {
    border: 1px solid rgba(255,0,0,0.6); /* opaque red*/
    color: rgba(255,0,0,0.7); /* opaque red*/
}

/*
	 * 1. Display hand cursor for clickable form elements
	 * 2. Allow styling of clickable form elements in iOS
	 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
	 */

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    display: inline-block;
    padding: 9px 9px;
    margin-bottom: 9px;
    cursor: pointer;
    min-width: 75px;
    *overflow: visible;
    border: 1px solid #c2c2c2;
    background: #eaeaea;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction {
    padding: 6px 6px;
}

/* Primary Action */

.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction {
    border-color: #0D569E; /*dark blue*/
    background: #3792ED;
    background: -moz-linear-gradient(top, #358eea 0%, #2170cd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#358eea), color-stop(100%,#2170cd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #358eea 0%,#2170cd 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #358eea 0%,#2170cd 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    color: #efefef;
    text-shadow: 0px -1px 0px #185B93;
}

    .dnnPrimaryAction:hover, .dnnFormItem input[type="submit"]:hover, a.dnnPrimaryAction:hover {
        border-color: #0D569E;
        background: #6cb6f3; /* Old browsers */
        background: -moz-linear-gradient(top, #6cb6f3 0%, #4387d2 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6cb6f3), color-stop(100%,#4387d2)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* W3C */
        color: #fff;
    }

    .dnnPrimaryAction:active, .dnnFormItem input[type="submit"]:active, a.dnnPrimaryAction:active {
        border-color: #0D569E;
        background: #1f66be; /* Old browsers */
        background: -moz-linear-gradient(top, #1f66be 0%, #3085e0 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1f66be), color-stop(100%,#3085e0)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #1f66be 0%,#3085e0 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #1f66be 0%,#3085e0 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        color: #fff;
    }

    .dnnPrimaryAction[disabled], .dnnPrimaryAction[disabled]:hover, .dnnPrimaryAction[disabled]:active {
        background: #ccc !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        color: #aaa !important;
        text-shadow: none;
    }

/* Secondary Action */
.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnSecondaryAction,
a.dnnSecondaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    background: #f5f5f5; /* Old browsers */
    background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
    background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    text-shadow: 0px 1px 0px #ffffff;
    color: #333;
}

    .dnnFormItem button:hover, .dnnFormItem input[type="button"]:hover,
    .dnnFormItem input[type="reset"]:hover,
    .dnnSecondaryAction:hover,
    a.dnnSecondaryAction:hover,
    ul.dnnAdminTabNav li a:hover,
    .dnnLogin .LoginTabGroup span:hover {
        background: #fefefe; /* Old browsers */
        background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
        background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
        color: #555;
    }

    .dnnFormItem button:active,
    .dnnFormItem input[type="button"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnSecondaryAction:active,
    a.dnnSecondaryAction:active,
    ul.dnnAdminTabNav li a:active {
        border-color: #999;
        background: #c6c6c6; /* Old browsers */
        background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
        background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
    }

/* Fix some old forge modules use .dnnPrimaryAction and .dnnSecondaryAction in wrong way */
span.dnnPrimaryAction > input[type="image"],
span.dnnSecondaryAction > input[type="image"] {
    display: none;
}

span.dnnPrimaryAction > a.dnnPrimaryAction,
span.dnnSecondaryAction > a.dnnSecondaryAction {
    display: inline;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Tertiary Action */
.dnnTertiaryAction, a.dnnTertiaryAction {
    padding: 10px 10px;
    border: none;
    background: #eaeaea;
    color: #333;
}

    .dnnTertiaryAction:hover, a.dnnTertiaryAction:hover {
        background: #f2f2f2;
    }

    .dnnTertiaryAction:active, a.dnnTertiaryAction:active {
        background: #d8d8d8;
    }

/* Action Button behind input */
.dnnFormItem input[type="text"] + a.dnnPrimaryAction,
.dnnFormItem input[type="text"] + a.dnnSecondaryAction,
.dnnFormItem input[type="text"] + a.dnnTerriaryAction { 
    margin-left: 5px;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    margin: 5px;
}

/* text style for buttons and link buttons used in the portal admin pages */

/* button style for standard HTML buttons */
.StandardButton {
    border: 1px solid blue;
}


/* Re-set default cursor for disabled elements */
.dnnFormItem button[disabled],
.dnnFormItem input[disabled] {
    cursor: default;
    opacity: 0.5;
}


/* Consistent box sizing and appearance */
.dnnFormItem input[type="checkbox"],
.dnnFormItem input[type="radio"] {
    *width: 13px;
    *height: 13px; /*why are we using hacks here*/
    padding: 0;
    box-sizing: border-box;
}

.dnnFormItem input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

    .dnnFormItem input[type="search"]::-webkit-search-decoration,
    .dnnFormItem input[type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
    }


/* Remove inner padding and border in FF3/4: h5bp.com/l */
.dnnFormItem button::-moz-focus-inner, .dnnFormItem input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
	 * 1. Remove default vertical scrollbar in IE6/7/8/9
	 * 2. Allow only vertical resizing
	 */

.dnnFormItem textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

    /* Colors for form validity */
    .dnnFormItem input:valid, .dnnFormItem textarea:valid {
    }

    .dnnFormItem input:invalid, .dnnFormItem textarea:invalid {
        background-color: #f0dddd;
    }

/*-------------------------------------*/
/* TAXONOMY */
/*-------------------------------------*/

/* Horizontal taxonomy styles */
.horizontal ul.categories,
.horizontal ul.tags {
    list-style: none;
}

.horizontal ul.categories {
}

.horizontal ul.tags {
}

    .horizontal ul.categories li, .horizontal ul.tags li {
    }

        .horizontal ul.tags li.add-tags {
        }

            .horizontal ul.tags li.add-tags img {
            }

/* Vertical taxonomy styles */
.vertical ul.categories,
.vertical ul.tags {
    list-style: none;
}

    .vertical ul.categories li,
    .vertical ul.tags li {
    }

    .vertical ul.categories li {
    }

    .vertical ul.tags li {
    }

        .vertical ul.tags li.add-tags {
        }

            .vertical ul.tags li.add-tags img {
            }

/*-------------------------------------*/
/* TABS : JQUERY UI TABS 1.8.14 */
/*-------------------------------------*/
/* Tabs */
ul.dnnAdminTabNav {
    display: inline-block;
    margin-top: 5px;
    margin-left: 0;
    width: 100%;
    height: 37px;
    border-bottom: 1px solid #c2c2c2;
}

    ul.dnnAdminTabNav li {
        float: left;
        margin-right: 4px;
        list-style: none;
    }

        ul.dnnAdminTabNav li a {
            /* most styles are inherited from typography.css */
            margin-bottom: 0;
            border-bottom: 0;
            box-shadow: none;
            webkit-box-shadow: none;
            -webkit-border-radius: 3px 3px 0px 0px;
            border-radius: 3px 3px 0px 0px;
        }

        ul.dnnAdminTabNav li.ui-tabs-active a {
            margin-top: -3px;
            padding: 12px 9px 10px 9px;
            background: #fff;
        }

/* Panels */
.ui-tabs .ui-tabs-panel {
    position: relative;
    display: block;
}

.ui-tabs .ui-tabs-hide {
    display: none;
}

/*-------------------------------------*/
/* LOGIN TAB GROUP */
/*-------------------------------------*/
.dnnLogin .LoginTabGroup {
    display: inline-block;
    width: 100%;
    height: 37px;
    margin-left: 0;
    margin-top: 5px;
    border-bottom: 1px solid #C2C2C2;
}

    .dnnLogin .LoginTabGroup span {
        margin-right: 4px;
        margin-bottom: 0;
        border-bottom: 0 none;
        border-radius: 3px 3px 0 0;
        box-shadow: none;
    }

        .dnnLogin .LoginTabGroup span.LoginTabSelected {
            margin-top: -3px;
            padding: 12px 9px 10px;
            background: none repeat scroll 0 0 #FFFFFF;
        }

/*-------------------------------------*/
/* TABS : JQUERY UI RESIZABLE 1.8.14 */
/*-------------------------------------*/
.dnnForm .ui-resizable {
    position: relative;
}

.dnnForm .ui-resizable-handle {
    position: absolute;
    display: block;
    z-index: 99999;
    font-size: 0.1px;
}

.dnnForm .ui-resizable-disabled .ui-resizable-handle,
.dnnForm .ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.dnnForm .ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.dnnForm .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.dnnForm .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.dnnForm .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.dnnForm .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.dnnForm .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}
/*	

/*-------------------------------------*/
/* FORM ITEMS
/*-------------------------------------*/
.dnnForm {
    width: 100%;
}

    .dnnForm fieldset {
        clear: none;
        position: relative;
        margin-bottom: 18px;
        text-align: left;
    }

        .dnnForm fieldset fieldset {
            width: 100%;
        }

    .dnnForm .dnnFormItem {
        clear: both;
        width: 100%;
        display: block;
        position: relative;
        text-align: left;
    }

/* Label */
.dnnTooltip {
    position: relative;
    display: block;
    width: 32.075%;
    margin-right: 18px;
}

.dnnHelperTip {
    position: relative;
    display: block;
}

.dnnDragdropTip {
    z-index: 10000;
    position: absolute;
    width: auto !important;
    height: auto !important;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.75) url("/images/pin-icn.png") no-repeat 7px 12px;
    font-size: 11px;
    color: #DDD;
    text-align: left;
}

span.dnnFormRequired:after,
div.dnnFormItem.dnnFormRequired > div.dnnLabel span:after {
    content: "*";
    display: inline-block;
    margin: 0 0 0 5px;
    color: Red;
    font-size: 16px;
    line-height: 1em;
    font-weight: bold;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    display: inline-block;
    width: auto;
    margin: 6px 5px 6px 5px;
}

/* Help Label */
a.dnnFormHelp,
.dnnForm .dnnFormItem a.dnnFormHelp,
.dnnTooltip label a.dnnFormHelp {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

a.dnnFormHelp {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 2px;
    width: 14px;
    height: 15px;
    background: url("/images/helpI-icn-grey.png") no-repeat left 2px;
    padding: 0 !important;
    margin: 0 !important;
}

.dnnLabel {
    display: inline-block;
    float: left;
    position: relative;
    width: 32.075%;
    padding-right: 20px;
    margin-right: 18px;
    overflow: visible;
    text-align: right;
}

.dnnFormItem > .dnnLabel {
    margin-top: 5px;
}

.dnnLabel > span {
    text-align: right;
}

.dnnForm .dnnFormItem a.dnnFormHelp span {
    position: relative;
}

.dnnForm .dnnFormItem a.dnnFormHelp img {
    display: block;
}

.dnnLabel + span {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: 6px;
    white-space: pre-line;
}

/* Compatible with some old forge modules */
td > .dnnLabel {
    width: 220px;
}

/* Help tooltip */
.dnnTooltip .dnnFormHelpContent,
.dnnHelperTip .dnnFormHelpContent {
    visibility: hidden;
    z-index: 10;
    position: absolute;
    width: 200px;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0,0,0,0.75);
    font-size: 11px;
    color: #ddd;
    text-align: left;
}

.dnnFormHelpContent span {
    display: block;
	word-wrap: break-word;
}

/*.dnnTooltip .dnnFormHelpContent span:after,
.dnnHelperTip .dnnFormHelpContent span:after {
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}*/

.dnnTooltip .dnnFormHelpContent .dnnHelpText {
    word-wrap: break-word;
}

.bottomArrow:after
{
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}
.topArrow:before {
    position: absolute;
    content: "";
    left: 15px;
    top: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #000;
}

a.pinHelp {
    display: block;
    position: absolute;
    left: 7px;
    top: 12px;
    width: 15px;
    height: 15px;
    opacity: 0.5;
    background: url("/images/pin-icn.png") no-repeat 0 0;
}

    .ui-draggable a.pinHelp,
    a.pinHelp:hover {
        opacity: 1;
    }

/* Error tooltip */
.dnnFormItem span.dnnFormMessage.dnnFormError {
    display: block;
    position: absolute;
    overflow: visible;
    /*top:-95%; right: 12%;*/
    bottom: 95%;
    right: 12%;
    width: 200px;
    margin-bottom: 0;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255,0,0,0.75);
    font-size: 12px;
    color: #fff;
    text-align: left;
}

    .dnnFormItem span.dnnFormMessage.dnnFormError:after {
        position: absolute;
        bottom: -7px;
        left: 15px;
        content: "";
        width: 0;
        height: 0;
        opacity: 0.75;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid red;
    }

/* Input Types*/
.dnnFormItem input[type="text"],
.dnnFormItem input[type="password"],
.dnnFormItem input[type="email"],
.dnnFormItem input[type="tel"],
.dnnFormItem select,
.dnnFormItem textarea {
    width: 45%;
    max-width: 445px;
}

.dnnFormItem select {
    width: 47%;
}

    .dnnFormItem select option {
        color: #333;
    }

.dnnFormItem table {
    background: none;
}

/* Input Customised Checkbox*/

.dnnCheckbox {
    display: inline-block;
    cursor: pointer;
}

    .dnnCheckbox .mark {
        display: inline-block; /*margin-top: 3px;*/
    }

    .dnnCheckbox img {
        display: inline-block;
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnCheckbox img {
        background: transparent url("/images/checkbox.png") no-repeat;
    }

    .dnnCheckbox img {
        background-position: 0px 0px;
    }

.dnnCheckbox-hover img {
    background-position: 0px 0px;
}

.dnnCheckbox-checked img {
    background-position: -51px 0px;
}

.dnnCheckbox-disabled {
    cursor: not-allowed;
}

.dnnCheckbox-disabled img {
    opacity: .5;
}

.dnnCheckbox-checked-error img {
    background-position: -150px 0px;
}

.dnnCheckbox-error img {
    background-position: -100px 0px;
}
.dnnCheckbox-focus {
	background-color: #e3e3e5;
}
.dnnBoxLabel{ display: inline-block;}
/* normal checkbox fix */
.dnnFormItem input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 8px 0 4px 0;
}

/* Input Customised Radiobutton */

.dnnRadiobutton {
    display: inline-block;
    cursor: pointer;
}

    .dnnRadiobutton .mark {
        display: inline-block;
    }

    .dnnRadiobutton img {
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnRadiobutton img {
        background: transparent url("/images/radiobutton.png") no-repeat;
    }

    .dnnRadiobutton img {
        background-position: 0px 0px;
    }

.dnnRadiobutton-hover img {
    background-position: 0px 0px;
}

.dnnRadiobutton-checked img {
    background-position: -50px 0px;
}

.dnnRadiobutton-disabled img {
    opacity: .5;
}

.dnnRadiobutton-checked-error img {
    background-position: -150px 0px;
}

.dnnRadiobutton-error img {
    background-position: -100px 0px;
}
.dnnRadiobutton-focus {
	background-color: #e3e3e5;
}
/* Input RadioButton group */
div.dnnFormRadioButtons,
div.dnnHSRadioButtons,
span.dnnFormRadioButtons,
span.dnnHSRadioButtons {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
}

table.dnnFormRadioButtons {
    background-color: #f0f0f0;
    margin-bottom: 5px;
}

.RadComboBox_Default .rcbInput {
    width: 100% !important;
}

/* general group*/
div.dnnFormGroup {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
    width: 65%;
}

/* Input Customised Spinner */
.dnnSpinner {
    display: inline-block;
    position: relative;
    width: 150px;
    padding: 6px 6px;
    *overflow: visible;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
}

.dnnFormItem .dnnSpinner {
    width: 45%;
    margin-bottom: 18px;
}

.dnnSpinnerDisplay {
    margin: 0 25px 0 8px;
    background: transparent;
    color: #999;
}

.dnnFormItem .dnnSpinnerDisplay > input[type="text"],
.dnnFormItem .dnnSpinnerDisplay > input[type="text"]:focus {
    border: none;
    margin: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.dnnSpinnerCtrl {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    background-color: transparent;
    border-left: 1px solid #c9c9c9;
}

    .dnnSpinnerCtrl > a.dnnSpinnerTopButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerUpArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

    .dnnSpinnerCtrl > a.dnnSpinnerBotButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

/* Input Customised Tags */
div.dnnTagsInput {
    display: inline-block;
    margin: 0;
    padding: 5px 0 0 5px;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #FFF;
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.dnnFormItem .dnnTagsInput {
    width: 45%;
}

div.dnnTagsInput span.tag {
    display: block;
    float: left;
    padding: 2px 6px 2px 6px;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    color: #888;
    cursor: pointer;
    background-color: #eee;
}

    div.dnnTagsInput span.tag:hover {
        background-color: #e8f1fa;
        color: #444;
    }

    div.dnnTagsInput span.tag a {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 6px 0 0 0;
        background: transparent url("/images/dnnTagClose.png") no-repeat;
        background-position: center;
    }

div.dnnTagsInput > div > input,
div.dnnTagsInput > div > input:focus {
    border: none;
    background: transparent;
    outline: none;
    font-weight: normal;
    font-family: helvetica;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    height: 19px;
    padding: 3px 0 3px 3px;
    margin-bottom: 5px;
}

div.dnnTagsInput > div > input::-ms-clear {
  display: none;
}

div.dnnTagsInput div {
    display: block;
    float: left;
}

    div.dnnTagsInput div.dnnTags_filter {
        float: right;
        position: relative;
        margin: 0 0 5px 5px;
    }

        div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label {
            display: inline-block;
            border-left: 1px solid #ccc;
            padding: 3px 15px 0 10px;
            margin-right: 3px;
            color: #999;
            cursor: pointer;
            background: url("/images/dnnSpinnerDownArrow.png") no-repeat;
            background-position: right center;
            height: 22px;
        }

            div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label.dnnExpanded {
                color: #666;
                background: url("/images/dnnSpinnerUpArrow.png") no-repeat;
                background-position: right center;
            }

        div.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl {
            display: none;
            position: absolute;
            list-style-type: none;
            background: #fff;
            border: 1px solid #c9c9c9;
            right: 22px;
            top: 28px;
            margin: 0;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            -webkit-box-shadow: 0px 2px 0px 0px #bbb;
            box-shadow: 0px 2px 0px 0px #bbb;
            z-index: 15;
        }

.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li {
    white-space: nowrap;
    padding: 6px 12px 6px 8px;
    border-top: 1px solid #c9c9c9;
    list-style: none;
    color: #666;
    min-width: 150px;
}

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:first-child {
        border-top: none;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:hover {
        background-color: #e8f1fa;
        color: #333;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > input {
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
        cursor: pointer;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > span.dnnCheckbox {
        margin-right: 8px;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > label {
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }

div.dnnTagsInput div.dnnTags_filter a.dnnSearchButton {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("/images/search/searchButton.png");
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: top;
    cursor: pointer;
    margin: 4px 5px 0 4px;
}

.dnnTagsClear {
    clear: both;
    width: 100%;
    height: 0px;
}

div.dnnTagsInput > div > input.dnnTagsInvalid {
    display: block;
    float: left;
    margin-right: 5px;
    border: none;
    outline: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #FBD8DB; /*light red*/
    cursor: pointer;
    font-size: 12px;
    color: #90111A !important; /* dark red*/
    text-decoration: none; 
}

/* DNN Auto Complete */
.dnn_acResults {
    padding: 0px;
    border: 1px solid #c9c9c9;
    background-color: #fff;
    overflow: hidden;
    z-index: 900001;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    min-width: 150px;
}

    .dnn_acResults ul {
        margin: 0px;
        padding: 0px;
        list-style-position: outside;
        list-style: none;
    }

        .dnn_acResults ul li {
            margin: 0px;
            padding: 6px 22px 6px 22px;
            border-top: 1px solid #c9c9c9;
            color: #666;
            cursor: pointer;
            display: block;
            overflow: hidden;
            color: #333;
        }

            .dnn_acResults ul li:first-child {
                border-top: none;
            }

.dnn_acLoading {
}

.dnn_acSelect {
    background-color: #e8f1fa;
    color: #333;
}

/* Form Item */
.dnnFormMessage .dnnLabel {
    float: none;
    width: 90%;
    text-align: left;
}

/* Pane header */
.dnnFormSectionHead span {
    font-size: 18px;
    color: #222;
}

/* Progressbar*/
.dnnProgressbar {
    height: 25px !important;
    padding: 18px 10px 0 10px;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #f0f2f1 0%, #fff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f2f1), color-stop(100%,#fff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f0f2f1 0%,#fff 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #f0f2f1 0%,#fff 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
    box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
}

.ui-progressbar {
    height: 10px !important;
    overflow: hidden;
    background-color: #ccc;
    -webkit-box-shadow: inset 0px 1px 0px 0px #bbb;
    box-shadow: inset 0px 1px 0px 0px #bbb;
    text-align: left;
}

    .ui-progressbar .ui-progressbar-value {
        margin: 0;
        height: 100%;
        background-color: #1a82f7;
        background: -moz-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%,#2b7fda), color-stop(100%,#3fbdff)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* W3C */
    }

/* Button Dropdown */
.dnnDropdownSettings {
    position: relative;
    height: 30px !important;
}

.dnnButtonDropdown {
    width: 50px;
    height: 30px !important;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
}

.dnnButtonIcon, .dnnButtonArrow {
    display: inline-block;
    height: 30px !important;
}

.dnnButtonIcon {
    width: 32px;
}

.dnnButtonArrow {
    width: 10px;
    background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat center;
}

.dnnButtonDropdown-clicked {
    z-index: 100;
    position: absolute;
    width: 50px;
    height: 30px !important;
    background: #fff;
    border: 1px solid #c9c9c9;
    border-bottom: 1px solid #fff;
    -webkit-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-top-right-radius: 3px;
}

.dnnButtonDropdown-ul {
    display: none;
    position: absolute;
    z-index: 99;
    top: 29px;
    left: 0;
    width: 200px;
    margin-left: 0;
    background: #fff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    list-style-type: none;
}

    .dnnButtonDropdown-ul > li, .dnnButtonDropdown-ul > ul > li {
        padding: 8px;
        border-bottom: 1px solid #c9c9c9;
        color: #333;
        cursor: pointer;
        vertical-align: middle;
        list-style: none;
        margin: 0;
    }
	.dnnButtonDropdown-ul > ul{ margin: 0;}
	.dnnButtonDropdown-ul > ul > li{ padding-left: 16px;}

        .dnnButtonDropdown-ul > li:last-child {
            border-bottom: none !important;
        }

        .dnnButtonDropdown-ul > li:hover {
            background-color: #e8f1fa;
            color: #000;
        }

/* Button Group */
ul.dnnButtonGroup {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
    list-style: none;
}

    ul.dnnButtonGroup > li {
        display: block;
        float: left;
        border-left: 1px solid #c9c9c9;
        margin: 0;
    }

        ul.dnnButtonGroup > li:hover {
            background-color: #e8f1fa;
        }

        ul.dnnButtonGroup > li.dnnButtonGroup-first {
            display: none;
        }

            ul.dnnButtonGroup > li.dnnButtonGroup-first + li {
                border-left: none;
            }

        ul.dnnButtonGroup > li > a {
            display: inline-block;
            padding: 7px 7px 6px 7px;
            text-decoration: none;
            color: #333;
        }

    ul.dnnButtonGroup span {
        color: #333;
    }


/* Grouped Multi Input */
.dnnFormItem .dnnInputGroup {
    float: left;
    display: block;
    width: 32.075%;
    padding: 5px;
    margin-bottom: 18px;
    background: rgba(0,0,0,0.05); /* opaque black */
}

    .dnnFormItem .dnnInputGroup .dnnLeft {
        width: 100%;
    }

    .dnnFormItem .dnnInputGroup span {
        display: inline-block;
        width: 33%;
        text-align: right;
    }

/* Error Styles */
.dnnFormError label a span {
    color: red;
}

.dnnFormError input[type="text"],
.dnnFormError input[type="password"],
.dnnFormError input[type="email"],
.dnnFormError input[type="tel"],
.dnnFormError select,
.dnnFormError textarea {
    border: 1px solid red;
}


/* Tertiary Actions */
.dnnFormItem input[type="text"] + .dnnTertiaryAction,
.dnnFormItem input[type="password"] + .dnnTertiaryAction,
.dnnFormItem input[type="email"] + .dnnTertiaryAction,
.dnnFormItem input[type="tel"] + .dnnTertiaryAction,
.dnnFormItem select + .dnnTertiaryAction {
    display: inline-block;
    max-width: 60px;
}

/* Information Feedback Aside */
.dnnForm fieldset.dnnFormInformation {
    float: left;
    width: 32.075%;
    margin-left: 16px;
    padding: 18px 0;
    background: rgba(0,0,0,0.05);
}

.dnnFormItem textarea {
    min-height: 80px;
}

.dnnAddress input[type="checkbox"] {
    margin: 0 5px;
}

/* Required Fields */
.dnnFormRadioButtons {
    float: left;
    display: block;
    width: auto;
}

    .dnnFormRadioButtons input[type=radio] {
        float: none;
    }

    .dnnFormRadioButtons label,
    .dnnFormItem input[type=radio] + label {
        float: none;
        display: inline;
        width: auto;
        padding-right: 0;
        margin: 0 10px 0 0;
        text-align: left;
        font-weight: normal;
    }

/* Text Editor */
.dnnTextEditor {
    margin-bottom: 18px;
}

/* Action Items */
.dnnActions {
    float: none;
    clear: both;
    display: block; /* prevent ul from collapsing */
    margin: 0;
    padding-top: 18px;
    text-align: left;
}

    .dnnActions li {
        float: left;
        margin-right: 5px;
        list-style: none;
    }

.dnnLoginActions {
    display: inline-block;
}

/* Short Form */
.dnnForm.dnnShortForm .dnnFormItem label {
    float: none;
    width: 100%;
    margin-bottom: 0.25em;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem input,
.dnnForm.dnnShortForm .dnnFormItem select,
.dnnForm.dnnShortForm .dnnFormItem textarea {
    float: none;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem a.dnnFormHelp {
    background-position: left;
    padding-left: 22px;
}

/* UI Helpers */
.dnnForm .ui-helper-hidden {
    display: none;
}

.dnnForm .ui-helper-hidden-accessible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
}

/* Interaction Cues */
.dnnForm .ui-state-highlight,
.dnnForm .ui-widget-content .ui-state-highlight,
.dnnForm .ui-widget-header .ui-state-highlight {
    border: 1px solid #fed22f;
    background: #ffe45c;
    color: #363636;
}

    .dnnForm .ui-state-highlight a,
    .dnnForm .ui-widget-content .ui-state-highlight a,
    .ui-widget-header .ui-state-highlight a {
        color: #363636;
    }

.dnnForm .ui-state-error,
.dnnForm .ui-widget-content .ui-state-error,
.dnnForm .ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #b81900;
    color: #ffffff;
}

    .dnnForm .ui-state-error a,
    .dnnForm .ui-widget-content .ui-state-error a,
    .dnnForm .ui-widget-header .ui-state-error a {
        color: #ffffff;
    }

.dnnForm .ui-state-error-text,
.dnnForm .ui-widget-content .ui-state-error-text,
.dnnForm .ui-widget-header .ui-state-error-text {
    color: #ffffff;
}

.dnnForm .ui-priority-primary,
.dnnForm .ui-widget-content .ui-priority-primary,
.dnnForm .ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.dnnForm .ui-priority-secondary,
.dnnForm .ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

.dnnForm .ui-state-disabled,
.dnnForm .ui-widget-content .ui-state-disabled,
.dnnForm .ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

.dnnForm .ui-draggable {
    cursor: move;
}

/* Corner radius */
.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-left,
.dnnForm .ui-corner-tl {
    border-radius: 4px;
}

.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-right,
.dnnForm .ui-corner-tr {
    border-radius: 4px;
}
/*-------------------------------------*/
/* MODULE TITLE - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.ModuleTitle_MenuContainer {
    border: 1px solid blue;
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/*-------------------------------------*/
/* MAIN MENU - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.MainMenu_MenuContainer {
    border: 1px solid green;
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/*-------------------------------------*/
/* POPUP */
/*-------------------------------------*/

/* Popup Menu */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
	z-index: 9999;
}

.dnnFormPopup {
    position: absolute;
    padding: 18px;
    background: #fff;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
	z-index: 100000;
}
    /* Popup header */
    .dnnFormPopup .ui-dialog-titlebar {
        position: relative;
        padding: 0 0 18px 0;
        border-bottom: 1px solid #ddd;
        cursor: move;
        font-size: 18px;
        font-weight: bold;
    }

    .dnnFormPopup .dnnModalCtrl {
        display: block;
        position: absolute;
        top: -30px;
        right: -30px;
        width: 69px;
        height: 26px;
        border-radius: 10px;
        background-color: #fff;
        -webkit-border-radius: 10px;
        box-shadow: 0px 0px 5px #666;
    }

        .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close {
            float: right;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 4px 0 1px;
            overflow: hidden;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
	        border: none;
	        outline: none;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            background: #585858 url("/images/closeBtn.png") no-repeat;
            background-position: 8px 4px;
            text-indent: -9999em;
	        min-width: 0 !important;
        }

            .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close:hover {
                background: #358EEA url("/images/closeBtn.png") no-repeat;
                background-position: 8px 4px;
	            cursor: pointer;
            }

        .dnnFormPopup .dnnModalCtrl a.dnnToggleMax {
            float: left;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 0 0 4px;
            overflow: hidden;
            -webkit-border-top-left-radius: 8px;
            -webkit-border-bottom-left-radius: 8px;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
            background: #585858 url("/images/resizeBtn.png") no-repeat;
            background-position: 10px 2px;
            text-indent: -9999em;
        }

            .dnnFormPopup .dnnModalCtrl a.dnnToggleMax:hover {
                background: #358EEA url("/images/resizeBtn.png") no-repeat;
                background-position: 10px 2px;
            }

div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: block;
    position: absolute;
    top: -30px;
    right: -30px;
    height: 24px;
    width: 24px;
    margin: 0px;
    overflow: hidden;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background: #585858 url("/images/closeBtn.png") no-repeat;
    background-position: 4px 4px;
    border: 3px solid #fff;
    text-indent: -9999em;
	min-width: 0 !important;
}

/* Poup Iframe styles*/
.dnnFormPopup #iPopUp {
    width: 100%!important; /* to overwrite inline javscript styles */
    padding-top: 10px;
}

.dnnFormPopup .ui-dialog-content, #iPopUp .ui-dialog-content {
    position: relative;
    border: 0;
    padding: 0px;
    overflow: auto;
    background: #fff;
    zoom: 1;
}

.dnnFormPopup .ui-dialog-buttonpane {
    margin: .5em 0 0 0;
    padding: .3em 1em 0em 0em;
    overflow: hidden;
    border-width: 1px 0 0 0;
    background-image: none;
    text-align: left;
    border-top: 1px solid #ddd;
}

    .dnnFormPopup .ui-dialog-buttonpane button {
        margin: 0.5em 0.4em 0.5em 0em;
        padding: 0.5em 1em;
        cursor: pointer;
        border: none;
        outline: none;
    }

.dnnFormPopup .ui-resizable-se {
    float: right;
    height: 24px;
    width: 24px;
    background: url("/images/modal-resize-icn.png") no-repeat bottom;
}

.dnnFormPopup .dnnDialog {
    padding: 10px;
}

.dnnLoading {
    background: #fff url("/images/loading.gif") no-repeat center center;
    position: absolute;
    z-index: 9999;
}

/*-------------------------------------*/
/* URL ACTION */
/*-------------------------------------*/
.urlControl label {
    width: auto;
    margin-top: 0;
    font-weight: normal;
}

.urlControlLinkType {
    width: auto;
}

    .urlControlLinkType span,
    .dnnFormItem .urlControlLinkType span {
        float: none;
        display: block;
        width: auto;
        text-align: left;
    }

.dnnFormItem .ucLinkTypeRadioButtons label {
    display: inline-block;
    width: 260px;
    padding-right: 0;
    margin-top: 0;
    font-weight: normal;
    text-align: left;
}

.urlControlLinkType span input {
    min-width: 3%;
}

.dnnForm.dnnModuleSettings .dnnFormItem .urlControlLinkType span label {
    text-align: left;
}

.urlControlFileRow {
    clear: both;
}

    .urlControlFileRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlFileRow select, .urlControlFileRow input[type=file] {
        clear: both;
    }

.urlControlImagesRow {
    overflow: hidden;
    clear: both;
}

    .urlControlImagesRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlImagesRow select {
        clear: both;
    }

/*-------------------------------------*/
/* WIZARD TABS STEPS
/*-------------------------------------*/

/* Jquery UI tabs base */
.dnnWizardTab.ui-tabs {
    position: relative;
    padding: 0;
}

    .dnnWizardTab.ui-tabs .ui-tabs-nav {
        display: block;
        height: 46px;
        margin: 0;
        padding: 0;
        background: transparent url("/images/InstallWizardBG.png") repeat-x;
    }

        .dnnWizardTab.ui-tabs .ui-tabs-nav li {
            float: left;
            position: relative;
            margin: 0;
            padding: 0;
            border-bottom: 0 !important;
            list-style: none;
            white-space: nowrap;
        }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active {
                margin-bottom: 0;
            }

                .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
                .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
                .ui-tabs .ui-tabs-nav li.ui-state-processing a {
                    cursor: text;
                }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li a,
            .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
                cursor: pointer;
            }

    .dnnWizardTab.ui-tabs .ui-tabs-panel {
        clear: both;
        display: block;
        padding: 3em 1em 1.4em;
        border-width: 0;
        background: none;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-hide {
        display: none !important;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-nav li a {
        display: block;
    }

.dnnWizardStep > span {
    display: block;
    float: left;
}

.dnnWizardStep {
    height: 46px;
    padding: 0 0 0 20px;
    background: transparent url("/images/InstallWizardBG.png") repeat-x;
    background-position: 0 0;
    cursor: pointer;
}

.ui-tabs .ui-tabs-nav li:first-child .dnnWizardStep {
    padding-left: 30px;
}

.dnnWizardStepNumber {
    margin: 10px 10px 0 0;
    padding: 3px 8px 3px 8px;
    background-color: #999;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    color: #fff;
    font-weight: bold;
}

.dnnWizardStepTitle {
    margin: 13px 20px 0 0;
    color: #999;
    font-weight: bold;
    text-decoration: none;
}

.dnnWizardStepArrow {
    width: 25px;
    height: 46px;
    background: transparent url("/images/InstallWizardBG.png") no-repeat;
    background-position: 0 -401px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStep {
    height: 46px;
    background-position: 0 -100px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepNumber {
    background-color: #333;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepTitle {
    color: #333;
}

.dnnFormExpandContent {
    margin: 10px 0;
}

    .dnnFormExpandContent > a {
        color: #333;
        font-size: 13px;
        font-weight: bold;
    }
/*-------------------------------------*/
/* DNN SIMPLE GRID
/*-------------------------------------*/

table.dnnPermissionsGrid,
table.dnnGrid,
table.dnnASPGrid {
    margin-bottom: 20px;
    border: 1px solid #c9c9c9;
}

    table.dnnPermissionsGrid {
        color: #777;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td {
        padding: 4px 4px 4px 4px;
        vertical-align: middle;
        line-height: 120%;
        text-align: center;    
    }

    table.dnnPermissionsGrid tr.dnnGridItem td,
    table.dnnPermissionsGrid tr.dnnGridAltItem td {
        padding: 5px 4px 5px 4px;
        border-top: 1px solid #c9c9c9;
        border-bottom: 1px solid #c9c9c9;
        width: 70px;
        text-align: center;
    }

    table.dnnPermissionsGrid tr.dnnGridItem td.permissionHeader,
    table.dnnPermissionsGrid tr.dnnGridAltItem td.permissionHeader {
        border-right: 1px solid #c9c9c9;
        text-align: left;
        padding-left: 10px;
        width: 150px;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td.permissionHeader {
        padding-left: 10px;
        text-align: left;
    }

    .dnnPermissionsGrid > .dnnFormItem label {
        margin-right: 8px;        
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem select {
        width: 25%;
        margin: 0 5px 5px 0;
        min-width: 180px;
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem input {        
        margin-bottom: 0;
        height: 17px;
        color: #777;
        width: 25%;
    }
    .dnnPermissionsGrid > .dnnFormItem ul.token-input-list-facebook {
        display: inline-block;
        vertical-align: top;
    }

    .dnnPermissionsGrid > .dnnFormItem > .leftGroup {
        margin-right: 35px;
        float:left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup {
        float: left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup  > .dnnSecondaryAction {
        position: absolute;
    }

    .dnnPermissionsGrid > .dnnFormItem {
        margin-bottom: 18px;
        overflow: auto;     
    }

.dnnGridHeader td, thead.dnnGridHeader th,  tr.dnnGridHeader th{
    padding: 6px 12px 6px 12px;
    border-bottom: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
    background: #f0f2f1;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
}

.dnnGridItem td, .dnnGridAltItem td {
    padding: 6px;
    border-right: 1px solid #c9c9c9;
}

    .dnnGridItem td input, .dnnGridAltItem td input {
        margin-bottom: none;
    }

.dnnGridAltItem {
    background: #F2F2F2;
}

    .dnnGridItem:hover, .dnnGridAltItem:hover {
        background-color: #e8f1fa;
    }

/* td > input[type="image"],
    td > input[type="image"] + a,
    td a > img{
        display:block;
        float: left;
        margin-right: 3px;
    } */

/*-------------------------------------*/
/* URL Control
/*-------------------------------------*/

.urlControl {
    float: left;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

    .urlControl select,
    .urlControl input {
        width: 180px;
        margin-bottom: 10px;
    }

    .urlControl dnnFormItem > a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        float: left;
    }

    .urlControl .urlControlLinkType {
        float: left;
        width: 100%;
    }

        .urlControl .urlControlLinkType .dnnFormLabel {
            float: left;
            width: auto;
            margin-right: 5px;
        }

        .urlControl .urlControlLinkType input[type="radio"] {
            width: auto;
            margin-right: 5px;
        }

/*-------------------------------------*/
/* File Picker
/*-------------------------------------*/
span[id$="FileControl"] {
    display: block;
    float: left;
}

.dnnFilePicker {
    display: block;
    float: left;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0 15px 0 15px;
    width: 450px;
}

    .dnnFilePicker .dnnLeft {
        margin: 0;
        padding: 0;
        margin-top: -30px;
    }

    .dnnFilePicker dnnFormItem {
        margin: 0;
        margin-top: -10px;
        padding: 0;
        position: static;
    }

    .dnnFilePicker .dnnLeft img {
        max-width: 135px;
        max-height: 100px;
    }

    .dnnFilePicker .dnnLeft .dnnFilePickerImageHolder {
        width: 135px;
        height: 100px;
        background-color: #ccc;
        margin: 20px 15px;
    }

    .dnnFilePicker .dnnFormItem span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFilePicker select,
    .dnnFilePicker input {
        width: 200px;
        margin: 0;
        margin-right: 10px;
        float: none;
    }

    .dnnFilePicker .dnnLeft a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        display: inline-block;
    }

    .dnnFilePicker .dnnLeft img {
        display: block;
        margin: 20px 15px;
    }

/* FILE UPLOAD CSS */
span.dnnInputFileWrapper > input[type="file"] { /* force file upload style here, cause some module just override */
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer;
    height: 100%;
	font-size: 200px;
}

span.dnnInputFileWrapper { /* Notes(by Richard): here must set !important */
    overflow: hidden !important;
    margin: 0px 4px 0 0;
    width: auto !important;
    display: block !important;
    float: left !important;
	position: relative;
}

    span.dnnInputFileWrapper > span.dnnSecondaryAction {
        display: inline-block;
        float: none;
        width: auto;
    }

/* DNN DRAG n DROP FILE PICKER UPLOAD */
.dnnFileUploadScope {
    display: block;
    float: left;
    background-color: #F0F0F0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0;
    width: 500px;
}

    .dnnFileUploadScope .dnnLeft {
        margin: 0;
        padding: 15px 10px 15px 10px;
    }

        .dnnFileUploadScope .dnnLeft .dnnFormItem {
            margin-bottom: 10px;
        }

    .dnnFileUploadScope .dnnFormItem span, .urlControlTab .dnnFormItem > span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFileUploadScope .dnnFormItem .dnnDropDownList span {
        margin: 0;
        width: auto;
    }

    .dnnFileUploadScope .dnnFormItem .RadComboBox_Default,  .dnnFileUploadScope .dnnFormItem .dnnDropDownList{
        width: 180px;
        margin: 0;
        float: none;
    }

    .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone {
        position: relative;
        margin: 0;
        width: 180px;
        height: 150px;
        background: #d9eeff;
        border: 1px dashed #bbb;
        box-shadow: 0px 1px 0px #fff;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        color: #4577a2;
    }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone span {
            display: block;
            position: absolute;
            left: 38px;
            top: 60px;
            color: #fff;
            font-size: 12px;
            background: rgba(0,0,0,0.5);
            padding: 5px 7px;
            border-radius: 3px;
            box-shadow: 0px 1px 0px #fff, inset 1px 1px 0px #555;
            opacity: 0.5;
            cursor: default;
            -webkit-transition: all 500ms ease-in-out;
            -moz-transition: all 500ms ease-in-out;
            -ms-transition: all 500ms ease-in-out;
            -o-transition: all 500ms ease-in-out;
            transition: all 500ms ease-in-out;
        }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone:hover span {
            opacity: 1;
        }

input.dnnFixedSizeComboBox {
    width: 200px !important;
    margin-right: 10px;
    float: left;
}

div.dnnFixedSizeComboBox {
    width: 218px !important;
    margin-right: 15px;
    float: left;
}

.dnnFixedSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

input.dnnSmallSizeComboBox {
    width: 100px !important;
    margin-right: 10px;
    float: left;
}

div.dnnSmallSizeComboBox {
    width: 118px !important;
    margin-right: 15px;
    float: left;
}

.dnnSmallSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

td.dnnGridHeaderTD-NoBorder {
    border-right: none !important;
}

tr.dnnGridItem td, tr.dnnGridAltItem td {
    border-right: none;
}

    tr.dnnGridItem td input {
        margin-bottom: 0;
    }

/*-------------------------------------*/
/* ACCORDIAN
/*-------------------------------------*/
h2.dnnFormSectionHead {
    margin-top: 8px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ddd;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.03em;
}

    h2.dnnFormSectionHead a {
        display: block;
        padding-left: 3px;
        background: url("/images/down-icn.png") no-repeat right 50%;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        letter-spacing: normal;
        font-weight: normal;
    }

        h2.dnnFormSectionHead a:hover {
            color: #222;
            background: rgba(2,139,255,0.05) /* blue */ url("/images/down-icn.png") no-repeat right 50%;
        }

        h2.dnnFormSectionHead a.dnnSectionExpanded {
            background: url("/images/up-icn.png") no-repeat right 50%;
            color: #222;
        }

            h2.dnnFormSectionHead a.dnnSectionExpanded:hover {
                color: #222;
                background: rgba(2,139,255,0.05) /* blue */ url("/images/up-icn.png") no-repeat right 50%; /* ACTIVE BLUE */
            }

/*-------------------------------------*/
/* VERTICAL TABS */
/*-------------------------------------*/
.dnnVerticalTabs {
    margin-left: 0;
}

    .dnnVerticalTabs li {
        list-style: none;
    }

        .dnnVerticalTabs li a {
            display: block;
            padding: 15px 15px;
            border-bottom: 1px solid #ddd;
            border-right: 1px solid #ddd;
            background: rgba(0, 0, 0, 0.04);
            color: #999;
            text-decoration: none;
        }

            .dnnVerticalTabs li a:hover {
                background: rgba(0, 0, 0, 0.06);
                color: #333;
            }

        .dnnVerticalTabs li.active a {
            background: none;
            color: #333;
            border-right: 1px solid transparent;
        }

.tabBody {
    display: none;
}

/*-------------------------------------*/
/* SCROLL BAR */
/*-------------------------------------*/

.jspContainer {
    overflow: hidden;
    position: relative;
}

.jspPane {
    position: absolute;
}

.jspVerticalBar {
    position: absolute;
    top: 0;
    right: 0;
    width: 11px;
    height: 100%;
    background: #ccc;
}

.jspHorizontalBar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 11px;
    background: #ccc;
}

    .jspVerticalBar *,
    .jspHorizontalBar * {
        margin: 0;
        padding: 0;
    }

.jspCap {
    display: none;
}

.jspHorizontalBar .jspCap {
    float: left;
}

.jspTrack {
    background: transparent;
    position: relative;
}

.jspVerticalBar .jspTrack {
    width: 10px;
    margin: 0 0 0 3px;
}

.jspHorizontalBar .jspTrack {
    height: 5px;
    margin: 3px 0 3px 0;
}

.jspVerticalBar .jspCap {
    display: block;
    height: 3px;
    width: 11px;
}

.jspHorizontalBar .jspCap {
    display: block;
    width: 3px;
    height: 11px;
}

.jspDrag {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    opacity: .75;
    background: #000;
    cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
    float: left;
    height: 5px;
}

/*-------------------------------------*/
/* UPGRADE FIXES */
/*-------------------------------------*/

/* Compatible with some old forge modules---*/
div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons label {
    display: inline !important;
}

div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNAnnouncementsC .urlControl label, div.ModDNNLinksC .urlControl label {
    display: inline !important;
}

div.ModDNNFAQsC .Normal {
    width: auto !important;
}

div.ModDNNFeedbackC .dnnFormItem > label {
    display: inline-block;
    width: 33%;
    text-align: right;
}

div.ModDNNUserDefinedTableC div.RadEditor {
    height: auto !important;
}

div.ModDNNUserDefinedTableC ul.dnnActions {
    display: block;
}

div.ModDNNIFrameC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNIFrameC table.Normal td .dnnLabel {
    width: 100px;
}

div.ModDNNIFrameC table.Normal td span.dnnRadiobutton {
    margin: 5px 0 0 30px;
}

div.ModDNNLinksC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

/*-------------------------------------*/
/* GENERIC CLASSES */
/*-------------------------------------*/
.left {
    float: left;
}

.right {
    float: right;
}

.dnnLeft {
    float: left;
}

.dnnRight {
    float: right;
}

.dnnClear {
    clear: both;
}

    .dnnClear:after {
        clear: both;
        content: ".";
        display: block;
        height: 0;
        visibility: hidden;
        font-size: 0;
    }

* + html .dnnClear {
    min-height: 1%;
}

/* used to set the different module align options - from module settings */
.DNNAlignleft {
    text-align: left;
}

.DNNAlignright {
    text-align: right;
}

.DNNAligncenter {
    text-align: center;
}

/* used to collapse panes without any content in them */
.DNNEmptyPane {
    width: 0px;
}

/* style to apply if the content should be hidden */
.Hidden {
    display: none;
}
.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}
/*Edit In Place Tool Bar Classes*/
.eipbackimg {
	position:absolute;
	margin-top:-32px;
	white-space:nowrap;
	background:url("/images/eip_toolbar.png") repeat-x;
	height:32px;
	z-index: 1;
}
.eipbackimg.editMode {
	border: 1px solid #777777 !important;
	background: -moz-linear-gradient(top, #303030 0%, #191919 100%) !important; /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303030), color-stop(100%,#191919)) !important; /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #303030 0%,#191919 100%) !important; /* IE10+ */
    background: linear-gradient(to bottom, #303030 0%,#191919 100%) !important; /* W3C */
	opacity: 0.8;
}
.eipbackimg.containerTitle {
	margin-top: -8px;
}
.eipbackimg.containerTitle.editMode {
	left: auto;
	right: 0px;
	margin-top: 2px;
	background: none !important;
	border: none !important;
}
.eipbuttonbackimg{
	width: 32px;
	height: 32px; 
	cursor: pointer;
	float:left;
	background: url("/images/eip_toolbar.png") no-repeat;
	
}
.eipbackimg.editMode .eipbuttonbackimg {
	border-left: 1px solid #1f1f1f;
	border-right: 1px solid #393939;
	opacity: 0.5;
}

.eipbackimg.editMode.containerTitle .eipbuttonbackimg {
	border: none;
	opacity: 1;
}

.eipbuttonbackimg.eipbutton_cancel{ background-position: -32px 0;}
.eipbuttonbackimg.eipbutton_bold{ background-position: -64px 0;}
.eipbuttonbackimg.eipbutton_italic{ background-position: -96px 0;}
.eipbuttonbackimg.eipbutton_underline{ background-position: -128px 0;}
.eipbuttonbackimg.eipbutton_justifyleft{ background-position: -160px 0;}
.eipbuttonbackimg.eipbutton_justifycenter{ background-position: -192px 0;}
.eipbuttonbackimg.eipbutton_justifyright{ background-position: -224px 0;}
.eipbuttonbackimg.eipbutton_orderedlist{ background-position: -256px 0;}
.eipbuttonbackimg.eipbutton_unorderedlist{ background-position: -288px 0;}
.eipbuttonbackimg.eipbutton_outdent{ background-position: -320px 0;}
.eipbuttonbackimg.eipbutton_indent{ background-position: -352px 0;}
.eipbuttonbackimg.eipbutton_createlink{ background-position: -384px 0;}

.eipbackimg.containerTitle .eipbutton_cancel {
	background: url("/images/eip_title_cancel.png") no-repeat center center;
}

.eipbutton_edit {
	background: url("/images/eip_edit.png") no-repeat 100% center;
	float:left;
}

.eipbutton_save {
	background: url("/images/eip_save.png") no-repeat 100% center;
	float:left;
}
.eipbackimg.containerTitle .eipbutton_save {
	background-image: url("/images/eip_title_save.png");
}

.eipbackimg.editMode .eipborderhover {
	background-color: #333;
	opacity: 1;
}
.eipbackimg.editMode.containerTitle .eipborderhover {
	background-color: inherit;
}
div[id$=titleLabel_tb].visible ~ span{ margin-left: 32px;}

/*Critical Error Popup*/
div.errorWin p{ margin: 0 0 10px 0;}

input[type="button"].rspCollapseBarSpacer
{ min-width: 0; padding: 0 0; }


/*------------------------------------------------*/
/* DEFAULT PROFILE STYLE */
/*------------------------------------------------*/

.UserProfileControls ul li {
    list-style-type: none;
}

/*------------------------------------------------*/
/* PROFILE STYLE */
/*------------------------------------------------*/
.console.profile {
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    height: auto;
    background-color: #484848; /* Menu Background Color */
}

.console.profile .console-none div {
    cursor: pointer;
    cursor: hand;
    float: left;
    height: auto;
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    padding: 0px;
    margin: 0px;
    text-align: left;
}

.console.profile .console-none h3 {
    padding: 10px 8px 10px 40px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url("/Resources/images/arrow-right-white.png") 18px center no-repeat;
    color: #eee;
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
}

.console.profile .console-none div div {
    display: none;
}

.console.profile .console-mouseon {
    background-color: #70b1c7; /* Menu Hover Background Color */
}
/*-------------------------------------------------*/

/* Login/register/reset paswsword controls in mobile view */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView{
	margin: 0;
	padding: 0;
	width: 100%;
	height: inherit !important;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage{
	margin: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 10px 0 10px 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage.dnnFormValidationSummary{
	padding: 10px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .LoginPanel,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSendPasswordContent,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm {
    width: 100%;
	padding: 18px 0 0 0;
    margin: 0;
    float: none;	
	min-width: inherit !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm{
	width: 100%;
	margin: 0;
	float: none;
	min-width: inherit !important;
}



body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: 100% !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
	padding: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSocialRegistration{
	display: none;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnCaptcha{
	width: 100%;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnLeft img{
	display: block;
	margin: 0 0 5px 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel a.dnnFormHelp{
	display: none !important;
	width: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel div.dnnTooltip{
	display: none !important;
	width: 0 !important;
	position: static !important;
	right: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem input[type="text"],
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="password"]{
    display: block;
    box-sizing: border-box;
	-webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100% !important;
	margin-bottom: 18px;
	min-width: 100% !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > label#dnn_ctr_Login_Login_DNN_lblLogin{
	display: none !important;
	width: 0;
	margin: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem span.dnnFormMessage.dnnFormError{
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	right: 0;
	width: auto;
	max-width: 100%;
	padding: 10px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnPrimaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnSecondaryAction{
	width: 45%;
	padding: 18px 0 18px 0;
	display: block;
	float: left;
	margin: 0 5px 0 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginRememberMe{
	display: block;
	float: left;
	margin: 10px 0 0 5px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginActions {
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnSecondaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnPrimaryAction{
	width: 100%;
	padding: 18px 0 18px 0;
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions{
	padding: 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions li{
	width: 45%;
}

/* password strength control in iPopup */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .password-strength-container{
	width: 100%;
	margin: 0 0 12px 0;
	padding: 8px 0 8px 0;
	display: block;
	max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container input[type="password"]{
	display: block;
	margin: 0 8px 0 8px;
	width: calc(100% - 20px);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container span.min-length-text{
	display: block;	
	margin: 5px 0 5px 8px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container div.meter{
	float: none;	
	width: 90%;
	margin: 0 0 0 8px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem input.unmatched{
	background: none !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-tooltip, 
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .confirm-password-tooltip{
	display: none !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, .mobileVie #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.mobileView .ui-widget-overlay {
    display: none;
}
.dnnFormPopup.dnnFormPopupMobileView {
    width: auto !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    box-shadow: none !important;
}
.dnnFormPopup.dnnFormPopupMobileView div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: none;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-titlebar {
    border-bottom: none;
    cursor: inherit;
    font-size: 22px;
    color: #000;
    padding: 5px 0 0 0;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: auto !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="text"] {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > textarea,
.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .redactor_box {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > select {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnTagsInput {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 18px;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel > input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 0 5px 0 12px;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem span.dnnFormMessage.dnnFormError {
    right: 0;
    width: auto;
    border-radius: 0;
    text-align: right;
    max-width: 100%;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    width: 49%;
    margin: 0;
    padding: 20px 0 20px 0;
    display: block;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction {
    float: left;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    float: right;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane {
    border-top: none;
}

    .dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane .ui-dialog-buttonset {
        float: none;
    }

.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnSecondaryAction {
    width: 24%;
    display: inline-block;
    margin-right: 1%;
    float: none;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 25px 0 15px 0;
}

html.mobileView {
    overflow: auto !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, 
.mobileView #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.dnnPlaceholder{ color: #666; }

/* DNN Slider Input Style */
div.dnnSliderInput {
	position: relative;
	display: inline-block;
	width: 47%;
    margin:15px 0 23px 0;
    max-width: 445px;
	border: 1px solid #d3d3d3;
	-ms-border-radius: 3px;
	border-radius: 3px;
	height: 10px;
}

div.dnnSliderInput .ui-slider-handle {
	position: absolute;
    z-index: 2;
    width: 14px;
    height: 14px;
    cursor: default;
	border: 1px solid #aaaaaa;
    background-color: #cccccc;
    font-weight: normal;
    color: #555555;
	outline: none;
	top: -2px;
	margin-left: -7px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
div.dnnSliderInput .dnnTooltip {
	top: -37px;
	margin-left: -22px;
}
div.dnnSliderInput .dnnTooltip .dnnFormHelpContent {
	visibility: visible;
	padding: 4px 10px;
	width: 25px;
	text-align: center;
	z-index: 1;
}
/*END DNN Slider Input Style*/

/*------------------------------------------------*/
/* Fix RTL Dnnplus.ir 2016 Dnn8.x */
/*------------------------------------------------*/
body.rtl {
  direction: rtl;
  text-align: right;
}
.rtl #languageFlags {
  float: left !important;
}
.rtl .ui-tabs .ui-tabs-nav li:first-child .dnnWizardStep {
  padding-left: 0;
  padding-right: 30px;
}
.rtl .dnnWizardStep > span {
  float: right;
}
.rtl .dnnWizardStepTitle {
  margin: 13px 0 0 20px;
}
.rtl .dnnWizardTab.ui-tabs .ui-tabs-nav li {
  float: right;
}
.rtl .dnnWizardStepArrow {
  background: transparent url("/images/InstallWizardBG.rtl.png") no-repeat scroll 0 -401px;
}
.rtl .dnnWizardStepNumber {
  margin: 10px 0 0 10px;
}
.rtl .dnnForm .dnnFormItem {
  text-align: right;
}
.rtl .dnnLabel {
  float: right;
  margin-left: 18px;
  margin-right: 0;
  text-align: left;
  padding-left: 20px;
  padding-right: 0;
}
.rtl a.dnnFormHelp {
  right: auto;
  left: 0;
}
.rtl .dnnTooltip .dnnFormHelpContent,.rtl .dnnHelperTip .dnnFormHelpContent {
  text-align: right;
  padding: 10px 30px 10px 10px;
}
.rtl a.pinHelp {
  left: 0;
  right: 7px;
}
.rtl .dnnFormItem .information {
  margin-left: 0;
  margin-right: 29%;
  text-align: justify;
}
.rtl .dnnFormItem.information-checkbox .dnnLabel {
  margin-left: 0;
}
.rtl #advancedDatabase input {
  direction: ltr;
}

.rtl .dnnFormItem input.validate-success,.rtl .dnnFormItem input.matched,
.rtl .dnnFormItem input.validate-fail,.rtl .dnnFormItem input.unmatched{
  background-position: 2% center !important;
}
.rtl .dnnFormItem #advancedDatabase input.validate-success, .rtl .dnnFormItem #advancedDatabase input.matched,
.rtl .dnnFormItem #advancedDatabase input.validate-fail,.rtl .dnnFormItem #advancedDatabase input.unmatched {
  background-position: 98% center !important;
}

.rtl .bottomArrow::after {
  left: 0;
  right: 15px;
}
.rtl .dnnWizardStep {
  padding: 0 20px 0 0;
}

.rtl div#installation-progress {
  float: right;
  margin-left: 0;
  margin-right: -20px !important;
}

.rtl div#banners {
  margin-left: 0;
  margin-right: -20px !important;
}
.rtl div#installation-steps {
  float: left;
}
.rtl .visitSiteLink {
  float: left;
}
.rtl span.states-icons {
  background-image: url("/images/installer-feedback-states-sprite.rtl.png");
}
.rtl p.step-done > span.states-icons {
  background-position: 5px 3px;
}

.rtl ul.dnnAdminTabNav li {
  float: right;
}
.rtl h2.dnnFormSectionHead a {
  padding-right: 20px;
}
.rtl div.dnnFixedSizeComboBox {
  float: right;
  margin-left: 15px;
  margin-right: 0;
}
.rtl .dnnFixedSizeComboBox + a.dnnSecondaryAction {
  float: right;
  margin-left: 10px;
  margin-right: 0;
}
.rtl input.dnnFixedSizeComboBox {
  float: right;
  margin-left: 15px;
  margin-right: 0;
}
.rtl .dnnFormRadioButtons {
  float: right;
}
.rtl .dnnFormRadioButtons label, .rtl .dnnFormItem input[type="radio"] + label {
  margin: 0 0 0 10px;
  text-align: right;
}
.rtl .dnnFileUploadScope {
  float: right;
  margin-left: 10px;
  margin-right: 0;
}
.rtl .dnnLeft {
  float: right;
}
.rtl .dnnRight {
  float: left;
}
.rtl .dnnFileUploadScope .dnnFormItem span, .rtl .urlControlTab .dnnFormItem > span {
  float: right;
  padding-left: 0;
  padding-right: 5px;
  text-align: right;
}
.rtl .dnnActions {
  text-align: right;
}
.rtl .dnnForm fieldset {
  text-align: right;
}
.rtl .dnnPermissionsGrid > .dnnFormItem > .rightGroup {
  float: right;
}
.rtl .dnnPermissionsGrid > .dnnFormItem > .leftGroup {
  float: right;
  margin-left: 25px;
  margin-right: 0;
}
.rtl table.dnnPermissionsGrid tr.dnnGridHeader td.permissionHeader {
  padding-left: 0;
  padding-right: 10px;
  text-align: right;
}
.rtl table.dnnPermissionsGrid tr.dnnGridItem td.permissionHeader, .rtl table.dnnPermissionsGrid tr.dnnGridAltItem td.permissionHeader {
  border-left: 1px solid #c9c9c9;
  border-right: 0 none;
  padding-left: 0;
  padding-right: 10px;
  text-align: right;
}
/*.rtl .dnnGridItem td, .dnnGridAltItem td {
  border-left: 1px solid #c9c9c9;
  border-right: 0 none;
}*/
.rtl .urlControl .urlControlLinkType {
  float: right;
}
.rtl .urlControl .urlControlLinkType .dnnFormLabel {
  float: right;
}
.rtl .urlControlLinkType span, .rtl .dnnFormItem .urlControlLinkType span {
  text-align: right;
}
.rtl .dnnActions li {
  float: right;
}
.rtl div.dnnSliderInput .dnnTooltip {
  margin-left: auto;
  margin-right: 423px;
}
.rtl span.dnnInputFileWrapper {
  float: right !important;
  margin: 0 0 0 4px;
}
.rtl .sqlQuery .cm-s-dnn-sql.CodeMirror {
  direction: ltr;
  text-align: left;
}
.rtl div.dnnSmallSizeComboBox {
  float: right;
  margin-left: 15px;
  margin-right: 0;
}
.rtl input.dnnSmallSizeComboBox {
  float: right;
  margin-left: 10px;
  margin-right: 0;
}
.rtl .dnnFormItem .ucLinkTypeRadioButtons label {
  text-align: right;
}
/*this is a class to style the design table*/

/* Edit View */
.LinksDesignTable {
}
.MessageSuccees {
    color:Green;
    font-weight:bold;
}
.MessageFailure {
    color:Red;
    font-weight:bold;
}

/* Module View */

.link_module {
}

.linklist{
    list-style: none;
    margin:0;
    padding:0;
    z-index: -1;
}

.linkitem{
    list-style: none;
    line-height:1.5;
    margin:0;
    padding:0; 
    }
#pp_position {
    position: relative;   
}
ul.linklist.Horizontal{
 
}

li.linkitem.Horizontal{
   display: inline-block;
   line-height:2;
   float: left;
   margin:0 15px 0 0;
}

.item_desc{
    line-height: 1.3;
    margin: 0 0 0 20px;
    white-space:normal;

}

/*popup*/

.popup {
    position: absolute;
    display: none; /* keeps the popup hidden if no JS available */
    z-index: 999;
}
#ppwrap {
  width:202px;
  background: url("/DesktopModules/Links/img/top.gif") no-repeat top;
  padding:17px 0 0 0;
  

}
#ppbottom {
  width:202px;
  background: url("/DesktopModules/Links/img/bottom.gif") no-repeat;
  height:5px;
  
}
#ppbody {
  width:182px;
  padding:10px;
  min-height:30px;
  background: url("/DesktopModules/Links/img/body.gif") repeat-y #F8F8F8;
  color: #666;
  font-size: 11px;
  font-family: Arial;
}
#ppbody span { 
  white-space:pre-line;
}
.searchInputContainer {
    display: inline-block;
    margin: 0 -3px 0 0;
    position: relative;
}
    .searchInputContainer > input[type="text"]::-ms-clear {
        display: none;
    }

    .searchInputContainer a.dnnSearchBoxClearText {
        display: block;
        position: absolute;
        right: 10px;
        width: 16px;
        height: 16px;
        background: none;
        cursor: pointer;
        margin: 7px 0 7px 0;
        z-index: 20;
    }

        .searchInputContainer a.dnnSearchBoxClearText.dnnShow {
            background: url("/images/search/clearText.png") center center no-repeat;
        }

ul.searchSkinObjectPreview {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    margin: 0;
    list-style: none;
    border: 1px solid #c9c9c9;
    width: 350px;
    z-index: 200;
    padding: 0;
}

ul.searchSkinObjectPreview li {
    list-style: none;
}

    ul.searchSkinObjectPreview > li {
        padding: 6px 12px 6px 22px;
        border-top: 1px solid #c9c9c9;
        color: #666;
        cursor: pointer;
        position: relative;
        margin: 0;
        text-transform: none;
    }

        ul.searchSkinObjectPreview > li:hover {
            background-color: #e8f1fa;
            color: #333;
        }

        ul.searchSkinObjectPreview > li > span {
        }

        ul.searchSkinObjectPreview > li > span img.userpic {
            width: 32px;
            height: 32px;
            display: block;
            float: left;
            margin-right: 4px;
        }

            ul.searchSkinObjectPreview > li > span > b {
                font-weight: bold;
                color: #000;
            }

        ul.searchSkinObjectPreview > li p {
            margin: 0;
            font-size: 10px;
            line-height: 1.2em;
            color: #999;
            font-style: italic;
            white-space: normal;
        }

            ul.searchSkinObjectPreview > li p b {
                color: #000;
            }

        ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group {
            padding: 6px 12px 6px 12px;
            font-weight: bold;
            color: #000;
            border-bottom: 2px solid #000;
            cursor: inherit;
        }

            ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group:hover {
                background-color: #fff;
                color: #000;
            }

        ul.searchSkinObjectPreview > li > a.searchSkinObjectPreview_more {
            display: inline;
            position: static;
            background: none;
            z-index: inherit;
            width: auto;
            height: auto;
            text-indent: inherit;
            float: none;
        }
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url("/Portals/_default/Skins/ForVend/fonts/glyphicons-halflings-regular.eot");src:url("/Portals/_default/Skins/ForVend/fonts/glyphicons-halflings-regular.eot?#iefix") format('embedded-opentype'),url("/Portals/_default/Skins/ForVend/fonts/glyphicons-halflings-regular.woff2") format('woff2'),url("/Portals/_default/Skins/ForVend/fonts/glyphicons-halflings-regular.woff") format('woff'),url("/Portals/_default/Skins/ForVend/fonts/glyphicons-halflings-regular.ttf") format('truetype'),url("/Portals/_default/Skins/ForVend/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.dnn_layout{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container,.dnn_layout{width:750px}}@media (min-width:992px){.container,.dnn_layout{width:970px}}@media (min-width:1200px){.container,.dnn_layout{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-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,-webkit-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}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header,.dnn_layout>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header,.dnn_layout>.navbar-collapse,.dnn_layout>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.dnn_layout .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.dnn_layout .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container,.jumbotron .dnn_layout{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.dnn_layout .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dnn_layout:after,.dnn_layout:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dnn_layout:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}

 
.verticalTab_Left{clear:both;}.verticalTab_Left:after{clear:both;content:".";height:0px;font-size:0px;visibility:hidden;display:block;}.verticalTab_Left ul.resp-tabs-list{float:left;margin:0;padding:1px 0;}.verticalTab_Left .resp-tabs-container{padding:0;margin:0;overflow:auto;}.verticalTab_Left .resp-tab-content .resp_margin{margin-left:25px;}.verticalTab_Left ul.resp-tabs-list li{font-size:13px;margin:0;list-style:none;border-top:1px solid #e8e8e8;border-right:1px solid #e8e8e8;position:relative;z-index:1;min-width:120px;transition:background-color ease-in 200ms;-moz-transition:background-color ease-in 200ms;/* Firefox 4 */-webkit-transition:background-color ease-in 200ms;/* Safari and Chrome */-o-transition:background-color ease-in 200ms;/* Opera */-ms-transition:background-color ease-in 200ms;/* IE9? */}.verticalTab_Left ul.resp-tabs-list li:first-child{border-top:none;}.verticalTab_Left ul.resp-tabs-list li span{border:none;padding:8px 15px;display:block;white-space:nowrap;cursor:pointer;}.verticalTab_Left ul.resp-tabs-list li:hover{background:#eeeeee;}.verticalTab_Left ul.resp-tabs-list li:hover span{color:#333;}.verticalTab_Left ul.resp-tabs-list li.resp-tab-active{position:relative;z-index:1;color:#FFF;background-color:#69b532}.verticalTab_Left ul.resp-tabs-list li.resp-tab-active span{background-position:right top;background-repeat:no-repeat;margin-right:-16px;padding-right:31px;color:#FFF;}.verticalTab_Left h2.resp-accordion,.verticalTab_Left .resp_container{display:none;}@media only screen and (max-width:768px){.verticalTab_Left ul.resp-tabs-list{display:none;}.verticalTab_Left h2.resp-accordion{display:block;border:1px solid #e1e1e1;border-bottom:none;font-size:12px;font-weight:normal;padding:8px 15px;cursor:pointer;margin:0;color:#919191;transition:background-color ease-in 200ms;-moz-transition:background-color ease-in 200ms;/* Firefox 4 */-webkit-transition:background-color ease-in 200ms;/* Safari and Chrome */-o-transition:background-color ease-in 200ms;/* Opera */-ms-transition:background-color ease-in 200ms;/* IE9? */}.verticalTab_Left .resp-arrow{float:right;position:relative;top:1px;display:inline-block;font-family:'FontAwesome';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;margin-top:4px;}.verticalTab_Left .resp-arrow:empty{width:1em;}.verticalTab_Left .resp-arrow:before{content:"\f067";}.verticalTab_Left .resp-tab-active .resp-arrow:before{content:"\f068";}.verticalTab_Left .resp-accordion:hover{background:#eeeeee;color:#333333;}.verticalTab_Left .resp-tab-active,.verticalTab_Left .resp-tab-active:hover{background:#69b532;}.verticalTab_Left .resp-tab-active span{color:#FFF;}.verticalTab_Left .resp-tabs-container{width:100%;margin:0px;border-radius:0px;-moz-border-radius:0px;-webkit-border-radius:0px;border-bottom:1px solid #e1e1e1;}.verticalTab_Left .resp-tabs-container .resp_margin{margin:15px;}.verticalTab_Left .resp-tab-content{border:1px solid #e1e1e1;border-bottom:none;width:auto !important;padding:0px;margin-bottom:0px;clear:both;display:none;}.verticalTab_Left .resp-tab-content:after{clear:both;content:".";height:0px;font-size:0px;visibility:hidden;display:block;}}/*tabs right*/.verticalTab_Right{clear:both;}.verticalTab_Right:after{clear:both;content:".";height:0px;font-size:0px;visibility:hidden;display:block;}.verticalTab_Right ul.resp-tabs-list{float:right;margin:0;padding:1px 0;}.verticalTab_Right .resp-tabs-container{padding:0;margin:0;overflow:auto;}.verticalTab_Right .resp-tab-content .resp_margin{margin-right:25px;}.verticalTab_Right ul.resp-tabs-list li{font-size:13px;margin:0;list-style:none;border-top:1px solid #e8e8e8;border-left:1px solid #e8e8e8;position:relative;z-index:1;min-width:120px;transition:background-color ease-in 200ms;-moz-transition:background-color ease-in 200ms;/* Firefox 4 */-webkit-transition:background-color ease-in 200ms;/* Safari and Chrome */-o-transition:background-color ease-in 200ms;/* Opera */-ms-transition:background-color ease-in 200ms;/* IE9? */}.verticalTab_Right ul.resp-tabs-list li:first-child{border-top:none;}.verticalTab_Right ul.resp-tabs-list li span{border:none;padding:8px 15px;display:block;white-space:nowrap;cursor:pointer;}.verticalTab_Right ul.resp-tabs-list li:hover{background:#eeeeee;}.verticalTab_Right ul.resp-tabs-list li:hover span{color:#333;}.verticalTab_Right ul.resp-tabs-list li.resp-tab-active{position:relative;z-index:1;color:#FFF;background-color:#69b532}.verticalTab_Right ul.resp-tabs-list li.resp-tab-active span{background-position:left top;background-repeat:no-repeat;background-color:#69b532;margin-left:-16px;padding-left:31px ;color:#FFF;}.verticalTab_Right h2.resp-accordion,.verticalTab_Right .resp_container{display:none;}@media only screen and (max-width:768px){.verticalTab_Right ul.resp-tabs-list{display:none;}.verticalTab_Right h2.resp-accordion{display:block;border:1px solid #e1e1e1;border-bottom:none;font-size:12px;font-weight:normal;padding:8px 15px;cursor:pointer;margin:0;color:#919191;transition:background-color ease-in 200ms;-moz-transition:background-color ease-in 200ms;/* Firefox 4 */-webkit-transition:background-color ease-in 200ms;/* Safari and Chrome */-o-transition:background-color ease-in 200ms;/* Opera */-ms-transition:background-color ease-in 200ms;/* IE9? */}.verticalTab_Right .resp-arrow{float:right;position:relative;top:1px;display:inline-block;font-family:'FontAwesome';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;margin-top:4px;}.verticalTab_Right .resp-arrow:empty{width:1em;}.verticalTab_Right .resp-arrow:before{content:"\f067";}.verticalTab_Right .resp-tab-active .resp-arrow:before{content:"\f068";}.verticalTab_Right .resp-accordion:hover{background:#eeeeee;color:#333333;}.verticalTab_Right .resp-tab-active,.verticalTab_Right .resp-tab-active:hover{background:#69b532;}.verticalTab_Right .resp-tab-active span{color:#FFF;}.verticalTab_Right .resp-tabs-container{width:100%;margin:0px;border-radius:0px;-moz-border-radius:0px;-webkit-border-radius:0px;border-bottom:1px solid #e1e1e1;}.verticalTab_Right .resp-tabs-container .resp_margin{margin:15px;}.verticalTab_Right .resp-tab-content{border:1px solid #e1e1e1;border-bottom:none;width:auto !important;padding:0px;margin-bottom:0px;clear:both;display:none;}.verticalTab_Right .resp-tab-content:after{clear:both;content:".";height:0px;font-size:0px;visibility:hidden;display:block;}}/*tabs top*/.horizontalTab_Top{clear:both;}.horizontalTab_Top:after{clear:both;content:".";height:0px;font-size:0px;visibility:hidden;display:block;}.horizontalTab_Top ul.resp-tabs-list{margin:0;padding:1px 0;}.horizontalTab_Top .resp-tabs-container{padding:0;margin:0;clear:both;border:1px solid #e8e8e8;}.horizontalTab_Top .resp-tabs-container:after{clear:both;content:".";height:0px;font-size:0px;visibility:hidden;display:block;}*+html .horizontalTab_Top .resp-tabs-container{display:inline-block}.horizontalTab_Top .resp-tab-content .resp_margin{margin:15px;}.horizontalTab_Top ul.resp-tabs-list li{font-size:13px;margin:0;list-style:none;border-top:1px solid #e8e8e8;border-right:1px solid #e8e8e8;margin-bottom:-1px;float:left;position:relative;z-index:1;transition:background-color ease-in 200ms;-moz-transition:background-color ease-in 200ms;/* Firefox 4 */-webkit-transition:background-color ease-in 200ms;/* Safari and Chrome */-o-transition:background-color ease-in 200ms;/* Opera */-ms-transition:background-color ease-in 200ms;/* IE9? */}.horizontalTab_Top ul.resp-tabs-list li:first-child{border-left:1px solid #e8e8e8;}.horizontalTab_Top ul.resp-tabs-list li span{border:none;padding:8px 15px;display:block;white-space:nowrap;cursor:pointer;}.horizontalTab_Top ul.resp-tabs-list li:hover{background:#eeeeee;}.horizontalTab_Top ul.resp-tabs-list li:hover span{color:#333;}.horizontalTab_Top ul.resp-tabs-list li.resp-tab-active{position:relative;z-index:1;color:#FFF;}.horizontalTab_Top .resp-tab-active,.horizontalTab_Top .resp-tab-active:hover{background:none;}.horizontalTab_Top ul.resp-tabs-list li.resp-tab-active span{background-color:#FFF;color:#69b532;}.horizontalTab_Top h2.resp-accordion,.horizontalTab_Top .resp_container{display:none;}@media only screen and (max-width:768px){.horizontalTab_Top ul.resp-tabs-list{display:none;}.horizontalTab_Top h2.resp-accordion{display:block;border:1px solid #e1e1e1;border-bottom:none;font-size:12px;font-weight:normal;padding:8px 15px;cursor:pointer;margin:0;color:#919191;transition:background-color ease-in 200ms;-moz-transition:background-color ease-in 200ms;/* Firefox 4 */-webkit-transition:background-color ease-in 200ms;/* Safari and Chrome */-o-transition:background-color ease-in 200ms;/* Opera */-ms-transition:background-color ease-in 200ms;/* IE9? */}.horizontalTab_Top .resp-arrow{float:right;position:relative;top:1px;display:inline-block;font-family:'FontAwesome';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;margin-top:4px;}.horizontalTab_Top .resp-arrow:empty{width:1em;}.horizontalTab_Top .resp-arrow:before{content:"\f067";}.horizontalTab_Top .resp-tab-active .resp-arrow:before{content:"\f068";}.horizontalTab_Top .resp-accordion:hover{background:#eeeeee;color:#333333;}.horizontalTab_Top .resp-tab-active,.horizontalTab_Top .resp-tab-active:hover{background:#69b532;}.horizontalTab_Top .resp-tab-active span{color:#FFF;}.horizontalTab_Top .resp-tabs-container{width:100%;margin:0px;border-radius:0px;-moz-border-radius:0px;-webkit-border-radius:0px;border:none;border-bottom:1px solid #e1e1e1;}.horizontalTab_Top .resp-tabs-container .resp_margin{margin:15px;}.horizontalTab_Top .resp-tab-content{border:1px solid #e1e1e1;border-bottom:none;width:auto !important;padding:0px;margin-bottom:0px;clear:both;display:none;}.horizontalTab_Top .resp-tab-content:after{clear:both;content:".";height:0px;font-size:0px;visibility:hidden;display:block;}}

/*CSS3 Animation*/
.animated,.animated .animation_item{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;animation-delay:200ms;-webkit-animation-delay:200ms}span.animation,a.animation,b.animation,i.animation,span.animationhover,a.animationhover,b.animationhover,i.animationhover,span.animation_item,a.animation_item,b.animation_item,i.animation_item{display:inline-block}.animated.infinite,.animation_item.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge,.animation_item.hinge{-webkit-animation-duration:2s;animation-duration:2s}.animation img,.animationhover img,.animated .animation_item img {	max-width:100%;}.animation{opacity:0}.animationhover,.animated{opacity:1}.animationhover{animation-delay:0ms;-webkit-animation-delay:0ms}@keyframes bounce{0%,100%,20%,53%,80%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);-webkit-transform:translate3d(0,-30px,0);-ms-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);-webkit-transform:translate3d(0,-15px,0);-ms-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);-ms-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@-webkit-keyframes bounce{0%,100%,20%,53%,80%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.animated.bounce,.animated .animation_item.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}.animated.flash,.animated .animation_item.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes pulse{0%{-webkit-transform:scale3d(1,1,1);-ms-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);-ms-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}100%{-webkit-transform:scale3d(1,1,1);-ms-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.animated.pulse,.animated .animation_item.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(0.75,1.25,1);transform:scale3d(0.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes rubberBand{0%{-webkit-transform:scale3d(1,1,1);-ms-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);-ms-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(0.75,1.25,1);-ms-transform:scale3d(0.75,1.25,1);transform:scale3d(0.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);-ms-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);-ms-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);-ms-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}100%{-webkit-transform:scale3d(1,1,1);-ms-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.animated.rubberBand,.animated .animation_item.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{0%,100%{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);-ms-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);-ms-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.animated.shake,.animated .animation_item.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}100%{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);-ms-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);-ms-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);-ms-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);-ms-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}100%{-webkit-transform:rotate3d(0,0,1,0deg);-ms-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.animated.swing,.animated .animation_item.swing{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes tada{0%{-webkit-transform:scale3d(1,1,1);-ms-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);-ms-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);-ms-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);-ms-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}100%{-webkit-transform:scale3d(1,1,1);-ms-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.animated.tada,.animated .animation_item.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}100%{-webkit-transform:none;transform:none}}@keyframes wobble{0%{-webkit-transform:none;-ms-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);-ms-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);-ms-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);-ms-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);-ms-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);-ms-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}100%{-webkit-transform:none;-ms-transform:none;transform:none}}.animated.wobble,.animated .animation_item.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes bounceIn{0%,100%,20%,40%,60%,80%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}100%{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes bounceIn{0%,100%,20%,40%,60%,80%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);-ms-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);-ms-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);-ms-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);-ms-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);-ms-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}100%{opacity:1;-webkit-transform:scale3d(1,1,1);-ms-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.animated.bounceIn,.animated .animation_item.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn;-webkit-animation-duration:.75s;animation-duration:.75s}@-webkit-keyframes bounceInDown{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}100%{-webkit-transform:none;transform:none}}@keyframes bounceInDown{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);-ms-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);-ms-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);-ms-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);-ms-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}100%{-webkit-transform:none;-ms-transform:none;transform:none}}.animated.bounceInDown,.animated .animation_item.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes bounceInLeft{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);-ms-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);-ms-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);-ms-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);-ms-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;-ms-transform:none;transform:none}}.animated.bounceInLeft,.animated .animation_item.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes bounceInRight{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0);-ms-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);-ms-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);-ms-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);-ms-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}100%{-webkit-transform:none;-ms-transform:none;transform:none}}.animated.bounceInRight,.animated .animation_item.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);-ms-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);-ms-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);-ms-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);-ms-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.animated.bounceInUp,.animated .animation_item.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);-ms-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);-ms-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);-ms-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.animated.bounceOut,.animated .animation_item.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut;-webkit-animation-duration:.75s;animation-duration:.75s}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);-ms-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);-ms-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);-ms-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.animated.bounceOutDown,.animated .animation_item.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);-ms-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);-ms-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);-ms-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);-ms-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.animated.bounceOutRight,.animated .animation_item.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);-ms-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);-ms-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);-ms-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.animated.bounceOutUp,.animated .animation_item.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.animated.fadeIn,.animated .animation_item.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-20px,0);-ms-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.animated.fadeInDown,.animated .animation_item.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);-ms-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.animated.fadeInDownBig,.animated .animation_item.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-20px,0,0);-ms-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.animated.fadeInLeft,.animated .animation_item.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);-ms-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.animated.fadeInLeftBig,.animated .animation_item.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(20px,0,0);-ms-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.animated.fadeInRight,.animated .animation_item.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);-ms-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.animated.fadeInRightBig,.animated .animation_item.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,20px,0);-ms-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.animated.fadeInUp,.animated .animation_item.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);-ms-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.animated.fadeInUpBig,.animated .animation_item.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.animated.fadeOut,.animated .animation_item.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,100%,0);-ms-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animated.fadeOutDown,.animated .animation_item.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);-ms-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.animated.fadeOutDownBig,.animated .animation_item.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(-100%,0,0);-ms-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animated.fadeOutLeft,.animated .animation_item.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);-ms-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.animated.fadeOutLeftBig,.animated .animation_item.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(100%,0,0);-ms-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animated.fadeOutRight,.animated .animation_item.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);-ms-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.animated.fadeOutRightBig,.animated .animation_item.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,-100%,0);-ms-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animated.fadeOutUp,.animated .animation_item.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);-ms-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.animated.fadeOutUpBig,.animated .animation_item.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);-ms-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-ms-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-ms-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);-ms-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px);-ms-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip,.animated .animation_item.flip{-webkit-backface-visibility:visible;-ms-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}100%{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);-ms-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);-ms-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);-ms-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);-ms-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}100%{-webkit-transform:perspective(400px);-ms-transform:perspective(400px);transform:perspective(400px)}}.animated.flipInX,.animated .animation_item.flipInX{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}100%{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);-ms-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);-ms-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);-ms-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);-ms-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}100%{-webkit-transform:perspective(400px);-ms-transform:perspective(400px);transform:perspective(400px)}}.animated.flipInY,.animated .animation_item.flipInY{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}100%{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);-ms-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);-ms-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}100%{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);-ms-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.animated.flipOutX,.animated .animation_item.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}100%{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);-ms-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);-ms-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}100%{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);-ms-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.animated.flipOutY,.animated .animation_item.flipOutY{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY;-webkit-animation-duration:.75s;animation-duration:.75s}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}100%{-webkit-transform:none;transform:none;opacity:1}}@keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);-ms-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);-ms-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);-ms-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}100%{-webkit-transform:none;-ms-transform:none;transform:none;opacity:1}}.animated.lightSpeedIn,.animated .animation_item.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{opacity:1}100%{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{0%{opacity:1}100%{-webkit-transform:translate3d(100%,0,0) skewX(30deg);-ms-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animated.lightSpeedOut,.animated .animation_item.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}100%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateIn{0%{-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);-ms-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}100%{-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:none;-ms-transform:none;transform:none;opacity:1}}.animated.rotateIn,.animated .animation_item.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);-ms-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;-ms-transform:none;transform:none;opacity:1}}.animated.rotateInDownLeft,.animated .animation_item.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);-ms-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;-ms-transform:none;transform:none;opacity:1}}.animated.rotateInDownRight,.animated .animation_item.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);-ms-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;-ms-transform:none;transform:none;opacity:1}}.animated.rotateInUpLeft,.animated .animation_item.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);-ms-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;-ms-transform:none;transform:none;opacity:1}}.animated.rotateInUpRight,.animated .animation_item.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center;transform-origin:center;opacity:1}100%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes rotateOut{0%{-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;opacity:1}100%{-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);-ms-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.animated.rotateOut,.animated .animation_item.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0,0,1,45deg);transform:rotate(0,0,1,45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;opacity:1}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0,0,1,45deg);-ms-transform:rotate(0,0,1,45deg);transform:rotate(0,0,1,45deg);opacity:0}}.animated.rotateOutDownLeft,.animated .animation_item.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;opacity:1}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);-ms-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.animated.rotateOutDownRight,.animated .animation_item.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;opacity:1}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);-ms-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.animated.rotateOutUpLeft,.animated .animation_item.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;opacity:1}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);-ms-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}.animated.rotateOutUpRight,.animated .animation_item.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);-ms-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);-ms-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translate3d(0,700px,0);-ms-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.animated.hinge,.animated .animation_item.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);-ms-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}100%{opacity:1;-webkit-transform:none;-ms-transform:none;transform:none}}.animated.rollIn,.animated .animation_item.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}@keyframes rollOut{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);-ms-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.animated.rollOut,.animated .animation_item.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);-ms-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animated.zoomIn,.animated .animation_item.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-ms-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-ms-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.animated.zoomInDown,.animated .animation_item.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-ms-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-ms-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.animated.zoomInLeft,.animated .animation_item.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-ms-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-ms-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.animated.zoomInRight,.animated .animation_item.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-ms-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-ms-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.animated.zoomInUp,.animated .animation_item.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}100%{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);-ms-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}100%{opacity:0}}.animated.zoomOut,.animated .animation_item.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}100%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-ms-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}100%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-ms-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.animated.zoomOutDown,.animated .animation_item.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}100%{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);-ms-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}100%{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);-ms-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center}}.animated.zoomOutLeft,.animated .animation_item.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}100%{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);-ms-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}100%{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);-ms-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center}}.animated.zoomOutRight,.animated .animation_item.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}100%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-ms-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}100%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-ms-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.animated.zoomOutUp,.animated .animation_item.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@keyframes scaleUp{0%{opacity:0;transform:scale(.8)}100%{opacity:1;transform:scale(1)}}@-webkit-keyframes scaleUp{0%{opacity:0;-webkit-transform:scale(.8)}100%{opacity:1;-webkit-transform:scale(1)}}.animated.scaleUp,.animated .animation_item.scaleUp{-webkit-animation-name:scaleUp;-moz-animation-name:scaleUp;-o-animation-name:scaleUp;animation-name:scaleUp}.animated.delay1,.animated .animation_item.delay1{animation-delay:400ms;-webkit-animation-delay:400ms}.animated.delay2,.animated .animation_item.delay2{animation-delay:600ms;-webkit-animation-delay:600ms}.animated.delay3,.animated .animation_item.delay3{animation-delay:800ms;-webkit-animation-delay:800ms}.animated.delay4,.animated .animation_item.delay4{animation-delay:1000ms;-webkit-animation-delay:1000ms}.animated.delay5,.animated .animation_item.delay5{animation-delay:1200ms;-webkit-animation-delay:1200ms}.animated.delay6,.animated .animation_item.delay6{animation-delay:1400ms;-webkit-animation-delay:1400ms}.animated.delay7,.animated .animation_item.delay7{animation-delay:1600ms;-webkit-animation-delay:1600ms}.animated.delay8,.animated .animation_item.delay8{animation-delay:1800ms;-webkit-animation-delay:1800ms}.animated.delay9,.animated .animation_item.delay9{animation-delay:2000ms;-webkit-animation-delay:2000ms}.animated.delay10,.animated .animation_item.delay10{animation-delay:2200ms;-webkit-animation-delay:2200ms}.animated.delay11,.animated .animation_item.delay11{animation-delay:2400ms;-webkit-animation-delay:2400ms}.animated.delay12,.animated .animation_item.delay12{animation-delay:2600ms;-webkit-animation-delay:2600ms}@-webkit-keyframes star{0%,50%,100%{opacity:1}25%,75%{opacity:0}0%{-webkit-transform:rotate(0deg) scale(1)}50%{-webkit-transform:rotate(180deg) scale(0.7)}100%{-webkit-transform:rotate(360deg) scale(1)}}@-moz-keyframes star{0%,50%,100%{opacity:1}25%,75%{opacity:0}0%{-moz-transform:rotate(0deg) scale(1)}50%{-moz-transform:rotate(180deg) scale(0.7)}100%{-moz-transform:rotate(360deg) scale(1)}}@-o-keyframes star{0%,50%,100%{opacity:1}25%,75%{opacity:0}0%{-o-transform:rotate(0deg) scale(1)}50%{-o-transform:rotate(180deg) scale(0.7)}100%{-o-transform:rotate(360deg) scale(1)}}@keyframes star{0%,50%,100%{opacity:1}25%,75%{opacity:0}0%{transform:rotate(0deg) scale(1)}50%{transform:rotate(180deg) scale(0.7)}100%{transform:rotate(360deg) scale(1)}}@-webkit-keyframes cloud{0%{left:-100px}100%{left:100%}}@-moz-keyframes cloud{0%{left:-100px}100%{left:100%}}@-o-keyframes cloud{0%{left:-100px}100%{left:100%}}@keyframes cloud{0%{left:-100px}100%{left:100%}}@-webkit-keyframes snowflake{0%{top:-100px;-webkit-transform:rotate(0deg) translateX(0)}25%{-webkit-transform:rotate(360deg) translateX(20px)}50%{-webkit-transform:rotate(720deg) translateX(0px)}75%{-webkit-transform:rotate(1080deg) translateX(-20px)}100%{top:100%;-webkit-transform:rotate(1440deg) translateX(0px)}}@-moz-keyframes snowflake{0%{top:-100px;-moz-transform:rotate(0deg) translateX(0)}25%{-moz-transform:rotate(360deg) translateX(20px)}50%{-moz-transform:rotate(720deg) translateX(0px)}75%{-moz-transform:rotate(1080deg) translateX(-20px)}100%{top:100%;-moz-transform:rotate(1440deg) translateX(0px)}}@-o-keyframes snowflake{0%{top:-100px;-o-transform:rotate(0deg) translateX(0)}25%{-o-transform:rotate(360deg) translateX(20px)}50%{-o-transform:rotate(720deg) translateX(0px)}75%{-o-transform:rotate(1080deg) translateX(-20px)}100%{top:100%;-o-transform:rotate(1440deg) translateX(0px)}}@keyframes snowflake{0%{top:-100px;transform:rotate(0deg) translateX(0)}25%{transform:rotate(360deg) translateX(20px)}50%{transform:rotate(720deg) translateX(0px)}75%{transform:rotate(1080deg) translateX(-20px)}100%{top:100%;transform:rotate(1440deg) translateX(0px)}}@-webkit-keyframes dandelion{0%{opacity:0;left:20%}10%{opacity:1}100%{bottom:100%}}@-moz-keyframes dandelion{0%{opacity:0;left:20%}10%{opacity:1}100%{bottom:100%}}@-o-keyframes dandelion{0%{opacity:0;left:20%}10%{opacity:1}100%{bottom:100%}}@keyframes dandelion{0%{opacity:0;left:20%}10%{opacity:1}100%{bottom:100%}}@keyframes arrows{0%,100%,20%,53%,80%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1);bottom:0}40%,43%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);bottom:20px}70%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);bottom:-10px}90%{bottom:-3px}}@-webkit-keyframes arrows{0%,100%,20%,53%,80%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1);bottom:0}40%,43%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);bottom:20px}70%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);bottom:-10px}90%{bottom:-3px}}@media only screen and (max-width:767px){.animated,.animated .animation_item{-webkit-animation-name:none!important;-moz-animation-name:none!important;-o-animation-name:none!important;animation-name:none!important}	.animation{opacity:1;}}

/*prettify.js*/
.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}

/*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
.rating { unicode-bidi: bidi-override;direction: rtl;font-size: 30px;}.rating span.star {font-family: FontAwesome;font-weight: normal;font-style: normal;display: inline-block;}.rating span.star:hover {cursor: pointer;}.rating span.star:before {content: "\f006"; padding-right: 5px;color: #777777;}.rating span.star:hover:before,.rating span.star:hover ~ span.star:before {content: "\f005";color: #e3cf7a;}.fontawesome-icon-list .fa-hover {display: block;color: #222222;line-height: 32px;height: 32px;padding-left: 10px;border-radius: 4px;cursor: pointer}.fontawesome-icon-list .fa-hover .fa {width: 32px;font-size: 14px;display: inline-block;text-align: right;margin-right: 10px}.fontawesome-icon-list .fa-hover:hover {background-color: #07c6f5;color: #ffffff;text-decoration: none}.fontawesome-icon-list .fa-hover:hover .fa {font-size: 28px;vertical-align: -6px}.fontawesome-icon-list .fa-hover:hover .text-muted {color: #bbe2d5}

.left {
    float: left;
}
.right {
    float: right;
}

.modal-xl{
	width:95%;
}



.table{
	border-top:1px solid #dddddd;
	border-bottom:1px solid #dddddd;
	color:#666666;
}
.table th{
	color:#424242;
	font-weight:normal;
}
.table>thead>tr>th{
	border-bottom:1px solid #bbbbbb;
}
.table-hover>tbody>tr{
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
.table-hover>tbody>tr:hover {
    background-color: #fcfcfc;
}
.table-striped>tbody>tr:nth-of-type(odd){
    background-color: #fcfcfc;
}
.table>tbody>tr>td, 
.table>tbody>tr>th, 
.table>tfoot>tr>td, 
.table>tfoot>tr>th, 
.table>thead>tr>td, 
.table>thead>tr>th {
    padding: 12px 20px;
    line-height: 1.5384616;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
.table-xlg>tbody>tr>td, 
.table-xlg>tbody>tr>th, 
.table-xlg>tfoot>tr>td, 
.table-xlg>tfoot>tr>th, 
.table-xlg>thead>tr>td, 
.table-xlg>thead>tr>th{
    padding: 20px;
}
.table-lg>tbody>tr>td, 
.table-lg>tbody>tr>th, 
.table-lg>tfoot>tr>td, 
.table-lg>tfoot>tr>th, 
.table-lg>thead>tr>td, 
.table-lg>thead>tr>th {
    padding: 15px 20px;
}
.table-sm>tbody>tr>td, 
.table-sm>tbody>tr>th, 
.table-sm>tfoot>tr>td, 
.table-sm>tfoot>tr>th, 
.table-sm>thead>tr>td, 
.table-sm>thead>tr>th {
    padding: 10px 20px;
}
.table-xs>tbody>tr>td, 
.table-xs>tbody>tr>th, 
.table-xs>tfoot>tr>td, 
.table-xs>tfoot>tr>th, 
.table-xs>thead>tr>td, 
.table-xs>thead>tr>th {
    padding: 8px 20px;
}
.table-xxs>tbody>tr>td, 
.table-xxs>tbody>tr>th, 
.table-xxs>tfoot>tr>td, 
.table-xxs>tfoot>tr>th, 
.table-xxs>thead>tr>td, 
.table-xxs>thead>tr>th {
    padding: 6px 15px;
}
.dg-scroll-horizontal,
.dg-scroll-vertical,
.dg-scroll{
    overflow: auto;
    border: 1px solid #ddd;
	margin-bottom:20px;
}
.dg-scroll-horizontal{
    max-height: 340px;
}
.dg-scroll-horizontal > .table,
.dg-scroll-vertical > .table{
	border:none;
	margin:0px;
}
.dg-scroll-vertical > .table{
	max-width:none;
	width:inherit;
}
.dg-scroll-vertical > .table > thead{
	white-space:nowrap;
}

.table[class*="header-"] > thead th,
.table[class*="header-"] > thead td{
	color:#FFF;
}
.table [class*="bg-"],
.table [class*="bg-"] td,
.table [class*="bg-"] th {
	color:#FFF;
}

/**/

@-webkit-keyframes shake2{
	0%,100%{
	-webkit-transform:translate3d(0,0,0);
	transform:translate3d(0,0,0);
}
10%,30%,50%,70%,90%{
	-webkit-transform:translate3d(0,-10px,0);
	transform:translate3d(0,-10px,0);
}
20%,40%,60%,80%{
	-webkit-transform:translate3d(0,10px,0);
	transform:translate3d(0,10px,0);
}
}
@keyframes shake2{
	0%,100%{
	-webkit-transform:translate3d(0,0,0);
	-ms-transform:translate3d(0,0,0);
	transform:translate3d(0,0,0);
}
10%,30%,50%,70%,90%{
	-webkit-transform:translate3d(0,-10px,0);
	-ms-transform:translate3d(0,-10px,0);
	transform:translate3d(0,-10px,0);
}
20%,40%,60%,80%{
	-webkit-transform:translate3d(0,10px,0);
	-ms-transform:translate3d(0,10px,0);
	transform:translate3d(0,10px,0);
}
}
@-webkit-keyframes shake3{
	0%,100%{
		-webkit-transform:translate3d(0,0,0);
		transform:translate3d(0,0,0);
	}
	10%,30%,50%,70%,90%{
		-webkit-transform:translate3d(5px,-5px,0);
		transform:translate3d(5px,-5px,0);
	}
	20%,40%,60%,80%{
		-webkit-transform:translate3d(-5px,5px,0);
		transform:translate3d(-5px,5px,0);
	}
}
@keyframes shake3{
	0%,100%{
		-webkit-transform:translate3d(0,0,0);
		-ms-transform:translate3d(0,0,0);
		transform:translate3d(0,0,0);
	}
	10%,30%,50%,70%,90%{
		-webkit-transform:translate3d(5px,-5px,0);
		-ms-transform:translate3d(5px,-5px,0);
		transform:translate3d(5px,-5px,0);
	}
	20%,40%,60%,80%{
		-webkit-transform:translate3d(-5px,5px,0);
		-ms-transform:translate3d(-5px,5px,0);
		transform:translate3d(-5px,5px,0);
	}
}


@media only screen and (min-width: 1600px) {
	.container,.dnn_layout{width:1440px}
}
.container,.dnn_layout{
	max-width:100%;
}


.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9{
	min-height:inherit;
}
.carousel-inner>.item>a>img, .carousel-inner>.item>img, .img-responsive, .thumbnail a>img, .thumbnail>img{
	display:inline-block;
}

/*big*/
big{
	font-size:large;
}

/*dnn*/


#ControlBar,#ControlBar *,.dnnMemberDirectory,.dnnMemberDirectory *,.dnn_mact > li.actionMenuMove > ul li{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}
.dnnMemberDirectory img {max-width:100%}
Body:before{
	content:" ";
	height:0px; 
	width:100%;
	display:block;
	clear:both;
	overflow:hidden; 
}
.dnnDropDownList *,
ul.dnnAdminTabNav *,
.dnnModuleDigitalAssetsBackground * {
	box-sizing: content-box;
}
ul.dnnAdminTabNav{
	height:43px;
	border-radius:			0px!important;
	-moz-border-radius:		0px!important;
	-webkit-border-radius:	0px!important;
}
.dnnPrimaryAction, 
.dnnFormItem input[type="submit"], 
a.dnnPrimaryAction{
	color:#FFF!important;
	text-decoration:none!important;
}
.dnnCheckbox .mark{
	background:none;
}
.cke_editable .animation {
	opacity: 1;
}
body .pb-scroll-wrapper iframe#personaBar-iframe.ipad{
	position:fixed!important;
}
/*Fix actionMenu DNN9*/
.dnnEditState .actionMenu{
  display:block!important;
  opacity: 1!important;
}

.DNNEmptyPane{ 
	width: auto!important;
}



/*Element Hide*/
@media only screen and (max-width:767px){.ElementHide-xs,tr.ElementHide-xs,th.ElementHide-xs,td.ElementHide-xs{display:none !important;}}
@media only screen and (min-width:768px) and (max-width:991px){.ElementHide-sm,tr.ElementHide-sm,th.ElementHide-sm,td.ElementHide-sm{display:none !important;}}
@media only screen and (min-width:992px) and (max-width:1199px){.ElementHide-md,tr.ElementHide-md,th.ElementHide-md,td.ElementHide-md{display:none !important;}}
@media only screen and (min-width:1200px){.ElementHide-lg,tr.ElementHide-lg,th.ElementHide-lg,td.ElementHide-lg{display:none !important;}}


/*SkinPlugin*/
.SkinPlugin_icon {
	position:fixed;
	top:20%;
	right:0;
	width:34px;
	height:128px;
	background:url("/Portals/_default/Skins/ForVend/images/xplugin.png") no-repeat center center;
	z-index:999;
	cursor:pointer;
}
/*Fix RTL Dnnplus.ir*/
.rtl .SkinPlugin_icon { right: auto !important; }

.SkinPlugin_icon a,
.SkinPlugin_icon a:hover {
	display:block;
	width:34px;
	height:108px;
	text-decoration:none;
}

/*patch*/
.bs-docs-example {
	margin-bottom:8px;
}
a.btn.btn-primary{
	color:#FFF;
}


@media print {
	a:link:after {
		content: " ";
	}
	#mobile_nav,
	#mobile_user,
	#mobile_search{ 
		display:none;
	}
	.animation{
		opacity:1!important;
	}
	.animated,
	.animated .animation_item{
		-webkit-animation-name:none!important;
		-moz-animation-name:none!important;
		-o-animation-name:none!important;
		animation-name:none!important
	}
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 13/10), only screen and (min-resolution: 120dpi) {
	
}
.blog-title01 {
	font-size:20px;
	color:#20a3f0;
	margin-bottom:12px;
	line-height:1.2;
}
/*******price*******/
.price-table:after {
	clear: both;
	content: ".";
	height: 0px;
	font-size: 0px;
	visibility: hidden;
	display: block;
}

.price-table {
	display: inline-block;
}

.price-table {
	display: block;
}

.price-table {
	padding: 28px 0px 28px 0px;
}

.price-table [class*="span"] {
	margin-bottom: 15px;
}

.price-table .col {
	float: left;
	text-align: center;
	margin-bottom: 10px;
	transition: all ease-in 200ms;
	-moz-transition: all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: all ease-in 200ms; /* Opera */
	-ms-transition: all ease-in 200ms; /* IE9? */
}

.price-table.col2 .col {
	width: 50%;
}

.price-table.col3 .col {
	width: 33.3333%;
}

.price-table.col4 .col {
	width: 25%;
}

.price-table.col5 .col {
	width: 20%;
}

*+html .price-table.col2 .col {
	width: 49.9%;
}

*+html .price-table.col3 .col {
	width: 33.33%;
}

*+html .price-table.col4 .col {
	width: 24.9%;
}

*+html .price-table.col5 .col {
	width: 19.9%;
}

.price-table .col:hover {
	box-shadow: 0 0 13px rgba(0, 0, 0, 0.15);
}

.price-table .best_value {
	box-shadow: 0 0 13px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) inset;               /* For Firefox3.6+ */
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) inset;            /* For Chrome5+, Safari5+ */
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) inset;                    /* For Latest Opera */
	margin-top: -38px;
}

.price-table .best_value .price_title {
	padding-top: 30px;
	padding-bottom: 26px;
	background: none;
	color: #FFF !important;
}

.price-table .best_value .price_title h2 {
	color: #FFF !important;
}

.price-table .best_value .price_holder {
	padding-bottom: 22px;
}

.price_title {
	color: #444444;
	border: 1px solid #e9e8e8;
	padding-top: 15px;
	padding-bottom: 11px;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 22px;
	position: relative;
	transition: all ease-in 200ms;
	-moz-transition: all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: all ease-in 200ms; /* Opera */
	-ms-transition: all ease-in 200ms; /* IE9? */
}

.price-table .price_title h2 {
	margin: 0px;
	font-weight: normal;
}

.price-table .col:hover .price_title {
}

.price-table .col:nth-of-type(2n+1) .price_title {
}

.price-table .col:first-child .price_holder {
	margin-left: 0px;
}

.price-table .price_holder {
	border: 1px solid #e9e8e8;
	margin: 0 0 0 -1px;
	min-height: 300px;
	padding-bottom: 12px;
}

.price-table .col:hover .price_holder {
}

.price-table .price_box {
	color: #444444;
	padding: 20px 0px 25px 0px;
}

.price-table .sup {
	font-size: 28px;
	line-height: 34px;
	vertical-align: top;
}

.price-table .price {
	font-size: 48px;
	line-height: 50px;
}

.price-table .price_holder ul {
	margin: 0px 0px 13px 0px;
	padding: 0px;
	border-bottom: 1px solid #e9e8e8;
}

.price-table .price_holder ul li {
	list-style: none;
	border-top: 1px solid #e9e8e8;
	padding: 12px 0;
}

.price-table a.btn {
	border: none;
	background: transparent;
	color: #FFF;
	text-shadow: none;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	padding: 5px 20px;
	transition: all ease-in 200ms !important;
	-moz-transition: all ease-in 200ms !important; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms !important; /* Safari and Chrome */
	-o-transition: all ease-in 200ms !important; /* Opera */
	-ms-transition: all ease-in 200ms !important; /* IE9? */
}
.price-table a.btn:hover {
	background-color: #525252;
}
.price-table [class*="col-"] {
	margin-bottom: 15px;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
.price-table.col2 .col {
	width: 50%;
}

.price-table.col3 .col {
	width: 50%;
}

.price-table.col4 .col {
	width: 50%;
}

.price-table.col5 .col {
	width: 33.3333%;
}

}
@media only screen and (max-width: 767px) {
.price-table.col2 .col {
	width: 100%;
}

.price-table.col3 .col {
	width: 100%;
}

.price-table.col4 .col {
	width: 100%;
}

.price-table.col5 .col {
	width: 100%;
}
.price-table div.best_value{
	margin:5px 0;
}	
}

/*chart*/







/*loaded_list*/


/*blockquote*/
blockquote {
	font-style: italic;
	color: #848484;
	position: relative;
	border: none;
}

blockquote p {
	font-size: 13px;
	line-height: 1.8;
	text-indent: 50px;
	margin: 0;
}

blockquote small {
	display: block;
	line-height: 18px;
	font-size: 12px;
	position: absolute;
	bottom: -42px;
	left: 20%;
	padding: 24px 0 0 30px;
}

/*Testimonials*/
.Testimonials_tab {
	position: relative;
	z-index:0;
	margin: 0px;
	padding: 0px;
	width: 100%;
	overflow: hidden;
	min-height: 20px;
	transition: height ease-in 200ms;
	-moz-transition: height ease-in 200ms; /* Firefox 4 */
	-webkit-transition: height ease-in 200ms; /* Safari and Chrome */
	-o-transition: height ease-in 200ms; /* Opera */
	-ms-transition: height ease-in 200ms; /* IE9? */
}

.Testimonials_tab img {
	max-width: 100%;
}

.Testimonials_tab li {
	position: absolute;
	left: 0px;
	top: 0px;
	display: none;
	width: 100%;
	list-style: none;
}

.Testimonials_tab .last_page,
.Testimonials_tab .next_page {
	position: absolute;
	top: 0px;
	right: 0px;
	height: 28px;
	line-height: 28px;
	width: 28px;
	border: 1px solid #e9e8e8;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	text-align: center;
	color: #e9e8e8;
	font-family: Helvetica;
	top: auto;
	bottom: 14px;
	left: auto;
	right: 0;
	z-index:15;
	transition: background-color ease-in 200ms;
	-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: background-color ease-in 200ms; /* Opera */
	-ms-transition: background-color ease-in 200ms; /* IE9? */
}

.Testimonials_tab .last_page {
	right: 32px;
}

.Testimonials_tab .last_page:hover,
.Testimonials_tab .next_page:hover {
	text-decoration: none;
}

.Testimonials_tab .dot {
	position: absolute;
	bottom: 0;
	z-index:15
}

.Testimonials_tab .dot a {
	display: inline-block;
	width: 13px;
	height: 13px;
	margin: 0 3px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border: 1px solid #303030;
	font-size: 0;
	text-indent: -999px;
	vertical-align: middle;
	position: static;
	overflow: hidden;
	transition: all ease-in 200ms;
	-moz-transition: all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: all ease-in 200ms; /* Opera */
	-ms-transition: all ease-in 200ms; /* IE9? */
}

*+html .Testimonials_tab .dot a {
	display: inline;
}



/*quotes*/


/*Core Owl Carousel CSS File*/
/* clearfix*/
.carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}
.carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
.carousel .owl-item {
	float: left;
}
.carousel .owl-pagination {
	text-align: center;
	margin-top: 20px;
	top: 100%;
	left: 0;
	width: 100%;
}
.carousel .owl-page {
	cursor: pointer;
	width: 13px;
	height: 13px;
	margin: 3px;
	border: 2px solid #009B85;
	display: inline-block;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	transition: background-color ease-in 200ms;
	-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: background-color ease-in 200ms; /* Opera */
	-ms-transition: background-color ease-in 200ms; /* IE9? */
}
.carousel .owl-page.active {
	background-color: #009B85;
}
.carousel .owl-buttons .owl-prev,
.carousel .owl-buttons .owl-next {
	position: absolute;
	left: -25px;
	top: 50%;
	width: 48px;
	height: 48px;
	line-height: 48px;
	font-size: 0px;
	text-align: center;
	cursor: pointer;
	margin: -17px 0 0 0;
	background-color: #b6b6b6;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	transition: background-color ease-in 200ms;
	-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: background-color ease-in 200ms; /* Opera */
	-ms-transition: background-color ease-in 200ms; /* IE9? */
}
.carousel .owl-buttons .owl-next {
	left: auto;
	right: -25px;
}
.carousel .owl-buttons .owl-prev:before,
.carousel .owl-buttons .owl-next:before {
	content: "";
	border-left: 2px solid #FFF;
	border-bottom: 2px solid #FFF;
	width: 9px;
	height: 9px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -4px 0 0 -4px;
	font-size: 20px;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
}
.carousel .owl-buttons .owl-next:before {
	border-left: none;
	border-right: 2px solid #FFF;
	margin-left: -4px;
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}
.carousel {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.carousel .owl-buttons .owl-prev:hover,
.carousel .owl-buttons .owl-next:hover {
	background-color: #009B85
}
.carousel .owl-buttons .owl-prev:hover:before {
}
.carousel .owl-buttons .owl-next:hover:before {
	border-left: none;
}
.carousel .grabbing {
	cursor: move;
}
.carousel .owl-wrapper,
.carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}
.carousel {
	display: none;
}
.carousel img {
	max-width: 100%;
}


@media only screen and (min-width: 1600px) {
	.carousel .owl-buttons .owl-prev {
		left: -55px;
	}
	.carousel .owl-buttons .owl-next {
		right: -55px;
	}
}
@media only screen and (max-width: 767px) {
	.carousel .owl-buttons .owl-prev {
		left: 0px;
	}
	.carousel .owl-buttons .owl-next {
		right: 0px;
	}
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }
button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; }
 }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; }
 }

.mfp-ie7 .mfp-img {
  padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
  padding: 0; }
.mfp-ie7 .mfp-content {
  padding-top: 44px; }
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }
  
/* text-based popup styling */
.white-popup {
	position: relative;
	background: #FFF;
	padding: 25px;
	width: auto;
	max-width: 400px;
	margin: 0 auto;
}

.mfp-zoom-in {
}
.mfp-zoom-in .mfp-content {
	opacity: 0;
	transition: all 0.2s ease-in-out;
	transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
	opacity: 0;
	transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-content {
	opacity: 1;
	transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-content {
	transform: scale(0.8);
	opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}
.mfp-newspaper {
}
.mfp-newspaper .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.5s;
	transform: scale(0) rotate(500deg);
}
.mfp-newspaper.mfp-bg {
	opacity: 0;
	transition: all 0.5s;
}
.mfp-newspaper.mfp-ready .mfp-content {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}
.mfp-newspaper.mfp-ready.mfp-bg {
	opacity: 0.8;
}
.mfp-newspaper.mfp-removing .mfp-content{
	transform: scale(0) rotate(500deg);
	opacity: 0;
}
.mfp-newspaper.mfp-removing.mfp-bg {
	opacity: 0;
}
.mfp-move-horizontal {
}
.mfp-move-horizontal .mfp-content{
	opacity: 0;
	transition: all 0.3s;
	transform: translateX(-50px);
}
.mfp-move-horizontal.mfp-bg {
	opacity: 0;
	transition: all 0.3s;
}
.mfp-move-horizontal.mfp-ready .mfp-content {
	opacity: 1;
	transform: translateX(0);
}
.mfp-move-horizontal.mfp-ready.mfp-bg {
	opacity: 0.8;
}
.mfp-move-horizontal.mfp-removing .mfp-content {
	transform: translateX(50px);
	opacity: 0;
}
.mfp-move-horizontal.mfp-removing.mfp-bg {
	opacity: 0;
}
.mfp-move-from-top {
}
.mfp-move-from-top .mfp-content {
	opacity: 0;
	transition: all 0.2s;
	transform: translateY(-100px);
}
.mfp-move-from-top.mfp-bg {
	opacity: 0;
	transition: all 0.2s;
}
.mfp-move-from-top.mfp-ready .mfp-content {
	opacity: 1;
	transform: translateY(0);
}
.mfp-move-from-top.mfp-ready.mfp-bg {
	opacity: 0.8;
}
.mfp-move-from-top.mfp-removing .mfp-content {
	transform: translateY(-50px);
	opacity: 0;
}
.mfp-move-from-top.mfp-removing.mfp-bg {
	opacity: 0;
}
.mfp-3d-unfold {
}
.mfp-3d-unfold .mfp-content {
	perspective: 2000px;
}
.mfp-3d-unfold .mfp-content {
	opacity: 0;
	transition: all 0.3s ease-in-out;
	transform-style: preserve-3d;
	transform: rotateY(-60deg);
}
.mfp-3d-unfold.mfp-bg {
	opacity: 0;
	transition: all 0.5s;
}
.mfp-3d-unfold.mfp-ready .mfp-content {
	opacity: 1;
	transform: rotateY(0deg);
}
.mfp-3d-unfold.mfp-ready.mfp-bg {
	opacity: 0.8;
}
.mfp-3d-unfold.mfp-removing .mfp-content {
	transform: rotateY(60deg);
	opacity: 0;
}
.mfp-3d-unfold.mfp-removing.mfp-bg {
	opacity: 0;
}
.mfp-zoom-out {
}
.mfp-zoom-out .mfp-content {
	opacity: 0;
	transition: all 0.3s ease-in-out;
	transform: scale(1.3);
}
.mfp-zoom-out.mfp-bg {
	opacity: 0;
	transition: all 0.3s ease-out;
}
.mfp-zoom-out.mfp-ready .mfp-content {
	opacity: 1;
	transform: scale(1);
}
.mfp-zoom-out.mfp-ready.mfp-bg {
	opacity: 0.8;
}
.mfp-zoom-out.mfp-removing .mfp-content {
	transform: scale(1.3);
	opacity: 0;
}
.mfp-zoom-out.mfp-removing.mfp-bg {
	opacity: 0;
}
@keyframes 
hinge {
 0% {
 transform: rotate(0);
 transform-origin: top left;
 animation-timing-function: ease-in-out;
}
 20%, 60% {
 transform: rotate(80deg);
 transform-origin: top left;
 animation-timing-function: ease-in-out;
}
 40% {
 transform: rotate(60deg);
 transform-origin: top left;
 animation-timing-function: ease-in-out;
}
 80% {
 transform: rotate(60deg) translateY(0);
 opacity: 1;
 transform-origin: top left;
 animation-timing-function: ease-in-out;
}
 100% {
 transform: translateY(700px);
 opacity: 0;
}
}

.hinge {
	animation-duration: 1s;
	animation-name: hinge;
}

.mfp-with-fade .mfp-content,
.mfp-with-fade.mfp-bg {
	opacity: 0;
	transition: opacity .5s ease-out;
}

.mfp-with-fade.mfp-ready .mfp-content {
	opacity: 1;
}

.mfp-with-fade.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.mfp-with-fade.mfp-removing.mfp-bg {
	opacity: 0;
}

/*dnntable*/
.dnntable {
	width: 100%;
}

.dnntable th,
.dnntable td {
	padding: 15px 30px;
	font-size: 14px;
	transition: background-color ease-in 200ms;
	-moz-transition: background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: background-color ease-in 200ms; /* Opera */
	-ms-transition: background-color ease-in 200ms; /* IE9? */
}

.dnntable tr:hover td {
	background-color: #f9f8f8;
}

.dnntable_1 th {
	border-bottom: 2px solid #e4e4e4;
}

.dnntable_1 td {
	border-bottom: 1px solid #e4e4e4;
}

.dnntable_2 th {
	border-bottom: 2px solid #e4e4e4;
}

.dnntable_2 td {
	border-bottom: 1px solid #e4e4e4;
}

.dnntable_2 tr:nth-child(even) td {
	background-color: #f7f7f7;
}

.dnntable_3 th,
.dnntable_3 td {
	border: 1px solid #e4e4e4;
}

.dnntable_4 th,
.dnntable_4 td {
	border: 1px solid #e4e4e4;
}

.dnntable_4 tr:nth-child(even) td {
	background-color: #f7f7f7;
}

/*Images*/
.photo_box .pic_box {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
}

.photo_box img {
	width: 100%;
	max-width: 100%;
}

.photo_box {
	margin: 0;
	padding: 0px;
	overflow: hidden;
	line-height: 1.8;
	display:block;
}

.photo_box .pic_box {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 100%;
	vertical-align: middle;
}

.photo_box a,
.photo_box a:hover {
	text-decoration: none
}

.photo_box .ico {
	position: absolute;
	top: 50%;
	left:0;
	width: 100%;
	margin-top: -25px;
	text-align: center;
	color: #FFF;
	filter: alpha(opacity=0);
	opacity: 0;
	z-index: 1;
}

.photo_box .ico span ,
.photo_box .ico em ,
.photo_box .ico i ,
.photo_box .ico .fa {
	color: #FFF;
	width: 50px!important;
	height: 50px!important;
	line-height: 50px!important;
	display: inline-block;
	text-align: center;
	font-size: 20px;
	margin: 0px 3px;
	background-color: #69b532;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

.photo_box .ico h3,
.photo_box .ico .title {
	color: #FFF;
	font-size: 15px;
	margin-bottom: 5px;
}
.photo_box .link-full{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:2;
}

.photo_box .content {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	text-align: center;
	color: #FFF;
	filter: alpha(opacity=0);
	opacity: 0;
	z-index: 1;
	display:block;
}

.vertical_center_1 {
	width: 100%;
	height: 100%;
	display: table;
}

.vertical_center_2 {
	display: table-cell;
	width: 100%;
	vertical-align: middle;
}
.vertical_center_2 p{
	padding-left:10px;
	padding-right:10px;
}
.photo_box .title,
.photo_box .description{
	display:block;
	font-style:normal;
}

.photo_box .content h3 ,
.photo_box .content .title{
	color: #FFF;
	font-size: 15px;
	margin-bottom: 5px;
}

.photo_box .content p,
.photo_box .content .description {
	color: #FFF;
	font-size: 13px;
}

.photo_box .content >.fa {
	font-size: 50px;
	height: 70%;
	position: relative;
}

.photo_box .content > .fa:before {
	position: absolute;
	top: 50%;
	left: 0;
}

.photo_box .content .ico {
	position: static;
	margin: 0 0 15px;
}

.photo_box .shade {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	filter: alpha(opacity=0);
	opacity: 0;
	z-index: 0;
}

.photo_box .ico,
.photo_box .content,
.photo_box .shade {
	transition: all ease-in 300ms;
	-moz-transition: all ease-in 300ms;
	-webkit-transition: all ease-in 300ms;
	-o-transition: all ease-in 300ms;
	-ms-transition: all ease-in 300ms;
}

.photo_box:hover .ico,
.photo_box:hover .content {
	filter: alpha(opacity=100);
	opacity: 1;
}

.photo_box:hover .shade {
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.photo_box.default_show .ico,
.photo_box.default_show .content {
	filter: alpha(opacity=100);
	opacity: 1;
}

.photo_box.default_show .shade {
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.photo_box.img_zoom .pic_box img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	transition: all ease-out 300ms;
	-moz-transition: all ease-out 300ms;
	-webkit-transition: all ease-out 300ms;
	-o-transition: all ease-out 300ms;
	-ms-transition: all ease-out 300ms;
}

.photo_box:hover.img_zoom .pic_box img {
	-webkit-transform: scale(1.15);
	-moz-transform: scale(1.15);
	-ms-transform: scale(1.15);
	-o-transform: scale(1.15);
	transform: scale(1.15);
}

.photo_box.ico_left_enter .ico,
.photo_box.ico_right_enter .ico,
.photo_box.ico_top_enter .ico,
.photo_box.ico_bottom_enter .ico,
.photo_box.ico_LeftAndRight_enter span,
.photo_box.ico_TopAndBottom_enter span,
.photo_box.ico_LeftAndRight_enter i,
.photo_box.ico_TopAndBottom_enter i,
.photo_box.ico_LeftAndRight_enter em,
.photo_box.ico_TopAndBottom_enter em,
.photo_box.ico_LeftAndRight_enter b,
.photo_box.ico_TopAndBottom_enter b {
	transition: all ease-in 300ms;
	-moz-transition: all ease-in 300ms;
	-webkit-transition: all ease-in 300ms;
	-o-transition: all ease-in 300ms;
	-ms-transition: all ease-in 300ms;
}

.photo_box.ico_left_enter .ico {
	left: -100%;
}

.photo_box:hover.ico_left_enter .ico {
	left: 0%;
}

.photo_box.ico_right_enter .ico {
	left: 100%;
}

.photo_box:hover.ico_right_enter .ico {
	left: 0%;
}

.photo_box.ico_top_enter .ico {
	top: -100%;
}

.photo_box:hover.ico_top_enter .ico {
	top: 50%;
}

.photo_box.ico_bottom_enter .ico {
	top: 150%;
}

.photo_box:hover.ico_bottom_enter .ico {
	top: 50%;
}

.photo_box.ico_LeftAndRight_enter .ico_left {
	transform: translate(-250px, 0);
	-ms-transform: translate(-250px, 0);
	-webkit-transform: translate(-250px, 0);
	-o-transform: translate(-250px, 0);
	-moz-transform: translate(-250px, 0);
}

.photo_box.ico_LeftAndRight_enter .ico_right {
	transform: translate(250px, 0);
	-ms-transform: translate(250px, 0);
	-webkit-transform: translate(250px, 0);
	-o-transform: translate(250px, 0);
	-moz-transform: translate(200px, 0);
}

.photo_box.ico_TopAndBottom_enter .ico_top {
	transform: translate(0, -250px);
	-ms-transform: translate(0, -250px);
	-webkit-transform: translate(0, -250px);
	-o-transform: translate(0, -250px);
	-moz-transform: translate(0, -250px);
}

.photo_box.ico_TopAndBottom_enter .ico_bottom {
	transform: translate(0, 200px);
	-ms-transform: translate(0, 200px);
	-webkit-transform: translate(0, 200px);
	-o-transform: translate(0, 200px);
	-moz-transform: translate(0, 200px);
}
.photo_box:hover.ico_LeftAndRight_enter .ico_left,
.photo_box:hover.ico_LeftAndRight_enter .ico_right,
.photo_box:hover.ico_TopAndBottom_enter .ico_top,
.photo_box:hover.ico_TopAndBottom_enter .ico_bottom {
	transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
}

.photo_box.ico_push_in img {
	margin-bottom: -15px;
	transition: all ease-in 200ms;
	-moz-transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms;
	-o-transition: all ease-in 200ms;
	-ms-transition: all ease-in 200ms;
}

.photo_box.ico_push_in .ico {
	top: auto;
	bottom: -50px;
	width: 100%;
	background-color: #69b532;
	filter: alpha(opacity=100);
	opacity: 1;
}

.photo_box.ico_push_in .ico .fa,
.photo_box.ico_push_in .ico em {
	background-color: transparent!important
}

.photo_box.ico_push_in .ico a {
	display: block;
	width: 50%;
	float: left;
	text-align: center;
}

.photo_box.ico_push_in .ico a:first-child {
	border-right: 1px solid #FFF;
	border-right: 1px solid rgba(255,255,255,0.5);
	margin-right: -2px;
}

.photo_box:hover.ico_push_in img {
	margin-top: -15px;
	margin-bottom: 0;
}

.photo_box:hover.ico_push_in .ico {
	top: auto;
	bottom: 0px;
}

.photo_box.ico_left_rotate .ico,
.photo_box.ico_left_rotate .ico > span,
.photo_box.ico_left_rotate .ico > i,
.photo_box.ico_left_rotate .ico > em,
.photo_box.ico_right_rotate .ico,
.photo_box.ico_right_rotate .ico >span ,
.photo_box.ico_right_rotate .ico >i ,
.photo_box.ico_right_rotate .ico >em {
	width: 50px;
	height: 50px;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	margin: 0;
	padding: 0;
}

.photo_box.ico_left_rotate .ico {
	left: 0;
	top: auto;
	bottom: 0px;
	transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transition: all ease-in 200ms;
	-moz-transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms;
	-o-transition: all ease-in 200ms;
	-ms-transition: all ease-in 200ms;
	-moz-transform-origin: 0 100%;
	-webkit-transform-origin: 0 100%;
	-o-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	transform-origin: 0 100%;
}

.photo_box.ico_right_rotate .ico {
	left: auto;
	right: 0;
	top: auto;
	bottom: 0px;
	transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transition: all ease-in 200ms;
	-moz-transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms;
	-o-transition: all ease-in 200ms;
	-ms-transition: all ease-in 200ms;
	-moz-transform-origin: 100% 100%;
	-webkit-transform-origin: 100% 100%;
	-o-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}

.photo_box:hover.ico_left_rotate .ico,
.photo_box:hover.ico_right_rotate .ico {
	transform: rotate(0);
	-ms-transform: rotate(0);
	-moz-transform: rotate(0);
	-webkit-transform: rotate(0);
}

.photo_box.content_top_increment .increment_1 {
	transform: translate(0, -300px);
	-ms-transform: translate(0, -300px);
	-webkit-transform: translate(0, -300px);
	-o-transform: translate(0, -300px);
	-moz-transform: translate(0, -300px);
	transition: all ease-in 500ms;
	-moz-transition: all ease-in 500ms;
	-webkit-transition: all ease-in 500ms;
	-o-transition: all ease-in 500ms;
	-ms-transition: all ease-in 500ms;
}

.photo_box.content_top_increment .increment_2 {
	transform: translate(0, -300px);
	-ms-transform: translate(0, -300px);
	-webkit-transform: translate(0, -300px);
	-o-transform: translate(0, -340px);
	-moz-transform: translate(0, -340px);
	transition: all ease-in 400ms;
	-moz-transition: all ease-in 400ms;
	-webkit-transition: all ease-in 400ms;
	-o-transition: all ease-in 400ms;
	-ms-transition: all ease-in 400ms;
}

.photo_box.content_top_increment .increment_3 {
	transform: translate(0, -300px);
	-ms-transform: translate(0, -300px);
	-webkit-transform: translate(0, -300px);
	-o-transform: translate(0, -380px);
	-moz-transform: translate(0, -380px);
	transition: all ease-in 300ms;
	-moz-transition: all ease-in 300ms;
	-webkit-transition: all ease-in 300ms;
	-o-transition: all ease-in 300ms;
	-ms-transition: all ease-in 300ms;
}

.photo_box:hover.content_top_increment .increment_1,
.photo_box:hover.content_top_increment .increment_2,
.photo_box:hover.content_top_increment .increment_3 {
	transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
}

.photo_box:hover.content_top_increment .increment_1 {
	transition: all ease-in 300ms;
	-moz-transition: all ease-in 300ms;
	-webkit-transition: all ease-in 300ms;
	-o-transition: all ease-in 300ms;
	-ms-transition: all ease-in 300ms;
}

.photo_box:hover.content_top_increment .increment_2 {
	transition: all ease-in 400ms;
	-moz-transition: all ease-in 400ms;
	-webkit-transition: all ease-in 400ms;
	-o-transition: all ease-in 400ms;
	-ms-transition: all ease-in 400ms;
}

.photo_box:hover.content_top_increment .increment_3 {
	transition: all ease-in 500ms;
	-moz-transition: all ease-in 500ms;
	-webkit-transition: all ease-in 500ms;
	-o-transition: all ease-in 500ms;
	-ms-transition: all ease-in 500ms;
}

.photo_box.content_top_increment .content h3 {
	background-color: #69b532;
	font-size: 18px;
	color: #FFF;
	padding: 15px;
	margin-bottom: 25px;
	width: 100%;
}

.photo_box.content_top_increment .content a.but {
	background-color: #dedede;
	color: #666666;
	display: inline-block;
	padding: 5px 15px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	text-decoration: none;
	margin-top: 15px;
}

.photo_box.content_top_increment .content p {
	padding: 0px 30px;
}

.photo_box.ico_zoom .ico span {
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	-ms-transform: scale(0.5);
	-o-transform: scale(0.5);
	transform: scale(0.5);
	transition: all ease-in 300ms;
	-moz-transition: all ease-in 300ms;
	-webkit-transition: all ease-in 300ms;
	-o-transition: all ease-in 300ms;
	-ms-transition: all ease-in 300ms;
}

.photo_box:hover.ico_zoom .ico span {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.photo_box.img_flip {
	overflow: visible;
}

.photo_box.img_flip .pic_box {
	position: relative;
	overflow: visible;
	-webkit-perspective: 1000;
	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	perspective: 1000;
}

.photo_box.img_flip .pic_box img,
.photo_box.img_flip .shade,
.photo_box.img_flip .content {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: all 750ms ease 0s;
	-moz-transition: all 750ms ease 0s;
	-o-transition: all 750ms ease 0s;
	-ms-transition: all 750ms ease 0s;
	transition: all 750ms ease 0s;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.photo_box.img_flip .pic_box img {
	z-index: 1;
	position: relative;
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

.photo_box.img_flip .pic_box .shade,
.photo_box.img_flip .pic_box .content {
	z-index: -2;
	filter: alpha(opacity=100);
	opacity: 1;
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.photo_box.img_flip .pic_box .content {
	z-index: -1;
}

.photo_box:hover.img_flip img {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.photo_box:hover.img_flip .pic_box .shade,
.photo_box:hover.img_flip .pic_box .content {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

.photo_box:hover.img_flip .pic_box .shade {
	z-index: 2;
}

.photo_box:hover.img_flip .pic_box .content {
	z-index: 3;
}

.content_sytle_2 .shade {
	background-color: #69b532;
}

.content_sytle_2 .content h3 {
	font-size: 18px;
	color: #FFF;
	margin-bottom: 5px;
}

.content_sytle_2 .content p {
	padding: 0 30px 5px;
}

.content_sytle_2 .content a.but {
	border: 1px solid #FFF;
	padding: 10px 25px;
	font-size: 13px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	display: inline-block;
	margin-top: 10px;
	color: #FFF;
}

.photo_box.content_push_in .pic_box img {
	transition: all ease-in 300ms;
	-moz-transition: all ease-in 300ms;
	-webkit-transition: all ease-in 300ms;
	-o-transition: all ease-in 300ms;
	-ms-transition: all ease-in 300ms;
}

.photo_box.content_push_in .content {
	filter: alpha(opacity=100);
	opacity: 1;
	background-color: #69b532;
	top: auto;
	height: auto;
	bottom: 0;
	height: 60px;
	margin-bottom: -60px;
	overflow: hidden;
}

.photo_box.content_push_in .content h3,
.photo_box.content_push_in .content .title {
	margin: 8px 0 0;
}

.photo_box:hover.content_push_in .pic_box img {
	margin-top: -60px;
	margin-bottom: 60px;
}

.photo_box:hover.content_push_in .content {
	margin-bottom: 0px;
}

.photo_box.icon_tag_push .ico {
	width: 90px;
	height: 90px;
	left: auto;
	right: -90px;
	top: -90px;
	margin: 0;
	text-align: right;
	transition: all ease-in 200ms;
	-moz-transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms;
	-o-transition: all ease-in 200ms;
	-ms-transition: all ease-in 200ms;
}

.photo_box.icon_tag_push .ico:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	border: 45px solid transparent;
	border-right-color: #69b532;
	border-top-color: #69b532;
}

.photo_box.icon_tag_push .ico span,
.photo_box.icon_tag_push .ico em,
.photo_box.icon_tag_push .ico i {
	background: none;
	position:relative;
	width: auto!important;
	height: auto!important;
	display: inline-block!important;
	line-height: 60px!important;
	width: 50px!important;
	text-align: center!important;
}

.photo_box:hover.icon_tag_push .ico {
	right: 0px;
	top: 0px;
}

.photo_box.icon_tag_push .content {
	background-color: #FFF;
	background-color: rgba(255,255,255,0.8);
	width: auto;
	height: auto;
	padding: 13px 36px;
	color: #666666;
	top: auto;
	bottom: 20px;
	filter: alpha(opacity=100);
	opacity: 1;
}

.photo_box.icon_tag_push .content h3,
.photo_box.icon_tag_push .content .title {
	color: #666666;
	font-size: 16px;
	margin: 0;
}

.photo_box.content_bottom_push_in .content {
	background-color:transparent;
	height: auto;
	padding: 15px 0;
	color: #FFF;
	top: auto;
	bottom: 0px;
	transition: all ease-in 200ms;
	-moz-transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms;
	-o-transition: all ease-in 200ms;
	-ms-transition: all ease-in 200ms;
	transform: translate(0, 100%);
	-ms-transform: translate(0, 100%);
	-webkit-transform: translate(0, 100%);
	-o-transform: translate(0, 100%);
	-moz-transform: translate(0, 100%);
}
.photo_box.content_bottom_push_in .content:after{
	content: "";
	background-color: #009B85;
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	z-index:-1;
	opacity:0.8;
}

.photo_box.content_bottom_push_in .content:before {
	content: "";
	border: 8px solid transparent;
	border-bottom-color: #009B85;
	position: absolute;
	top: -16px;
	left: 50%;
	margin-left: -4px;
	opacity:0.8;
}

.photo_box.content_bottom_push_in .content h3,
.photo_box.content_bottom_push_in .content .title {
	color: #FFF;
	font-size: 16px;
	margin: 0;
}

.photo_box.content_bottom_push_in .content p,
.photo_box.content_bottom_push_in .content .description {
	color: #FFF;
	margin-bottom: 0;
}

.photo_box:hover.content_bottom_push_in .content {
	transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
}

.photo_box.content_bottom_push_in_2 .shade {
	background-color: #000;
	top: 100%;
	margin-top: -40px;
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.photo_box:hover.content_bottom_push_in_2 .shade {
	top: 0;
	margin: 0;
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.photo_box.content_bottom_push_in_2 .content {
	filter: alpha(opacity=100);
	opacity: 1;
	height: 40px;
	top: 100%;
	margin-top: -35px;
	transition: all ease-in 300ms;
	-moz-transition: all ease-in 300ms;
	-webkit-transition: all ease-in 300ms;
	-o-transition: all ease-in 300ms;
	-ms-transition: all ease-in 300ms;
}

.photo_box:hover.content_bottom_push_in_2 .content {
	height: 100%;
	top: 0;
	margin-top: 0;
}

.photo_box.content_bottom_push_in_2 .but {
	border: 1px solid #FFF;
	padding: 10px 22px;
	font-size: 13px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	display: inline-block;
	margin-top: 10px;
	color: #FFF;
	text-decoration: none;
}

.photo_box.entirety_left_offset .shade {
	background-color: #f0f0f0;
}

.photo_box.entirety_left_offset .shade,
.photo_box.entirety_left_offset .ico,
.photo_box.entirety_left_offset .content {
	filter: alpha(opacity=100);
	opacity: 1;
	left: 100%;
	transition: all ease-in 200ms;
	-moz-transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms;
	-o-transition: all ease-in 200ms;
	-ms-transition: all ease-in 200ms;
}

.photo_box.entirety_left_offset .ico {
	width: auto;
	top: auto;
	bottom: 0;
}

.photo_box.entirety_left_offset .ico span,
.photo_box.entirety_left_offset .ico em,
.photo_box.entirety_left_offset .ico i {
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	margin: 0;
}

.photo_box.entirety_left_offset .content {
	text-align: left;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 30px 80px 30px 30px;
}

.photo_box.entirety_left_offset h3,
.photo_box.entirety_left_offset p,
.photo_box.entirety_left_offset .title,
.photo_box.entirety_left_offset .description,
.photo_box.entirety_left_offset a {
	color: #666;
}

.photo_box:hover.entirety_left_offset .shade,
.photo_box:hover.entirety_left_offset .ico,
.photo_box:hover.entirety_left_offset .content {
	left: 50px;
}

.photo_box.entirety_bevel .content {
	height: 60%;
	text-align: left;
	top: 0;
	padding: 0px 40px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.photo_box.entirety_bevel .ico {
	height: 40%;
	text-align: left;
	margin: 0;
	top: 60%;
	left: 40px;
}

.photo_box.entirety_bevel .ico span {
	background-color: transparent;
	border: 1px solid #FFF;
}

.photo_box:hover.entirety_bevel .shade {
	background-color: #69b532;
	filter: alpha(opacity=80);
	opacity: 0.8;
}

.photo_box.entirety_bevel .pic_box:before {
	content: "";
	border-width: 0px;
	border-style: solid;
	border-top-color: #e5e5e5;
	border-right-color: #FFF;
	border-left-color: #e5e5e5;
	border-bottom-color: #FFF;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 3;
	transition: border-width ease-in 200ms;
	-moz-transition: border-width ease-in 200ms;
	-webkit-transition: border-width ease-in 200ms;
	-o-transition: border-width ease-in 200ms;
	-ms-transition: border-width ease-in 200ms;
}

.photo_box:hover.entirety_bevel .pic_box:before {
	border-width: 25px;
	transition: border-width ease-in 200ms;
	-moz-transition: border-width ease-in 200ms;
	-webkit-transition: border-width ease-in 200ms;
	-o-transition: border-width ease-in 200ms;
	-ms-transition: border-width ease-in 200ms;
}

.img_left {
	float: left;
	width: auto;
	margin: 8px 15px 5px 0;
}

.img_right {
	float: right;
	width: auto;
	margin: 8px 0 5px 15px;
}

.img_center {
	text-align: center;
	width: 100%;
	display: block;
	margin-bottom: 5px
}

.img_center .pic_box {
	display: inline-block;
	width: auto;
}

.box_border_radius {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0)
}

.box_border_round {
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0)
}

.box_border {
	border: 3px solid #dddddd;
	overflow: hidden;
}

.box_border_padding {
	border: 1px solid #dddddd;
	padding: 3px;
	margin-bottom:8px;
}

.box_bottom_shadow {
	box-shadow: 0px 8px 8px -4px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 8px 8px -4px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 8px 8px -4px rgba(0,0,0,0.3);
}

.box_bottom_shadow_left,
.box_bottom_shadow_right {
	overflow: visible;
	position: relative;
	z-index: 1;
}

.box_bottom_shadow_left:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100px;
	height: 15px;
	z-index: 0;
	box-shadow: 14px 14px 14px rgba(0,0,0,0.3);
	-moz-box-shadow: 14px 14px 14px rgba(0,0,0,0.3);
	-webkit-box-shadow: 14px 14px 14px rgba(0,0,0,0.3);
	margin: -24px 0 0 0;
	transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	-moz-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
	-o-transform: rotate(-5deg);
}

.box_bottom_shadow_right:after {
	content: "";
	position: absolute;
	top: 100%;
	right: 0;
	width: 100px;
	height: 15px;
	z-index: -1;
	box-shadow: -14px 14px 14px rgba(0,0,0,0.3);
	-moz-box-shadow: -14px 14px 14px rgba(0,0,0,0.3);
	-webkit-box-shadow: -14px 14px 14px rgba(0,0,0,0.3);
	margin: -24px 0 0 0;
	transform: rotate(5deg);
	-ms-transform: rotate(5deg);
	-moz-transform: rotate(-deg);
	-webkit-transform: rotate(5deg);
	-o-transform: rotate(5deg);
}
.box_shadow{
	box-shadow: 0px 0px 14px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 14px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 0px 14px rgba(0,0,0,0.3);
}

@-webkit-keyframes 
ico_rotate {
0% {
-webkit-transform:rotate(-60deg) scale(0.5);
opacity:0;
}
50% {
-webkit-transform:rotate(20deg) scale(1.1);
opacity:1;
}
100% {
-webkit-transform:rotate(0deg) scale(1);
opacity:1;
}
}
@-moz-keyframes 
ico_rotate {
0% {
-moz-transform:rotate(-60deg) scale(0.5);
opacity:0;
}
50% {
-moz-transform:rotate(20deg) scale(1.1);
opacity:1;
}
100% {
-moz-transform:rotate(0deg) scale(1);
opacity:1;
}
}
@-o-keyframes 
ico_rotate {
0% {
-0-transform:rotate(-60deg) scale(0.5);
opacity:0;
}
50% {
-0-transform:rotate(20deg) scale(1.1);
opacity:1;
}
100% {
-0-transform:rotate(0deg) scale(1);
opacity:1;
}
}
@keyframes 
ico_rotate {
0% {
transform:rotate(-60deg) scale(0.5);
opacity:0;
}
50% {
transform:rotate(20deg) scale(1.1);
opacity:1;
}
100% {
transform:rotate(0deg) scale(1);
opacity:1;
}
}

.ico_rotate .ico span {
	-webkit-animation-duration: 300ms;
	-moz-animation-duration: 300ms;
	-o-animation-duration: 300ms;
	animation-duration: 300ms;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	width: 80px;
	height: 80px;
	box-shadow: 0 0 4px rgba(0,0,0,0.4);
	-moz-box-shadow: 0 0 4px rgba(0,0,0,0.4);
	-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.ico_rotate:hover .ico span {
	-webkit-animation-name: ico_rotate;
	-moz-animation-name: ico_rotate;
	-o-animation-name: ico_rotate;
	animation-name: ico_rotate;
}

.shade_zoom .shade {
	-webkit-transform: scale(0.1);
	-moz-transform: scale(0.1);
	-o-transform: scale(0.1);
	transform: scale(0.1);
	transition: all ease-in 300ms;
	-moz-transition: all ease-in 300ms;/* Firefox 4 */
	-webkit-transition: all ease-in 300ms;/* Safari and Chrome */
	-o-transition: all ease-in 300ms;/* Opera */
	-ms-transition: all ease-in 300ms;/* IE9? */
}

.shade_zoom:hover .shade {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.shade_zoom .ico span {
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
	filter: alpha(opacity=0);
	opacity: 0;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	width: 40px!important;
	height: 40px!important;
	line-height: 40px!important;
	border: 1px solid #FFF;
	background-color: transparent!important;
	transition: all ease-in 300ms;
	-moz-transition: all ease-in 300ms;/* Firefox 4 */
	-webkit-transition: all ease-in 300ms;/* Safari and Chrome */
	-o-transition: all ease-in 300ms;/* Opera */
	-ms-transition: all ease-in 300ms;/* IE9? */
}

.shade_zoom:hover .ico span {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	filter: alpha(opacity=100);
	opacity: 1;
}

.photo_box.content_zoom .shade,
.photo_box.content_zoom .content {
	overflow: hidden;
	top: auto;
	left: 0;
	bottom: 0;
	-webkit-transform: scale(0.1);
	-moz-transform: scale(0.1);
	-o-transform: scale(0.1);
	transform: scale(0.1);
	transition: all ease-in 300ms;
	-moz-transition: all ease-in 300ms;/* Firefox 4 */
	-webkit-transition: all ease-in 300ms;/* Safari and Chrome */
	-o-transition: all ease-in 300ms;/* Opera */
	-ms-transition: all ease-in 300ms;/* IE9? */
}

.photo_box.content_zoom:hover .shade,
.photo_box.content_zoom:hover .content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	filter: alpha(opacity=100);
	opacity: 1;
}

.ico_no_bg .fa {
	background: none!important;
	font-size: 30px!important;
	color: #FFF!important;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.box_dotted_padding {
	border: 1px dashed #ddd;
	padding: 3px;
}

.text_sytle_1 {
	padding: 15px 10px 10px;
}

.text_sytle_1 h3,
.text_sytle_2 h3 {
	font-size: 14px;
	color: #666666;
	margin: 0;
}

.text_sytle_1 .info {
	float: right;
	padding-top: 13px;
	font-size: 14px;
}

.text_sytle_1 .info span {
	margin-right: 3px;
}

.text_sytle_1 h3 {
	margin: 0 0 5px 0;
	font-size: 14px;
	color: #666666;
}

.text_sytle_2 {
	background-color: #f5f5f5;
	padding: 15px 15px 10px;
	border-bottom: 2px solid #dcdcdc;
	text-align: center;
}

.text_sytle_3 {
	text-align: left;
	padding: 10px 0 5px;
}

.text_sytle_3 h3 {
	font-size: 14px;
	color: #666666;
}

.text_sytle_4 h3 {
	padding: 0;
	border-bottom: 1px solid #dedede;
	margin-bottom: 12px;
	font-size: 14px;
	color: #666666;
}

.text_sytle_4 h3 span {
	display: inline-block;
	padding: 10px 0;
	border-bottom: 1px solid #69b532;
	margin-bottom: -1px;
	font-size: 14px;
	color: #666666;
}

.text_sytle_5 {
	clear: both;
	overflow: hidden;
	margin: 5px;
}

.text_sytle_5 h3 {
	font-size: 18px;
	font-weight: normal;
	margin: 20px 8px 10px;
	padding: 0;
}

.text_sytle_6 h3 {
	color: #363839;
	font-size: 18px;
	padding: 25px 0px 0px;
	font-weight: normal;
	margin-bottom: 0px;
}

.text_sytle_6 .info {
	margin-bottom: 10px;
}

.text_sytle_6 .social-icons a {
	font-size: 23px;
	color: #8a8989;
	filter: alpha(opacity=50);
	opacity: 0.5;
	transition: all ease-in 200ms;
	-moz-transition: all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: all ease-in 200ms; /* Opera */
	-ms-transition: all ease-in 200ms; /* IE9? */
}

.text_sytle_6 .social-icons a:hover {
	filter: alpha(opacity=100);
	opacity: 1;
}

.text_sytle_7 {
	clear: both;
	overflow: hidden;
	margin: 5px;
}

.text_sytle_7 h3 {
	font-size: 16px;
	color: #666666;
	font-weight: bold;
	margin: 10px 8px;
}
.text_sytle_7 h3 span {
	float: right;
}
.text_sytle_8 {
	clear: both;
	overflow: hidden;
	border:1px solid #c8c8c8;
	border-top:none;
	padding:25px;
	font-size:13px;
	color:#717171;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.text_sytle_8 h3 {
	font-size:16px;
	color:#000000;
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */
}
.text_sytle_8 a{
	text-decoration:underline;
}
.photo_box:hover .text_sytle_8{
	background-color:#009B85;
	color:#FFF;	
}
.photo_box:hover .text_sytle_8 h3 {
	color:#FFF;	
}
.photo_box:hover .text_sytle_8 a{
	color:#FFF;	
}
/* isotope_grid */
.isotope_grid {
	width: 100%;
}
.isotope_grid .isotope_main {
	width: 100%;
	position: relative;
}
.isotope_grid .isotope_item {
	width:0px;
	margin: 0px;
	position: absolute;
	left: 0;
	top: 0;
}
.isotope_grid .isotope_item img {
	width:100%;
	max-width:100%;
}
.isotope_grid1 .isotope_item > div {
	margin: 0;
}
.isotope_grid1 .isotope_group {
	text-align: center;
	padding: 10px 0 30px;
}
.isotope_grid1 .isotope_group a {
	margin: 0px 5px 5px;
	padding: 10px 35px;
	color: #999999;
	font-size: 13px;
	display: inline-block;
	border: 2px solid #999999;
	text-decoration: none;
	transition: all ease-in 200ms;
	-moz-transition: all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: all ease-in 200ms; /* Opera */
	-ms-transition: all ease-in 200ms; /* IE9? */
}
.isotope_grid1 .isotope_group a:hover,
.isotope_grid1 .isotope_group a.active {
	border-color:#cd3637;
	color: #cd3637;
	text-decoration: none;
}
.isotope_grid1 .isotope_item .content {
	width:100%;
	position:absolute;
	top:50%;
	text-align:center;
	transform:translate(0,-50%);
	-webkit-transform:translate(0,-50%);
	font-size:15px;
} 
.isotope_grid1 .isotope_item .photo:before{
	content:"";
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	background-color:#cd3637;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
}
.isotope_grid1 .isotope_item .content .ico {
	height:80px;
	width:80px;
	line-height:80px;
	text-align:center;
	margin:auto;
	border:2px solid #FFF;
	font-size:40px;
	margin-bottom:20px;
}
.isotope_grid1 .isotope_item .content h3{
	font-size:18px;	
}
.isotope_grid1 .isotope_item .content,
.isotope_grid1 .isotope_item .photo:before{
	opacity:0;
	filter:alpha(opacity=0);
	transition: 		all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}

.isotope_grid1 .isotope_item:hover .content{
	opacity:1;
	filter:alpha(opacity=100);
}
.isotope_grid1 .isotope_item:hover .photo:before{
	opacity:0.8;
	filter:alpha(opacity=80);
}

.isotope_grid2 .isotope_main {
	clear:both;
	padding-top:12px;
	width:auto;
	margin-left:-5px;
	box-sizing:				content-box;
	-moz-box-sizing: 		content-box;
	-webkit-box-sizing: 	content-box;
}
.isotope_grid2 .photo {
	position:relative;
	margin:5px;
}
.isotope_grid2 .photo .fa{
	position:absolute;
	top:50%;
	left:50%;
	height:64px;
	width:64px;
	line-height:68px;
	margin:-32px 0 0 -32px;
	text-align:center;
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
	color:#50bdac;
	font-size:26px;
	background-color:#FFF;
	filter:alpha(opacity=0);
	opacity:0;
	transition: 		all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.isotope_grid2 .photo img {
	width:100%;
}
.isotope_grid2 .photo:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#51bdad;
	filter:alpha(opacity=0);
	opacity:0;
	transition: 		all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.isotope_grid2 .photo:hover .fa,
.isotope_grid2 .photo:hover:before{
	filter:alpha(opacity=80);
	opacity:0.8;
}
.isotope_grid3 .isotope_group{
	text-align:center;
	padding:0 0 60px;
}
.isotope_grid3 .isotope_group a{
	border:1px solid #dddddd;
	padding:0 45px ;
	height:50px;
	line-height:50px;
	margin:0 5px 5px;
	display:inline-block;
	transition: 		all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.isotope_grid3 .isotope_group a,
.isotope_grid3 .isotope_group a:link,
.isotope_grid3 .isotope_group a:active,
.isotope_grid3 .isotope_group a:visited {
	color:#666666;
	font-size:14px;
	font-weight:bold;
}
.isotope_grid3 .isotope_group a:hover ,
.isotope_grid3 .isotope_group a.active{
	text-decoration:none;
	background-color:#fcc012;
	border-color:#fcc012;
	color:#FFF;
	font-weight:normal;
	border-bottom:4px solid rgba(0,0,0,0.1);
	transition: 		all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.isotope_grid3 .photo{
	position:relative;
}
.isotope_grid3 .photo:before{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	background-color:#fcc012;
	opacity:0;
	filter:alpha(opacity=0);
	visibility:hidden;
	transition: 		all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.isotope_grid3 .photo:hover:before{
	opacity:0.9;
	filter:alpha(opacity=90);
	visibility:visible;
}
.isotope_grid3 .photo .ico .fa{
	width:47px;
	height:47px;
	line-height:47px;
	text-align:center;
	border:1px solid #FFF;
	color:#FFF;
	transition: 		all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.isotope_grid3 .photo .ico {
	position:absolute;
	top:50%;
	width:100%;
	text-align:center;
	left:0;
	margin-top:-24px;
}
.isotope_grid3 .photo .ico a:hover .fa{
	background-color:#ffffff;
	color:#fcc012;
}
.isotope_grid3 .photo .ico a:first-child .fa{
	transform:translate(-100px,0);
	-webkit-transform:translate(-100px,0);
}
.isotope_grid3 .photo .ico a:nth-child(2) .fa{
	transform:translate(0px,-100px);
	-webkit-transform:translate(0px,-100px);
}
.isotope_grid3 .photo .ico a:last-child .fa{
	transform:translate(100px,0);
	-webkit-transform:translate(100px,0);
}
.isotope_grid3 .photo .ico a .fa{
	opacity:0;
	filter:alpha(opacity=0);
	visibility:hidden;
}
.isotope_grid3 .photo:hover .ico a .fa{
	opacity:1;
	filter:alpha(opacity=100);
	visibility:visible;
	transform:translate(0);
	-webkit-transform:translate(0);
}
.isotope_grid3 .photo .ico a,
.isotope_grid3 .photo .ico a:hover{
	text-decoration:none; 
}

@media only screen and (max-width: 767px) {
	.isotope_grid1 .isotope_group a {
		padding: 2px 8px;
		margin: 0 3px 3px;
	}
	.isotope_grid1 .isotope_item:hover .photo{
		transform:scale(1);
		-moz-transform:scale(1);
		-webkit-transform:scale(1);
		-o-transform:scale(1);
		-ms-transform:scale(1);
		z-index:1000;
	}
	.isotope_grid3 .isotope_group{
		padding:0 0 30px;
	}
}

.isotope_grid4 .photo {
	position:relative;
	overflow:hidden;
}
.isotope_grid4 .photo:before {
	content:"";
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.5);	
	position:absolute;
	opacity:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.isotope_grid4 .photo:after {
	content:"";
	left:0px;
	top:0px;
	bottom:0px;
	right:0px;
	position:absolute;
	border:1px solid #FFF;
	opacity:0;
	transition: 		all ease-in 300ms;
	-moz-transition: 	all ease-in 300ms; /* Firefox 4 */
	-webkit-transition: all ease-in 300ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 300ms; /* Opera */
	-ms-transition: 	all ease-in 300ms; /* IE9? */
}
.isotope_grid4 .ico {
	position:absolute;
	top:50%;
	width:100%;
	left:0;
	text-align:center;
	margin-top:-35px;
	z-index:10;
	opacity:0;
	transform:scale(1.2);
	-webkit-transform:scale(1.2);
	transition: 		all ease-in 400ms;
	-moz-transition: 	all ease-in 400ms; /* Firefox 4 */
	-webkit-transition: all ease-in 400ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 400ms; /* Opera */
	-ms-transition: 	all ease-in 400ms; /* IE9? */
}
.isotope_grid4 .photo:hover:before{
	opacity:1;
}
.isotope_grid4 .photo:hover:after{
	left:20px;
	top:20px;
	bottom:20px;
	right:20px;
	opacity:1;
}
.isotope_grid4 .photo:hover .ico{
	opacity:1;
	transform:scale(1);
	-webkit-transform:scale(1);
}
.isotope_grid4 .ico span {
	width:70px;
	height:70px;
	line-height:70px;
	text-align:center;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#009B85;
	color:#FFF;
	font-size:26px;
	margin:0px 5px;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
.isotope_grid4 .ico a:hover{
	text-decoration:none;
}
.isotope_grid4 .ico a:hover span {
	background-color:#333;
	text-decoration:none;
}
.isotope_grid4.isotope-spacing .isotope_item .photo{
	margin:1px;
	
}

/*flip box*/
.flip_box {
	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	perspective: 1000;
	overflow: visible;
	margin-bottom: 5px;
	position: relative;
}

.flip_box .front,
.flip_box .back {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 750ms ease 0s;
	-moz-transition: all 750ms ease 0s;
	-o-transition: all 750ms ease 0s;
	-ms-transition: all 750ms ease 0s;
	transition: all 750ms ease 0s;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.flip_box .front {
	position: relative;
	z-index: 0;
	color: #444;
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

.flip_box .back {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 100%;
	z-index: -2;
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.flip_box.flip_right .back {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.flip_box.flip_top .front {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.flip_box.flip_top .back {
	-webkit-transform: rotateX(180deg);
	-moz-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.flip_box.flip_bottom .front {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.flip_box.flip_bottom .back {
	-webkit-transform: rotateX(-180deg);
	-moz-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}

.flip_box:hover .front {
	background-color: #FFF;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.flip_box:hover .back {
	z-index: 3;
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

.flip_box.flip_right:hover .front {
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.flip_box.flip_top:hover .front {
	-webkit-transform: rotateX(-180deg);
	-moz-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}

.flip_box.flip_top:hover .back {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.flip_box.flip_bottom:hover .front {
	-webkit-transform: rotateX(180deg);
	-moz-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.flip_box.flip_bottom:hover .back {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.flip_box_1 .back h3 {
	padding: 30px 0 10px;
	color: #FFF;
}
.flip_box_1 .front {
	background-color:#f6f6f6;
	padding:30px 20px;
	text-align:center;
	line-height:1.5;
}
.flip_box_1 .front .ico {
	width:60px;
	height:60px;
	line-height:65px;
	text-align:center;
	margin:auto;
	background-color:#333333;
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
	font-size:24px;
	color:#FFF;
	margin-bottom:10px;
}
.flip_box_1 .front h5 {
	font-size: 15px;
	padding:5px 0;
}
.flip_box_1 .back {
	height: 100%;
	color: #FFF;
	text-align: center;
	padding: 0px 20px;
}
.flip_box_1 .back h5 {
	font-size: 15px;
	padding:55px 0 10px;
	color:#FFF;
}
.flip_box_2 .front {
	background-color:#f7f7f7;
	border:1px solid #e2e2e2;
	border-radius:			7px;
	-moz-border-radius:		7px;
	-webkit-border-radius:	7px;
	padding:30px 20px;
	text-align:center;
	line-height:1.5;
}
.flip_box_2 .front .fa  {
	width:120px;
	height:120px;
	line-height:120px;
	text-align:center;
	margin:auto;
	border:1px solid;
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
	font-size:60px;
	margin-bottom:10px;
}
.flip_box_2 .front h3 {
	font-size: 16px;
	padding:15px 0;
	letter-spacing:2px;
	font-weight:normal;
}
.flip_box_2 .back {
	height: 100%;
	color: #FFF;
	text-align: center;
	padding: 0px 20px;
	border-radius:			3px;
	-moz-border-radius:		3px;
	-webkit-border-radius:	3px;
}
.flip_box_2 .back h3 {
	padding: 20px 0 10px;
	color: #FFF;
	font-size: 16px;
	letter-spacing:2px;
	font-weight:normal;
}

.flip_box_3 .front {
	background-color:#f7f7f7;
	border:1px solid #e2e2e2;
	color:#7b7b7b;
	border-radius:			7px;
	-moz-border-radius:		7px;
	-webkit-border-radius:	7px;
	padding:30px 20px;
	text-align:center;
	line-height:1.5;
}
.flip_box_3 .front .fa  {
	width:40px;
	height:40px;
	line-height:35px;
	text-align:center;
	margin:auto;
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
	font-size:30px;
	color:#373737;
}
.flip_box_3 .front h3 {
	font-size: 14px;
	padding:5px 0;
	color:#373737;
	letter-spacing:1px;
}
.flip_box_3 .front p {
	line-height:1.8;
}
.flip_box_3 .back {
	height: 100%;
	background: #373737;
	color: #FFF;
	text-align: center;
	padding: 0px 20px;
	border-radius:			3px;
	-moz-border-radius:		3px;
	-webkit-border-radius:	3px;
}
.flip_box_3 .back h3 {
	padding: 30px 0 10px;
	color: #FFF;
	font-size: 14px;
	letter-spacing:1px;
	font-weight:normal;
}

.flip_box_4 .front {
	background-color:transparent;
	border:1px solid transparent;
	padding:30px 20px;
	text-align:center;
	line-height:1.5;
}
.flip_box_4 .front .fa  {
	width:145px;
	height:145px;
	line-height:135px;
	text-align:center;
	margin:auto;
	border:2px solid;
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
	font-size:60px;
	margin-bottom:10px;
}
.flip_box_4 .front h3 {
	font-size: 14px;
	padding:5px 0;
	color:#000000;
	letter-spacing:1px;
}
.flip_box_4 .front p {
	color:#7b7b7b;
	line-height:1.8;
}
.flip_box_4 .back {
	height: 100%;
	color: #FFF;
	text-align: center;
	padding: 0px 20px;
}
.flip_box_4 .back h3 {
	padding: 40px 0 10px;
	color: #FFF;
	font-size: 15px;
	letter-spacing:2px;
	font-weight:normal;
}
.flip_box_4 .back p {
	line-height:2;
}
.flip_box_4 .back .btn{
	font-weight:bold;
	color:#FFF;
	border:1px solid #FFF;
	padding:10px 27px;
	margin-top:20px;
	display:inline-block;
	font-size:13px;
	border-radius:			7px;
	-moz-border-radius:		7px;
	-webkit-border-radius:	7px;
}

/*video-bg*/
.video-bg {
	position:relative;
	z-index:1;
	overflow:hidden;
	background-color:#f5f5f5;
}
.video-bg .videobox {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index: -1;
}
.video-bg .videobox .video{
	padding-bottom: 56.25%;
	height: 0;
	position:relative;
}
.video-bg .videobox iframe,
.video-bg .videobox object,
.video-bg .videobox embed,
.video-bg .videobox video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.video-bg .player_line{
	width:126px;
	margin:25px auto;
	border-top-width:2px;
}
.video-bg .play {
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:rgba(0,0,0,0.65);
}
.video-bg .player {
	width: 100%;
	background: url("/Portals/_default/Skins/ForVend/images/loader.gif") no-repeat center center #000;
}
.player_boxes {
	padding: 90px 15px;
	text-align: center;
	color:#FFF;
}
.video-bg .player_boxes > *{
	position:relative;
	z-index:1;
}
.player_boxes .player_title {
    font-size: 50px;
    font-weight:bold;
    letter-spacing: 1px;
    line-height: 1.1;
	color:#FFF;
}
.player_boxes .player_smalltitle {
    font-size: 20px;
    letter-spacing: 5px;
    margin: 30px 0 30px;
    font-weight: normal;
    line-height: 1.2;
	color:#FFF;
	padding:20px 0;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 100%); 
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 100%); 
    background: -webkit-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 100%); 
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 100%); 
}
.player_boxes .player_content {
	margin: 0px 20%;
	color:#fff;
	line-height:2;
	font-size:15px;
}
.player_boxes.full-height{
	text-align:center;
	white-space:nowrap;
}
.player_boxes.full-height:after{
	content:"";
	height:100%;
	width:0;
	margin:0 ;
	vertical-align:middle;
	display:inline-block;
	overflow:hidden;
}
.player_boxes.full-height .vertical-center{
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
}
.dnngo-main .player_boxes .dg-btn-2:hover{
	border-color:#20a3f0;
    background-color: #20a3f0;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
	.player_boxes {
		padding: 50px 0px;
	}
	.player_boxes .player_content {
		margin: 0px 5%;
	}
}
@media only screen and (max-width: 767px) {
	.player_boxes {
		padding: 20px 0px;
	}
	.player_boxes .player_title {
		font-size: 25px;
	}
	.player_boxes .player_content {
		margin: 0px;
	}
}

/*responsive-video*/

.responsive-video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	z-index: 0;
}
.responsive-video iframe,
.responsive-video object,
.responsive-video embed,
.responsive-video video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.questions-title{
	text-align:center;
}
.code-description{
	font-size:15px;
	margin-bottom:60px;
}
.code-description h1{
	color:#424242;
	font-size:28px;
	font-weight:normal;
	margin:0 0 14px;
}

/*lightbox*/
.lightbox-title {
	border-bottom:2px solid #f5f5f5;
	position:relative;
	margin-bottom:40px;
}
.lightbox-title:after{
	content:"";
	position:absolute;
	left:0;
	bottom:-2px;
	width:41px;
	border-bottom:2px solid #20a3f0;
}
.lightbox-title h3{
	font-size:20px;
	color:#424242;
	padding:11px 0;
	font-weight:normal;
	line-height:1.2;
}
.lightbox-title .right button{
	margin-top:8px;
}

.lightbox-photo {
	border:1px solid #dcdcdc;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding:6px;
	margin-bottom:20px;
}
.lightbox-photo img{
	max-width:100%;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.lightbox-photo .title{
	display:block;
	padding:10px 0 5px;
	font-size:15px;
	color:#424242;
}
.lightbox-photo a:hover {
	text-decoration:none;
}
.lightbox-photo a:hover .title{
	color:#20a3f0;
}
.lightbox-photo .photo{
	position:relative;
	display:block;
}
.lightbox-photo .photo:after{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#000;
	z-index:0;
	opacity:0;
	visibility:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.lightbox-photo .photo:hover:after{
	opacity:0.5;
	visibility:visible;
}
.lightbox-photo .photo > .fa{
	position:absolute;
	width:45px;
	height:45px;
	line-height:45px;
	text-align:center;
	right:0;
	bottom:0;
	background-color:#20a3f0;
	color:#FFF;
	font-size:18px;
	z-index:2;
	border-radius:0 0 3px 0;
	-moz-border-radius:0 0 3px 0;
	-webkit-border-radius:0 0 3px 0;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
.lightbox-photo .photo > .icon{
	position:absolute;
	top:50%;
	left:0;
	width:100%;
	display:block;
	text-align:center;
	margin-top:-23px;
	z-index:2;
	opacity:0;
	visibility:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.lightbox-photo .photo > .icon .fa{
	width:45px;
	height:45px;
	line-height:45px;
	text-align:center;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#20a3f0;
	color:#FFF;
	font-size:18px;
	margin:0px 8px;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
.lightbox-photo .photo a:hover .fa{
	background-color:#555;
}
.lightbox-photo .photo:hover > .icon{
	opacity:1;
	visibility:visible;
}

.lightbox-cont{
	background-color:#f5f5f5;
	padding:20px;
	margin-bottom:10px;
}
.lightbox-cont > h4{
	font-size:15px;
	color:#424242;
	margin:0 0 15px;
	font-weight:normal;
}

.dg-modal .modal-title{
	font-size:18px;
	color:#424242;
	font-weight:normal;
}
.dg-modal .modal-header{
	padding: 15px 20px;
	border-bottom:none;
	position:relative;
}
.dg-modal .modal-header:after{
	content:"";
	position:absolute;
	top:100%;
	left:20px;
	right:20px;
	border-bottom:1px solid #dcdcdc;
	display:block;	
}

.dg-modal .modal-header .close{
	width:22px;
	height:22px;
	line-height:18px;
	display:block;
	border:1px solid #a4a4a4;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	opacity:1;
	color:#a4a4a4;
	margin-top:2px;
}
.dg-modal .modal-header .close span{
	vertical-align:top;
    font-weight: normal;
    font-family: serif;
}
.dg-modal .modal-content{
	border-radius:2px;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
}
.dg-modal .modal-body{
	padding:20px;
}
.dg-modal .modal-footer{
	border:none;
	padding:10px 20px 20px;
}
.dg-modal .modal-footer .btn{
	background:#20a3f0;
	color:#FFF;
	border:none;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.dg-modal .modal-footer .btn:hover{
	background-color:#333
}
.dg-modal[class*="header-"] .modal-header{
	color:#FFF;
}
.dg-modal[class*="header-"] .modal-header:after{
	content:normal;
}
.dg-modal[class*="header-"] .modal-header h4{
	color:#FFF;
}
.dg-modal[class*="header-"] .close{
	color:#FFF;
	border-color:#FFF;
}

.dg-modal[class*="bg-"],
.dg-modal[class*="bg-"] h4{
	color:#FFF;
	background:transparent;
}
.dg-modal[class*="bg-"] .close{
	color:#FFF;
	border-color:#FFF;
}
.dg-modal[class*="bg-"] .btn-close {
	background-color:rgba(0,0,0,.5);
}
.dg-modal[class*="bg-"] .modal-header:after{
	border-bottom-color:rgba(255,255,255,.5)
}




.dg-modal.modal-slide-in .modal-dialog {
	opacity: 0;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: scale(.7);
	-ms-transform: scale(.7);
	-o-transform: scale(.7);
	transform: scale(.7)
}
.dg-modal.modal-slide-in.in .modal-dialog {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}

.dg-modal.modal-slide-out .modal-dialog {
	opacity: 0;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	-o-transform: scale(1.3);
	transform: scale(1.3)
}
.dg-modal.modal-slide-out.in .modal-dialog {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}

.dg-modal.modal-slide-up .modal-dialog {
	opacity: 0;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: translate(0, -20%);
	-ms-transform: translate(0, -20%);
	-o-transform: translate(0, -20%);
	transform: translate(0, -20%)
}
.dg-modal.modal-slide-down .modal-dialog {
	opacity: 0;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: translate(0, 20%);
	-ms-transform: translate(0, 20%);
	-o-transform: translate(0, 20%);
	transform: translate(0, 20%)
}
.dg-modal.modal-slide-left .modal-dialog {
	opacity: 0;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: translate(-20%, 0);
	-ms-transform: translate(-20%, 0);
	-o-transform: translate(-20%, 0);
	transform: translate(-20%, 0)
}
.dg-modal.modal-slide-right .modal-dialog {
	opacity: 0;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: translate(20%, 0);
	-ms-transform: translate(20%, 0);
	-o-transform: translate(20%, 0);
	transform: translate(20%, 0)
}


.dg-modal.modal-slide-up.in .modal-dialog ,
.dg-modal.modal-slide-right.in .modal-dialog ,
.dg-modal.modal-slide-down.in .modal-dialog ,
.dg-modal.modal-slide-left.in .modal-dialog {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}

.dg-modal.modal-rotate-left .modal-dialog {
    -webkit-transform: translateX(-25%) rotate(-10deg) scale(.9);
    -ms-transform: translateX(-25%) rotate(-10deg) scale(.9);
    transform: translateX(-25%) rotate(-10deg) scale(.9);
	-webkit-transform-origin:left bottom;
	-ms-transform-origin:left bottom;
	transform-origin:left bottom;
}
.dg-modal.modal-rotate-right .modal-dialog {
    -webkit-transform: translateX(25%) rotate(10deg) scale(.9);
    -ms-transform: translateX(25%) rotate(10deg) scale(.9);
    transform: translateX(25%) rotate(10deg) scale(.9);
}
.dg-modal.modal-rotate-right.in .modal-dialog, 
.dg-modal.modal-rotate-left.in .modal-dialog {
    -webkit-transform: translateX(0) rotate(0) scale(1);
    -ms-transform: translateX(0) rotate(0) scale(1);
    transform: translateX(0) rotate(0) scale(1);
}


.dg-modal.modal-3d-horizontal {
	-webkit-perspective: 1300px;
	perspective: 1300px
}
.dg-modal.modal-3d-horizontal .modal-dialog {
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: rotateY(-70deg);
	-ms-transform: rotateY(-70deg);
	-o-transform: rotateY(-70deg);
	transform: rotateY(-70deg);
	-ms-transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}
.dg-modal.modal-3d-horizontal.in .modal-dialog {
	-webkit-transform: rotateY(0);
	-ms-transform: rotateY(0);
	-o-transform: rotateY(0);
	transform: rotateY(0)
}
.dg-modal.modal-3d-vertical {
	-webkit-perspective: 1300px;
	perspective: 1300px
}
.dg-modal.modal-3d-vertical .modal-dialog {
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: rotateX(-70deg);
	-ms-transform: rotateX(-70deg);
	-o-transform: rotateX(-70deg);
	transform: rotateX(-70deg);
	-ms-transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}
.dg-modal.modal-3d-vertical.in .modal-dialog {
	-webkit-transform: rotateX(0);
	-ms-transform: rotateX(0);
	-o-transform: rotateX(0);
	transform: rotateX(0)
}
.dg-modal.modal-3d-newspaper .modal-dialog {
	opacity: 0;
	-webkit-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
	transition: all .5s ease 0s;
	-webkit-transform: scale(0) rotate(720deg);
	-ms-transform: scale(0) rotate(720deg);
	-o-transform: scale(0) rotate(720deg);
	transform: scale(0) rotate(720deg)
}
.dg-modal.modal-3d-newspaper.in .modal-dialog {
	opacity: 1;
	-webkit-transform: scale(1) rotate(0);
	-ms-transform: scale(1) rotate(0);
	-o-transform: scale(1) rotate(0);
	transform: scale(1) rotate(0)
}
.dg-modal.modal-3d-slit {
	-webkit-perspective: 1300px;
	perspective: 1300px
}
.dg-modal.modal-3d-slit .modal-dialog {
	opacity: 0;
	-webkit-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
	transition: all .5s ease 0s;
	-webkit-transform: translateZ(-3000px) rotateY(90deg);
	-ms-transform: translateZ(-3000px) rotateY(90deg);
	transform: translateZ(-3000px) rotateY(90deg);
	-ms-transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}
.dg-modal.modal-3d-slit.in .modal-dialog {
	-webkit-animation-name: slit;
	-o-animation-name: slit;
	animation-name: slit;
	-webkit-animation-duration: .7s;
	-o-animation-duration: .7s;
	animation-duration: .7s;
	-webkit-animation-timing-function: ease-out;
	-o-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}
@-webkit-keyframes slit {
	50% {
		opacity:.5;
		-webkit-transform:translateZ(-250px) rotateY(89deg);
		-ms-transform:translateZ(-250px) rotateY(89deg);
		transform:translateZ(-250px) rotateY(89deg)
	}
	100% {
		opacity:1;
		-webkit-transform:translateZ(0) rotateY(0);
		-ms-transform:translateZ(0) rotateY(0);
		transform:translateZ(0) rotateY(0)
	}
}
@-o-keyframes slit {
	50% {
		opacity:.5;
		-webkit-transform:translateZ(-250px) rotateY(89deg);
		-ms-transform:translateZ(-250px) rotateY(89deg);
		transform:translateZ(-250px) rotateY(89deg)
	}
	100% {
		opacity:1;
		-webkit-transform:translateZ(0) rotateY(0);
		-ms-transform:translateZ(0) rotateY(0);
		transform:translateZ(0) rotateY(0)
	}
}
@keyframes slit {
	50% {
		opacity:.5;
		-webkit-transform:translateZ(-250px) rotateY(89deg);
		-ms-transform:translateZ(-250px) rotateY(89deg);
		transform:translateZ(-250px) rotateY(89deg)
	}
	100% {
		opacity:1;
		-webkit-transform:translateZ(0) rotateY(0);
		-ms-transform:translateZ(0) rotateY(0);
		transform:translateZ(0) rotateY(0)
	}
}


.modal-body .nav.nav-tabs{
	margin-left:0;
}

.color-demo .modal-header,
.color-demo .modal-content{
	padding:4px 3px;
	margin:0px 0px 5px;
	font-size:12px;
	white-space:nowrap;
	border-radius:0;
	-moz-border-radius:0;
	-webkit-border-radius:0;
    -webkit-box-shadow:none;
    box-shadow:none;
	border:none;
}
.color-demo .table{
	width: 16.66666667%;
	margin:0 0 5px;
	border:none;
	display:block;
}
.color-demo .table thead {
	display:block;
}
.color-demo .table thead th{
	padding:5px 3px;
	border:none;
	white-space:nowrap;
	display:block;
	font-size:12px;
}
.color-demo.table {
	border:none;
}
.color-demo.table > .col-sm-2 > div,
.color-demo.table > .col-sm-3 > div,
.color-demo.table > .col-sm-4 > div{
	margin-bottom:5px;
	padding:5px 3px;
	white-space:nowrap;
	font-size:12px;
}
.color-demo .tooltip-inner{
	white-space:nowrap;
}
.border-demo .col-sm-2 > div,
.border-demo .col-sm-4 > div{
	border-width:1px ;
	border-style:solid;
}
.thumbnail-title{
	text-align:center;
	margin-bottom:38px;
}
.thumbnail-title h3{
	font-size:20px;
	font-weight:normal;
	color:#424242;
	margin:0 0 18px;
	line-height:1.2;
}
.thumbnail-title h3:after{
	content:"";
	display:block;
	width:40px;
	border-bottom:2px solid #20a3f0;
	margin:20px auto 0;
}
.thumbnail-title p{
	max-width:50%;
	margin:auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.thumbnail-title p{
		max-width:75%;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.thumbnail-title p{
		max-width:80%;
	}
}
@media only screen and (max-width: 767px) {
	.thumbnail-title p{
		max-width:100%;
	}
}

.dg-thumbnail img {
	max-width:100%;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.dg-thumbnail{
	display:block;
	border:1px solid #dcdcdc;
	padding:6px;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	color:#666666;
    margin-bottom: 20px;
}
.dg-thumbnail .description{
	line-height:1.6;
	padding:8px 7px;

}
.dg-thumbnail .thumb-box{
	position:relative;
}
.dg-thumbnail .thumb-box .ico{
	position:absolute;
	top:50%;
	left:0;
	text-align:center;
	width:100%;
	margin-top:-25px;
	z-index:2;
	visibility:hidden;
	opacity:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-thumbnail .thumb-box em,
.dg-thumbnail .thumb-box i,
.dg-thumbnail .thumb-box .fa{
	width:45px;
	height:45px;
	line-height:47px;
	text-align:center;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#20a3f0;
	margin:0px 5px 5px;
	color:#FFF;
	font-size:16px;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
.dg-thumbnail .thumb-box em:hover,
.dg-thumbnail .thumb-box i:hover,
.dg-thumbnail .thumb-box .fa:hover{
	background-color:#555;
}
.dg-thumbnail .thumb-box .ico a:hover{
	text-decoration:none;
}
.dg-thumbnail .thumb-box > a:after{
	content:"";
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-color:#000;
	z-index:1;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	visibility:hidden;
	opacity:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-thumbnail .thumb-info{
	position:absolute;
	z-index:2;
	top:50%;
	left:0;
	text-align:center;
	width:100%;
	color:#FFF;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	visibility:hidden;
	opacity:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-thumbnail .thumb-info .date{
	margin-bottom:8px;
	font-size:11px;
}
.dg-thumbnail .thumb-info h4{
	color:#FFF;
	font-size:15px;
	margin:0;
}
.dg-thumbnail .thumb-info a, 
.dg-thumbnail .thumb-info a:link, 
.dg-thumbnail .thumb-info a:active, 
.dg-thumbnail .thumb-info a:visited{
	color:#FFF;
	font-size:11px;
}
.dg-thumbnail .thumb-box:hover > a:after{
	opacity:0.5;
	visibility:visible;
}
.dg-thumbnail .thumb-box:hover .ico,
.dg-thumbnail .thumb-box:hover .thumb-info{
	opacity:1;
	visibility:visible;
}
.dg-thumbnail .line{
	font-size:0;
	overflow:hidden;
	height:0;
}
.dg-thumbnail .line:before,
.dg-thumbnail .line span:before,
.dg-thumbnail .line:after,
.dg-thumbnail .line span:after{
	content:"";
	position:absolute;
	width:70px;
	height:70px;
	max-width:50%;
	max-height:50%;
	border-color:rgba(255,255,255,0.6);
	border-width:1px;
	border-style:none;
	z-index:4;
	opacity:0;
	visibility:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-thumbnail .thumb-box:hover .line:before,
.dg-thumbnail .thumb-box:hover .line span:before,
.dg-thumbnail .thumb-box:hover .line:after,
.dg-thumbnail .thumb-box:hover .line span:after{
	opacity:1;
	visibility:visible;
	margin:0;
}
.dg-thumbnail .line:before{
	left:8px;
	top:8px;
	border-left-style:solid;
	border-top-style:solid;
	margin:-8px 0 0 -8px;
}
.dg-thumbnail .line span:before{
	right:8px;
	top:8px;
	border-right-style:solid;
	border-top-style:solid;
	margin:-8px -8px 0 0;
}
.dg-thumbnail .line:after{
	left:8px;
	bottom:8px;
	border-left-style:solid;
	border-bottom-style:solid;
	margin:0 0 -8px -8px;
}
.dg-thumbnail .line span:after{
	right:8px;
	bottom:8px;
	border-right-style:solid;
	border-bottom-style:solid;
	margin:0 -8px -8px 0;
}
.dg-thumbnail .title{
	margin:18px 0 0;
	font-size:15px;
	color:#424242;
	padding:0px 7px;
}
.dg-thumbnail .title a,
.dg-thumbnail .title a:link,
.dg-thumbnail .title a:active,
.dg-thumbnail .title a:visited{
	color:#424242;
	font-size:15px;
}
.dg-thumbnail .title a:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-thumbnail .thumb-header h4{
	font-size:15px;
	color:#666666;
}
.dg-thumbnail .brand {
	margin-top:4px;
}
.dg-thumbnail .brand span{
	color:#666666;
	font-size:16px;
	margin:2px 2px 3px;
	display:inline-block;
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */
}
.dg-thumbnail .brand a:hover span{
	color:#20a3f0;
}
.dg-thumbnail .switcher{
	margin-top:7px;
}
.dg-thumbnail .switcher label{
	width:34px;
	height:15px;
	line-height:45px;
	position:relative;
	border-radius:15px;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	display:block;
	background-color:#FFF;
	border:1px solid #d4d5d4;
	cursor:pointer;
	overflow:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-thumbnail .switcher input[type="checkbox"]{
	display:none;
}
.dg-thumbnail .switcher label:before{
	content:"";
	width:13px;
	height:13px;
	position:absolute;
	left:-1px;
	top:0px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#FFF;
	border:1px solid #d4d5d4;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-thumbnail .switcher input[type="checkbox"]:checked + label:before{
	left:100%;
	margin-left:-13px;
}
.dg-thumbnail .switcher input[type="checkbox"]:checked + label{
	background-color:#20a3f0;
	border-color:transparent
}
.dg-thumbnail .check{
	margin-top:3px;
}
.dg-thumbnail .check input[type="checkbox"]{
	display:none;
}
.dg-thumbnail .check label{
	width:20px;
	height:20px;
	line-height:20px;
	border:1px solid #999999;
	background:#FFF;
	margin:0;
	overflow:hidden;
	display:block;
	border-radius:2px;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	text-indent:-1px;
	cursor:pointer;
}
.dg-thumbnail .check input[type="checkbox"]:checked + label:after { 
    content: "\f00c";
	font-family:"FontAwesome";
    color: #999999; 
} 
.dg-thumbnail .thumb-header{
	padding:3px 7px;
}
.dg-thumbnail .thumb-footer{
	padding:0px 7px 8px;
}
.dg-thumbnail .thumb-footer > .fa{
	font-size:16px;
	margin:0 3px;
}
.dg-thumbnail .thumb-footer > .brand{
	margin-top:0;
}
.dg-thumbnail .brand-radius{
	width:38px;
	height:38px;
	line-height:38px;
	font-size:16px;
	border:1px solid #666666;
	display:inline-block;
	color:#666666;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
    margin: 2px 3px 2px;
}
.dg-thumbnail .brand-radius .fa{
	font-size:16px;
	margin:0;
}
.dg-thumbnail .thumb-author{
	padding:12px 8px;
	min-height:96px;
}
.dg-thumbnail .author-img {
	float:left;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	margin-right:8px;
	overflow:hidden;
}
.dg-thumbnail .author-right {
	overflow:hidden;
	line-height:1.4;
	padding-top:12px;
}
.dg-thumbnail .author-right h5{
	margin:0 0px 5px;
}
.dg-thumbnail .thumb-author > h4{
	color:#424242;
	font-size:18px;
}
.dg-thumbnail .thumb-author .brand{
	margin-top:3px;
}
.dg-thumbnail .thumb-author p{
	margin:0 0 3px;
}
.dg-thumbnail .thumb-author .fa{
	font-size:15px;
	margin-right:3px;
	vertical-align:middle;
}

.thumbnail-title02 {
	position:relative;
	margin-bottom:40px;
}
.thumbnail-title02:after{
	content:"";
	position:absolute;
	left:0;
	bottom:-2px;
	width:41px;
	border-bottom:2px solid #20a3f0;
}
.thumbnail-title02 h3{
	font-size:20px;
	color:#424242;
	padding:11px 0 20px;
	font-weight:normal;
}
.thumbnail-title02 .right button{
	margin-top:8px;
}

.dg-thumbnail .thumb-right + .thumb-box{
	float:left;
	width:50%;
}
.dg-thumbnail .thumb-left + .thumb-box{
	float:right;
	width:50%;
}
.dg-thumbnail:after{
	content:"";
	clear:both;
	display:block;
	height:0px;
	overflow:hidden;
}
.dg-thumbnail .thumb-right{
	float:right;
	width:50%;
	padding:10px 0px 5px 14px;
}
.dg-thumbnail .thumb-left{
	float:left;
	width:50%;
	padding:10px 7px 5px 7px;
}
.dg-thumbnail .thumb-right h4,
.dg-thumbnail .thumb-left h4{
	margin:0 0 10px;
	font-size:15px;
}
.dg-thumbnail .thumb-right .brand,
.dg-thumbnail .thumb-left .brand{
	margin:0;
}
.dg-thumbnail .thumb-right hr,
.dg-thumbnail .thumb-left hr{
	margin:0px 0px 16px;
	border-top:1px solid #dcdcdc;
}

@media only screen and (max-width: 992px) {
.dg-thumbnail .thumb-right + .thumb-box,
.dg-thumbnail .thumb-left + .thumb-box,
.dg-thumbnail .thumb-right,
.dg-thumbnail .thumb-left{
	width:auto;
	margin:8px;
}
.dg-thumbnail .thumb-right,
.dg-thumbnail .thumb-left{
	padding:0;

}
}

.animations-title {
	margin-bottom:40px;
}
.animations-title h3{
	font-size:20px;
	color:#424242;
	font-weight:normal;
	margin:0;
}
.tablepage-title {
	margin-bottom:30px;
}
.tablepage-title h3{
	font-size:20px;
	color:#424242;
	font-weight:normal;
	margin:0;
	line-height:1;
}
.tablepage-title .right{
	margin-top:-8px;
}



ul{
	margin-left:20px;	
    list-style-type: disc;
}
ul ul{
	padding-top:0px;
    list-style-type: circle;
}
ol ol{
	padding-top:3px;
}
ol{
	margin-left:1.6em;	
	list-style-position: outside;
}
ol li{
	padding-left:6px;
}
.list-ordened,
.list-ordened2,
.list-ordened3 {
    counter-reset: custom-counter;
    list-style: none;
	margin-left:0;	
}
.list-ordened li,
.list-ordened2 li,
.list-ordened3 li{
	position:relative;
    padding-left: 27px;
    margin-bottom: 3px;
	line-height:24px;
}
.list-ordened li:before,
.list-ordened2 li:before,
.list-ordened3 li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: counter(custom-counter);
    counter-increment: custom-counter;
    font-weight: bold;
	color:#2fa9f1;
}
.list-ordened2 li{
	padding-left:32px;
    margin-bottom: 13px;
	padding-top:1px;
}
.list-ordened2 li:before {
	width:26px;
	height:26px;
	line-height:24px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	display:inline-block;
	border:1px solid #2fa9f1;
	text-align:center;
}
.list-ordened3 li{
	padding-left:32px;
    margin-bottom: 13px;
	padding-top:1px;
}
.list-ordened3 li:before {
	width:26px;
	height:26px;
	line-height:26px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	display:inline-block;
	text-align:center;
	background-color:#20a3f0;
	color:#FFF;
}
dl dt{
	font-size:13px;
	color:#333333;
	margin-bottom:8px;
}
dl dd{
	margin-bottom:22px;
}

.list-ico,
.list-ico2,
.list-ico3 {
    list-style: none;
	margin-left:0;	
}
.list-ico li,
.list-ico2 li,
.list-ico3 li{
	position:relative;
    margin-bottom: 3px;
	line-height:24px;
	padding-left:36px;
    margin-bottom: 18px;
	padding-top:1px;
}
.list-ico .fa,
.list-ico2 .fa,
.list-ico3 .fa,
.list-ico .lnr,
.list-ico2 .lnr,
.list-ico3 .lnr,
.list-ico .glyphicon,
.list-ico2 .glyphicon,
.list-ico3 .glyphicon {
    position: absolute;
    top: 0;
    left: 0;
    content: counter(custom-counter);
    counter-increment: custom-counter;
    font-weight: bold;
	color:#2fa9f1;
	width:26px;
	height:26px;
	text-align:center;
	line-height:26px;
}
.list-ico2 .fa,
.list-ico2 .lnr,
.list-ico2 .glyphicon {
	line-height:24px;
	display:inline-block;
	border:1px solid #2fa9f1;
	text-align:center;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.list-ico3 .fa,
.list-ico3 .lnr,
.list-ico3 .glyphicon {
	display:inline-block;
	text-align:center;
	background-color:#20a3f0;
	color:#FFF!important;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}

.list-ico.ico-sm li,
.list-ico2.ico-sm li,
.list-ico3.ico-sm li{
	padding-left:32px;
    margin-bottom: 9px;
	padding-top:1px;
}
.list-ico.ico-sm .fa,
.list-ico2.ico-sm .fa,
.list-ico3.ico-sm .fa,
.list-ico.ico-sm .lnr,
.list-ico2.ico-sm .lnr,
.list-ico3.ico-sm .lnr,
.list-ico.ico-sm .glyphicon,
.list-ico2.ico-sm .glyphicon,
.list-ico3.ico-sm .glyphicon {
	font-size: 0.8em;
	width:20px;
	height:20px;
	line-height:20px;
	top:3px;
}
.list-ico2.ico-sm .fa,
.list-ico2.ico-sm .lnr,
.list-ico2.ico-sm .glyphicon {
	line-height:19px;
}
.list-ico.ico-lg li,
.list-ico2.ico-lg li,
.list-ico3.ico-lg li{
	padding-left:42px;
    margin-bottom: 18px;
	padding-top:3px;
}
.list-ico.ico-lg .fa,
.list-ico2.ico-lg .fa,
.list-ico3.ico-lg .fa,
.list-ico.ico-lg .lnr,
.list-ico2.ico-lg .lnr,
.list-ico3.ico-lg .lnr,
.list-ico.ico-lg .glyphicon,
.list-ico2.ico-lg .glyphicon,
.list-ico3.ico-lg .glyphicon {
    font-size: 1.5em;
	width:30px;
	height:30px;
	line-height:30px;
}
.list-ico2.ico-lg .fa,
.list-ico2.ico-lg .lnr,
.list-ico2.ico-lg .glyphicon {
	line-height:29px;
}

body ul.list-border-solid li{
	border-bottom:1px solid #dcdcdc;
	margin-bottom:18px;
	padding-bottom:18px;
}
body ul.list-border-solid.ico-sm li{
	margin-bottom:9px;
	padding-bottom:10px;
}
body ul.list-border-solid.ico-lg{
	margin-bottom:18px;
	padding-bottom:18px;
}
body ul.list-border-dashed li{
	border-bottom:1px dashed #dcdcdc;
	margin-bottom:18px;
	padding-bottom:18px;
}
body ul.list-border-dashed.ico-sm li{
	margin-bottom:9px;
	padding-bottom:10px;
}
body ul.list-border-dashed.ico-lg{
	margin-bottom:18px;
	padding-bottom:18px; 
}


div.tooltip.in{
	opacity:1;
}
.tooltip .tooltip-inner {
    padding: 7px 12px;
	border-radius:2px;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
}
.color-demo .tooltip.in{
	position:relative;
	margin-bottom:12px;
}
.tooltip.top .tooltip-arrow{
	border-left-color:transparent!important;
	border-right-color:transparent!important;
	border-bottom-color:transparent!important;
}
.tooltip.left .tooltip-arrow{
	border-right-color:transparent!important;
	border-top-color:transparent!important;
	border-bottom-color:transparent!important;
}
.tooltip.right .tooltip-arrow{
	border-left-color:transparent!important;
	border-top-color:transparent!important;
	border-bottom-color:transparent!important;
}
.tooltip.bottom .tooltip-arrow{
	border-top-color:transparent!important;
	border-right-color:transparent!important;
	border-left-color:transparent!important;
}
.popover {
    border-radius: 2px;
	border-color:#dcdcdc;
	padding:0;
	box-shadow:none;	
	-moz-box-shadow:none; 	
	-webkit-box-shadow:none;
	font-family:inherit;
	line-height:inherit;
}
.popover-title {
    padding: 15px 20px 0;
	margin: 0;
    font-size: 14px;
    background-color:transparent;
    border-bottom:none;
    border-radius:  0;
	color:#666666;
	font-size:15px;
	font-weight:normal;
	line-height:1.6;
}
.popover-content{
    padding:10px 20px 15px;
	color:#666666;
	font-size:13px;
}
.popover>.arrow {
    border-width: 7px;
}
.custom-header .popover-title{
	color:#FFF;
	padding:11px 20px; 
}
.custom-header .popover-content{
	padding-top:15px; 
}
.custom-bg.popover{
	border:none;
}
.custom-bg .popover-title,
.custom-bg .popover-content{
	color:#FFF;
}
.custom-bg.popover > .arrow:after{
	content:normal;
}
.custom-bg.popover > .arrow{
	border:none;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	transform-origin:center;
	-webkit-transform-origin:center;
	width:8px;
	height:8px;
}
.tooltip {
	font-family:inherit;
	line-height:inherit;
}

.custom-bg.tooltip > .tooltip-arrow{
	border:none;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	transform-origin:center;
	-webkit-transform-origin:center;
	width:8px;
	height:8px;
}


.popover.top>.arrow {
    bottom: -7px;
	margin-left: -7px;
    border-top-color: #dcdcdc;
}
.popover.right>.arrow {
    left: -7px;
    margin-top: -7px;
    border-right-color: #dcdcdc;
}
.popover.bottom>.arrow {
    top: -7px;
    margin-left: -7px;
}
.popover.left>.arrow {
    right: -7px;
    margin-top: -7px;   
}
.custom-bg.popover.top>.arrow {
    bottom: -4px;
	margin-left: -4px;
}
.custom-bg.popover.right>.arrow {
    left: -4px;
    margin-top: -4px;
}
.custom-bg.popover.bottom>.arrow {
    top: -4px;
    margin-left: -4px;
}
.custom-bg.popover.left>.arrow {
    right: -4px;
    margin-top: -3px;   
}

.custom-bg.tooltip.top>.tooltip-arrow {
    bottom: 1px;
	margin-left: -3px;
}
.custom-bg.tooltip.right>.tooltip-arrow {
    left: 1px;
    margin-top: -3px;
}
.custom-bg.tooltip.bottom>.tooltip-arrow {
    top: 1px;
    margin-left: -3px;
}
.custom-bg.tooltip.left>.tooltip-arrow {
    right: 1px;
    margin-top: -3px;   
}


/*Labels-and-badges*/
.labelspage-title{
	overflow:hidden;
	text-align:center;
}
.labelspage-title h3{
	position:relative;
	display:inline-block;
	padding:0px 20px;
	max-width:80%;
	color:#424242;
	font-size:20px;
	margin:0;
}
.labelspage-title h3 + p{
	margin-top:21px;
}
.labelspage-title h3:after,
.labelspage-title h3:before{
	content:"";
	position:absolute;
	top:50%;
	border-bottom:2px solid #f6f6f6;
	width:2000px;
	margin-top:-1px;
}
.labelspage-title h3:after{
	left:100%;
}
.labelspage-title h3:before{
	right:100%;
}
.labelspage-title p{
	max-width:50%;
	margin:auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.labelspage-title p{
		max-width:75%;
	}
}
@media only screen and (max-width: 767px) {
	.labelspage-title p{
		max-width:100%;
	}
}
.badge{
	vertical-align:middle;
    margin-bottom: 2px;
	font-weight:normal;
}
.badge-o {
    display: inline-block;
    min-width: 10px;
    padding: 2px 6px;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 10px;
	color:inherit;
	border-width:1px;
	border-style:solid;
	border-color:inherit;
	vertical-align:middle;
    margin-bottom: 2px;
}
.badge-white {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 10px;
	color:inherit;
	background-color:#FFF;
	vertical-align:middle;
    margin-bottom: 2px;
}

.pane-area{
	margin: 5px 0;
	padding:12px 0px;
    text-align: center;
    font-size: 14px;
    color: #555;
    background: rgba(0,0,0,0.05);	
	box-shadow:0 0 1px rgba(0,0,0,0.4);	
	-moz-box-shadow:0 0 1px rgba(0,0,0,0.4); 	
	-webkit-box-shadow:0 0 1px rgba(0,0,0,0.4);
}

.dg-blockquote{
	border:1px solid #dcdcdc;
	padding:20px;
	font-style:normal;
}
.dg-blockquote p{
	text-indent:2em;
	font-style:normal;
}
.dg-blockquote cite{
	display:inline-block;
	color:#424242;
	font-size:15px;
	font-weight:bold;
}
.dg-blockquote cite:before{
	content:normal;
}
.dg-blockquote footer{
	margin-top:12px;
}
.right-border{
	border:none;
	border-right:5px solid #dcdcdc;
}
.left-border{
	border:none;
	border-left:5px solid #dcdcdc;
}
.none-border {
	border:none;
}
.dg-blockquote.left-bg,
.dg-blockquote.right-bg{
	position:relative;
	z-index:1;
}
.dg-blockquote.left-bg:before,
.dg-blockquote.right-bg:before{
	content:"";
	background:url("/Portals/_default/Skins/ForVend/images/blockquote-quote.png") no-repeat 0 0;
	position:absolute;
	z-index:-1;
	font-size:50px;
	left:0;
	top:0px;
	width:56px;
	height:48px;
}
.dg-blockquote.right-bg:before{
	background-position:-56px 0px;
	left:auto;
	right:0;
}

.dg-blockquote.left-bg p,
.dg-blockquote.right-bg p{
	text-indent:0;
}
.media, 
.media-body{
	overflow:visible;
}
.media{
	padding:16px 0px 16px;
	margin:0;
	overflow:visible;
}
.media-list.media-hover .media{
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; 
	-webkit-transition: background-color ease-in 200ms;
	-o-transition: 		background-color ease-in 200ms;
	-ms-transition: 	background-color ease-in 200ms;
}
.media-list.media-hover .media:hover{
	background-color:#f8f8f8
}
.media-list.media-border .media{
	border-bottom:1px solid #ebebeb
}
.media-list.media-border .media:last-child{
	border-bottom:none;
}
.media-body .media-list{
	padding-top:16px;
}
.media-body .media-list>.media:last-child{
	padding-bottom:0;
}


.media-title{
	margin:0 0 26px;
}
.media-title h3{
	font-size:18px;
	color:#424242;
	line-height:1.2;
}
.media-title .right{
	margin: -6px 0 0 0;
}
.media-list{
	margin:0;
	padding:0;
}
.media-left, 
.media>.pull-left{
	padding:0 20px 0 11px;
	position:relative;
}
.media-right, 
.media>.pull-right{
	padding:0 11px 0 20px;
	position:relative;
}
.media-body .media-left, 
.media-body .media>.pull-left{
	padding:0 20px 0 0px;
}
.media-body .media-right, 
.media-body .media>.pull-right{
	padding:0 0px 0 20px;
}

.media-heading {
	font-size:15px;
	line-height:20px;
	color:#424242;
	margin:0;
}
.media-info{
	font-size:13px;
	color:#999999;
	padding:0 8px 0 0;
}
.media-info.dotted:before{
	content:"";
	width:3px;
	height:3px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#999999;
	display:inline-block;
	vertical-align:middle;
	margin:0 8px;
}
.media .dropdown{
	margin:0 10px;
}
.media .dropdown > div[type="button"]{
	cursor:pointer;
	color:#666666;
}
.media .dropdown-menu{
	font-size:13px;
}
.media .dropdown-menu>li>a {
    padding: 6px 20px;
    font-weight:normal;
    line-height: 1.6;
    color: #666666;
    white-space: nowrap;
}
.media .dropdown-menu>li>a:hover {
	background-color:#eeeeee;
	color:#666666;
}
.media-badge{
    position: absolute;
    top: -0px;
    right: 100%;
    border: 2px solid #FFF;
    margin-right: -21px;
    padding: 3px 5px;
}
.media-right .media-badge,
.pull-right .media-badge{
	left:100%;
	right:auto;
	margin:0 0 0 -21px;
}
.media .label{
	font-size:13px;
	padding:0px 6px;
	height:21px;
	line-height:21px;
	font-weight:normal;
	display:inline-block;
}


/*dropdown */
.btn[class*="bg-"]:hover,
.btn[class*="bg-"]:active,
.btn[class*="bg-"]:focus{
	color:#FFF;
}

.dropdown-menu>.active>a{
    color: #262626;
    background-color: #f5f5f5;
}
.dropdown-menu>.active>a:focus, 
.dropdown-menu>.active>a:hover{
    color:inherit;
    background-color: #f5f5f5;
}

.dropright .dropdown-menu{
	left:auto;
	right:0
} 
.dropdown-demo{
	position:relative;
	display:block;
	float:none;
	clear:both;
    margin:40px 0 40px;
	z-index:inherit;
}
.dropdown-menu{
    -webkit-box-shadow:none;
    box-shadow: none;
    min-width: 200px;
}
.dropdown-menu>li>a{
	font-size:13px;
	line-height:inherit;
	padding:5px 10px;
	color:#666;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; 
	-webkit-transition:	all ease-in 200ms; 
	-o-transition: 		all ease-in 200ms;
	-ms-transition: 	all ease-in 200ms;
}
.dropdown-menu>li.dropdown-header{
	padding:5px 10px;
	color:#424242;
	font-size:13px;
	line-height:inherit;
}
.dropdown-submenu{
	position:relative;
}
.dropdown-menu .ico-right{
	position:absolute;
	right:10px;
	top:50%;
	margin-top:-7px;
}
.dropdown-submenu > .dropdown-menu{
	left:100%;
	top:0;
	margin:0!important;
}
.dropdown-submenu:hover > .dropdown-menu{
	display:block;
}
.dropdown-menu>.dropdown-submenu:focus>a, 
.dropdown-menu>.dropdown-submenu:hover>a {
    background-color: #f5f5f5;
}


@-webkit-keyframes slide-left {
	0% {
	opacity:0;
	-webkit-transform:translate3d(-100%, 0, 0);
	transform:translate3d(-100%, 0, 0)
	}
	100% {
	opacity:1;
	-webkit-transform:translate3d(0, 0, 0);
	transform:translate3d(0, 0, 0)
	}
}
@-o-keyframes slide-left {
	0% {
	opacity:0;
	-webkit-transform:translate3d(-100%, 0, 0);
	transform:translate3d(-100%, 0, 0)
	}
	100% {
	opacity:1;
	-webkit-transform:translate3d(0, 0, 0);
	transform:translate3d(0, 0, 0)
	}
}
@keyframes slide-left {
	0% {
	opacity:0;
	-webkit-transform:translate3d(-100%, 0, 0);
	transform:translate3d(-100%, 0, 0)
	}
	100% {
	opacity:1;
	-webkit-transform:translate3d(0, 0, 0);
	transform:translate3d(0, 0, 0)
	}
}
.dropdown-menu.animate{
	overflow:hidden
}
.open > .dropdown-menu.animate > li {
    -webkit-animation-name: slide-left;
    -o-animation-name: slide-left;
    animation-name: slide-left;
    -webkit-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}
.dropdown-menu.animate>li:nth-child(1) {
	-webkit-animation-delay: .02s;
	-o-animation-delay: .02s;
	animation-delay: .02s
}
.dropdown-menu.animate>li:nth-child(2) {
	-webkit-animation-delay: .04s;
	-o-animation-delay: .04s;
	animation-delay: .04s
}
.dropdown-menu.animate>li:nth-child(3) {
	-webkit-animation-delay: .06s;
	-o-animation-delay: .06s;
	animation-delay: .06s
}
.dropdown-menu.animate>li:nth-child(4) {
	-webkit-animation-delay: .08s;
	-o-animation-delay: .08s;
	animation-delay: .08s
}
.dropdown-menu.animate>li:nth-child(5) {
	-webkit-animation-delay: .1s;
	-o-animation-delay: .1s;
	animation-delay: .1s
}
.dropdown-menu.animate>li:nth-child(6) {
	-webkit-animation-delay: .12s;
	-o-animation-delay: .12s;
	animation-delay: .12s
}
.dropdown-menu.animate>li:nth-child(7) {
	-webkit-animation-delay: .14s;
	-o-animation-delay: .14s;
	animation-delay: .14s
}
.dropdown-menu.animate>li:nth-child(8) {
	-webkit-animation-delay: .16s;
	-o-animation-delay: .16s;
	animation-delay: .16s
}
.dropdown-menu.animate>li:nth-child(9) {
	-webkit-animation-delay: .18s;
	-o-animation-delay: .18s;
	animation-delay: .18s
}
.dropdown-menu.animate>li:nth-child(10) {
	-webkit-animation-delay: .2s;
	-o-animation-delay: .2s;
	animation-delay: .2s
}
.btn-group>.btn[class*="bg-"]{
	border-left:1px solid rgba(0,0,0,0.1);
	z-index:3;
}
.btn-group>.btn[class*="bg-"]:first-child{
	border-left-color:transparent;
}
.dropdown-menu.dropdown-bullet:before{
	content:"";
	position:absolute;
	left:12px;
	top:-5px;
	width:8px;
	height:8px;
    background-color: #fff;
    border-top: 1px solid #ccc;
    border-top: 1px solid rgba(0,0,0,.15);
    border-left: 1px solid #ccc;
    border-left: 1px solid rgba(0,0,0,.15);
    border-bottom: 1px solid transparent;
    border-right: 1px solid transparent;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	transform-origin:center center;
	-webkit-transform-origin:center center;
}
.dropdown-menu.top-left.dropdown-bullet:before{
	left: 12px;
    top: auto;
    bottom: -4px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
.dropdown-menu.bottom-left.dropdown-bullet:before{
	left:12px;
	top:-5px;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
}
.dropdown-menu.right-top.dropdown-bullet:before{
	left: -4px;
    top: 12px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.dropdown-menu.left-top.dropdown-bullet:before{
    left: auto;
    top: 12px;
    right: -4px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}
.dropdown-menu.top-right.dropdown-bullet:before{
    left: auto;
    bottom: -5px;
    right: 12px;
    top: auto;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
.dropdown-menu.bottom-right.dropdown-bullet:before{
    left: auto;
    right: 12px;
    top: -5px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.dropdown-menu.right-bottom.dropdown-bullet:before{
	left: -5px;
    top: auto;
    bottom: 12px;
    transform: rotate(45deg);
    -webkit-transform: rotate(-45deg);
}
.dropdown-menu.left-bottom.dropdown-bullet:before{
	left: auto;
    top: auto;
    right: -5px;
    bottom: 12px;
    transform: rotate(45deg);
    -webkit-transform: rotate(135deg);
}
.dropdown-menu.top-left.dropdown-bullet,
.dropdown-menu.top-right.dropdown-bullet{
	margin: 0 0 10px 0;
}
.dropdown-menu.dropdown-bullet,
.dropdown-menu.bottom-left.dropdown-bullet,
.dropdown-menu.bottom-right.dropdown-bullet{
	margin: 10px 0 0 0;
}
.dropdown-menu.right-top.dropdown-bullet,
.dropdown-menu.right-bottom.dropdown-bullet{
	margin: 0 0 0 10px;
}
.dropdown-menu.left-top.dropdown-bullet,
.dropdown-menu.left-bottom.dropdown-bullet{
	margin: 0 10px 0 0;
}
.dropdown-demo.dropdown-menu.dropdown-bullet{
	margin-top:50px;
}

.dropdown-menu.top-left{
	top:auto;
	bottom:100%;
	left:0;
	right:auto;
	margin: 0 0 3px 0;
}
.dropdown-menu.bottom-left{
	top:100%;
	bottom:auto;
	left:0;
	right:auto;
	margin: 3px 0 0 0;
}
.dropdown-menu.right-top{
	top:0;
	bottom:auto;
	left:100%;
	right:auto;
	margin: 0 0 0 3px;
}
.dropdown-menu.left-top{
	top:0;
	bottom:auto;
	left:auto;
	right:100%;
	margin: 0 3px 0 0;
}
.dropdown-menu.top-right{
	top:auto;
	bottom:100%;
	left:auto;
	right:0;
	margin: 0 0 3px 0;
}
.dropdown-menu.bottom-right{
	top:100%;
	bottom:auto;
	left:auto;
	right:0;
	margin: 3px 0 0 0;
}
.dropdown-menu.right-bottom{
	top:auto;
	bottom:0;
	left:100%;
	right:auto;
	margin: 0 0 0 3px;
}
.dropdown-menu.left-bottom{
	top:auto;
	bottom:0;
	left:auto;
	right:100%;
	margin: 0 3px 0 0;
}

/*label */
.label{
    padding: 0.3em .6em .3em;
}

/*Dropcat-Highlight*/
.dropcap {
    display: inline-block;
    float: left;
    font-size: 42px;
    height: 55px;
    line-height: 55px;
    margin: 8px 10px 0 0;
    text-align: center;
    width: 55px;
	font-weight:bold;
	color:#666666;
	border:1px solid transparent;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.dropcap-circle{
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.dropcap.bg-default{
    background: #666666;
	color:#FFF;
}
.dropcap-square{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dropcap.dropcap-small{
    font-size: 15px;
    height: 25px;
    line-height: 25px;
    width: 25px;
}
.dropcap.dropcap-large{
    font-size: 70px;
    height: 85px;
    line-height: 85px;
    width: 85px;
}
.highlight{
	background-color:#ebebeb;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}

/**/

.demo-heading{
	border:none;
}
.demo-heading td{
	border:none;
	padding:0px 2%;
}

/*panel */
.panel {
    margin-bottom: 35px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    -webkit-box-shadow:none;
    box-shadow:none;
	border-radius:0;
	-moz-border-radius:0;
	-webkit-border-radius:0;
}
.panel-heading {
    padding: 13px 23px 13px;
    border-bottom: 1px solid #dcdcdc;
	border-radius:0;
	-moz-border-radius:0;
	-webkit-border-radius:0;
	font-size:15px;
	color:#424242;
	font-weight:bold;
}
.panel-body {
    padding: 16px 23px 15px;
}

.panel-flat > .panel-heading{
	border-bottom:none;
    padding: 22px 23px 4px;
}
.panel-flat > .panel-body{
    padding: 6px 23px 25px;
}
.panel-default>.panel-heading{
	color:#424242;
	background-color:#fafafa;
	border-color: #dcdcdc;
}
.panel-heading[class*="bg-"]{
    padding: 14px 24px 14px;
	margin:-1px -1px 0;
	border-bottom:none;
}

.panel-border-top,
.panel-border-top.border-accent{
	border-left-color:#dcdcdc!important;
	border-right-color:#dcdcdc!important;
	border-bottom-color:#dcdcdc!important;
	border-left-width:1px!important;
	border-right-width:1px!important;
	border-bottom-width:1px!important;
}
.panel-border-left,
.panel-border-left.border-accent{
	border-top-color:#dcdcdc!important;
	border-right-color:#dcdcdc!important;
	border-bottom-color:#dcdcdc!important;
	border-top-width:1px!important;
	border-right-width:1px!important;
	border-bottom-width:1px!important;
}
.panel-border-right,
.panel-border-right.border-accent{
	border-left-color:#dfdfdf!important;
	border-top-color:#dfdfdf!important;
	border-bottom-color:#dfdfdf!important;
	border-left-width:1px!important;
	border-top-width:1px!important;
	border-bottom-width:1px!important;
}
.panel-border-bottom,
.panel-border-bottom.border-accent{
	border-left-color:#dfdfdf!important;
	border-right-color:#dfdfdf!important;
	border-top-color:#dfdfdf!important;
	border-left-width:1px!important;
	border-right-width:1px!important;
	border-top-width:1px!important;
}
.border-lg{
	border-width:2px
}
.border-xl{
	border-width:3px
}
.panel[class*="bg-"]{
	border:none;
}
.panel[class*="bg-"] .panel-heading{
	color:#fff;
	border-bottom:1px solid #ffffff;
}

.panel table {
	border-bottom:none;
}
.panel > table {
	border-top:none;
}

/*bg color*/
.breadcrumb{
	margin:0 0 30px;
	background-color:transparent;
	border:1px solid transparent;
	border-radius:0;
	-moz-border-radius:0;
	-webkit-border-radius:0;
    padding: 9px 15px 9px 0px;
}
.breadcrumb:after{
	content:"";
	clear:both;
	display:block;
	height:0;
	overflow:hidden;
	width:100%;
}
.breadcrumb .right:before{
	content:"";
}
.breadcrumb .dropdown{
	white-space:nowrap;
	cursor:pointer;
}
.breadcrumb[class*="bg-"]{
	color:#fff;
	padding-left:15px;
}
.breadcrumb[class*="border-"]{
	padding-left:15px;
}
.breadcrumb[class*="bg-"] > li > a, 
.breadcrumb[class*="bg-"] > li > a:link, 
.breadcrumb[class*="bg-"] > li > a:active, 
.breadcrumb[class*="bg-"] > li > a:visited,
.breadcrumb[class*="bg-"]>.active,
.breadcrumb[class*="bg-"]>li+li:before{
	color:#fff;
}
.breadcrumb[class*="bg-"] > li > a:hover,
.breadcrumb[class*="bg-"] .right .dropdown:hover{
	color:#333333;
	text-decoration:none;	
}

.breadcrumb.bg-default,
.breadcrumb.bg-white,
.breadcrumb a, 
.breadcrumb a:link, 
.breadcrumb a:active, 
.breadcrumb a:visited, 
.breadcrumb a.active,
.breadcrumb.bg-default > li > a, 
.breadcrumb.bg-default > li > a:link, 
.breadcrumb.bg-default > li > a:active, 
.breadcrumb.bg-default > li > a:visited,
.breadcrumb.bg-default>.active,
.breadcrumb.bg-default>li+li:before,
.breadcrumb.bg-white > li > a, 
.breadcrumb.bg-white > li > a:link, 
.breadcrumb.bg-white > li > a:active, 
.breadcrumb.bg-white > li > a:visited,
.breadcrumb.bg-white>.active,
.breadcrumb.bg-white>li+li:before{
	color:#666666;
}
.breadcrumb .dropdown-menu{
	margin-top:12px;
}

.breadcrumb[class*="bg-"] .right .dropdown{
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */
}
.breadcrumb a:hover,
.breadcrumb .dropdown:hover,
.breadcrumb.bg-default li a:hover,
.breadcrumb.bg-default li .dropdown:hover,
.breadcrumb.bg-default li.right .dropdown:hover{
	color:#20a3f0;
	text-decoration:none;	
}
.breadcrumb>li+li:before{
	padding:0;
}
.border-default{
	border-color:#dcdcdc
}
.bg-default{
	background-color:#fcfcfc
}
.breadcrumb.style-arrow{
	padding-top:4px;
	padding-bottom:4px;
}
.breadcrumb.style-arrow > li{
	position:relative;
	z-index:1;
	vertical-align:middle;
	margin-top:4px;
	margin-bottom:4px;
}
.breadcrumb.style-arrow > li > a,
.breadcrumb.style-arrow > li.active{
	padding:3px 18px;
}
.breadcrumb.style-arrow > li > a{
	display:inline-block;
}
.breadcrumb.style-arrow > li:before,
.breadcrumb.style-arrow > li:after{
	content:"";
	position:absolute;
	width:100%;
	height:50%;
	top:0;
	left:0;
	background-color:#ebebeb;
	z-index:-1;
	transform:skew(45deg);
	-webkit-transform:skew(45deg);
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
.breadcrumb.style-arrow > li:after{
	top:50%;
	left:0;
	transform:skew(-45deg);
	-webkit-transform:skew(-45deg);
}
.breadcrumb.style-arrow > li:first-child{
	overflow:hidden;
    margin-right: -7px;
}
.breadcrumb.style-arrow > li:first-child > a{
	padding:3px 20px 3px 11px;
}
.breadcrumb.style-arrow > li.right > a{
	padding:0;
}
.breadcrumb.style-arrow > li:first-child:before{
	transform-origin:right bottom;
	-webkit-transform-origin:right bottom;
}
.breadcrumb.style-arrow > li:first-child:after{
	transform-origin:right top;
	-webkit-transform-origin:right top;
}
.breadcrumb.style-arrow > li.right{
	padding:3px 0;
}
.breadcrumb.style-arrow > li.right:before,
.breadcrumb.style-arrow > li.right:after{
	content:normal;
}
.breadcrumb.style-arrow > li > a:hover{
	color:#666666;
	text-decoration:none;
}
.breadcrumb.style-arrow > li:not(.active):hover:before,
.breadcrumb.style-arrow > li:not(.active):hover:after{
	background-color:#dcdcdc
}


.breadcrumb.style-square{
	margin-top:4px;
	margin-bottom:4px;
}
.breadcrumb.style-square > li{
	position:relative;
	z-index:1;
	vertical-align:middle;
	margin-right:6px;
	margin-top:4px;
	margin-bottom:4px;
}
.breadcrumb.style-square > li > a,
.breadcrumb.style-square > li.active{
	padding:3px 18px;
}
.breadcrumb.style-square > li > a{
	display:inline-block;
}
.breadcrumb.style-square > li.right{
	margin:4px 0;
}
.breadcrumb.style-square > li.right > a{
	padding:0;
}
.breadcrumb.style-square > li:before{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background-color:#ebebeb;
	z-index:-1;
	transform:skew(-15deg);
	-webkit-transform:skew(-15deg);
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
.breadcrumb.style-square > li.right{
	padding:3px 0;
}
.breadcrumb.style-square > li.right:before{
	content:normal;
}
.breadcrumb.style-square > li > a:hover{
	color:#666666;
	text-decoration:none;
}
.breadcrumb.style-square li:not(.active):hover:before{
	background-color:#dcdcdc
}


/*bg color*/
.dg-modal.bg-turquoise .modal-content,
.dg-modal.header-turquoise .modal-header,
.list-ico3 .bg-turquoise,
.bg-turquoise,
.dropdown-menu.hover-turquoise a:hover,
.dropdown-menu.hover-turquoise>.active>a{
	background-color:#08dcf5;
    color: #fff;
}
.dg-modal.bg-borland .modal-content,
.dg-modal.header-borland .modal-header,
.list-ico3 .bg-borland,
.bg-borland,
.dropdown-menu.hover-borland a:hover,
.dropdown-menu.hover-borland>.active>a{
	background-color:#20a3f0;
    color: #fff;
}
.dg-modal.bg-denim .modal-content,
.dg-modal.header-denim .modal-header,
.list-ico3 .bg-denim,
.bg-denim,
.dropdown-menu.hover-denim a:hover,
.dropdown-menu.hover-denim>.active>a{
	background-color:#127dcf;
    color: #fff;
}
.dg-modal.bg-gray .modal-content,
.dg-modal.header-gray .modal-header,
.list-ico3 .bg-gray,
.bg-gray,
.dropdown-menu.hover-gray a:hover,
.dropdown-menu.hover-gray>.active>a{
	background-color:#333333;
    color: #fff;
}
.dg-modal.bg-black .modal-content,
.dg-modal.header-black .modal-header,
.list-ico3 .bg-black,
.bg-black,
.dropdown-menu.hover-black a:hover,
.dropdown-menu.hover-black>.active>a{
	background-color:#191919;
    color: #fff;
}
.dg-modal.bg-night .modal-content,
.dg-modal.header-night .modal-header,
.list-ico3 .bg-night,
.bg-night,
.dropdown-menu.hover-night a:hover,
.dropdown-menu.hover-night>.active>a{
	background-color:#323232;
    color: #fff;
}
.dg-modal.bg-emerald .modal-content,
.dg-modal.header-emerald .modal-header,
.list-ico3 .bg-emerald,
.bg-emerald,
.dropdown-menu.hover-emerald a:hover,
.dropdown-menu.hover-emerald>.active>a{
	background-color:#40d075;
    color: #fff;
}
.dg-modal.bg-orange .modal-content,
.dg-modal.header-orange .modal-header,
.list-ico3 .bg-orange,
.bg-orange,
.dropdown-menu.hover-orange a:hover,
.dropdown-menu.hover-orange>.active>a{
	background-color:#f39705;
    color: #fff;
}
.dg-modal.bg-chambray .modal-content,
.dg-modal.header-chambray .modal-header,
.list-ico3 .bg-chambray,
.bg-chambray,
.dropdown-menu.hover-chambray a:hover,
.dropdown-menu.hover-chambray>.active>a{
	background-color:#505f79;
    color: #fff;
}
.dg-modal.bg-bittersweet .modal-content,
.dg-modal.header-bittersweet .modal-header,
.list-ico3 .bg-bittersweet,
.bg-bittersweet,
.dropdown-menu.hover-bittersweet a:hover,
.dropdown-menu.hover-bittersweet>.active>a{
	background-color:#ff6061;
    color: #fff;
}
.dg-modal.bg-pelorous .modal-content,
.dg-modal.header-pelorous .modal-header,
.list-ico3 .bg-pelorous,
.bg-pelorous,
.dropdown-menu.hover-pelorous a:hover,
.dropdown-menu.hover-pelorous>.active>a{
	background-color:#237da6;
    color: #fff;
}
.dg-modal.bg-citrus .modal-content,
.dg-modal.header-citrus .modal-header,
.list-ico3 .bg-citrus,
.bg-citrus,
.dropdown-menu.hover-citrus a:hover,
.dropdown-menu.hover-citrus>.active>a{
	background-color:#a9d300;
    color: #fff;
}
.dg-modal.bg-blackberry .modal-content,
.dg-modal.header-blackberry .modal-header,
.list-ico3 .bg-blackberry,
.bg-blackberry,
.dropdown-menu.hover-blackberry a:hover,
.dropdown-menu.hover-blackberry>.active>a{
	background-color:#461135;
    color: #fff;
}
.dg-modal.bg-melon .modal-content,
.dg-modal.header-melon .modal-header,
.list-ico3 .bg-melon,
.bg-melon,
.dropdown-menu.hover-melon a:hover,
.dropdown-menu.hover-melon>.active>a{
	background-color:#febbb4;
    color: #fff;
}
.dg-modal.bg-lipstick .modal-content,
.dg-modal.header-lipstick .modal-header,
.list-ico3 .bg-lipstick,
.bg-lipstick,
.dropdown-menu.hover-lipstick a:hover,
.dropdown-menu.hover-lipstick>.active>a{
	background-color:#9a2c4a;
    color: #fff;
}
.dg-modal.bg-darkcyan .modal-content,
.dg-modal.header-darkcyan .modal-header,
.list-ico3 .bg-darkcyan,
.bg-darkcyan,
.dropdown-menu.hover-turquoise a:hover,
.dropdown-menu.hover-turquoise>.active>a{
	background-color:#007c8e;
    color: #fff;
}
.dg-modal.bg-toryblue .modal-content,
.dg-modal.header-toryblue .modal-header,
.list-ico3 .bg-toryblue,
.bg-toryblue,
.dropdown-menu.hover-toryblue a:hover,
.dropdown-menu.hover-toryblue>.active>a{
	background-color:#40548e;
    color: #fff;
}
.dg-modal.bg-crimson .modal-content,
.dg-modal.header-crimson .modal-header,
.list-ico3 .bg-crimson,
.bg-crimson,
.dropdown-menu.hover-crimson a:hover,
.dropdown-menu.hover-crimson>.active>a{
	background-color:#ef1d38;
    color: #fff;
}
.dg-modal.bg-celery .modal-content,
.dg-modal.header-celery .modal-header,
.list-ico3 .bg-celery,
.bg-celery,
.dropdown-menu.hover-celery a:hover,
.dropdown-menu.hover-celery>.active>a{
	background-color:#bbb83f;
    color: #fff;
}
.dg-modal.bg-pink .modal-content,
.dg-modal.header-pink .modal-header,
.list-ico3 .bg-pink,
.bg-pink,
.dropdown-menu.hover-pink a:hover,
.dropdown-menu.hover-pink>.active>a{
	background-color:#dc717c;
    color: #fff;
}
.dg-modal.bg-citrus2 .modal-content,
.dg-modal.header-citrus2 .modal-header,
.list-ico3 .bg-citrus2,
.bg-citrus2,
.dropdown-menu.hover-citrus2 a:hover,
.dropdown-menu.hover-citrus2>.active>a{
	background-color:#97c200;
    color: #fff;
}
.dg-modal.bg-comet .modal-content,
.dg-modal.header-comet .modal-header,
.list-ico3 .bg-comet,
.bg-comet,
.dropdown-menu.hover-comet a:hover,
.dropdown-menu.hover-comet>.active>a{
	background-color:#626073;
    color: #fff;
}
.dg-modal.bg-atomic .modal-content,
.dg-modal.header-atomic .modal-header,
.list-ico3 .bg-atomic,
.bg-atomic,
.dropdown-menu.hover-atomic a:hover,
.dropdown-menu.hover-atomic>.active>a{
	background-color:#3d4c53;
    color: #fff;
}
.dg-modal.bg-seagreen .modal-content,
.dg-modal.header-seagreen .modal-header,
.list-ico3 .bg-seagreen,
.bg-seagreen,
.dropdown-menu.hover-seagreen a:hover,
.dropdown-menu.hover-seagreen>.active>a{
	background-color:#1cc0be;
    color: #fff;
}
.dg-modal.bg-shadowgreen .modal-content,
.dg-modal.header-shadowgreen .modal-header,
.list-ico3 .bg-shadowgreen,
.bg-shadowgreen,
.dropdown-menu.hover-shadowgreen a:hover,
.dropdown-menu.hover-shadowgreen>.active>a{
	background-color:#94c1ab;
    color: #fff;
}
.dg-modal.bg-silver .modal-content,
.dg-modal.header-silver .modal-header,
.list-ico3 .bg-silver,
.bg-silver,
.dropdown-menu.hover-silver a:hover,
.dropdown-menu.hover-silver>.active>a{
	background-color:#b8b8b8;
    color: #fff;
}
.dg-modal.bg-acapulco .modal-content,
.dg-modal.header-acapulco .modal-header,
.list-ico3 .bg-acapulco,
.bg-acapulco,
.dropdown-menu.hover-acapulco a:hover,
.dropdown-menu.hover-acapulco>.active>a{
	background-color:#62a783;
    color: #fff;
}
.dg-modal.bg-rock .modal-content,
.dg-modal.header-rock .modal-header,
.list-ico3 .bg-rock,
.bg-rock,
.dropdown-menu.hover-rock a:hover,
.dropdown-menu.hover-rock>.active>a{
	background-color:#2e313d;
    color: #fff;
}
.dg-modal.bg-midnightblue .modal-content,
.dg-modal.header-midnightblue .modal-header,
.list-ico3 .bg-midnightblue,
.bg-midnightblue,
.dropdown-menu.hover-midnightblue a:hover,
.dropdown-menu.hover-midnightblue>.active>a{
	background-color:#122b58;
    color: #fff;
}
.dg-modal.bg-darkturquoise .modal-content,
.dg-modal.header-darkturquoise .modal-header,
.list-ico3 .bg-darkturquoise,
.bg-darkturquoise,
.dropdown-menu.hover-darkturquoise a:hover,
.dropdown-menu.hover-darkturquoise>.active>a{
	background-color:#00d7e9;
    color: #fff;
}
.dg-modal.bg-radicalred .modal-content,
.dg-modal.header-radicalred .modal-header,
.list-ico3 .bg-radicalred,
.bg-radicalred,
.dropdown-menu.hover-radicalred a:hover,
.dropdown-menu.hover-radicalred>.active>a{
	background-color:#f82f54;
    color: #fff;
}
.dg-modal.bg-cadetblue .modal-content,
.dg-modal.header-cadetblue .modal-header,
.list-ico3 .bg-cadetblue,
.bg-cadetblue,
.dropdown-menu.hover-cadetblue a:hover,
.dropdown-menu.hover-cadetblue>.active>a{
	background-color:#5d9ca8;
    color: #fff;
}
.dg-modal.bg-sunshade .modal-content,
.dg-modal.header-sunshade .modal-header,
.list-ico3 .bg-sunshade,
.bg-sunshade,
.dropdown-menu.hover-sunshade a:hover,
.dropdown-menu.hover-sunshade>.active>a{
	background-color:#fa973c;
    color: #fff;
}
.dg-modal.bg-blackberry .modal-content,
.dg-modal.header-blackberry .modal-header,
.list-ico3 .bg-blackberry,
.bg-blackberry,
.dropdown-menu.hover-blackberry a:hover,
.dropdown-menu.hover-blackberry>.active>a{
	background-color:#361630;
    color: #fff;
}
.dg-modal.bg-mantis .modal-content,
.dg-modal.header-mantis .modal-header,
.list-ico3 .bg-mantis,
.bg-mantis,
.dropdown-menu.hover-mantis a:hover,
.dropdown-menu.hover-mantis>.active>a{
	background-color:#8fc567;
    color: #fff;
}
.dg-modal.bg-saffron .modal-content,
.dg-modal.header-saffron .modal-header,
.list-ico3 .bg-saffron,
.bg-saffron,
.dropdown-menu.hover-turquoise a:hover,
.dropdown-menu.hover-turquoise>.active>a{
	background-color:#f0ca3d;
    color: #fff;
}
.dg-modal.bg-shamrock .modal-content,
.dg-modal.header-shamrock .modal-header,
.list-ico3 .bg-shamrock,
.bg-shamrock,
.dropdown-menu.hover-saffron a:hover,
.dropdown-menu.hover-saffron>.active>a{
	background-color:#24d78a;
    color: #fff;
}
.dg-modal.bg-orange2 .modal-content,
.dg-modal.header-orange2 .modal-header,
.list-ico3 .bg-orange2,
.bg-orange2,
.dropdown-menu.hover-orange2 a:hover,
.dropdown-menu.hover-orange2>.active>a{
	background-color:#f4633c;
    color: #fff;
}
.dg-modal.bg-primary .modal-content,
.dg-modal.header-primary .modal-header,
.list-ico3 .bg-primary,
.bg-primary,
.dropdown-menu.hover-primary a:hover,
.dropdown-menu.hover-primary>.active>a{
	background-color:#337ab7;
    color: #fff;
}
.dg-modal.bg-success .modal-content,
.dg-modal.header-success .modal-header,
.list-ico3 .bg-success,
.bg-success,
.dropdown-menu.hover-success a:hover,
.dropdown-menu.hover-success>.active>a{
	background-color:#5cb85c;
    color: #fff;
}
.dg-modal.bg-info .modal-content,
.dg-modal.header-info .modal-header,
.list-ico3 .bg-info,
.bg-info,
.dropdown-menu.hover-info a:hover,
.dropdown-menu.hover-info>.active>a{
	background-color:#5bc0de;
    color: #fff;
}
.dg-modal.bg-warning .modal-content,
.dg-modal.header-warning .modal-header,
.list-ico3 .bg-warning,
.bg-warning,
.dropdown-menu.hover-warning a:hover,
.dropdown-menu.hover-warning>.active>a{
	background-color:#f0ad4e;
    color: #fff;
}
.dg-modal.bg-danger .modal-content,
.dg-modal.header-danger .modal-header,
.list-ico3 .bg-danger,
.bg-danger,
.dropdown-menu.hover-danger a:hover,
.dropdown-menu.hover-danger>.active>a{
	background-color:#d9534f;
    color: #fff;
}
.dg-modal.bg-grayish .modal-content,
.dg-modal.header-grayish .modal-header,
.list-ico3 .bg-grayish,
.bg-grayish,
.dropdown-menu.hover-grayish a:hover,
.dropdown-menu.hover-grayish>.active>a{
	background-color:#f5f5f5;
	color:#666666;
}
.dg-modal.bg-turquoise-g .modal-content,
.dg-modal.header-turquoise-g .modal-header,
.list-ico3 .bg-turquoise-g,
.bg-turquoise-g,
.dropdown-menu.hover-turquoise-g a:hover,
.dropdown-menu.hover-turquoise-g>.active>a{
	background: -webkit-linear-gradient(135deg, #1de0c1, #44d2fb);
	background: -o-linear-gradient(135deg, #1de0c1, #44d2fb); 
	background: -moz-linear-gradient(135deg, #1de0c1, #44d2fb); 
	background: linear-gradient(135deg, #1de0c1, #44d2fb);
	background-color:#1de0c1;
    color: #fff;
}
.dg-modal.bg-navyblue-g .modal-content,
.dg-modal.header-navyblue-g .modal-header,
.list-ico3 .bg-navyblue-g,
.bg-navyblue-g,
.dropdown-menu.hover-navyblue-g a:hover,
.dropdown-menu.hover-navyblue-g>.active>a{
	background: -webkit-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0);
	background: -o-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0); 
	background: -moz-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0); 
	background: linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0 );
	background-color:#0547f1;
    color: #fff;
}
.dg-modal.bg-blue-g .modal-content,
.dg-modal.header-blue-g .modal-header,
.list-ico3 .bg-blue-g,
.bg-blue-g,
.dropdown-menu.hover-blue-g a:hover,
.dropdown-menu.hover-blue-g>.active>a{
	background: -webkit-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%);
	background: -o-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%); 
	background: -moz-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%); 
	background: linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%);
	background-color:#0850f7;
    color: #fff;
}
.dg-modal.bg-jewel-g .modal-content,
.dg-modal.header-jewel-g .modal-header,
.list-ico3 .bg-jewel-g,
.bg-jewel-g,
.dropdown-menu.hover-jewel-g a:hover,
.dropdown-menu.hover-jewel-g>.active>a{
	background: -webkit-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b);
	background: -o-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b); 
	background: -moz-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b); 
	background: linear-gradient(135deg, #0f7936 30%, #179a47, #38965b);
	background-color:#0f7936;
    color: #fff;
}
.dg-modal.bg-borland-g .modal-content,
.dg-modal.header-borland-g .modal-header,
.list-ico3 .bg-borland-g,
.bg-borland-g,
.dropdown-menu.hover-borland-g a:hover,
.dropdown-menu.hover-borland-g>.active>a{
	background: -webkit-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%);
	background: -o-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%); 
	background: -moz-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%); 
	background: linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%);
	background-color:#1e7ad8;
    color: #fff;
}
.dg-modal.bg-primary-g .modal-content,
.dg-modal.header-primary-g .modal-header,
.list-ico3 .bg-primary-g,
.bg-primary-g,
.dropdown-menu.hover-primary-g a:hover,
.dropdown-menu.hover-primary-g>.active>a{
	background: -webkit-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%);
	background: -o-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%); 
	background: -moz-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%); 
	background: linear-gradient(45deg,#0676f4 20%, #00e9fe 80%);
	background-color:#0676f4;
    color: #fff;
}
.dg-modal.bg-success-g .modal-content,
.dg-modal.header-success-g .modal-header,
.list-ico3 .bg-success-g,
.bg-success-g,
.dropdown-menu.hover-success-g a:hover,
.dropdown-menu.hover-success-g>.active>a{
	background: -webkit-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%);
	background: -o-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%); 
	background: -moz-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%); 
	background: linear-gradient(90deg,#1e7ad7 20%, #16a168 90%);
	background-color:#1e7ad7;
    color: #fff;
}
.dg-modal.bg-info-g .modal-content,
.dg-modal.header-info-g .modal-header,
.list-ico3 .bg-info-g,
.bg-info-g,
.dropdown-menu.hover-info-g a:hover,
.dropdown-menu.hover-info-g>.active>a{
	background: -webkit-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%);
	background: -o-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%); 
	background: -moz-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%); 
	background: linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%);
	background-color:#00ccff;
    color: #fff;
}
.dg-modal.bg-warning-g .modal-content,
.dg-modal.header-warning-g .modal-header,
.list-ico3 .bg-warning-g,
.bg-warning-g,
.dropdown-menu.hover-warning-g a:hover,
.dropdown-menu.hover-warning-g>.active>a{
	background: -webkit-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%);
	background: -o-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%); 
	background: -moz-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%); 
	background: linear-gradient(90deg,#ff6c66 20%, #f1c442 90%);
	background-color:#ff6c66;
    color: #fff;
}
.dg-modal.bg-danger-g .modal-content,
.dg-modal.header-danger-g .modal-header,
.list-ico3 .bg-danger-g,
.bg-danger-g,
.dropdown-menu.hover-danger-g a:hover,
.dropdown-menu.hover-danger-g>.active>a{
	background: -webkit-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%);
	background: -o-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%); 
	background: -moz-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%); 
	background: linear-gradient(135deg,#48a9e1 20%, #c361dc 90%);
	background-color:#48a9e1;
    color: #fff;
}
.dg-modal.bg-accent .modal-content,
.dg-modal.header-accent .modal-header,
.list-ico3 .bg-accent,
.bg-accent,
.dropdown-menu.hover-accent a:hover,
.dropdown-menu.hover-accent>.active>a{
    color: #fff;
}


/*color*/
.color-turquoise{
	color:#08dcf5!important;
}
.color-borland{
	color:#20a3f0!important;
}
.color-denim{
	color:#127dcf!important;
}
.color-gray{
	color:#333333!important;
}
.color-black{
	color:#191919!important;
}
.color-night{
	color:#323232!important;
}
.color-emerald{
	color:#40d075!important;
}
.color-orange{
	color:#f39705!important;
}
.color-chambray{
	color:#505f79!important;
}
.color-bittersweet{
	color:#ff6061!important;
}
.color-pelorous{
	color:#237da6!important;
}
.color-citrus{
	color:#a9d300!important;
}
.color-blackberry{
	color:#461135!important;
}
.color-melon{
	color:#febbb4!important;
}
.color-lipstick{
	color:#9a2c4a!important;
}
.color-darkcyan{
	color:#007c8e!important;
}
.color-toryblue{
	color:#40548e!important;
}
.color-crimson{
	color:#ef1d38!important;
}
.color-celery{
	color:#bbb83f!important;
}
.color-pink{
	color:#dc717c!important;
}
.color-citrus2{
	color:#97c200!important;
}
.color-comet{
	color:#626073!important;
}
.color-atomic{
	color:#3d4c53!important;
}
.color-seagreen{
	color:#1cc0be!important;
}
.color-shadowgreen{
	color:#94c1ab!important;
}
.color-silver{
	color:#b8b8b8!important;
}
.color-acapulco{
	color:#62a783!important;
}
.color-rock{
	color:#2e313d!important;
}
.color-midnightblue{
	color:#122b58!important;
}
.color-darkturquoise{
	color:#00d7e9!important;
}
.color-radicalred{
	color:#f82f54!important;
}
.color-cadetblue{
	color:#5d9ca8!important;
}
.color-sunshade{
	color:#fa973c!important;
}
.color-blackberry{
	color:#361630!important;
}
.color-mantis{
	color:#8fc567!important;
}
.color-saffron{
	color:#f0ca3d!important;
}
.color-shamrock{
	color:#24d78a!important;
}
.color-orange2{
	color:#f4633c!important;
}
.color-primary{
	color:#337ab7!important;
}
.color-success{
	color:#5cb85c!important;
}
.color-info{
	color:#5bc0de!important;
}
.color-warning{
	color:#f0ad4e!important;
}
.color-danger{
	color:#d9534f!important;
}
/*border color*/
.border-turquoise{
	border-color:#08dcf5!important;
}
.border-borland{
	border-color:#20a3f0!important;
}
.border-denim{
	border-color:#127dcf!important;
}
.border-gray{
	border-color:#333333!important;
}
.border-black{
	border-color:#191919!important;
}
.border-night{
	border-color:#323232!important;
}
.border-emerald{
	border-color:#40d075!important;
}
.border-orange{
	border-color:#f39705!important;
}
.border-chambray{
	border-color:#505f79!important;
}
.border-bittersweet{
	border-color:#ff6061!important;
}
.border-pelorous{
	border-color:#237da6!important;
}
.border-citrus{
	border-color:#a9d300!important;
}
.border-blackberry{
	border-color:#461135!important;
}
.border-melon{
	border-color:#febbb4!important;
}
.border-lipstick{
	border-color:#9a2c4a!important;
}
.border-darkcyan{
	border-color:#007c8e!important;
}
.border-toryblue{
	border-color:#40548e!important;
}
.border-crimson{
	border-color:#ef1d38!important;
}
.border-celery{
	border-color:#bbb83f!important;
}
.border-pink{
	border-color:#dc717c!important;
}
.border-citrus2{
	border-color:#97c200!important;
}
.border-comet{
	border-color:#626073!important;
}
.border-atomic{
	border-color:#3d4c53!important;
}
.border-seagreen{
	border-color:#1cc0be!important;
}
.border-shadowgreen{
	border-color:#94c1ab!important;
}
.border-silver{
	border-color:#b8b8b8!important;
}
.border-acapulco{
	border-color:#62a783!important;
}
.border-rock{
	border-color:#2e313d!important;
}
.border-midnightblue{
	border-color:#122b58!important;
}
.border-darkturquoise{
	border-color:#00d7e9!important;
}
.border-radicalred{
	border-color:#f82f54!important;
}
.border-cadetblue{
	border-color:#5d9ca8!important;
}
.border-sunshade{
	border-color:#fa973c!important;
}
.border-blackberry{
	border-color:#361630!important;
}
.border-mantis{
	border-color:#8fc567!important;
}
.border-saffron{
	border-color:#f0ca3d!important;
}
.border-shamrock{
	border-color:#24d78a!important;
}
.border-orange2{
	border-color:#f4633c!important;
}
.border-primary{
	border-color:#337ab7!important;
}
.border-success{
	border-color:#5cb85c!important;
}
.border-info{
	border-color:#5bc0de!important;
}
.border-warning{
	border-color:#f0ad4e!important;
}
.border-danger{
	border-color:#d9534f!important;
}
.accordion-bg-01{
	background:url("/Portals/_default/Skins/ForVend/images/accordion-bg-01.jpg") no-repeat center center;
	background-size:cover;
}
.accordion-bg-02{
	background:url("/Portals/_default/Skins/ForVend/images/accordion-bg-02.jpg") no-repeat center center;
	background-size:cover;
}
.accordion-bg-03{
	background:url("/Portals/_default/Skins/ForVend/images/accordion-bg-03.jpg") no-repeat center center;
	background-size:cover;
}
.accordion-bg-04{
	background-color:#f9f9f9;
}
.accordion-title {
	color:#424242;
	font-size:20px;
	margin-bottom:50px;

}

.panel-title{
	line-height:1.6;
}
.dg-accordion01{
	border-bottom:1px solid #e6e6e6;
}
.dg-accordion01 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border-top:1px solid #e6e6e6;
}
.dg-accordion01.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion01 .panel-heading{
    padding:0px;
}
.dg-accordion01 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	line-height: 24px;
	color:#20a3f0;
	display:block;
    padding: 9px 20px 9px 10px;
	position:relative;
}
.dg-accordion01 .panel-heading .panel-title a.collapsed{
	color:#333333;
}
.dg-accordion01 .panel-heading .panel-title a:hover,
.dg-accordion01 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion01 .panel-heading .arrow {
	position:absolute;
	top:50%;
	right:21px;
	width:6px;
	height:6px;
	border-right:1px solid #31aaf1;
	border-bottom:1px solid #31aaf1;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	margin-top:-3px;	
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion01 .panel-heading .collapsed .arrow {
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	border-right-color:#424242;
	border-bottom-color:#424242;
}
.dg-accordion01 .panel-heading .collapsed:hover .arrow {
	border-right-color:#31aaf1;
	border-bottom-color:#31aaf1;
}
.dg-accordion01 .panel-body{
    padding: 20px 10px 12px 10px;
}
.dg-accordion02{
}
.dg-accordion02 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:1px solid #e6e6e6;
}
.dg-accordion02.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0 0 5px;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion02 .panel-heading+.panel-collapse>.panel-body{
	border:1px solid #e6e6e6;
	border-top:none;
}

.dg-accordion02 .panel-heading{
    padding:0px;
}
.dg-accordion02 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#FFF;
	display:block;
    padding: 10px 20px;
    line-height: 24px;
	position:relative;
	background-color:#20a3f0;
	margin:-1px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion02 .panel-heading .panel-title a.collapsed{
	color:#333333;
	background-color:transparent;
}
.dg-accordion02 .panel-heading .panel-title a:hover,
.dg-accordion02 .panel-heading .panel-title a.collapsed:hover{
	color:#FFF;
	background-color:#20a3f0;
	text-decoration:none;
}
.dg-accordion02 .panel-heading .panel-title a:after{
	content:" ";
	border-left:1px solid #e6e6e6;
	height:100%;
	position:absolute;
	right:30px;
	top:0;
}
.dg-accordion02 .panel-heading .panel-title a:before{
	content:" ";
	border-left:3px solid #20a3f0;
	height:100%;
	position:absolute;
	left:0px;
	top:0;
}
.dg-accordion02 .panel-heading .arrow {
	position:absolute;
	top:50%;
	right:7px;
	border:5px solid transparent;
	border-left-color:#FFF;
	transform:rotate(90deg);
	-webkit-transform:rotate(90deg);
	transform-origin:2px center;
	-webkit-transform-origin:2px center;
	margin-top:-6px;	
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion02 .panel-heading .panel-title a.collapsed:hover .arrow{
	border-left-color:#FFF;
}
.dg-accordion02 .panel-heading .panel-title a.collapsed .arrow{
	border-left-color:#494949;
}

.dg-accordion02 .panel-heading .collapsed .arrow {
	transform:rotate(0deg);
	-webkit-transform:rotate(0deg);
}
.dg-accordion02 .panel-heading .collapsed:hover .arrow {
}
.dg-accordion02 .panel-body{
    padding: 25px 30px 14px 20px;
}

.dg-accordion03{
	border-bottom:1px solid #587279;
}
.dg-accordion03 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border-top:1px solid #587279;
}
.dg-accordion03.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion03 .panel-heading{
    padding:0px;
}
.dg-accordion03 .panel-heading .panel-title a{
    font-weight: normal;
    font-size: 15px;
    color: #20a3f0;
    display: block;
    padding: 12px 20px 12px 10px;
    line-height: 1.2;
    position: relative;
    background-color: #FFF;
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.dg-accordion03 .panel-heading .panel-title a.collapsed{
	color:#FFF;
	padding-top:12px;
	background-color:transparent;
}
.dg-accordion03 .panel-heading .panel-title a:hover,
.dg-accordion03 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion03 .panel-collapse{
	background-color:#FFF;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion03 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
}
.dg-accordion03 .panel-heading .arrow {
	position:absolute;
	top:50%;
	right:10px;
	width:8px;
	height:8px;
	border-right:1px solid #31aaf1;
	border-bottom:1px solid #31aaf1;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	margin-top:-4px;	
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion03 .panel-heading .collapsed .arrow {
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	border-right-color:#FFF;
	border-bottom-color:#FFF;
}
.dg-accordion03 .panel-heading .collapsed:hover .arrow {
	border-right-color:#31aaf1;
	border-bottom-color:#31aaf1;
}
.dg-accordion03 .panel-body{
    padding: 0 10px 8px 10px;
	margin:-4px 0 0 0;
}
.dg-accordion04{
	border-bottom:1px solid #587279;
}
.dg-accordion04 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border-top:1px solid #587279;
}
.dg-accordion04.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion04 .panel-heading{
    padding:0px;
}
.dg-accordion04 .panel-heading .panel-title a{
    font-weight: normal;
    font-size: 15px;
    color: #FFF;
    display: block;
    padding: 12px 20px 12px 10px;
    line-height: 1.2;
    position: relative;
    background-color: transparent;
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.dg-accordion04 .panel-heading .panel-title a.collapsed{
	color:#FFF;
/*	padding-top: 9px;*/
	background-color:transparent;
}
.dg-accordion04 .panel-heading .panel-title a:hover,
.dg-accordion04 .panel-heading .panel-title a.collapsed:hover{
	color:#ffffff;
	text-decoration:none;
}
.dg-accordion04 .panel-heading .panel-title strong{
	position:relative;
	font-weight: normal;
}
.dg-accordion04 .panel-heading .panel-title strong:before{
	content:"";
	position:absolute;
	bottom:-2px;
	left:0;
	right:0;
	border-bottom:1px solid #20a3f0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion04 .panel-heading .panel-title .collapsed strong:before{
	right:100%;
}

.dg-accordion04 .panel-collapse{
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion04 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
	color:#FFF;
}
.dg-accordion04 .panel-heading .arrow {
	position:absolute;
	top:50%;
	right:21px;
	width:6px;
	height:6px;
	border-right:1px solid #31aaf1;
	border-bottom:1px solid #31aaf1;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	margin-top:-3px;	
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion04 .panel-heading .collapsed .arrow {
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	border-right-color:#FFF;
	border-bottom-color:#FFF;
}
.dg-accordion04 .panel-heading .collapsed:hover .arrow {
	border-right-color:#31aaf1;
	border-bottom-color:#31aaf1;
}
.dg-accordion04 .panel-body{
    padding:0 10px 18px 10px;
}
.dg-accordion05{
	border-bottom:1px solid rgba(255,255,255,0.5);
}
.dg-accordion05 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border-top:1px solid rgba(255,255,255,0.5);
}
.dg-accordion05.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0 0 10px;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion05 .panel-heading{
    padding:0px;
}
.dg-accordion05 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#20a3f0;
	display:block;
    padding: 10px 30px 10px 20px;
    line-height: 24px;
	position:relative;
	border:1px solid #e6e6e6;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
}
.dg-accordion05 .panel-heading .panel-title a.collapsed{
	color:#424242;
}
.dg-accordion05 .panel-heading .panel-title a:hover,
.dg-accordion05 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion05 .panel-collapse{
	background-color:#FFF;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion05 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
}
.dg-accordion05 .panel-heading .arrow {
	width:20px;
	height:20px;
	position:absolute;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#31aaf1;
	top:50%;
	right:19px;
	margin-top:-10px;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion05 .panel-heading .arrow:before{
	content:"";
	position:absolute;
	width:6px;
	height:6px;
	top:6px;
	right:8px;
	border-right:1px solid #FFF;
	border-bottom:1px solid #FFF;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion05 .panel-heading .collapsed .arrow{
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	background-color:#f1f1f1;
}
.dg-accordion05 .panel-heading .collapsed .arrow:before{
	border-right-color:#646464;
	border-bottom-color:#646464;
}
.dg-accordion05 .panel-heading .collapsed:hover .arrow{
	background-color:#31aaf1;
}
.dg-accordion05 .panel-heading .collapsed:hover .arrow:before {
	border-right-color:#FFF;
	border-bottom-color:#FFF;
}
.dg-accordion05 .panel-body{
    padding: 20px 30px 10px 20px;
}
.dg-accordion05 .panel-body p {margin: 0;}

.dg-accordion06{
}
.dg-accordion06 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
}
.dg-accordion06 .panel-default .panel-collapse .panel-body{
	border:none;
}
.dg-accordion06.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0;
	box-shadow:none;
	-webkit-box-shadow:none;
	border:1px solid #ebebeb;
	margin-bottom:6px;
	-moz-box-shadow:0px 0px 2px rgba(51,51,51,0.1),0px 0px 2px rgba(51,51,51,0.1) inset;               /* For Firefox3.6+ */
	-webkit-box-shadow:0px 0px 2px rgba(51,51,51,0.1),0px 0px 2px rgba(51,51,51,0.1) inset;            /* For Chrome5+, Safari5+ */
	box-shadow:0px 0px 2px rgba(51,51,51,0.1),0px 0px 2px rgba(51,51,51,0.1) inset;                    /* For Latest Opera */
}
.dg-accordion06 .panel-heading{
    padding:0px;
	border:none;
}
.dg-accordion06 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#20a3f0;
	display:block;
    padding: 12px 30px 12px 20px;
    line-height: 24px;
	position:relative;
}
.dg-accordion06 .panel-heading .panel-title a.collapsed{
	color:#424242;
}
.dg-accordion06 .panel-heading .panel-title a:hover,
.dg-accordion06 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion06 .panel-heading .arrow {
	position:absolute;
	top:50%;
	right:15px;
	border:5px solid transparent;
	border-left-color:#20a3f0;
	transform:rotate(90deg);
	-webkit-transform:rotate(90deg);
	transform-origin:2px center;
	-webkit-transform-origin:2px center;
	margin-top:-6px;	
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */

	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion06 .panel-heading .collapsed .arrow {
	border-left-color:#424242;
	transform:rotate(0deg);
	-webkit-transform:rotate(0deg);
}
.dg-accordion06 .panel-heading .collapsed:hover .arrow {
	border-left-color:#20a3f0;
}
.dg-accordion06 .panel-body{
    padding: 0 30px 6px 20px;
    margin: -4px 0 0 0;
}
.dg-accordion07{
}
.dg-accordion07 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-accordion07.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0 0 5px;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion07 .panel-heading{
    padding:0px;
}
.dg-accordion07 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#20a3f0;
	display:block;
    padding: 10px 30px 10px 60px;
    line-height: 24px;
	position:relative;
	border:1px solid #e6e6e6;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-accordion07 .panel-heading .panel-title a:before {
	content: "";
	width: 12px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 17px;
	margin-top: -1px;
	z-index: 1;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion07 .panel-heading .panel-title a:after {
	content: "";
	width: 2px;
	height: 12px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 22px;
	margin-top: -6px;
	z-index: 1;
	opacity: 0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion07 .panel-heading .panel-title a.collapsed:before,
.dg-accordion07 .panel-heading .panel-title a.collapsed:after {
	background: #333;
	opacity: 1;
}
.dg-accordion07 .panel-heading .panel-title a:hover:before,
.dg-accordion07 .panel-heading .panel-title a:hover:after {
	background: #fff;
}



.dg-accordion07 .panel-heading .panel-title a.collapsed{
	color:#424242;
}
.dg-accordion07 .panel-heading .panel-title a:hover,
.dg-accordion07 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion07 .panel-collapse{
	background-color:#FFF;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion07 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
}
.dg-accordion07 .panel-heading .arrow {
	width:47px;
	text-align:center;
	line-height:48px;
	position:absolute;
	background-color:#20a3f0;
	top:-1px;
	bottom:-1px;
	left:-1px;
	color:#FFF;
	font-size:17px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}

.dg-accordion07 .panel-heading .collapsed .arrow{
	background-color:#eaeaea;
	color:#333333;
}

.dg-accordion07 .panel-heading .collapsed:hover .arrow{
	background-color:#31aaf1;
}
.dg-accordion07 .panel-heading .collapsed:hover .arrow:before {
	color:#FFF;
}
.dg-accordion07 .panel-body{
    padding: 20px 30px 14px 20px;
}
.dg-accordion07 .panel-body p {
	overflow: hidden;
	padding-right: 20px;
	
}
.dg-accordion08{
	position:relative;
}
.dg-accordion08:before{
	content:"";
	position:absolute;
	top:0;
	left:3px;
	bottom:4px;
	border-left:1px solid #20a3f0;
	z-index:1;
}
.dg-accordion08 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	position:relative;
}
.dg-accordion08 .panel-default>.panel-heading:before{
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: #20a3f0;
    z-index: 2;
    margin: 0 0 0 0;
}
.dg-accordion08 .panel-default:first-child > .panel-heading:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:7px;
	height:7px;
	background-color:#20a3f0;
	z-index:2;
	margin:0;
}
.dg-accordion08 .panel-default:last-child > .panel-heading:before{
	content:"";
	position:absolute;
	top:auto;
	bottom:0;
	left:0;
	width:7px;
	height:7px;
	background-color:#20a3f0;
	z-index:2;
	margin:0;
}
.dg-accordion08.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion08 .panel-heading{
    padding:0px;
}
.dg-accordion08 .panel-heading .panel-title a{
    font-weight: normal;
    font-size: 15px;
    color: #20a3f0;
    display: block;
    padding: 0 20px; 
    position: relative;
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    line-height: 1;
}
.dg-accordion08 .panel-heading .panel-title a.collapsed{
     padding: 0 20px 40px 20px;  
}
.dg-accordion08 .panel-default:last-child .panel-heading .panel-title a.collapsed{
     padding: 0 20px 0 20px;  
}
.dg-accordion08 .panel-heading .panel-title a:before {
	content: "";
	width: 12px;
	height: 2px;
	background: #333;
	position: absolute;
	top: 50%;
	right: 21px;
	margin-top: -1px;
	z-index: 1;
}
.dg-accordion08 .panel-heading .panel-title a.collapsed:before,
.dg-accordion08 .panel-heading .panel-title a.collapsed:after {
   top:4px;
}
.dg-accordion08 .panel-heading .panel-title a:after {
	content: "";
	width: 2px;
	height: 12px;
	background: #333;
	position: absolute;
	top: 50%;
	right: 26px;
	margin-top: -6px;
	z-index: 1;
	opacity: 0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion08 .panel-heading .panel-title a.collapsed:before,
.dg-accordion08 .panel-heading .panel-title a.collapsed:after {
	opacity: 1;
}



.dg-accordion08 .panel-heading .panel-title a.collapsed{
	color:#424242;
}
.dg-accordion08 .panel-heading .panel-title a:hover,
.dg-accordion08 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion08 .panel-collapse{
	background-color:#FFF;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion08 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
}
.dg-accordion08 .panel-heading .arrow {
	width:47px;
	text-align:center;
	line-height:25px;
	position:absolute;
	top:-1px;
	bottom:-1px;
	right:-1px;
	left:auto;
	color:#393939;
	font-size:17px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}

.dg-accordion08 .panel-heading .collapsed .arrow{
	color:#333333;
}

.dg-accordion08 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion08 .panel-heading .collapsed:hover .arrow:before {
	color:#333333;
}
.dg-accordion08 .panel-body{
    padding:16px 20px 30px 20px;
	margin:-4px 0 0 0;
}
.dg-accordion09{
}
.dg-accordion09 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-accordion09.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0 0 5px;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion09 .panel-heading{
    padding:0px;
}
.dg-accordion09 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#20a3f0;
	display:block;
    padding: 11px 60px 11px 20px;
    line-height: 24px;
	position:relative;
	border:1px solid #cacaca;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}
.dg-accordion09 .panel-heading .panel-title a:before {
	content: "";
	width: 12px;
	height: 2px;
	background: #333;
	position: absolute;
	top: 50%;
	right: 17px;
	margin-top: -1px;
	z-index: 1;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion09 .panel-heading .panel-title a:after {
	content: "";
	width: 2px;
	height: 12px;
	background: #333;
	position: absolute;
	top: 50%;
	right: 22px;
	margin-top: -6px;
	z-index: 1;
	opacity: 0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion09 .panel-heading .panel-title a.collapsed:before,
.dg-accordion09 .panel-heading .panel-title a.collapsed:after {
	opacity: 1;
}


.dg-accordion09 .panel-heading .panel-title a.collapsed{
	color:#434343;
}
.dg-accordion09 .panel-heading .panel-title a:hover,
.dg-accordion09 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion09 .panel-collapse{
	box-shadow:none;
	-webkit-box-shadow:none;
	border-top:none;
}
.dg-accordion09 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
}
.dg-accordion09 .panel-heading .arrow {
	width:47px;
	text-align:center;
	line-height:48px;
	position:absolute;
	top:-1px;
	bottom:-1px;
	right:-1px;
	color:#666666;
	font-size:17px;
	border-left:1px solid #cacaca;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion09 .panel-heading .collapsed .arrow{
	color:#333333;
}
.dg-accordion09 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion09 .panel-heading .collapsed:hover .arrow:before {
	color:#666666;
}
.dg-accordion09 .panel-body{
    padding:16px 30px 8px 20px;
}
.dg-accordion10{
}
.dg-accordion10 .panel-default>.panel-heading{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	background-color:transparent;
}
.dg-accordion10.panel-group .panel.panel-default{
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border:none;
	margin:0 0 5px;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion10 .panel-heading{
    padding:0px;
}
.dg-accordion10 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#20a3f0;
	display:block;
    padding: 11px 60px 11px 20px;
    line-height: 24px;
	position:relative;
	border:1px solid #cacaca;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	background-color:#FFF;
}
.dg-accordion10 .panel-heading .panel-title a:before {
	content: "";
	width: 12px;
	height: 2px;
	background: #333;
	position: absolute;
	top: 50%;
	right: 17px;
	margin-top: -1px;
	z-index: 1;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion10 .panel-heading .panel-title a:after {
	content: "";
	width: 2px;
	height: 12px;
	background: #333;
	position: absolute;
	top: 50%;
	right: 22px;
	margin-top: -6px;
	z-index: 1;
	opacity: 0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion10 .panel-heading .panel-title a.collapsed:before,
.dg-accordion10 .panel-heading .panel-title a.collapsed:after {
	opacity: 1;
}
.dg-accordion10 .panel-heading .panel-title a.collapsed{
	color:#434343;
}
.dg-accordion10 .panel-heading .panel-title a:hover,
.dg-accordion10 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion10 .panel-collapse{
	background-color:#fff;
	box-shadow:none;
	-webkit-box-shadow:none;
	border:1px solid #cacaca;
	border-top:none;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}
.dg-accordion10 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
}
.dg-accordion10 .panel-heading .arrow {
	width:47px;
	text-align:center;
	line-height:48px;
	position:absolute;
	top:-1px;
	bottom:-1px;
	right:-1px;
	color:#666666;
	font-size:17px;
	border-left:1px solid #cacaca;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion10 .panel-heading .collapsed .arrow{
	color:#333333;
}
.dg-accordion10 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion10 .panel-heading .collapsed:hover .arrow:before {
	color:#666666;
}
.dg-accordion10 .panel-body{
    padding:16px 30px 8px 20px;
}
.dg-accordion11{
}
.dg-accordion11 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-accordion11.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0 0 -1px;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion11 .panel-heading{
    padding:0px;
}
.dg-accordion11 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#20a3f0;
	display:block;
    padding: 11px 30px 11px 65px;
    line-height: 24px;
	position:relative;
	border:1px solid #e6e6e6;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	background: #fff;
}
.dg-accordion11 .panel-heading .panel-title a:before {
	content: "";
	width: 12px;
	height: 2px;
	background: #333;
	position: absolute;
	top: 50%;
	left: 17px;
	margin-top: -1px;
	z-index: 1;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion11 .panel-heading .panel-title a:after {
	content: "";
	width: 2px;
	height: 12px;
	background: #333;
	position: absolute;
	top: 50%;
	left: 22px;
	margin-top: -6px;
	z-index: 1;
	opacity: 0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion11 .panel-heading .panel-title a.collapsed:before,
.dg-accordion11 .panel-heading .panel-title a.collapsed:after {
	opacity: 1;
	background: #333;
}

.dg-accordion11 .panel-heading .panel-title a.collapsed{
	color:#424242;
	background: #e6e6e6;
}
.dg-accordion11 .panel-heading .panel-title a:hover,
.dg-accordion11 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion11 .panel-collapse{
	background-color:#FFF;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion11 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
}
.dg-accordion11 .panel-heading .arrow {
	width:47px;
	text-align:center;
	line-height:48px;
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	color:#20a3f0;
	font-size:17px;
	border-right:1px solid #e6e6e6;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion11 .panel-heading .collapsed .arrow{
	color:#424242;
	background: #fff;
}
.dg-accordion11 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion11 .panel-heading .collapsed:hover .arrow:before {
	color:#20a3f0;
}
.dg-accordion11 .panel-body{
    padding:26px 30px 18px 20px;
}
.dg-accordion12{
}
.dg-accordion12 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-accordion12.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0 0 -1px;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion12 .panel-heading{
    padding:0px;
}
.dg-accordion12 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#20a3f0;
	display:block;
    padding: 11px 60px 11px 65px;
    line-height: 24px;
	position:relative;
	border:1px solid #e6e6e6;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
}
.dg-accordion12 .panel-heading .panel-title a:before {
	content: "";
	width: 12px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	right: 16px;
	margin-top: -1px;
	z-index: 1;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion12 .panel-heading .panel-title a:after {
	content: "";
	width: 2px;
	height: 12px;
	background: #fff;
	position: absolute;
	top: 50%;
	right: 21px;
	margin-top: -6px;
	z-index: 1;
	opacity: 0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion12 .panel-heading .panel-title a.collapsed:before,
.dg-accordion12 .panel-heading .panel-title a.collapsed:after {
	opacity: 1;
	background: #333;
}




.dg-accordion12 .panel-heading .panel-title .fa {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	width:50px;
	text-align:center;
	line-height:50px;
	border-right:1px solid #e6e6e6;
}

.dg-accordion12 .panel-heading .panel-title a.collapsed{
	color:#434343;
}
.dg-accordion12 .panel-heading .panel-title a:hover,
.dg-accordion12 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion12 .panel-collapse{
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion12 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
}
.dg-accordion12 .panel-heading .arrow {
	width:47px;
	text-align:center;
	line-height:48px;
	background: #e6e6e6;
	position:absolute;
	top:-1px;
	bottom:-1px;
	right:-1px;
	font-size:17px;
	color:#20a3f0;
	border-left:1px solid #e6e6e6;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion12 .panel-heading .arrow {
	color:#fff !important;
}
.dg-accordion12 .panel-heading .collapsed .arrow{
	color:#666666 !important;
	background: #e6e6e6;
}
.dg-accordion12 .panel-heading .collapsed:hover .arrow{
}

.dg-accordion12 .panel-body{
    padding:26px 30px 18px 20px;
}
.dg-accordion13{
}
.dg-accordion13 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-accordion13.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0 0 -1px;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion13 .panel-heading{
    padding:0px;
}
.dg-accordion13 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#20a3f0;
	display:block;
    padding: 11px 60px 11px 72px;
    line-height: 24px;
	position:relative;
	border:1px solid #3a6063;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
}

.dg-accordion13 .panel-heading .panel-title a:before {
	content: "";
	width: 12px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	right: 16px;
	margin-top: -1px;
	z-index: 1;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion13 .panel-heading .panel-title a:after {
	content: "";
	width: 2px;
	height: 12px;
	background: #fff;
	position: absolute;
	top: 50%;
	right: 21px;
	margin-top: -6px;
	z-index: 1;
	opacity: 0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion13 .panel-heading .panel-title a.collapsed:before,
.dg-accordion13 .panel-heading .panel-title a.collapsed:after {
	opacity: 1;
	background: #fff;
}

.dg-accordion13 .panel-heading .panel-title .fa {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	width:50px;
	text-align:center;
	line-height:50px;
	border-right:1px solid #3a6063;
}

.dg-accordion13 .panel-heading .panel-title a.collapsed{
	color:#ffffff;
}
.dg-accordion13 .panel-heading .panel-title a:hover,
.dg-accordion13 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion13 .panel-collapse{
	box-shadow:none;
	-webkit-box-shadow:none;
	color:#ffffff;
}
.dg-accordion13 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
}
.dg-accordion13 .panel-heading .arrow {
	width:47px;
	text-align:center;
	line-height:48px;
	position:absolute;
	top:-1px;
	bottom:-1px;
	right:-1px;
	font-size:17px;
	color:#20a3f0;
	border-left:1px solid #3a6063;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion13 .panel-heading .collapsed .arrow{
	color:#ffffff;
}
.dg-accordion13 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion13 .panel-heading .collapsed:hover .arrow:before {
	color:#20a3f0;
}
.dg-accordion13 .panel-body{
    padding: 26px 30px 18px 20px;
}
.dg-accordion14{
}
.dg-accordion14 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-accordion14.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0 0 -1px;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion14 .panel-heading{
    padding:0px;
}
.dg-accordion14 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#ffffff;
	display:block;
    padding: 11px 60px 11px 72px;
    line-height: 24px;
	position:relative;
	border:1px solid #3a6063;
	background-color:#20a3f0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
}

.dg-accordion14 .panel-heading .panel-title a:before {
	content: "";
	width: 12px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	right: 16px;
	margin-top: -1px;
	z-index: 1;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion14 .panel-heading .panel-title a:after {
	content: "";
	width: 2px;
	height: 12px;
	background: #fff;
	position: absolute;
	top: 50%;
	right: 21px;
	margin-top: -6px;
	z-index: 1;
	opacity: 0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion14 .panel-heading .panel-title a.collapsed:before,
.dg-accordion14 .panel-heading .panel-title a.collapsed:after {
	opacity: 1;
	background: #fff;
}

.dg-accordion14 .panel-heading .panel-title .number {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	width:50px;
	text-align:center;
	line-height:50px;
	border-right:1px solid #20a3f0;
	transition: 		border ease-in 200ms;
	-moz-transition: 	border ease-in 200ms; /* Firefox 4 */
	-webkit-transition: border ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		border ease-in 200ms; /* Opera */
	-ms-transition: 	border ease-in 200ms; /* IE9? */
}
.dg-accordion14 .panel-heading .panel-title a.collapsed .number {
	border-right:1px solid #3a6063;
}

.dg-accordion14 .panel-heading .panel-title a.collapsed{
	color:#ffffff;
	background-color:transparent;
}
.dg-accordion14 .panel-heading .panel-title a:hover,
.dg-accordion14 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion14 .panel-default .panel-heading .panel-title a:hover{
	color:#FFF;
	text-decoration:none;
}


.dg-accordion14 .panel-collapse{
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion14 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
	color:#ffffff;
}
.dg-accordion14 .panel-heading .arrow {
	width:47px;
	text-align:center;
	line-height:48px;
	position:absolute;
	top:-1px;
	bottom:-1px;
	right:-1px;
	font-size:17px;
	color:#ffffff;
	border-left:1px solid #3a6063;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion14 .panel-heading .collapsed .arrow{
	color:#ffffff;
}
.dg-accordion14 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion14 .panel-heading .collapsed:hover .arrow:before {
	color:#20a3f0;
}
.dg-accordion14 .panel-body{
    padding:26px 30px 18px 20px;
}
.dg-accordion15{
}
.dg-accordion15 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-accordion15.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0 0 10px;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion15 .panel-heading{
    padding:0px;
}
.dg-accordion15 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#ffffff;
	display:block;
    padding: 12px 30px 12px 62px;
    line-height: 24px;
	position:relative;
	background-color:#20a3f0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
}

.dg-accordion15 .panel-heading .panel-title a:before {
	content: "";
	width: 12px;
	height: 2px;
	background: #333;
	position: absolute;
	top: 50%;
	left: 17px;
	margin-top: -1px;
	z-index: 1;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion15 .panel-heading .panel-title a:after {
	content: "";
	width: 2px;
	height: 12px;
	background: #333;
	position: absolute;
	top: 50%;
	left: 22px;
	margin-top: -6px;
	z-index: 1;
	opacity: 0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion15 .panel-heading .panel-title a.collapsed:before,
.dg-accordion15 .panel-heading .panel-title a.collapsed:after {
	opacity: 1;
	background: #333;
}

.dg-accordion15 .panel-heading .panel-title a.collapsed{
	color:#424242;
	background-color:#ececec;
}
.dg-accordion15 .panel-heading .panel-title a:hover{
	color:#FFF;
	text-decoration:none;
}
.dg-accordion15 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
}

.dg-accordion15 .panel-collapse{
	background-color:#FFF;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion15 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
}
.dg-accordion15 .panel-heading .arrow {
	width:47px;
	text-align:center;
	line-height:48px;
	position:absolute;
	background-color:#00f5c5;
	top:0px;
	bottom:0px;
	left:0px;
	color:#FFF;
	font-size:17px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
	border-radius:8px 0 0 8px;
	-moz-border-radius:8px 0 0 8px;
	-webkit-border-radius:8px 0 0 8px;
}
.dg-accordion15 .panel-heading .collapsed .arrow{
	background-color:#dedddd;
	color:#2f2f2f;
}
.dg-accordion15 .panel-heading .collapsed:hover .arrow{
	background-color:#dedddd;
	color:#2f2f2f;
}
.dg-accordion15 .panel-heading .collapsed:hover .arrow:before {
	color:#20a3f0;
}
.dg-accordion15 .panel-body{
    padding:22px 30px 6px 20px;
}
.dg-accordion16{
	border-bottom:1px solid #e6e6e6;
}
.dg-accordion16 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-accordion16.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0 0 -1px;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion16 .panel-heading{
    padding:0px;
}
.dg-accordion16 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#2ea9f1;
	display:block;
    padding: 10px 60px 10px 20px;
    line-height: 24px;
	position:relative;
	border-top:1px solid #e6e6e6;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
}

.dg-accordion16 .panel-heading .panel-title a .arrow:before {
	content: "";
	width: 12px;
	height: 2px;
	background: #333;
	position: absolute;
	top: 50%;
	right: 17px;
	margin-top: -1px;
	z-index: 1;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion16 .panel-heading .panel-title a:after {
	content: "";
	width: 2px;
	height: 12px;
	background: #333;
	position: absolute;
	top: 50%;
	right: 21px;
	margin-top: -6px;
	z-index: 1;
	opacity: 0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion16 .panel-heading .panel-title a.collapsed:before,
.dg-accordion16 .panel-heading .panel-title a.collapsed:after {
	opacity: 1;
	background: #333;
}

.dg-accordion16 .panel-heading .panel-title a.collapsed{
	color:#424242;
}
.dg-accordion16 .panel-heading .panel-title a:before{
	content:"";
	border-left:2px solid #2ea9f1;
	height:9px;
	position:absolute;
	left:0px;
	top:50%;
	margin-top:-5px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion16 .panel-heading .panel-title a.collapsed:before{
	border-left-color:#515151;
}


.dg-accordion16 .panel-heading .panel-title .number {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	width:50px;
	text-align:center;
	line-height:50px;
}
.dg-accordion16 .panel-heading .panel-title a.collapsed{
	color:#666666;
	background-color:transparent;
}
.dg-accordion16 .panel-heading .panel-title a:hover{
	text-decoration:none;
}
.dg-accordion16 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion16 .panel-collapse{
	box-shadow:none;
	-webkit-box-shadow:none;
	border:none;
	border-top:none;
}
.dg-accordion16 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
	color:#666666;
}
.dg-accordion16 .panel-heading .arrow {
	width:47px;
	text-align:center;
	line-height:48px;
	position:absolute;
	top:-1px;
	bottom:-1px;
	right:-1px;
	font-size:17px;
	color:#666666;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion16 .panel-heading .collapsed .arrow{
	color:#666666;
}
.dg-accordion16 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion16 .panel-heading .collapsed:hover .arrow:before {
	color:#666666;
}
.dg-accordion16 .panel-body{
    padding: 0 30px 18px 20px;
	margin:-4px 0 0 0;
}
.dg-accordion17{
	border-bottom:1px solid rgba(255,255,255,0.5);
}
.dg-accordion17 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border-top:1px solid rgba(255,255,255,0.5);
}
.dg-accordion17.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
	margin-bottom:5px;
}
.dg-accordion17 .panel-heading{
    padding:0px;
}
.dg-accordion17 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#FFF;
	display:block;
    padding: 10px 30px 8px 20px;
    line-height: 24px;
	border:1px solid #20a3f0;
	position:relative;
	background-color:#20a3f0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}
.dg-accordion17 .panel-heading .panel-title a.collapsed{
	color:#424242;
	background-color:#ffffff;
	border:1px solid #e6e6e6;
}
.dg-accordion17 .panel-heading .panel-title a:hover{
	color:#FFF;
	text-decoration:none;
}
.dg-accordion17 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion17 .panel-heading .panel-title a:before{
	content:"";
	position:absolute;
	right:43px;
	top:0;
	bottom:0px;
	border-left:1px solid #e6e6e6;
}
.dg-accordion17 .panel-collapse{
	background-color:#FFF;
	box-shadow:none;
	-webkit-box-shadow:none;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border: 1px solid #e6e6e6;
	border-top: 0;
}
.dg-accordion17 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
}
.dg-accordion17 .panel-heading .arrow {
	position:absolute;
	top:50%;
	right:18px;
	width:8px;
	height:8px;
	border-right:1px solid #FFF;
	border-bottom:1px solid #FFF;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	margin-top:-4px;	
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion17 .panel-heading .collapsed .arrow {
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	border-right-color:#414141;
	border-bottom-color:#414141;
}
.dg-accordion17 .panel-heading .collapsed:hover .arrow {
	border-right-color:#20a3f0;
	border-bottom-color:#20a3f0;
}
.dg-accordion17 .panel-body{
    padding: 16px 30px 8px 20px;
}
.dg-accordion18{
}
.dg-accordion18 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-accordion18.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0 0 7px;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion18 .panel-heading{
    padding:0px;
}
.dg-accordion18 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#FFF;
	display:block;
    padding: 12px 30px 11px 40px;
    line-height: 24px;
	position:relative;
	background-color:#20a3f0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-accordion18 .panel-heading .panel-title a.collapsed{
	color:#424242;
	background-color:#ffffff;
}
.dg-accordion18 .panel-heading .panel-title a:hover{
	color:#FFF;
	text-decoration:none;
}
.dg-accordion18 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion18 .panel-collapse{
	background-color:#20a3f0;
	box-shadow:none;
	color:#FFF;
	-webkit-box-shadow:none;
}
.dg-accordion18 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
}
.dg-accordion18 .panel-heading .arrow {
	width:20px;
	text-align:center;
	height:20px;
	line-height:20px;
	position:absolute;
	background-color:#FFF;
	top:13px;
	left:10px;
	color:#20a3f0;
	font-size:12px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.dg-accordion18 .panel-heading .arrow:before{
	content: "";
	width: 10px;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -1px 0 0 -5px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion18 .panel-heading .arrow:after {
	content: "";
	width: 2px;
	height: 10px;
	background: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -5px 0 0 -1px;
	opacity: 0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion18 .panel-heading a.collapsed .arrow:after {opacity: 1;}
.dg-accordion18 .panel-heading a.collapsed .arrow:before {background: #fff;}

.dg-accordion18 .panel-heading .collapsed .arrow{
	background-color:#666;
	color:#fff;
	top:13px;
}

.dg-accordion18 .panel-heading .collapsed:hover .arrow{
	background-color:#31aaf1;
}
.dg-accordion18 .panel-heading .collapsed:hover .arrow:before {
	color:#FFF;
}
.dg-accordion18 .panel-body{
    padding: 0px 20px 14px 40px;
	margin:-4px 0 0 0;
}
.dg-accordion19{
}
.dg-accordion19 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-accordion19.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0 0 7px;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
	border:1px solid #e6e6e6;
}
.dg-accordion19 .panel-heading{
    padding:0px;
}
.dg-accordion19 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#333333;
	display:block;
    padding: 10px 30px 10px 40px;
    line-height: 24px;
	position:relative;
	background-color:#FFF;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-accordion19 .panel-heading .panel-title a.collapsed{
	color:#333333;
	background-color:#f9f9f9;
}
.dg-accordion19 .panel-heading .panel-title a:hover{
	color:#333333;
	text-decoration:none;
}
.dg-accordion19 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion19 .panel-collapse{
	background-color:#FFF;
	box-shadow:none;
	color:#333333;
	-webkit-box-shadow:none;
}
.dg-accordion19 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
}
.dg-accordion19 .panel-heading .arrow {
	width:20px;
	text-align:center;
	height:20px;
	line-height:20px;
	position:absolute;
	background-color:#666666;
	top:12px;
	left:10px;
	color:#FFFFFF;
	font-size:12px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.dg-accordion19 .panel-heading .arrow:before{
	content: "";
	width: 10px;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -1px 0 0 -5px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion19 .panel-heading .arrow:after {
	content: "";
	width: 2px;
	height: 10px;
	background: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -5px 0 0 -1px;
	opacity: 0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion19 .panel-heading a.collapsed .arrow:after {opacity: 1;}

.dg-accordion19 .panel-heading .collapsed:hover .arrow{
	background-color:#31aaf1;
}
.dg-accordion19 .panel-heading .collapsed:hover .arrow:before {
	color:#FFF;
}
.dg-accordion19 .panel-body{
    padding: 0 30px 8px 40px;
    margin: -4px 0 0 0;
}
.dg-accordion20{
	border-bottom:1px solid #e6e6e6;
}
.dg-accordion20 .panel-default>.panel-heading{
	background-color:transparent;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-accordion20.panel-group .panel.panel-default{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border:none;
	margin:0 0 -1px;
	background-color:transparent;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.dg-accordion20 .panel-heading{
    padding:0px;
}
.dg-accordion20 .panel-heading .panel-title a{
	font-weight:normal;
	font-size:15px;
	color:#434343;
	display:block;
    padding: 13px 60px 12px 10px;
    line-height: 24px;
	position:relative;
	border-top:1px solid #e6e6e6;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
}
.dg-accordion20 .panel-heading .panel-title a.collapsed,
.dg-accordion20 .panel-heading .panel-title a.collapsed{
	color:#424242;
	background-color:transparent;
}
.dg-accordion20 .panel-heading .panel-title a:hover{
	text-decoration:none;
}
.dg-accordion20 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
	text-decoration:none;
}
.dg-accordion20 .panel-collapse{
	box-shadow:none;
	-webkit-box-shadow:none;
	border:none;
	border-top:none;
}
.dg-accordion20 .panel-default>.panel-heading+.panel-collapse>.panel-body{
	border-top:none;
	color:#666666;
}
.dg-accordion20 .panel-heading .arrow {
	width:30px;
	text-align:center;
	line-height:30px;
	height:30px;
	right:0;
	top:50%;
	margin-top:-15px;
	position:absolute;
	font-size:17px;
	color:#FFF;
	background-color:#20a3f0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}

.dg-accordion20 .panel-heading .arrow:before{
	content: "";
	width: 10px;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -1px 0 0 -5px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion20 .panel-heading .arrow:after {
	content: "";
	width: 2px;
	height: 10px;
	background: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -5px 0 0 -1px;
	opacity: 0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-accordion20 .panel-heading a.collapsed .arrow:after {opacity: 1;}

.dg-accordion20 .panel-heading .collapsed .arrow{
	background-color:#666666;
}

.dg-accordion20 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion20 .panel-heading .collapsed:hover .arrow:before {
}
.dg-accordion20 .panel-body{
   padding: 0 30px 10px 10px;
    margin: -4px 0 0 0;
}
.alert-bg01{
	background-color:#f1f1f1;
}
.alert-bg02{
	background:url("/Portals/_default/Skins/ForVend/images/alert-bg02.jpg") no-repeat center;
	background-attachment:fixed;
	background-size:cover;
}

.alertpage-title{
	font-size:20px;
	font-weight:normal;
	color:#424242;
	margin-bottom:38px;
	line-height:1.6;
}
.alertpage-title:after{
	content:"";
	display:block;
	width:40px;
	border-bottom:2px solid #20a3f0;
	margin:20px 0 0;
}
.dg-alert01{
	border:1px solid #3aaef2;
	padding:18px 20px;
	margin-bottom:25px;
	background:none;
	border-radius:0;
	-moz-border-radius:0;
	-webkit-border-radius:0;
}
.dg-alert01.radius{
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.dg-alert01 .icon{
	width:20px;
	height:20px;
	line-height:20px;
	text-align:center;
	margin-right:15px;
	vertical-align:middle;
}
.dg-alert01 .close{
	font-size:34px;
	color:inherit;
	font-weight:normal;
    height: 22px;
    line-height: 20px;
	opacity:1;
	margin-top:-1px;
}
.dg-alert01.alert-accent{
	border-color:#2da8f1;
	color:#2da8f1;
}
.dg-alert01.alert-primary{
	border-color:#337ab7;
	color:#337ab7;
}
.dg-alert01.alert-success{
	border-color:#4cae4c;
	color:#4cae4c;
}
.dg-alert01.alert-info{
	border-color:#5bc0de;
	color:#5bc0de;
}
.dg-alert01.alert-warning{
	border-color:#f2b763;
	color:#f2b763;
}
.dg-alert01.alert-danger{
	border-color:#d9534f;
	color:#d9534f;
}

.dg-alert02 {
	border:1px solid transparent;
	background-color:#40a2e6;
	padding:22px 20px;
	font-size:13px;
	color:#FFF;
	margin-bottom:25px;
	position:relative;
	min-height:100px;
	border-radius:0;
	-moz-border-radius:0;
	-webkit-border-radius:0;
}
.dg-alert02 h6 {
	color:inherit;
	font-weight:bold;
	font-size:13px;
	margin:0 0 6px;
}
.dg-alert02 p{
	margin:0;
	padding:0;
}
.dg-alert02 .close{
	font-size:34px;
	color:inherit;
	font-weight:normal;
    height: 22px;
    line-height: 20px;
	opacity:1;
	position:absolute;
    right: 18px;
    top: 12px;
	text-shadow:none;
	-webkit-text-shadow:none;
}

.dg-alert02 .icon{
	width:30px;
	height:30px;
	line-height:30px;
	text-align:center;
	border:1px solid #40a2e6;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	position:absolute;
	top:32px;
	left:21px;
}
.dg-alert02 .icon + h6,
.dg-alert02 .icon + p,
.dg-alert02 .icon + h6 + p,
.dg-alert02 .icon + p + h6{
	padding-left:50px;
}

.dg-alert02.alert-accent{
	background-color:#20a3f0;
}
.dg-alert02.alert-primary{
	background-color:#337ab7;
}
.dg-alert02.alert-success{
	background-color:#4cae4c;
}
.dg-alert02.alert-info{
	background-color:#5bc0de;
}
.dg-alert02.alert-warning{
	background-color:#f2b763;
}
.dg-alert02.alert-danger{
	background-color:#d9534f;
}

.dg-alert02.alert-box.alert-accent{
	background-color:#d8f4fe;
	border-color:#20a3f0;
	color:#20a3f0;
}
.dg-alert02.alert-box.alert-primary{
	background-color:#d8f4fe;
	border-color:#337ab7;
	color:#337ab7;
}
.dg-alert02.alert-box.alert-success{
	background-color:#d3fff6;
	border-color:#4cae4c;
	color:#4cae4c;
}
.dg-alert02.alert-box.alert-info{
	background-color:#eefbff;
	border-color:#5bc0de;
	color:#5bc0de;
}
.dg-alert02.alert-box.alert-warning{
	background-color:#fffbf5;
	border-color:#f2b763;
	color:#f2b763;
}
.dg-alert02.alert-box.alert-danger{
	background-color:#fbeaed;
	border-color:#d9534f;
	color:#d9534f;
}

.dg-alert02.alert-box.alert-accent .icon{
	border-color:#20a3f0;
}
.dg-alert02.alert-box.alert-primary .icon{
	border-color:#337ab7;
}
.dg-alert02.alert-box.alert-success .icon{
	border-color:#4cae4c;
}
.dg-alert02.alert-box.alert-info .icon{
	border-color:#5bc0de;
}
.dg-alert02.alert-box.alert-warning .icon{
	border-color:#f2b763;
}
.dg-alert02.alert-box.alert-danger .icon{
	border-color:#d9534f;
}


.dg-alert03 {
	border:1px solid #20a3f0;
	font-size:13px;
	color:#20a3f0;
	margin-bottom:25px;
	position:relative;
	padding:18px 30px;
	background-color:transparent;
}
.dg-alert03 h6 {
	color:inherit;
	font-weight:normal;
	font-size:15px;
	margin:0 0 11px;
}
.dg-alert03 p{
	margin:0;
	padding:0;
}
.dg-alert03 .close{
	font-size:34px;
	color:inherit;
	font-weight:normal;
    height: 22px;
    line-height: 20px;
	opacity:1;
	position:absolute;
    right: 18px;
    top: 12px;
	text-shadow:none;
	-webkit-text-shadow:none;
}

.dg-alert03 .icon{
	position:absolute;
	top:0px;
	left:0px;
	bottom:0;
	width:94px;
	border-right:1px solid #20a3f0;
	text-align:center;
	font-size:30px;
}
.dg-alert03 .icon:before{
	vertical-align:middle;
	position:absolute;
	top:50%;
	left:50%;
	margin:-18px 0 0 -18px;
	width:36px;
	line-height:36px;
	display:inline-block;
	text-align:center;
}

.dg-alert03 .icon + h6,
.dg-alert03 .icon + p,
.dg-alert03 .icon + h6 + p,
.dg-alert03 .icon + p + h6{
	padding-left:86px;
}

.dg-alert03.alert-accent{
	border-color:#20a3f0;
	color:#20a3f0;
}
.dg-alert03.alert-primary{
	border-color:#337ab7;
	color:#337ab7;
}
.dg-alert03.alert-success{
	border-color:#4cae4c;
	color:#4cae4c;
}
.dg-alert03.alert-info{
	border-color:#5bc0de;
	color:#5bc0de;
}
.dg-alert03.alert-warning{
	border-color:#f2b763;
	color:#f2b763;
}
.dg-alert03.alert-danger{
	border-color:#d9534f;
	color:#d9534f;
}
.dg-alert03.alert-accent .icon{
	border-color:#20a3f0;
}
.dg-alert03.alert-primary .icon{
	border-color:#337ab7;
}
.dg-alert03.alert-success .icon{
	border-color:#4cae4c;
}
.dg-alert03.alert-info .icon{
	border-color:#5bc0de;
}
.dg-alert03.alert-warning .icon{
	border-color:#f2b763;
}
.dg-alert03.alert-danger .icon{
	border-color:#d9534f;
}




.dg-alert04 {
	background-color:#1bbc9b;
	font-size:13px;
	color:#ffffff;
	margin-bottom:25px;
	position:relative;
	padding:22px 30px ;
	border:none;
}
.dg-alert04 h6 {
	color:inherit;
	font-weight:normal;
	font-size:15px;
	margin:0 0 2px;
}
.dg-alert04 p{
	margin:0;
	padding:0;
}
.dg-alert04 .close{
	font-size:34px;
	color:inherit;
	font-weight:normal;
    height: 22px;
    line-height: 20px;
	opacity:1;
	position:absolute;
    right: 18px;
    top: 12px;
	text-shadow:none;
	-webkit-text-shadow:none;
}
.dg-alert04 .icon{
	position:absolute;
	top:0px;
	left:0px;
	bottom:0;
	width:94px;
	background-color:rgba(255,255,255,0.3);
	text-align:center;
	font-size:30px;
}
.dg-alert04 .icon:before{
	vertical-align:middle;
	position:absolute;
	top:50%;
	left:50%;
	margin:-18px 0 0 -18px;
	display:inline-block;
	text-align:center;
	border:1px solid #FFF;
	height:35px;
	width:35px;
	line-height:35px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	font-size:15px;
}

.dg-alert04 .icon + h6,
.dg-alert04 .icon + p,
.dg-alert04 .icon + h6 + p,
.dg-alert04 .icon + p + h6{
	padding-left:94px;
}

.dg-alert04.alert-accent{
	background-color:#20a3f0;
}
.dg-alert04.alert-primary{
	background-color:#337ab7;
}
.dg-alert04.alert-success{
	background-color:#4cae4c;
}
.dg-alert04.alert-info{
	background-color:#5bc0de;
}
.dg-alert04.alert-warning{
	background-color:#f2b763;
}
.dg-alert04.alert-danger{
	background-color:#d9534f;
}
 
.dg-alert05 {
	border:1px solid #20a3f0;
	font-size:13px;
	color:#ffffff;
	margin-bottom:25px;
	position:relative;
	padding:22px 80px 22px 30px ;
	background:none;
}
.dg-alert05 h6 {
	color:inherit;
	font-weight:normal;
	font-size:15px;
	margin:0 0 2px;
}
.dg-alert05 p{
	margin:0;
	padding:0;
}
.dg-alert05 .close{
	font-size:30px;
	color:inherit;
	font-weight:normal;
	width:21px;
    height: 21px;
	padding-bottom:3px;
    line-height: 0;
	opacity:1;
	position:absolute;
    right: 16px;
    top: 16px;
	text-shadow:none;
	font-weight:bold;
	-webkit-text-shadow:none;
	border:1px solid #20a3f0;
}
.dg-alert05 .icon{
	position:absolute;
	top:0px;
	left:0px;
	bottom:0;
	width:94px;
	background-color:rgba(255,255,255,0.2);
	text-align:center;
	font-size:30px;
}
.dg-alert05 .icon:before{
	vertical-align:middle;
	position:absolute;
	top:50%;
	left:50%;
	margin:-18px 0 0 -18px;
	display:inline-block;
	text-align:center;
	height:35px;
	width:35px;
	line-height:35px;
	border:1px solid #FFF;
	font-size:15px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}

.dg-alert05 .icon + h6,
.dg-alert05 .icon + p,
.dg-alert05 .icon + h6 + p,
.dg-alert05 .icon + p + h6{
	padding-left:96px;
}

.dg-alert05.alert-accent{
	border-color:#20a3f0;
}
.dg-alert05.alert-primary{
	border-color:#337ab7;
}
.dg-alert05.alert-success{
	border-color:#4cae4c;
}
.dg-alert05.alert-info{
	border-color:#5bc0de;
}
.dg-alert05.alert-warning{
	border-color:#f2b763;
}
.dg-alert05.alert-danger{
	border-color:#d9534f;
}
.dg-alert05.alert-accent .close{
	border-color:#20a3f0;
	color:#20a3f0;
}
.dg-alert05.alert-primary .close{
	border-color:#337ab7;
	color:#337ab7;
}
.dg-alert05.alert-success .close{
	border-color:#4cae4c;
	color:#4cae4c;
}
.dg-alert05.alert-info .close{
	border-color:#5bc0de;
	color:#5bc0de;
}
.dg-alert05.alert-warning .close{
	border-color:#f2b763;
	color:#f2b763;
}
.dg-alert05.alert-danger .close{
	border-color:#d9534f;
	color:#d9534f;
}
.dg-alert05.alert-accent .icon{
	background-color:#20a3f0;
}
.dg-alert05.alert-primary .icon{
	background-color:#337ab7;
}
.dg-alert05.alert-success .icon{
	background-color:#4cae4c;
}
.dg-alert05.alert-info .icon{
	background-color:#5bc0de;
}
.dg-alert05.alert-warning .icon{
	background-color:#f2b763;
}
.dg-alert05.alert-danger .icon{
	background-color:#d9534f;
}


.dg-alert06 {
	background-color:#1bbc9b;
	font-size:13px;
	color:#ffffff;
	margin-bottom:25px;
	position:relative;
	padding:23px 70px 23px 30px ;
	border:none;
}
.dg-alert06 h6 {
	color:inherit;
	font-weight:normal;
	font-size:15px;
	margin:0 0 2px;
}
.dg-alert06 p{
	margin:0;
	padding:0;
}
.dg-alert06 .close{
	font-size:34px;
	color:inherit;
	font-weight:normal;
	opacity:1;
	position:absolute;
	right:0px;
	top:0px;
	text-shadow:none;
	-webkit-text-shadow:none;
	width:50px;
    height: 100%;
	background-color:rgba(255,255,255,0.3);
}
.dg-alert06 .icon{
	position:absolute;
	top:0px;
	left:0px;
	bottom:0;
	width:95px;
	background-color:rgba(255,255,255,0.3);
	text-align:center;
	font-size:30px;
}
.dg-alert06 .icon:before{
	vertical-align:middle;
	position:absolute;
	top:50%;
	left:50%;
	margin:-23px 0 0 -23px;
	display:inline-block;
	text-align:center;
	border:1px solid #FFF;
	height:45px;
	width:45px;
	line-height:45px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	font-size:15px;
}

.dg-alert06 .icon + h6,
.dg-alert06 .icon + p,
.dg-alert06 .icon + h6 + p,
.dg-alert06 .icon + p + h6{
	padding-left:95px;
}

.dg-alert06.alert-accent{
	background-color:#20a3f0;
}
.dg-alert06.alert-primary{
	background-color:#337ab7;
}
.dg-alert06.alert-success{
	background-color:#4cae4c;
}
.dg-alert06.alert-info{
	background-color:#5bc0de;
}
.dg-alert06.alert-warning{
	background-color:#f2b763;
}
.dg-alert06.alert-danger{
	background-color:#d9534f;
}


.dg-alert07 {
	border:1px solid #dadada;
	font-size:13px;
	color:#333333;
	margin-bottom:25px;
	position:relative;
	padding:38px 50px 38px 30px ;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	background-color:transparent;
}
.dg-alert07 h6 {
	color:inherit;
	font-weight:bold;
	font-size:15px;
	margin:0 0 7px;
}
.dg-alert07 p{
	margin:0;
	padding:0;
}
.dg-alert07 .close{
	font-size:36px;
	color:inherit;
	font-weight:normal;
    height: 22px;
    line-height: 20px;
	opacity:1;
	position:absolute;
	right:18px;
	top:12px;
	text-shadow:none;
	-webkit-text-shadow:none;
	font-weight:bold;
}
.dg-alert07 .icon{
	position:absolute;
	top:0px;
	left:0px;
	bottom:0;
	width:114px;
	text-align:center;
	font-size:20px;
}
.dg-alert07 .icon:before{
	vertical-align:middle;
	position:absolute;
	top:50%;
	left:40px;
	margin:-23px 0 0 0px;
	width:45px;
	line-height:39px;
	height:45px;
	display:inline-block;
	text-align:center;
	border:3px solid #f03251;
	background-color:#fdc0ca;
	color:#f03251;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
}

.dg-alert07 .icon + h6,
.dg-alert07 .icon + p,
.dg-alert07 .icon + h6 + p,
.dg-alert07 .icon + p + h6{
	padding-left:82px;
}

.dg-alert07.alert-accent .icon:before{
	background-color:#d8f4fe;
	border-color:#20a3f0;
	color:#20a3f0;
}
.dg-alert07.alert-primary .icon:before{
	background-color:#d8f4fe;
	border-color:#337ab7;
	color:#337ab7;
}
.dg-alert07.alert-success .icon:before{
	background-color:#d3fff6;
	border-color:#4cae4c;
	color:#4cae4c;
}
.dg-alert07.alert-info .icon:before{
	background-color:#eefbff;
	border-color:#5bc0de;
	color:#5bc0de;
}
.dg-alert07.alert-warning .icon:before{
	background-color:#fffbf5;
	border-color:#f2b763;
	color:#f2b763;
}
.dg-alert07.alert-danger .icon:before{
	background-color:#fbeaed;
	border-color:#d9534f;
	color:#d9534f;
}



.dg-alert08 {
	border:1px solid #dadada;
	font-size:13px;
	color:#333333;
	margin-bottom:25px;
	position:relative;
	padding:38px 50px 38px 30px ;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
}
.dg-alert08 h6 {
	color:inherit;
	font-weight:bold;
	font-size:15px;
	margin:0 0 7px;
}
.dg-alert08 p{
	margin:0;
	padding:0;
}
.dg-alert08 .close{
	font-size:36px;
	color:inherit;
	font-weight:normal;
    height: 22px;
    line-height: 20px;
	opacity:1;
	position:absolute;
	right:18px;
	top:12px;
	text-shadow:none;
	-webkit-text-shadow:none;
	font-weight:bold;
}
.dg-alert08 .icon{
	position:absolute;
	top:0px;
	left:0px;
	bottom:0;
	width:114px;
	text-align:center;
	font-size:42px;
}
.dg-alert08 .icon:before{
	vertical-align:middle;
	position:absolute;
	top:50%;
	left:35px;
	margin:-30px 0 0 0px;
	width:60px;
	line-height:60px;
	height:60px;
	display:inline-block;
	text-align:center;
}

.dg-alert08 .icon + h6,
.dg-alert08 .icon + p,
.dg-alert08 .icon + h6 + p,
.dg-alert08 .icon + p + h6{
	padding-left:82px;
}
.dg-alert08.color-01{
	border-color:#f03251;
	background-color:#fdc0ca;
	color:#f03251;
}
.dg-alert08.color-02{
	border-color:#8d6dc4;
	background-color:#deccff;
	color:#8d6dc4;
}
.dg-alert08.color-03{
	border-color:#1bbc9b;
	background-color:#a5fbe9;
	color:#1bbc9b;
}
.dg-alert08.color-04{
	border-color:#0097ff;
	background-color:#d6f4fe;
	color:#0097ff;
}

.dg-alert08.alert-accent{
	background-color:#d8f4fe;
	border-color:#20a3f0;
	color:#20a3f0;
}
.dg-alert08.alert-primary{
	background-color:#d8f4fe;
	border-color:#337ab7;
	color:#337ab7;
}
.dg-alert08.alert-success{
	background-color:#d3fff6;
	border-color:#4cae4c;
	color:#4cae4c;
}
.dg-alert08.alert-info{
	background-color:#eefbff;
	border-color:#5bc0de;
	color:#5bc0de;
}
.dg-alert08.alert-warning{
	background-color:#fffbf5;
	border-color:#f2b763;
	color:#f2b763;
}
.dg-alert08.alert-danger{
	background-color:#fbeaed;
	border-color:#d9534f;
	color:#d9534f;
}
.animat-col-title{
	text-align:center;
}
.animat-col-title:before{
	content:"";
	width:14px;
	display:block;
	border-bottom:1px solid #383838;
	margin:0 auto 30px;
	
}
.animat-col-title:after{
	content:"";
	width:64px;
	display:block;
	border-bottom:1px solid #20a3f0;
	margin:30px auto 50px;
	text-align:center;
}
.animat-col-title h3{
	font-size:30px;
	color:#333333;
	margin:0 0 10px;
}

.animat-col01{
	margin:0;
	padding:0;
	overflow:hidden;
	list-style:none;
	text-align:center;
}
.animat-col01 li{
	width:25%;
	float:left;
	margin:0;
	height:415px;
	line-height:415px;
	border-top:1px solid #dddddd;
	border-bottom:1px solid #dddddd;
}
.animat-col01 li .box{
	padding:0px 30px;
	display:inline-block;
	line-height:1.6;
	vertical-align:middle;
	color:#353535;
}
.animat-col01 .box .animat01_icon {
	padding-bottom: 25px;
	display: inline-block;
}
.animat-col01 .box h3{
	color:#353535;
	font-size:25px;
	margin-bottom:20px;
	text-transform: uppercase;
}

.animat-col01 .box .btn {
	padding:8px 14px 7px;
	border:1px solid #353535;
	font-size: 13px;	
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	margin-top:50px;
	color:#353535;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.animat-col01 .box .btn:hover {background: #353535;color: #fff;}
.animat-col01 li.color-01 .box .btn:hover {background: #fff;}
.animat-col01 li.color-02 .box .btn:hover {background: #fff;color: #353535;}
.animat-col01 .box .cont{
	height:0px;
	visibility:hidden;
	opacity:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.animat-col01 li:hover .box .cont{
	height:140px;
	visibility:visible;
	opacity:1;
}

.animat-col01 li.color-01{
	background-color:#20a3f0;
	border:none;
}
.animat-col01 li.color-02{
	background-color:#353535;
	border:none;
}
.animat-col01 li.color-01 .box,
.animat-col01 li.color-02 .box,
.animat-col01 li.color-01 .box .fa,
.animat-col01 li.color-02 .box .fa,
.animat-col01 li.color-01 .box h3,
.animat-col01 li.color-02 .box h3{
	color:#FFF;
}
.animat-col01 li.color-01 .box .btn ,
.animat-col01 li.color-02 .box .btn {
	border-color:#FFF;	
	color:#FFF;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.animat-col01 li{
		width:50%;
	}
}
@media only screen and (max-width: 767px) {
	.animat-col01 li{
		width:100%;
	}
}
.animat-col02 {
	margin:0;
	padding:0;
	list-style:none;
}
.animat-col02 li{
	margin:0;
	padding:130px 0 130px;
	width:20%;
	float:left;
	text-align:center;
	color:#FFF;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}

.animat-col02 li h3{
	color:#FFF;
	margin: 0;
	text-transform: uppercase;
	font-size: 18px;
	line-height: 1.5;
}
.animat-col02 li h3 span{
	color:#FFF;
	font-size:13px;
	display:block;
	text-transform: lowercase;
}
.animat-col02 .box .animat02_icon {
	display: inline-block;
	padding-bottom: 15px;
}
.animat-col02 li .dg-btn-1{
	margin-top:40px;
	border: 1px solid transparent;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}

.animat-col02 li.color-01{
	background-color:#f9cf79
}
.animat-col02 li.color-02{
	background-color:#ef8494
}
.animat-col02 li.color-03{
	background-color:#20a3f0
}
.animat-col02 li.color-04{
	background-color:#8d6cc3
}
.animat-col02 li.color-05{
	background-color:#1bbc9b
}
.animat-col02 li:hover{
	background-color:#4e4e4e
}
.animat-col02 li:hover .dg-btn-1{
	background-color:transparent;
	color:#FFF;
	border: 1px solid #fff;
}
@media only screen and (max-width: 767px) {
	.animat-col02 li{
		width:100%;
	}
}

.animat-col03{
	margin:0;
	padding:0;
	overflow:hidden;
	list-style:none;
	text-align:center;
}
.animat-col03 li{
	width:33.33333%;
	float:left;
	margin:0;
	height:615px;
	line-height:615px;
}
.animat-col03 li .box{
	padding:0px 30px;
	display:inline-block;
	line-height:1.6;
	vertical-align:middle;
	color:#FFFFFF;
}
.animat-col03 .box .animat03_icon{
	display: inline-block;
	padding-bottom: 35px;
}
.animat-col03 .box h3{
	color:#FFFFFF;
	line-height: 1.2;
	font-weight: bold;
	font-size:20px;
	margin-bottom:20px;
	text-transform: uppercase;
}
.animat-col03 .box h3:after{
	content:"";
	width:50px;
	display:block;
	border-bottom:2px solid #FFF;
	margin:8px auto 45px;
}
.animat-col03 .box .btn {
	padding:0px;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	margin-top:10px;
	color:#FFFFFF;
	font-weight:bold;
	font-size:13px;
	text-transform: uppercase;
}
.animat-col03 .box .cont{
	height:0px;
	visibility:hidden;
	opacity:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.animat-col03 li:hover .box .cont{
	height:140px;
	visibility:visible;
	opacity:1;
}

.animat-col03 li.color-01{
	background-color:#0b72c2;
}
.animat-col03 li.color-02{
	background-color:#20a3f0;
}
.animat-col03 li.color-03{
	background-color:#39bff7;
}
@media only screen and (max-width: 767px) {
	.animat-col03 li{
		width:100%;
	}
}

.animat-col04 {
	height:418px;
	line-height:418px;
	background:no-repeat center center;
	background-size:cover;
	text-align:center;
	color:#20a3f0;
	position:relative;
	margin:0 0 25px 0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.animat-col04:before{
	content:"";
	border:1px solid #919b9c;
	position:absolute;
	top:30px;
	left:30px;
	right:30px;
	bottom:30px;
	opacity:0;
	visibility:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}

.animat-col04.bg-left {
	background-image:url("/Portals/_default/Skins/ForVend/images/animat-col03-01.jpg");
}
.animat-col04.bg-right {
	background-image:url("/Portals/_default/Skins/ForVend/images/animat-col03-02.jpg");
}
.animat-col04 .box{
	line-height:1.8;
	display:inline-block;
	vertical-align:middle;
}
.animat-col04 .fa{
	font-size:45px;
	margin-bottom:40px;
} 
.animat-col04 h3{
	font-size:15px;
	color:inherit;
	margin-bottom:25px;
	text-transform: uppercase;
	font-weight: bold;
} 
.animat-col04 h3:before{
	content:"";
	border-top:3px solid #20a3f0;
	width:40px;
	display:block;
	margin:auto;
	font-size:15px;
	color:#20a3f0;
	margin-bottom:10px;
	transition: 		border-color ease-in 200ms;
	-moz-transition: 	border-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: border-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		border-color ease-in 200ms; /* Opera */
	-ms-transition: 	border-color ease-in 200ms; /* IE9? */
} 
.animat-col04 .dg-btn-1{
	padding:0px 14px !important;
	position:relative;
	height:0;
	line-height:35px;
	border:1px solid #fff !important;
	text-transform: uppercase;
	font-weight: bold;
	visibility:hidden;
	opacity:0;
	z-index:2;
	overflow:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.animat-col04 .dg-btn-1:before{
	content:"";
	top:0px;
	left:0px;
	position:absolute;
	background-color:#FFF;
	z-index:-1;
}
.animat-col04 .dg-btn-1:hover:before {background: transparent !important;}
.animat-col04 .dg-btn-1:hover {background: transparent !important;color: #fff !important;}
.animat-col04:hover:before{
	opacity:1;
	visibility:visible
}
.animat-col04:hover .dg-btn-1{
	height:34px;
	opacity:1;
	visibility:visible;
}
.animat-col04:hover {
	color:#FFF;
}
.animat-col04:hover h3:before{
	border-color:#FFF;
}



.animat-col05{
	margin:0;
	padding:0;
	list-style:none;
	overflow:hidden;
}
.animat-col05 li{
	margin:0;
	padding:0;
	list-style:none;
	float:left;
	width:16.6666666%;
	text-align:center;
	height:420px;
	line-height:420px;
	border-left:1px solid #dddddd;
	border-top:1px solid #dddddd;
	border-bottom:1px solid #dddddd;
	color:#20a3f0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.animat-col05 li:first-child{
	border-left:none;
}
.animat-col05 li .box{
	line-height:1.8px;
	display:inline-block;
	position:relative;
	width:100%;
}
.animat-col05 li .fa{
	font-size:35px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
	opacity: 1;
}
.animat-col05 li .fa.fa-mobile-phone {font-size: 48px;}
.animat-col05 li h3{
	font-size:15px;
	text-transform: uppercase;
	font-weight: bold;
	visibility:hidden;
	opacity:0;
	color: #fff;
	position:absolute;
	left:0;
	top:5px;
	width:100%;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.animat-col05 li:hover {
	background-color:#20a3f0;
	color:#FFF;
}
.animat-col05 li:hover .fa{
	visibility:hidden;
	opacity:0;
}
.animat-col05 li:hover h3{
	visibility:visible;
	opacity:1;
	color:#FFF;
}
@media only screen and (max-width: 767px) {
	.animat-col05 li{
		width:100%;
	}
}

.animat-col06 {
	height:252px;
	line-height:252px;
	background-color:#20a3f0;
	margin-bottom:25px;
	text-align:center;
	padding:0 20px;
}
.animat-col06 .box{
	line-height:1.8;
	display:inline-block;
	vertical-align:middle;
	color:#FFF;
}
.animat-col06 .fa{
	font-size:50px;
	width:60px;
	height:60px;
	line-height:60px;
	margin-bottom:10px;
	overflow:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.animat-col06 h3{
	font-size:15px;
	color:#FFF;
	line-height: 1.2;
	font-weight: bold;
	text-transform: uppercase;
}
.animat-col06 .btn {
	color:#FFF;
	font-size:13px;
	text-transform: uppercase;
}
.animat-col06 .cont{
	height:0;
	overflow:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.animat-col06:hover .fa{
	height:0px;
}
.animat-col06:hover .cont{
	height:110px;
}


.Animatedcolumns-title01 {
    text-align: center;
	margin-bottom:30px;
}
.Animatedcolumns-title01 h2{
    font-size: 20px;
    color: #333333;
    font-weight: normal;
    line-height: 1.2;
    display: inline-block;
    position: relative;
    padding: 0 0 20px 0;
	position:relative;
	margin:0 0 15px 0;
}
.Animatedcolumns-title01 h2:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -20px;
    width: 40px;
	background-color: #20a3f0;
	height:2px;
}



















@media only screen and (min-width:1600px) {
  	.Animatedcolumns-title01 p {padding:0 400px;}
  	.animat-col03 li .box .cont {padding: 0 110px;}
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
	.Animatedcolumns-title01 p {padding:0 250px;}
	.animat-col03 li .box .cont {padding: 0 60px;}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.Animatedcolumns-title01 p {padding:0 150px;}
	.animat-col06:hover .cont{height:130px;}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.Animatedcolumns-title01 p {padding:0 40px;}
	.animat-col05 li {width: 33.333333%;}
}
/*default style*/
[class*="dg-btn-"]{
	color:#555;
	border-color:#555;
	background-color:#555;
	margin:3px;
	white-space:nowrap;
	border:none;
	background-image:none;
}
[class*="dg-btn-"]:before{
	background-color:#555;
}

[class*="dg-btn-"],
[class*="dg-btn-"]:link,
[class*="dg-btn-"]:before,
[class*="dg-btn-"]:link:before{
	transition: 		all ease-in 300ms;
	-moz-transition: 	all ease-in 300ms; /* Firefox 4 */
-webkit-transition:     all ease-in 300ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 300ms; /* Opera */
	-ms-transition: 	all ease-in 300ms; /* IE9? */
}
.dnngo-main [class*="dg-btn-"]:hover{
	color:#222533;
	border-color:#222533;
	background:#222533;
}
.dnngo-main [class*="dg-btn-"]:hover:before{
	background:#222533;
}

/*btn color*/

[class*="dg-btn-"].btn-turquoise{
	color:#08dcf5;
	border-color:#08dcf5;
	background-color:#08dcf5;
}
[class*="dg-btn-"].btn-turquoise:before{
	background-color:#08dcf5;
}
[class*="dg-btn-"].btn-borland{
	color:#20a3f0;
	border-color:#20a3f0;
	background-color:#20a3f0;
}
[class*="dg-btn-"].btn-borland:before{
	background-color:#20a3f0;
}
[class*="dg-btn-"].btn-denim{
	color:#127dcf;
	border-color:#127dcf;
	background-color:#127dcf;
}
[class*="dg-btn-"].btn-denim:before{
	background-color:#127dcf;
}
[class*="dg-btn-"].btn-turquoise-g{
	color:#1de0c1;
	border-color:#1de0c1;
	background: -webkit-linear-gradient(135deg, #1de0c1, #44d2fb);
	background: -o-linear-gradient(135deg, #1de0c1, #44d2fb); 
	background: -moz-linear-gradient(135deg, #1de0c1, #44d2fb); 
	background: linear-gradient(135deg, #1de0c1, #44d2fb);
	background-color:#1de0c1;
}
[class*="dg-btn-"].btn-turquoise-g:before{
	background: -webkit-linear-gradient(135deg, #1de0c1, #44d2fb);
	background: -o-linear-gradient(135deg, #1de0c1, #44d2fb); 
	background: -moz-linear-gradient(135deg, #1de0c1, #44d2fb); 
	background: linear-gradient(135deg, #1de0c1, #44d2fb);
	background-color:#1de0c1;
}
[class*="dg-btn-"].btn-navyblue-g{
	color:#0547f1;
	border-color:#0547f1;
	background: -webkit-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0);
	background: -o-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0); 
	background: -moz-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0); 
	background: linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0 );
	background-color:#0547f1;
}
[class*="dg-btn-"].btn-navyblue-g:before{
	background: -webkit-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0);
	background: -o-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0); 
	background: -moz-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0); 
	background: linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0 );
	background-color:#0547f1;
}
[class*="dg-btn-"].btn-blue-g{
	color:#0850f7;
	border-color:#0850f7;
	background: -webkit-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%);
	background: -o-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%); 
	background: -moz-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%); 
	background: linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%);
	background-color:#0850f7;
}
[class*="dg-btn-"].btn-blue-g:before{
  background: -webkit-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%);
  background: -o-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%); 
  background: -moz-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%); 
  background: linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%);
  background-color:#0850f7;
}
[class*="dg-btn-"].btn-jewel-g{
	color:#0f7936;
	border-color:#0f7936;
	background: -webkit-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b);
	background: -o-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b); 
	background: -moz-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b); 
	background: linear-gradient(135deg,#0f7936 30%, #179a47, #38965b);
	background-color:#0f7936;
}
[class*="dg-btn-"].btn-jewel-g:before{
  background: -webkit-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b);
  background: -o-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b); 
  background: -moz-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b); 
  background: linear-gradient(135deg, #0f7936 30%, #179a47, #38965b);
  background-color:#0f7936;
}
[class*="dg-btn-"].btn-borland-g{
	color:#1e7ad8;
	border-color:#1e7ad8;
	background: -webkit-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%);
	background: -o-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%); 
	background: -moz-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%); 
	background: linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%);
	background-color:#1e7ad8;
}
[class*="dg-btn-"].btn-borland-g:before{
  background: -webkit-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%);
  background: -o-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%); 
  background: -moz-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%); 
  background: linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%);
  background-color:#1e7ad8;
}
[class*="dg-btn-"].btn-primary-g{
	color:#0676f4;
	border-color:#0676f4;
	background: -webkit-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%);
	background: -o-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%); 
	background: -moz-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%); 
	background: linear-gradient(45deg,#0676f4 20%, #00e9fe 80%);
	background-color:#0676f4;
}
[class*="dg-btn-"].btn-primary-g:before{
  background: -webkit-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%);
  background: -o-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%); 
  background: -moz-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%); 
  background: linear-gradient(45deg,#0676f4 20%, #00e9fe 80%);
  background-color:#0676f4;
}
[class*="dg-btn-"].btn-success-g{
	color:#1e7ad7;
	border-color:#1e7ad7;
	background: -webkit-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%);
	background: -o-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%); 
	background: -moz-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%); 
	background: linear-gradient(90deg,#1e7ad7 20%, #16a168 90%);
	background-color:#1e7ad7;
}
[class*="dg-btn-"].btn-success-g:before{
  background: -webkit-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%);
  background: -o-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%); 
  background: -moz-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%); 
  background: linear-gradient(90deg,#1e7ad7 20%, #16a168 90%);
  background-color:#1e7ad7;
}
[class*="dg-btn-"].btn-info-g{
	color:#00ccff;
	border-color:#00ccff;
	background: -webkit-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%);
	background: -o-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%); 
	background: -moz-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%); 
	background: linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%);
	background-color:#00ccff;
}
[class*="dg-btn-"].btn-info-g:before{
  background: -webkit-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%);
  background: -o-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%); 
  background: -moz-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%); 
  background: linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%);
  background-color:#00ccff;
}
[class*="dg-btn-"].btn-warning-g{
	color:#ff6c66;
	border-color:#ff6c66;
	background: -webkit-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%);
	background: -o-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%); 
	background: -moz-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%); 
	background: linear-gradient(90deg,#ff6c66 20%, #f1c442 90%);
	background-color:#ff6c66;
}
[class*="dg-btn-"].btn-warning-g:before{
  background: -webkit-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%);
  background: -o-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%); 
  background: -moz-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%); 
  background: linear-gradient(90deg,#ff6c66 20%, #f1c442 90%);
  background-color:#ff6c66;
}
[class*="dg-btn-"].btn-danger-g{
	color:#48a9e1;
	border-color:#48a9e1;
	background: -webkit-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%);
	background: -o-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%); 
	background: -moz-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%); 
	background: linear-gradient(135deg,#48a9e1 20%, #c361dc 90%);
	background-color:#48a9e1;
}
[class*="dg-btn-"].btn-danger-g:before{
  background: -webkit-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%);
  background: -o-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%); 
  background: -moz-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%); 
  background: linear-gradient(135deg,#48a9e1 20%, #c361dc 90%);
  background-color:#48a9e1;
}



[class*="dg-btn-"].btn-gray{
	color:#333333;
	border-color:#333333;
	background-color:#333333;
}
[class*="dg-btn-"].btn-gray:before{
	background-color:#333333;
}
[class*="dg-btn-"].btn-white{
	color:#ffffff;
	border-color:#ffffff;
	background-color:#ffffff;
}
.dg-btn-1.btn-white, 
.dg-btn-1.btn-white:link, 
.dg-btn-1.btn-white:active, 
.dg-btn-1.btn-white:visited,
.dg-btn-3.btn-white, 
.dg-btn-3.btn-white:link, 
.dg-btn-3.btn-white:active, 
.dg-btn-3.btn-white:visited,
.dg-btn-4.btn-white, 
.dg-btn-4.btn-white:link, 
.dg-btn-4.btn-white:active, 
.dg-btn-4.btn-white:visited{
	color:#333333;
}
[class*="dg-btn-"].btn-white:before{
	background-color:#ffffff;
}
[class*="dg-btn-"].btn-black{
	color:#191919;
	border-color:#191919;
	background-color:#191919;
}
[class*="dg-btn-"].btn-black:before{
	background-color:#191919;
}
[class*="dg-btn-"].btn-night{
	color:#323232;
	border-color:#323232;
	background-color:#323232;
}
[class*="dg-btn-"].btn-night:before{
	background-color:#323232;
}
[class*="dg-btn-"].btn-emerald{
	color:#40d075;
	border-color:#40d075;
	background-color:#40d075;
}
[class*="dg-btn-"].btn-emerald:before{
	background-color:#40d075;
}

[class*="dg-btn-"].btn-orange{
	color:#f39705;
	border-color:#f39705;
	background-color:#f39705;
}
[class*="dg-btn-"].btn-orange:before{
	background-color:#f39705;
}
[class*="dg-btn-"].btn-chambray{
	color:#505f79;
	border-color:#505f79;
	background-color:#505f79;
}
[class*="dg-btn-"].btn-chambray:before{
	background-color:#505f79;
}
[class*="dg-btn-"].btn-bittersweet{
	color:#ff6061;
	border-color:#ff6061;
	background-color:#ff6061;
}
[class*="dg-btn-"].btn-bittersweet:before{
	background-color:#ff6061;
}
[class*="dg-btn-"].btn-pelorous{
	color:#237da6;
	border-color:#237da6;
	background-color:#237da6;
}
[class*="dg-btn-"].btn-pelorous:before{
	background-color:#237da6;
}
[class*="dg-btn-"].btn-citrus{
	color:#a9d300;
	border-color:#a9d300;
	background-color:#a9d300;
}
[class*="dg-btn-"].btn-citrus:before{
	background-color:#a9d300;
}
[class*="dg-btn-"].btn-blackberry{
	color:#461135;
	border-color:#461135;
	background-color:#461135;
}
[class*="dg-btn-"].btn-blackberry:before{
	background-color:#461135;
}
[class*="dg-btn-"].btn-melon{
	color:#febbb4;
	border-color:#febbb4;
	background-color:#febbb4;
}
[class*="dg-btn-"].btn-melon:before{
	background-color:#febbb4;
}
[class*="dg-btn-"].btn-lipstick{
	color:#9a2c4a;
	border-color:#9a2c4a;
	background-color:#9a2c4a;
}
[class*="dg-btn-"].btn-lipstick:before{
	background-color:#9a2c4a;
}
[class*="dg-btn-"].btn-darkcyan{
	color:#007c8e;
	border-color:#007c8e;
	background-color:#007c8e;
}
[class*="dg-btn-"].btn-darkcyan:before{
	background-color:#007c8e;
}
[class*="dg-btn-"].btn-toryblue{
	color:#40548e;
	border-color:#40548e;
	background-color:#40548e;
}
[class*="dg-btn-"].btn-toryblue:before{
	background-color:#40548e;
}
[class*="dg-btn-"].btn-crimson{
	color:#ef1d38;
	border-color:#ef1d38;
	background-color:#ef1d38;
}
[class*="dg-btn-"].btn-crimson:before{
	background-color:#ef1d38;
}
[class*="dg-btn-"].btn-celery{
	color:#bbb83f;
	border-color:#bbb83f;
	background-color:#bbb83f;
}
[class*="dg-btn-"].btn-celery:before{
	background-color:#bbb83f;
}
[class*="dg-btn-"].btn-pink{
	color:#dc717c;
	border-color:#dc717c;
	background-color:#dc717c;
}
[class*="dg-btn-"].btn-pink:before{
	background-color:#dc717c;
}
[class*="dg-btn-"].btn-citrus2{
	color:#97c200;
	border-color:#97c200;
	background-color:#97c200;
}
[class*="dg-btn-"].btn-citrus2:before{
	background-color:#97c200;
}
[class*="dg-btn-"].btn-comet{
	color:#626073;
	border-color:#626073;
	background-color:#626073;
}
[class*="dg-btn-"].btn-comet:before{
	background-color:#626073;
}
[class*="dg-btn-"].btn-atomic{
	color:#3d4c53;
	border-color:#3d4c53;
	background-color:#3d4c53;
}
[class*="dg-btn-"].btn-atomic:before{
	background-color:#3d4c53;
}
[class*="dg-btn-"].btn-seagreen{
	color:#1cc0be;
	border-color:#1cc0be;
	background-color:#1cc0be;
}
[class*="dg-btn-"].btn-seagreen:before{
	background-color:#1cc0be;
}
[class*="dg-btn-"].btn-shadowgreen{
	color:#94c1ab;
	border-color:#94c1ab;
	background-color:#94c1ab;
}
[class*="dg-btn-"].btn-shadowgreen:before{
	background-color:#94c1ab;
}
[class*="dg-btn-"].btn-silver{
	color:#b8b8b8;
	border-color:#b8b8b8;
	background-color:#b8b8b8;
}
[class*="dg-btn-"].btn-silver:before{
	background-color:#b8b8b8;
}
[class*="dg-btn-"].btn-acapulco{
	color:#62a783;
	border-color:#62a783;
	background-color:#62a783;
}
[class*="dg-btn-"].btn-acapulco:before{
	background-color:#62a783;
}
[class*="dg-btn-"].btn-rock{
	color:#2e313d;
	border-color:#2e313d;
	background-color:#2e313d;
}
[class*="dg-btn-"].btn-rock:before{
	background-color:#2e313d;
}
[class*="dg-btn-"].btn-midnightblue{
	color:#122b58;
	border-color:#122b58;
	background-color:#122b58;
}
[class*="dg-btn-"].btn-midnightblue:before{
	background-color:#122b58;
}
[class*="dg-btn-"].btn-darkturquoise{
	color:#00d7e9;
	border-color:#00d7e9;
	background-color:#00d7e9;
}
[class*="dg-btn-"].btn-darkturquoise:before{
	background-color:#00d7e9;
}
[class*="dg-btn-"].btn-radicalred{
	color:#f82f54;
	border-color:#f82f54;
	background-color:#f82f54;
}
[class*="dg-btn-"].btn-radicalred:before{
	background-color:#f82f54;
}
[class*="dg-btn-"].btn-cadetblue{
	color:#5d9ca8;
	border-color:#5d9ca8;
	background-color:#5d9ca8;
}
[class*="dg-btn-"].btn-cadetblue:before{
	background-color:#5d9ca8;
}
[class*="dg-btn-"].btn-sunshade{
	color:#fa973c;
	border-color:#fa973c;
	background-color:#fa973c;
}
[class*="dg-btn-"].btn-sunshade:before{
	background-color:#fa973c;
}
[class*="dg-btn-"].btn-blackberry{
	color:#361630;
	border-color:#361630;
	background-color:#361630;
}
[class*="dg-btn-"].btn-blackberry:before{
	background-color:#361630;
}
[class*="dg-btn-"].btn-mantis{
	color:#8fc567;
	border-color:#8fc567;
	background-color:#8fc567;
}
[class*="dg-btn-"].btn-mantis:before{
	background-color:#8fc567;
}
[class*="dg-btn-"].btn-saffron{
	color:#f0ca3d;
	border-color:#f0ca3d;
	background-color:#f0ca3d;
}
[class*="dg-btn-"].btn-saffron:before{
	background-color:#f0ca3d;
}
[class*="dg-btn-"].btn-shamrock{
	color:#24d78a;
	border-color:#24d78a;
	background-color:#24d78a;
}
[class*="dg-btn-"].btn-shamrock:before{
	background-color:#24d78a;
}
[class*="dg-btn-"].btn-orange2{
	color:#f4633c;
	border-color:#f4633c;
	background-color:#f4633c;
}
[class*="dg-btn-"].btn-orange2:before{
	background-color:#f4633c;
}

[class*="dg-btn-"].btn-primary{
	color:#337ab7;
	border-color:#337ab7;
	background-color:#337ab7;
}
[class*="dg-btn-"].btn-primary:before{
	background-color:#337ab7;
}
[class*="dg-btn-"].btn-success{
	color:#5cb85c;
	border-color:#5cb85c;
	background-color:#5cb85c;
}
[class*="dg-btn-"].btn-success:before{
	background-color:#5cb85c;
}
[class*="dg-btn-"].btn-info{
	color:#5bc0de;
	border-color:#5bc0de;
	background-color:#5bc0de;
}
[class*="dg-btn-"].btn-info:before{
	background-color:#5bc0de;
}
[class*="dg-btn-"].btn-warning{
	color:#f0ad4e;
	border-color:#f0ad4e;
	background-color:#f0ad4e;
}
[class*="dg-btn-"].btn-warning:before{
	background-color:#f0ad4e;
}
[class*="dg-btn-"].btn-danger{
	color:#d9534f;
	border-color:#d9534f;
	background-color:#d9534f;
}
[class*="dg-btn-"].btn-danger:before{
	background-color:#d9534f;
}

/*btn color*/

/*btn Hover color*/
[class*="dg-btn-"].hover-turquoise:hover{
	color:#08dcf5;
	border-color:#08dcf5;
	background-color:#08dcf5;
}
[class*="dg-btn-"].hover-turquoise:hover:before{
	background-color:#08dcf5;
}
[class*="dg-btn-"].hover-borland:hover{
	color:#20a3f0;
	border-color:#20a3f0;
	background-color:#20a3f0;
}
[class*="dg-btn-"].hover-borland:hover:before{
	background-color:#20a3f0;
}
[class*="dg-btn-"].hover-denim:hover{
	color:#127dcf;
	border-color:#127dcf;
	background-color:#127dcf;
}
[class*="dg-btn-"].hover-denim:hover:before{
	background-color:#127dcf;
}
[class*="dg-btn-"].hover-denim:hover{
	color:#127dcf;
	border-color:#127dcf;
	background-color:#127dcf;
}
[class*="dg-btn-"].hover-denim:hover:before{
	background-color:#127dcf;
}
[class*="dg-btn-"].hover-turquoise-g:hover{
	color:#1de0c1;
	border-color:#1de0c1;
	background: -webkit-linear-gradient(135deg, #1de0c1, #44d2fb);
	background: -o-linear-gradient(135deg, #1de0c1, #44d2fb); 
	background: -moz-linear-gradient(135deg, #1de0c1, #44d2fb); 
	background: linear-gradient(135deg, #1de0c1, #44d2fb);
	background-color:#1de0c1;
}
[class*="dg-btn-"].hover-turquoise-g:hover:before{
	background: -webkit-linear-gradient(135deg, #1de0c1, #44d2fb);
	background: -o-linear-gradient(135deg, #1de0c1, #44d2fb); 
	background: -moz-linear-gradient(135deg, #1de0c1, #44d2fb); 
	background: linear-gradient(135deg, #1de0c1, #44d2fb);
	background-color:#1de0c1;
}
[class*="dg-btn-"].hover-navyblue-g:hover{
	color:#0547f1;
	border-color:#0547f1;
	background: -webkit-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0);
	background: -o-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0); 
	background: -moz-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0); 
	background: linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0 );
	background-color:#0547f1;
}
[class*="dg-btn-"].hover-navyblue-g:hover:before{
	background: -webkit-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0);
	background: -o-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0); 
	background: -moz-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0); 
	background: linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0 );
	background-color:#0547f1;
}
[class*="dg-btn-"].hover-blue-g:hover{
	color:#0850f7;
	border-color:#0850f7;
	background: -webkit-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%);
	background: -o-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%); 
	background: -moz-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%); 
	background: linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%);
	background-color:#0850f7;
}
[class*="dg-btn-"].hover-blue-g:hover:before{
  background: -webkit-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%);
  background: -o-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%); 
  background: -moz-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%); 
  background: linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%);
  background-color:#0850f7;
}
[class*="dg-btn-"].hover-jewel-g:hover{
	color:#0f7936;
	border-color:#0f7936;
	background: -webkit-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b);
	background: -o-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b); 
	background: -moz-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b); 
	background: linear-gradient(135deg,#0f7936 30%, #179a47, #38965b);
	background-color:#0f7936;
}
[class*="dg-btn-"].hover-jewel-g:hover:before{
  background: -webkit-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b);
  background: -o-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b); 
  background: -moz-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b); 
  background: linear-gradient(135deg, #0f7936 30%, #179a47, #38965b);
  background-color:#0f7936;
}

[class*="dg-btn-"].hover-borland-g:hover{
	color:#1e7ad8;
	border-color:#1e7ad8;
	background: -webkit-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%);
	background: -o-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%); 
	background: -moz-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%); 
	background: linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%);
	background-color:#1e7ad8;
}
[class*="dg-btn-"].hover-borland-g:hover:before{
  background: -webkit-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%);
  background: -o-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%); 
  background: -moz-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%); 
  background: linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%);
  background-color:#1e7ad8;
}
[class*="dg-btn-"].hover-primary-g:hover{
	color:#0676f4;
	border-color:#0676f4;
	background: -webkit-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%);
	background: -o-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%); 
	background: -moz-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%); 
	background: linear-gradient(45deg,#0676f4 20%, #00e9fe 80%);
	background-color:#0676f4;
}
[class*="dg-btn-"].hover-primary-g:hover:before{
  background: -webkit-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%);
  background: -o-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%); 
  background: -moz-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%); 
  background: linear-gradient(45deg,#0676f4 20%, #00e9fe 80%);
  background-color:#0676f4;
}
[class*="dg-btn-"].hover-success-g:hover{
	color:#1e7ad7;
	border-color:#1e7ad7;
	background: -webkit-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%);
	background: -o-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%); 
	background: -moz-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%); 
	background: linear-gradient(90deg,#1e7ad7 20%, #16a168 90%);
	background-color:#1e7ad7;
}
[class*="dg-btn-"].hover-success-g:hover:before{
  background: -webkit-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%);
  background: -o-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%); 
  background: -moz-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%); 
  background: linear-gradient(90deg,#1e7ad7 20%, #16a168 90%);
  background-color:#1e7ad7;
}
[class*="dg-btn-"].hover-info-g:hover{
	color:#00ccff;
	border-color:#00ccff;
	background: -webkit-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%);
	background: -o-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%); 
	background: -moz-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%); 
	background: linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%);
	background-color:#00ccff;
}
[class*="dg-btn-"].hover-info-g:hover:before{
  background: -webkit-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%);
  background: -o-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%); 
  background: -moz-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%); 
  background: linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%);
  background-color:#00ccff;
}
[class*="dg-btn-"].hover-warning-g:hover{
	color:#ff6c66;
	border-color:#ff6c66;
	background: -webkit-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%);
	background: -o-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%); 
	background: -moz-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%); 
	background: linear-gradient(90deg,#ff6c66 20%, #f1c442 90%);
	background-color:#ff6c66;
}
[class*="dg-btn-"].hover-warning-g:hover:before{
  background: -webkit-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%);
  background: -o-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%); 
  background: -moz-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%); 
  background: linear-gradient(90deg,#ff6c66 20%, #f1c442 90%);
  background-color:#ff6c66;
}
[class*="dg-btn-"].hover-danger-g:hover{
	color:#48a9e1;
	border-color:#48a9e1;
	background: -webkit-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%);
	background: -o-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%); 
	background: -moz-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%); 
	background: linear-gradient(135deg,#48a9e1 20%, #c361dc 90%);
	background-color:#48a9e1;
}
[class*="dg-btn-"].hover-danger-g:hover:before{
  background: -webkit-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%);
  background: -o-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%); 
  background: -moz-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%); 
  background: linear-gradient(135deg,#48a9e1 20%, #c361dc 90%);
  background-color:#48a9e1;
}



[class*="dg-btn-"].hover-gray:hover{
	color:#333333;
	border-color:#333333;
	background-color:#333333;
}
[class*="dg-btn-"].hover-gray:hover:before{
	background-color:#333333;
}
[class*="dg-btn-"].hover-white:hover{
	color:#ffffff;
	border-color:#ffffff;
	background-color:#ffffff;
}
[class*="dg-btn-"].hover-white:hover:before{
	background-color:#ffffff;
}
.dnngo-main .dg-btn-1.hover-white:hover, 
.dnngo-main .dg-btn-2.hover-white:hover, 
.dnngo-main .dg-btn-3.hover-white:hover, 
.dnngo-main .dg-btn-4.hover-white:hover, 
.dnngo-main .dg-btn-5.hover-white:hover{
	color:#333333!important;
}

[class*="dg-btn-"].hover-black:hover{
	color:#191919;
	border-color:#191919;
	background-color:#191919;
}
[class*="dg-btn-"].hover-black:hover:before{
	background-color:#191919;
}
[class*="dg-btn-"].hover-night:hover{
	color:#323232;
	border-color:#323232;
	background-color:#323232;
}
[class*="dg-btn-"].hover-night:hover:before{
	background-color:#323232;
}
[class*="dg-btn-"].hover-emerald:hover{
	color:#40d075;
	border-color:#40d075;
	background-color:#40d075;
}
[class*="dg-btn-"].hover-emerald:hover:before{
	background-color:#40d075;
}

[class*="dg-btn-"].hover-orange:hover{
	color:#f39705;
	border-color:#f39705;
	background-color:#f39705;
}
[class*="dg-btn-"].hover-orange:hover:before{
	background-color:#f39705;
}
[class*="dg-btn-"].hover-chambray:hover{
	color:#505f79;
	border-color:#505f79;
	background-color:#505f79;
}
[class*="dg-btn-"].hover-chambray:hover:before{
	background-color:#505f79;
}
[class*="dg-btn-"].hover-bittersweet:hover{
	color:#ff6061;
	border-color:#ff6061;
	background-color:#ff6061;
}
[class*="dg-btn-"].hover-bittersweet:hover:before{
	background-color:#ff6061;
}
[class*="dg-btn-"].hover-pelorous:hover{
	color:#237da6;
	border-color:#237da6;
	background-color:#237da6;
}
[class*="dg-btn-"].hover-pelorous:hover:before{
	background-color:#237da6;
}
[class*="dg-btn-"].hover-citrus:hover{
	color:#a9d300;
	border-color:#a9d300;
	background-color:#a9d300;
}
[class*="dg-btn-"].hover-citrus:hover:before{
	background-color:#a9d300;
}
[class*="dg-btn-"].hover-blackberry:hover{
	color:#461135;
	border-color:#461135;
	background-color:#461135;
}
[class*="dg-btn-"].hover-blackberry:hover:before{
	background-color:#461135;
}
[class*="dg-btn-"].hover-melon:hover{
	color:#febbb4;
	border-color:#febbb4;
	background-color:#febbb4;
}
[class*="dg-btn-"].hover-melon:hover:before{
	background-color:#febbb4;
}
[class*="dg-btn-"].hover-lipstick:hover{
	color:#9a2c4a;
	border-color:#9a2c4a;
	background-color:#9a2c4a;
}
[class*="dg-btn-"].hover-lipstick:hover:before{
	background-color:#9a2c4a;
}
[class*="dg-btn-"].hover-darkcyan:hover{
	color:#007c8e;
	border-color:#007c8e;
	background-color:#007c8e;
}
[class*="dg-btn-"].hover-darkcyan:hover:before{
	background-color:#007c8e;
}
[class*="dg-btn-"].hover-toryblue:hover{
	color:#40548e;
	border-color:#40548e;
	background-color:#40548e;
}
[class*="dg-btn-"].hover-toryblue:hover:before{
	background-color:#40548e;
}
[class*="dg-btn-"].hover-crimson:hover{
	color:#ef1d38;
	border-color:#ef1d38;
	background-color:#ef1d38;
}
[class*="dg-btn-"].hover-crimson:hover:before{
	background-color:#ef1d38;
}
[class*="dg-btn-"].hover-celery:hover{
	color:#bbb83f;
	border-color:#bbb83f;
	background-color:#bbb83f;
}
[class*="dg-btn-"].hover-celery:hover:before{
	background-color:#bbb83f;
}
[class*="dg-btn-"].hover-pink:hover{
	color:#dc717c;
	border-color:#dc717c;
	background-color:#dc717c;
}
[class*="dg-btn-"].hover-pink:hover:before{
	background-color:#dc717c;
}
[class*="dg-btn-"].hover-citrus2:hover{
	color:#97c200;
	border-color:#97c200;
	background-color:#97c200;
}
[class*="dg-btn-"].hover-citrus2:hover:before{
	background-color:#97c200;
}
[class*="dg-btn-"].hover-comet:hover{
	color:#626073;
	border-color:#626073;
	background-color:#626073;
}
[class*="dg-btn-"].hover-comet:hover:before{
	background-color:#626073;
}
[class*="dg-btn-"].hover-atomic:hover{
	color:#3d4c53;
	border-color:#3d4c53;
	background-color:#3d4c53;
}
[class*="dg-btn-"].hover-atomic:hover:before{
	background-color:#3d4c53;
}
[class*="dg-btn-"].hover-seagreen:hover{
	color:#1cc0be;
	border-color:#1cc0be;
	background-color:#1cc0be;
}
[class*="dg-btn-"].hover-seagreen:hover:before{
	background-color:#1cc0be;
}
[class*="dg-btn-"].hover-shadowgreen:hover{
	color:#94c1ab;
	border-color:#94c1ab;
	background-color:#94c1ab;
}
[class*="dg-btn-"].hover-shadowgreen:hover:before{
	background-color:#94c1ab;
}
[class*="dg-btn-"].hover-silver:hover{
	color:#b8b8b8;
	border-color:#b8b8b8;
	background-color:#b8b8b8;
}
[class*="dg-btn-"].hover-silver:hover:before{
	background-color:#b8b8b8;
}
[class*="dg-btn-"].hover-acapulco:hover{
	color:#62a783;
	border-color:#62a783;
	background-color:#62a783;
}
[class*="dg-btn-"].hover-acapulco:hover:before{
	background-color:#62a783;
}
[class*="dg-btn-"].hover-rock:hover{
	color:#2e313d;
	border-color:#2e313d;
	background-color:#2e313d;
}
[class*="dg-btn-"].hover-rock:hover:before{
	background-color:#2e313d;
}
[class*="dg-btn-"].hover-midnightblue:hover{
	color:#122b58;
	border-color:#122b58;
	background-color:#122b58;
}
[class*="dg-btn-"].hover-midnightblue:hover:before{
	background-color:#122b58;
}
[class*="dg-btn-"].hover-darkturquoise:hover{
	color:#00d7e9;
	border-color:#00d7e9;
	background-color:#00d7e9;
}
[class*="dg-btn-"].hover-darkturquoise:hover:before{
	background-color:#00d7e9;
}
[class*="dg-btn-"].hover-radicalred:hover{
	color:#f82f54;
	border-color:#f82f54;
	background-color:#f82f54;
}
[class*="dg-btn-"].hover-radicalred:hover:before{
	background-color:#f82f54;
}
[class*="dg-btn-"].hover-cadetblue:hover{
	color:#5d9ca8;
	border-color:#5d9ca8;
	background-color:#5d9ca8;
}
[class*="dg-btn-"].hover-cadetblue:hover:before{
	background-color:#5d9ca8;
}
[class*="dg-btn-"].hover-sunshade:hover{
	color:#fa973c;
	border-color:#fa973c;
	background-color:#fa973c;
}
[class*="dg-btn-"].hover-sunshade:hover:before{
	background-color:#fa973c;
}
[class*="dg-btn-"].hover-blackberry:hover{
	color:#361630;
	border-color:#361630;
	background-color:#361630;
}
[class*="dg-btn-"].hover-blackberry:hover:before{
	background-color:#361630;
}
[class*="dg-btn-"].hover-mantis:hover{
	color:#8fc567;
	border-color:#8fc567;
	background-color:#8fc567;
}
[class*="dg-btn-"].hover-mantis:hover:before{
	background-color:#8fc567;
}
[class*="dg-btn-"].hover-saffron:hover{
	color:#f0ca3d;
	border-color:#f0ca3d;
	background-color:#f0ca3d;
}
[class*="dg-btn-"].hover-saffron:hover:before{
	background-color:#f0ca3d;
}
[class*="dg-btn-"].hover-shamrock:hover{
	color:#24d78a;
	border-color:#24d78a;
	background-color:#24d78a;
}
[class*="dg-btn-"].hover-shamrock:hover:before{
	background-color:#24d78a;
}
[class*="dg-btn-"].hover-orange2:hover{
	color:#f4633c;
	border-color:#f4633c;
	background-color:#f4633c;
}
[class*="dg-btn-"].hover-orange2:hover:before{
	background-color:#f4633c;
}

[class*="dg-btn-"].hover-primary:hover{
	color:#337ab7;
	border-color:#337ab7;
	background-color:#337ab7;
}
[class*="dg-btn-"].hover-primary:hover:before{
	background-color:#337ab7;
}
[class*="dg-btn-"].hover-success:hover{
	color:#5cb85c;
	border-color:#5cb85c;
	background-color:#5cb85c;
}
[class*="dg-btn-"].hover-success:hover:before{
	background-color:#5cb85c;
}
[class*="dg-btn-"].hover-info:hover{
	color:#5bc0de;
	border-color:#5bc0de;
	background-color:#5bc0de;
}
[class*="dg-btn-"].hover-info:hover:before{
	background-color:#5bc0de;
}
[class*="dg-btn-"].hover-warning:hover{
	color:#f0ad4e;
	border-color:#f0ad4e;
	background-color:#f0ad4e;
}
[class*="dg-btn-"].hover-warning:hover:before{
	background-color:#f0ad4e;
}
[class*="dg-btn-"].hover-danger:hover{
	color:#d9534f;
	border-color:#d9534f;
	background-color:#d9534f;
}
[class*="dg-btn-"].hover-danger:hover:before{
	background-color:#d9534f;
}


/*btn hover color end*/


.dg-btn-1,
.dg-btn-1:link,
.dg-btn-1:active,
.dg-btn-1:visited,
.dg-btn-1[type="button"]{
	color:#FFF;
	border-color:transparent;
	padding:8px 16px;
	display:inline-block;
}
.dnngo-main .dg-btn-1:hover{
	color:#FFF;
	text-decoration:none;
	background-position:right bottom;
}

.dg-btn-2,
.dg-btn-2:link,
.dg-btn-2:active,
.dg-btn-2:visited,
.dg-btn-2[type="button"]{
	border:1px solid ;
	padding:8px 16px;
	background:transparent;
	display:inline-block;
}
.dnngo-main .dg-btn-2:hover{
	color:#FFFFFF;
	text-decoration:none;
}
.dg-btn-3,
.dg-btn-3:link,
.dg-btn-3:active,
.dg-btn-3:visited,
.dg-btn-3[type="button"]{
	color:#FFF;
	border-bottom:2px solid rgba(0,0,0,0.2)!important;
	padding:8px 16px;
	display:inline-block;
	padding-bottom:6px!important;
}
.dg-btn-3.size-xs{
	padding-bottom:0px!important;
	border-bottom-width:2px!important;
}
.dg-btn-3.size-sm{
	padding-bottom:4px!important;
	border-bottom-width:2px!important;
}
.dg-btn-3.size-lg{
	padding-bottom:8px!important;
	border-bottom-width:3px!important;
}
.dg-btn-3.size-xl{
	padding-bottom:11px!important;
	border-bottom-width:4px!important;
}


.dnngo-main .dg-btn-3:hover{
	color:#FFF;
	text-decoration:none;
}
.dg-btn-4{
	border-color:#222533;
}
.dg-btn-4,
.dg-btn-4:link,
.dg-btn-4:active,
.dg-btn-4:visited,
.dg-btn-4[type="button"]{
	border-width:1px;
	border-style:solid;
	padding:8px 16px;
	position:relative;
	background:transparent;
	z-index:1;
	color:#FFF;
	display:inline-block;
}
.dg-btn-4:before{
	content:"";
	position:absolute;
	z-index:-1;
	top:1px;
	left:1px;
	right:1px;
	bottom:1px;
	background:#222533;	
	border-radius:inherit;
	-moz-border-radius:inherit;
	-webkit-border-radius:inherit;
}
.dnngo-main .dg-btn-4:hover{
	color:#FFF;
	background:none;	
	text-decoration:none;
}
.dnngo-main .dg-btn-4:hover:before{
}

.dg-btn-5,
.dg-btn-5:link,
.dg-btn-5:active,
.dg-btn-5:visited,
.dg-btn-5[type="button"]{
	border-width:1px;
	border-style:solid ;
	border-bottom-width:2px!important;
	background:transparent;
	padding:8px 16px;
	display:inline-block;
	padding-bottom:5px!important;
}
.dnngo-main .dg-btn-5:hover{
	color:#FFFFFF;
	text-decoration:none;
	border-bottom-color:rgba(0,0,0,0.2)!important;
}
.dg-btn-5.size-xs{
	padding-bottom:0px!important;
	border-bottom-width:2px!important;
}
.dg-btn-5.size-sm{
	padding-bottom:4px!important;
	border-bottom-width:2px!important;
}
.dg-btn-5.size-lg{
	padding-bottom:8px!important;
	border-bottom-width:3px!important;
}
.dg-btn-5.size-xl{
	padding-bottom:11px!important;
	border-bottom-width:4px!important;
}



[class*="dg-btn-"].size-xs{
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
}
[class*="dg-btn-"].size-sm{
    padding: 5px 10px;
    font-size: 13px;
    line-height: 1.5;
}
[class*="dg-btn-"]{
	padding: 6px 12px;
	font-size: 13px;
    line-height: 1.42857143;
}
[class*="dg-btn-"].size-lg{
    padding: 10px 16px;
    font-size: 15px;
    line-height: 1.3333333;
}
[class*="dg-btn-"].size-xl{
    padding: 13px 22px;
    font-size: 15px;
    line-height: 1.3;
}
.mr{
	margin-right:5px;
}
.ml{
	margin-left:5px;
}
[class*="dg-btn-"].size-xs .mr{
	margin-right:2px;
}
[class*="dg-btn-"].size-sm .mr{
	margin-right:3px;
}
[class*="dg-btn-"] .mr{
	margin-right:5px;
}
[class*="dg-btn-"].size-lg .mr{
	margin-right:6px;
}
[class*="dg-btn-"].size-xl .mr{
	margin-right:7px;
}
[class*="dg-btn-"].size-xs .ml{
	margin-left:2px;
}
[class*="dg-btn-"].size-sm .ml{
	margin-left:3px;
}
[class*="dg-btn-"] .ml{
	margin-left:5px;
}
[class*="dg-btn-"].size-lg .ml{
	margin-left:6px;
}
[class*="dg-btn-"].size-xl .ml{
	margin-left:7px;
}


[class*="dg-btn-"].ico-line{
	position:relative;
}
[class*="dg-btn-"].ico-line .fa{
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	padding:10px 16px;
	font-size:inherit;
	border-right:1px solid rgba(255,255,255,0.2);
	height:100%;
}
[class*="dg-btn-"].ico-line .fa:after{
	content:"";
	border-right:1px solid rgba(0,0,0,0.2);
	position:absolute;
	right:0;
	top:0;
	bottom:0;
}
[class*="dg-btn-"].ico-line .fa:before{
	display:inline-block;
	vertical-align:middle;
}
[class*="dg-btn-"].size-xs.ico-line{
	padding-left:27px;
	padding-right:5px;
}
[class*="dg-btn-"].size-xs.ico-line .fa{
	padding:0px 5px;
	line-height:20px;
}
[class*="dg-btn-"].size-sm.ico-line{
	padding-left:43px;
	padding-right:10px;
}
[class*="dg-btn-"].size-sm.ico-line .fa{
	padding:0px 10px;
	line-height:28px;
}
[class*="dg-btn-"].ico-line{
	padding-left:47px;
	padding-right:12px;
}
[class*="dg-btn-"].ico-line .fa{
	padding:0px 12px;
	line-height:36px;
}
[class*="dg-btn-"].size-lg.ico-line{
	padding-left:68px;
	padding-right:16px;
}
[class*="dg-btn-"].size-lg.ico-line .fa{
	padding:0px 16px;
	line-height:44px;
}
[class*="dg-btn-"].size-xl.ico-line{
	padding-left:88px;
	padding-right:22px;
}
[class*="dg-btn-"].size-xl.ico-line .fa{
	padding:0px 22px;
	line-height:52px;
}
[class*="dg-btn-"].ico-box{
	position:relative;
	overflow:hidden;
}
[class*="dg-btn-"].ico-box .fa{
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	padding:10px 16px;
	font-size:inherit;
	height:100%;
	background-color:rgba(0,0,0,0.2)
}
[class*="dg-btn-"].ico-box .fa:before{
	display:inline-block;
	vertical-align:middle;
}

[class*="dg-btn-"].size-xs.ico-box{
	padding-left:27px;
	padding-right:5px;
}
[class*="dg-btn-"].size-xs.ico-box .fa{
	padding:0px 5px;
	line-height:20px;
}
[class*="dg-btn-"].size-sm.ico-box{
	padding-left:43px;
	padding-right:10px;
}
[class*="dg-btn-"].size-sm.ico-box .fa{
	padding:0px 10px;
	line-height:28px;
}
[class*="dg-btn-"].ico-box{
	padding-left:47px;
	padding-right:12px;
}
[class*="dg-btn-"].ico-box .fa{
	padding:0px 12px;
	line-height:36px;
}
[class*="dg-btn-"].size-lg.ico-box{
	padding-left:68px;
	padding-right:16px;
}
[class*="dg-btn-"].size-lg.ico-box .fa{
	padding:0px 16px;
	line-height:44px;
}
[class*="dg-btn-"].size-xl.ico-box{
	padding-left:88px;
	padding-right:22px;
}
[class*="dg-btn-"].size-xl.ico-box .fa{
	padding:0px 22px;
	line-height:52px;
}


[class*="dg-btn-"].border-1px{
	border-width:1px;
}
[class*="dg-btn-"].border-2px{
	border-width:2px;
}
[class*="dg-btn-"].border-3px{
	border-width:3px;
}
[class*="dg-btn-"].border-3px:before,
[class*="dg-btn-"].border-4px:before{
	top:2px;
	left:2px;
	right:2px;
	bottom:2px;
}
[class*="dg-btn-"].border-4px{
	border-width:4px;
}
[class*="dg-btn-"].border-5px{
	border-width:5px;
}
[class*="dg-btn-"].border-5px:before,
[class*="dg-btn-"].border-6px:before{
	top:3px;
	left:3px;
	right:3px;
	bottom:3px;
}
[class*="dg-btn-"].border-6px{
	border-width:6px;
}
[class*="dg-btn-"].radius-1px{
		 border-radius:1px;
	-moz-border-radius:1px;
 -webkit-border-radius:1px;
}
[class*="dg-btn-"].radius-2px{
		 border-radius:2px;
	-moz-border-radius:2px;
 -webkit-border-radius:2px;
}
[class*="dg-btn-"].radius-3px{
		 border-radius:3px;
	-moz-border-radius:3px;
 -webkit-border-radius:3px;
}
[class*="dg-btn-"].radius-4px{
		 border-radius:4px;
	-moz-border-radius:4px;
 -webkit-border-radius:4px;
}
[class*="dg-btn-"].radius-5px{
		 border-radius:5px;
	-moz-border-radius:5px;
 -webkit-border-radius:5px;
}
[class*="dg-btn-"].radius-6px{
		 border-radius:6px;
	-moz-border-radius:6px;
 -webkit-border-radius:6px;
}
[class*="dg-btn-"].radius-7px{
		 border-radius:7px;
	-moz-border-radius:7px;
 -webkit-border-radius:7px;
}
[class*="dg-btn-"].radius-8px{
		 border-radius:8px;
	-moz-border-radius:8px;
 -webkit-border-radius:8px;
}
[class*="dg-btn-"].radius-9px{
		 border-radius:9px;
	-moz-border-radius:9px;
 -webkit-border-radius:9px;
}
[class*="dg-btn-"].radius-10px{
		 border-radius:10px;
	-moz-border-radius:10px;
 -webkit-border-radius:10px;
}
[class*="dg-btn-"].radius-15px{
		 border-radius:15px;
	-moz-border-radius:15px;
 -webkit-border-radius:15px;
}

[class*="dg-btn-"].radius-semi-circle{
		 border-radius:1000px;
	-moz-border-radius:1000px;
 -webkit-border-radius:1000px;
}
[class*="dg-btn-"].radius-100{
		 border-radius:100%;
	-moz-border-radius:100%;
 -webkit-border-radius:100%;
}


/* */
.button-title{
	font-size:30px;
	color:#000000;
	margin-bottom:25px;
}
.button-title02{
	font-size:30px;
	color:#10dbe8;
	margin-bottom:25px;
}
.button-title03{
	font-size:30px;
	color:#FFF;
	margin-bottom:25px;
}
.vertical-bottom{
	font-size:13px;
}
.vertical-bottom > a{
	vertical-align:bottom;
	display:inline-block;
	float:none;
	font-size:13px;
	margin-right:40px;
}

.button-list{
	margin:0;
	padding:0;
	list-style:none;
}
.button-list li{
	width:135px;
	float:left;
	text-align:center;
	margin-bottom:40px;
}
.button-list li span{
	display:block;
}
.button-list2{
	margin:0;
	padding:0;
	list-style:none;
}
.button-list2 li{
	float:left;
	margin:0 20px 20px 0;
}

/*table*/
.option-table>thead>tr>th{
	vertical-align:top;
}
.option-table{
	vertical-align:top;
}
.option-table td,
.option-table th{
	vertical-align:top;
}
.option-table  td{
	text-align:center;
	vertical-align:middle!important;
}
.option-table tr td:first-child{
	text-align:left;
}
.option-table .fa-check{
	color:#090
}
.option-table .fa-close{
	color:#C00
}

.option-table table td{
	text-align:left;
	padding:0 10px 3px 0;
}
.dg-btn-1.hover-accent:hover,
.dg-btn-4.hover-accent:hover,
.dg-btn-3.hover-accent:hover{
	color:#FFF!important;
}
.dg-btn-2.hover-accent:hover,
.dg-btn-4.hover-accent:hover,
.dg-btn-5.hover-accent:hover{
	background-color:transparent!important;
}
.dg-btn-1.btn-accent,
.dg-btn-4.btn-accent,
.dg-btn-3.btn-accent{
	color:#FFF;
}
.dg-btn-2.btn-accent,
.dg-btn-4.btn-accent,
.dg-btn-5.btn-accent{
	background-color:transparent;
}
.dg-title-bg01{
	background-color:#fcfcfc;
}
.dg-title-bg02{
	background-color:#f8f8f8;
}
.dg-title-bg03{
	background-color:#f5f5f5;
}
.dg-title-bg04{
	background-color:#f0f0f0;
}
.dg-title-bg05{
	background-color:#777777;
}
.dg-title-bg06{
	background-color:#666666;
}
.dg-title-bg07{
	background-color:#555555;
}
.dg-title-bg08{
	background-color:#444444;
}


.dg-title01 {
	text-align:center;
	margin-bottom:20px;
}
.dg-title01 h3 {
	font-size:30px;
	line-height:1.2;
	color:#20a3f0;
	display:inline-block;
	border-bottom:1px solid #d6d6d6;
	padding:0px;
	margin:0;
}
.dg-title01 p{
	letter-spacing:5px;
}
.dg-title02 {
	text-align:center;
	overflow:hidden;
	margin-bottom:25px;
}
.dg-title02 h3{
	display:inline-block;
	font-size:30px;
	line-height:1.2;
	color:#333333;
	font-weight:bold;
	position:relative;
	padding:0px 25px;
	margin:0px 55px;
}
.dg-title02 h3:before,
.dg-title02 h3:after{
	content:"";
	position:absolute;
	top:50%;
	left:100%;
	width:55px;
	border-top:1px solid #acacac;
	border-bottom:1px solid #757575;
}
.dg-title02 h3:after{
	left:auto;
	right:100%;
}
.dg-title03 {
	text-align:center;
	overflow:hidden;
	margin-bottom:25px;
}
.dg-title03 h3{
	display:inline-block;
	font-size:30px;
	line-height:1.2;
	color:#020202;
	position:relative;
	padding:0px 12px;
	font-weight:normal;
	max-width:80%;
	margin:0px;
}
.dg-title03 h3:before,
.dg-title03 h3:after{
	content:"";
	position:absolute;
	top:50%;
	left:100%;
	width:2000px;
	border-bottom:1px solid #b6b6b6;
}
.dg-title03 h3:after{
	left:auto;
	right:100%;
}
.dg-title04 {
	text-align:center;
	overflow:hidden;
	margin-bottom:25px;
}
.dg-title04 h3{
	display:inline-block;
	font-size:25px;
	line-height:1.2;
	color:#020202;
	position:relative;
	padding:0px 25px;
	font-weight:normal;
	max-width:80%;
	margin:0;
}
.dg-title04 h3:before,
.dg-title04 h3:after{
	content:"";
	position:absolute;
	top:50%;
	left:100%;
	width:2000px;
	border-bottom:1px solid #969696;
	border-top:1px solid #969696;
	height:7px;
	margin-top:-4px;
}
.dg-title04 h3:after{
	left:auto;
	right:100%;
}
.dg-title05 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:25px;
}
.dg-title05:before,
.dg-title05:after{
	content:"";
	display:inline-block;
	height:31px;
	width:7px;
	vertical-align:middle;
	border-left:1px solid #636363;
	border-right:1px solid #636363;
	position:absolute;
	margin-top:-19px;
	top:50%;
}
.dg-title05:after{
	margin-left:-7px;
}
.dg-title05 h3{
	display:inline-block;
	font-size:25px;
	color:#333333;
	position:relative;
	padding:0px 50px;
	font-weight:bold;
	max-width:80%;
	line-height:1.2;
	margin:0;
	letter-spacing:2px;
}
.dg-title05 h3:before,
.dg-title05 h3:after{
	content:"";
	position:absolute;
	top:50%;
	left:100%;
	width:2000px;
	border-bottom:1px solid #636363;
	border-top:1px solid #636363;
	height:7px;
	margin-top:-4px;
}
.dg-title05 h3:after{
	left:auto;
	right:100%;
}
.dg-title06 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:25px;
}
.dg-title06 h3{
	display:inline-block;
	font-size:25px;
	color:#20a3f0;
	position:relative;
	padding:20px 50px 0px;
	font-weight:bold;
	line-height:1.2;
	margin:0;
	letter-spacing:2px;
}
.dg-title06 h3:before{
	content:"";
	position:absolute;
	top:0;
	left:50%;
	width:40px;
	margin-left:-20px;
	border-top:3px solid #20a3f0;
}
.dg-title07 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:25px;
}
.dg-title07 h3{
	display:inline-block;
	font-size:25px;
	color:#20a3f0;
	position:relative;
	padding:17px 5px 18px;
	font-weight:bold;
	max-width:80%;
	font-style:italic;
	margin:0;
	letter-spacing:1px;
}
.dg-title07 h3:before,
.dg-title07 h3:after{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	border-top:1px solid #20a3f0;
	border-bottom:1px solid #20a3f0;
	height:6px;
}
.dg-title07 h3:after{
	top:auto;
	bottom:0;
}
.dg-title08 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:25px;
}
.dg-title08 h3{
	display:inline-block;
	font-size:25px;
	color:#FFF;
	position:relative;
	padding:15px 15px;
	font-weight:bold;
	line-height:1.2;
	background-color:#20a3f0;
	margin:0;
	letter-spacing:2px;
}
.dg-title09 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:25px;
}
.dg-title09 h4{
	font-size:15px;
	color:#333333;
	font-weight:normal;
	margin:0 0 15px;
	line-height:1.2;
	letter-spacing:0.5px;
}
.dg-title09 h3{
	display:inline-block;
	font-size:30px;
	color:#20a3f0;
	position:relative;
	padding:17px 15px 0;
	font-weight:bold;
	line-height:1.2;
	margin:0;
	letter-spacing:2px;
}
.dg-title09 h3:before{
	content:"";
	position:absolute;
	top:0;
	left:50%;
	width:40px;
	margin-left:-20px;
	border-top:3px solid #79c8f6;
}
.dg-title10 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:30px;
}
.dg-title10 h4{
	font-size:20px;
	color:#666666;
	margin:0 0 10px;
	line-height:1.2;
	letter-spacing:1px;
	font-weight:normal;
}
.dg-title10 h3{
	display:inline-block;
	font-size:30px;
	color:#333333;
	position:relative;
	padding:0px 15px 30px;
	font-weight:bold;
	line-height:1.2;
	margin:0;
	letter-spacing:2px;
}
.dg-title10 h3:before{
	content:"";
	position:absolute;
	bottom:0;
	left:50%;
	width:95px;
	margin-left:-48px;
	border-top:3px solid #393939;
}
.dg-title11 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:30px;
}
.dg-title11 .box{
	border:1px solid #b3b3b3;
	display:inline-block;
	padding:20px 20px 20px;
}
.dg-title11 h4{
	font-size:15px;
	color:#666666;
	margin:5px 0 0;
	line-height:1.2;
	letter-spacing:1px;
	font-weight:normal;
}
.dg-title11 h3{
	font-size:30px;
	color:#333333;
	font-weight:bold;
	padding:0px;
	margin:0 0 5px;
	line-height:1.2;
	margin:0;
	letter-spacing:2px;
}
.dg-title12 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:15px;
	font-size:20px;
	color:#333333;
	padding-bottom:20px;
}
.dg-title12 h3{
	display:inline-block;
	font-size:22px;
	color:#FFF;
	background-color:#333333;
	position:relative;
	font-weight:bold;
	line-height:1.2;
	padding:1px 12px 2px;
	margin:0;
	letter-spacing:1px;
}
.dg-title12 h3:before{
	content:"";
	position:absolute;
	bottom:-16px;
	left:50%;
	width:55px;
	margin-left:-28px;
	border-top:1px solid #333333;
}
.dg-title13 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:10px;
	padding-bottom:30px;
}
.dg-title13 h3{
	font-size:30px;
	color:#FFF;
	font-weight:bold;
	line-height:1.2;
	color:#333333;
	padding:30px 20px;
	border:1px solid #b0b0b0;
	border-bottom:none;
	margin:0;
	letter-spacing:1px;
}
.dg-title13 .box{
	display:inline-block;
	position:relative;
}
.dg-title13 .icon{
	position:absolute;
	bottom:-20px;
	left:0;
	color:#21a3f0;
	width:100%;
	overflow:hidden;
	font-size:30px;
	height:40px;
	line-height:40px;
}
.dg-title13 .icon:before,
.dg-title13 .icon:after{
	content:"";
	position:absolute;
	top:19px;
	left:0;
	width:50%;
	border-top:1px solid #b0b0b0;
	margin:0 0 0 -25px;
}
.dg-title13 .icon:after{
	left:auto;
	right:0;
	margin:0 -25px 0 0 ;
}
.dg-title14 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:3px;
}
.dg-title14 h3{
	display:inline-block;
	font-size:30px;
	color:#333333;
	position:relative;
	padding:17px 15px;
	font-weight:bold;
	line-height:1.2;
	margin:28px 0 0;
	letter-spacing:2px;
}
.dg-title14 h3:before{
	content:"";
	position:absolute;
	top:0;
	left:50%;
	width:40px;
	margin-left:-20px;
	border-top:3px solid #333333;
}
.dg-title15 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:28px;
}
.dg-title15 h3{
	font-size:30px;
	color:#333333;
	position:relative;
	font-weight:normal;
	line-height:1.2;
	margin:0;
	letter-spacing:2px;
}
.dg-title15 .icon{
	position:relative;
	display:inline-block;
	font-size:20px;
	margin-bottom:10px;
	color:#333333;
}
.dg-title15 .icon:before,
.dg-title15 .icon:after{
	content:"";
	position:absolute;
	top:19px;
	left:50%;
	width:42px;
	border-top:1px solid #333333;
	margin:0 0 0 25px;
}
.dg-title15 .icon:after{
	left:auto;
	right:50%;
	margin:0 25px 0 0 ;
}
.dg-title16 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:20px;
}
.dg-title16 h3{
	font-size:30px;
	color:#333333;
	position:relative;
	font-weight:normal;
	line-height:1.2;
	margin:0 0 15px;
	letter-spacing:2px;
}
.dg-title16 .number{
	position:relative;
	display:inline-block;
	font-size:30px;
	margin-bottom:10px;
	font-weight:bold;
	line-height:1;
	color:#333333;
}
.dg-title16 .number:before,
.dg-title16 .number:after{
	content:"";
	position:absolute;
	top:50%;
	left:50%;
	width:42px;
	border-top:1px solid #333333;
	border-bottom:1px solid #333333;
	height:4px;
	margin:-1px 0 0 30px;
}
.dg-title16 .number:after{
	left:auto;
	right:50%;
	margin:-1px 30px 0 0 ;
}
.dg-title17 {
	text-align:center;
	overflow:hidden;
	margin-bottom:12px;
}
.dg-title17 h3{
	display:inline-block;
	font-size:30px;
	line-height:1.2;
	color:#FFFFFF;
	position:relative;
	padding:0px 30px;
	margin:0px 55px 10px;
	font-weight:normal;
}
.dg-title17 h3:before,
.dg-title17 h3:after{
	content:"";
	position:absolute;
	top:50%;
	left:100%;
	width:55px;
	border-bottom:1px solid #FFFFFF;
}
.dg-title17 h3:after{
	left:auto;
	right:100%;
}
.dg-title18 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:20px;
}
.dg-title18 h3{
	font-size:30px;
	color:#FFFFFF;
	position:relative;
	font-weight:normal;
	line-height:1.2;
}
.dg-title18 .icon{
	position:relative;
	display:inline-block;
	font-size:20px;
	margin-bottom:10px;
	color:#FFFFFF;
}
.dg-title18 .icon:before,
.dg-title18 .icon:after{
	content:"";
	position:absolute;
	top:19px;
	left:50%;
	width:42px;
	border-top:1px solid #FFFFFF;
	margin:0 0 0 25px;
}
.dg-title18 .icon:after{
	left:auto;
	right:50%;
	margin:0 25px 0 0 ;
}
.dg-title19 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:10px;
	font-size:20px;
	color:#FFFFFF;
	padding-bottom:30px;
}
.dg-title19 h3{
	font-size:25px;
	font-weight:bold;
	line-height:1.2;
	color:#FFFFFF;
	padding:35px 25px;
	border:1px solid #FFFFFF;
	border-bottom:none;
	margin:0;
	letter-spacing:2px;
}
.dg-title19 .box{
	display:inline-block;
	position:relative;
}
.dg-title19 .icon{
	position:absolute;
	bottom:-20px;
	left:0;
	color:#FFFFFF;
	width:100%;
	overflow:hidden;
	font-size:30px;
	height:40px;
	line-height:40px;
}
.dg-title19 .icon:before,
.dg-title19 .icon:after{
	content:"";
	position:absolute;
	top:19px;
	left:0;
	width:50%;
	border-top:1px solid #FFFFFF;
	margin:0 0 0 -25px;
}
.dg-title19 .icon:after{
	left:auto;
	right:0;
	margin:0 -25px 0 0 ;
}
.dg-title20 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:0px;
}
.dg-title20 h4{
	font-size:15px;
	color:#FFF;
	line-height:1.2;
	margin:0 0 15px;
	font-weight:normal;
}
.dg-title20 h3{
	display:inline-block;
	font-size:30px;
	color:#FFF;
	position:relative;
	padding:15px 15px;
	font-weight:bold;
	line-height:1.2;
	letter-spacing:1;
}
.dg-title20 h3:before{
	content:"";
	position:absolute;
	top:0;
	left:50%;
	width:40px;
	margin-left:-20px;
	border-top:3px solid #FFF;
	border-top-color:rgba(255,255,255,0.7);
}
.dg-title21 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:25px;
}
.dg-title21 h3{
	display:inline-block;
	font-size:28px;
	color:#333333;
	position:relative;
	font-weight:normal;
	line-height:1.2;
	padding:0 25px;
	margin:0;
	letter-spacing:2px;
}
.dg-title21 h3:before,
.dg-title21 h3:after{
	content:"";
	position:absolute;
	top:50%;
	left:0;
	width:8px;
	height:8px;
	background-color:#20a3f0;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	margin-top:-4px;
}
.dg-title21 h3:after{
	left:auto;
	right:0;
}
.dg-title22 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:30px;
}
.dg-title22 h3{
	font-size:30px;
	color:#3c3c3c;
	position:relative;
	font-weight:bold;
	line-height:1.2;
	margin:0;
	letter-spacing:1px;
}
.dg-title22 .line{
	position:relative;
	display:inline-block;
	font-size:20px;
	color:#333333;
	width:150px;
	height:1px;
}
.dg-title22 .line:before,
.dg-title22 .line:after{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:66px;
	border-top:1px solid #d0d0d0;
}
.dg-title22 .line:after{
	left:auto;
	right:0;
}
.dg-title22 h3:before{
	content:"";
	width:11px;
	height:11px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border:1px solid #d0d0d0;
	position:absolute;
	bottom:-21px;
	left:50%;
	margin-left:-6px;
}
.dg-title23 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:30px;
}
.dg-title23 h3{
	font-size:30px;
	color:#333333;
	position:relative;
	font-weight:normal;
	line-height:1.2;
	margin:0;
	letter-spacing:1px;
}
.dg-title23 .line{
	position:relative;
	display:inline-block;
	font-size:20px;
	color:#333333;
	width:150px;
	height:22px;
	border-bottom:1px solid #20a3f0;
}
.dg-title23 .line:after{
	content:"";
	width:8px;
	height:8px;
	position:absolute;
	bottom:1px;
	left:50%;
	margin-left:-6px;
	background-color:#20a3f0;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
}
.dg-title24 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:25px;
}
.dg-title24 h4{
	color:#333333;
	font-size:13px;
	line-height:1.2;
	margin:5px 0 0;
	font-weight:normal;
}
.dg-title24 h3{
	font-size:30px;
	color:#333333;
	position:relative;
	line-height:1.2;
	margin:0;
	font-weight:bold;
	letter-spacing:1px;
}
.dg-title25 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:30px;
}
.dg-title25 h4{
	font-size:13px;
	color:#FFF;
	line-height:1.2;
	margin:0 0 2px;
	font-weight:normal;
}
.dg-title25 h3{
	font-size:30px;
	color:#FFF;
	position:relative;
	font-weight:bold;
	line-height:1.2;
	margin:0;
	letter-spacing:1px;
}
.dg-title25 p{
	margin-bottom:0;
}
.dg-title25 .line{
	position:relative;
	display:inline-block;
	font-size:20px;
	color:#333333;
	width:208px;
	border-bottom:1px dashed #20a3f0;
}
.dg-title25 .line:before,
.dg-title25 .line:after{
	content:"";
	width:7px;
	height:7px;
	position:absolute;
	bottom:-4px;
	left:0;
	margin-left:-3px;
	background-color:#20a3f0;
	border-radius:1px;
	-moz-border-radius:1px;
	-webkit-border-radius:1px;
}
.dg-title25 .line:after{
	left:auto;
	right:0;
}
.dg-title26 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:30px;
	color:#FFF;
	font-size:13px;
}
.dg-title26 h3{
	font-size:30px;
	color:#FFF;
	position:relative;
	line-height:1.2;
	margin:0 ;
	padding:0 0 12px;
	font-weight:normal;
	border-bottom:1px solid #20a3f0;
	display:inline-block;
	letter-spacing:2px;
}
.dg-title26 p{
	width:50%;
	margin:auto;
}
.dg-title27 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:25px;
}
.dg-title27 h4{
	margin:auto;
	color:#FFF;
	font-size:13px;
	line-height:1.2;
	margin-bottom:5px;
	font-weight:normal;
}
.dg-title27 h3{
	font-size:30px;
	color:#FFF;
	position:relative;
	line-height:1.2;
	margin:0 0 6px;
	font-weight:bold;
	display:inline-block;
	letter-spacing:1px;
}
.dg-title27 .icon {
	font-size:20px;
}
.dg-title28 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:30px;
}
.dg-title28 h3{
	font-size:30px;
	color:#FFF;
	position:relative;
	font-weight:normal;
	line-height:1.2;
	margin:0;
	padding: 0 0 2px;
	letter-spacing:2px;
}
.dg-title28 .line{
	position:relative;
	display:inline-block;
	font-size:20px;
	width:201px;
	height:1px;
}
.dg-title28 .line:before,
.dg-title28 .line:after{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:89px;
	border-top:1px solid #d0d0d0;
}
.dg-title28 .line:after{
	left:auto;
	right:0;
}
.dg-title28 h3:before{
	content:"";
	width:9px;
	height:9px;
	border-right:1px solid #20a3f0;
	border-bottom:1px solid #20a3f0;
	position:absolute;
	bottom:-20px;
	left:50%;
	margin-left:-6px;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
}

.dg-title29 {
	text-align:center;
	overflow:hidden;
	margin-bottom:25px;
}
.dg-title29 h3{
	display:inline-block;
	font-size:30px;
	line-height:1.2;
	color:#fff;
	font-weight:bold;
	position:relative;
	padding:0px 25px;
	margin:0px 55px;
}
.dg-title29 h3:before,
.dg-title29 h3:after{
	content:"";
	position:absolute;
	top:50%;
	left:100%;
	width:55px;
	border-top:1px solid #acacac;
	border-bottom:1px solid #757575;
}
.dg-title29 h3:after{
	left:auto;
	right:100%;
}



.dg-title30 {
	text-align:center;
	overflow:hidden;
	position:relative;
	padding:25px 0 20px;
	margin-bottom:30px;
}
.dg-title30:before{
	content:"";
	position:absolute;
	top:0;
	left:50%;
	width:14px;
	margin-left:-7px;
	border-top:1px solid #383838;
}
.dg-title30:after{
	content:"";
	position:absolute;
	bottom:0;
	left:50%;
	width:63px;
	margin-left:-34px;
	border-top:1px solid #20a3f0;
}
.dg-title30 h4{
	font-size:13px;
	color:#313131;
	margin:0;
	font-weight:normal;
}
.dg-title30 h3{
	font-size:30px;
	color:#333333;
	position:relative;
	font-weight:bold;
	line-height:1.2;
	margin:0;
	letter-spacing:2px;
}

.dg-title31 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:30px;
}
.dg-title31 .box{
	display:inline-block;
	max-width:80%;
}
.dg-title31:before,
.dg-title31:after{
	content:"";
	display:inline-block;
	height:17px;
	vertical-align:middle;
	border-left:1px solid #d0d0d0;
	position:absolute;
	margin-top:1px;
	top:50%;
}
.dg-title31 p{
	margin:0;
}
.dg-title31 h4{
	color:#313131;
	font-size:13px;
	font-weight:bold;
	margin:0 0 3px;
	line-height:1.2;
	font-weight:normal;
}
.dg-title31 h3{
	display:inline-block;
	font-size:30px;
	color:#333333;
	position:relative;
	padding:0px 15px;
	margin:0;
	font-weight:normal;
	line-height:1.2;
	letter-spacing:2px;
}
.dg-title31 h3:before,
.dg-title31 h3:after{
	content:"";
	position:absolute;
	top:50%;
	left:100%;
	width:135px;
	border-bottom:1px solid #d0d0d0;
}
.dg-title31 h3:after{
	left:auto;
	right:100%;
}
.dg-title32 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:30px;
	color:#313131;
	font-size:13px;
}
.dg-title32 h3{
	font-size:30px;
	color:#333333;
	position:relative;
	line-height:1.2;
	margin:0 ;
	font-weight:bold;
	letter-spacing:2px;
}
.dg-title32 .fa{
	font-size:40px;
	color:#20a3f0;
	margin-bottom:20px;
}
.dg-title33 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:28px;
}
.dg-title33 h3{
	font-size:30px;
	color:#fff;
	position:relative;
	font-weight:normal;
	line-height:1.2;
	margin:0;
	letter-spacing:2px;
}
.dg-title33 .icon{
	position:relative;
	display:inline-block;
	font-size:20px;
	margin-bottom:10px;
	color:#fff;
}
.dg-title33 .icon:before,
.dg-title33 .icon:after{
	content:"";
	position:absolute;
	top:19px;
	left:50%;
	width:42px;
	border-top:1px solid #fff;
	margin:0 0 0 25px;
}
.dg-title33 .icon:after{
	left:auto;
	right:50%;
	margin:0 25px 0 0 ;
}


.img-border{
	border:1px solid #333
}
.clients-bg01{
	background:url("/Portals/_default/Skins/ForVend/images/clients-bg01.jpg") center center no-repeat;
	background-size:cover;
}
.clients-bg02{
	background:#f9f9f9;
}
.clients-bg03{
	background:url("/Portals/_default/Skins/ForVend/images/clients-bg03.jpg") center center no-repeat;
	background-size:cover;
}
.clients-bg04{
	background:url("/Portals/_default/Skins/ForVend/images/clients-bg04.jpg") center center no-repeat;
	background-size:cover;
}
.clients-bg05{
	background-size:cover;
	background-color:#000;
}
.clients-bg06{
	background:url("/Portals/_default/Skins/ForVend/images/clients-bg06.jpg") center center no-repeat;
	background-size:cover;
}

.clients-text {
	width:50%;
	margin:auto;
	text-align:center;
}
.clients-title{
	color:#ffffff;
	font-size:20px;
}
.clients-title:after{
	content:"";
	color:#ffffff;
	width:28px;
	border-bottom:3px solid #20a3f0;
	display:block;
	margin:10px 0 10px;
}
.clients-title02 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:30px;
	font-size:15px;
	color:#333333;
}
.clients-title02 .box{
	border:1px solid #333333;
	display:inline-block;
	padding:20px 50px 25px;
}
.clients-title02 h3{
	font-size:30px;
	color:#20a3f0;
	font-weight:bold;
	padding:0px;
	margin:0 0 5px;
	line-height:1.2;
}
.clients-title02 p{
	margin:0;
	line-height:1.2;
}
.clients-title03 h3{
	color:#333333;
	margin-bottom:15px;
	font-size:20px;
	color:#424242;
	padding:0 0 0 0;
	margin:0;
}
.clients-con{
   margin:0;
   padding:0;
}
.clients-bnt01 a,
.clients-bnt01 a:link{
    padding: 10px 37px;
    font-size: 15px;
    font-weight:normal;
    line-height: 1.2;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	color:#fff!important;
	background-color:#20a3f0;
	display:inline-block;
	transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}

.clients-bnt01 a:hover{
   background-color:#444;
   text-decoration:none;
}
.clients-con li{
   list-style:none;  
   padding:5px 0;
}
.clients-con li span{
  font-size:16px;
  display:inline-block;
  padding:0 10px 0 0;
}
.clients-title03 h3:after{
	content:"";
	color:#ffffff;
	width:28px;
	border-bottom:3px solid #20a3f0;
	display:block;
	margin:15px 0 10px;
}
.clients-title03 h6{
	font-size:15px;
	color:#20a3f0;
}

.clients-textlist01 {
	margin:0;
	padding:0;
	list-style:none;
}
.clients-textlist01 li {
	float:left;
	width:50%;
	padding:10px 0 10px 30px;
	position:relative;
	line-height:1.2;
}
.clients-textlist01 li:before{
	content:"\f138";
	display:inline-block;
	vertical-align:middle;
	margin:0 5px 2px 0;
	font-family:"FontAwesome";
	position:absolute;
	left:3px;	
	
	
}
.clients-list01 {
	list-style:none;
	margin:0;
	padding:10px 0 ;
	overflow:hidden;
	border-bottom:1px dashed #cccccc;
}
.clients-list01:last-child{
	border-bottom:none
}
.clients-list01 li{
	float:left;
	width:20%;
	text-align:center;
	border-right:1px dashed #cccccc;
	padding:7px 0;
}
.clients-list01 li:last-child{
	border-right:none
}
.clients-list01 li img{
	max-width:100%;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.clients-list01 li:hover img {
	opacity:0.3;
	filter:alpha(opacity=30);
}
.clients-list02 {
	margin:0;
	padding:0;
	list-style:none;
	overflow:hidden;
	width:100%;
}
.clients-list02 li{
	margin:0 0px -1px -1px;
	padding:0;
	list-style:none;
	float:left;
	width:33.3333%;
	position:relative;
	text-align:center;
	padding-bottom:0;
	padding-top:0;
}
.clients-list02 li:before{
	content:"";
	position:absolute;
	top:18px;
	bottom:18px;
	left:0px;
	border-left:1px solid #616165;
	border-left-color:rgba(255,255,255,0.2);
}
.clients-list02 li:after{
	content:"";
	position:absolute;
	bottom:0px;
	left:18px;
	right:18px;
	border-bottom:1px solid #ffffff;
	border-bottom-color:rgba(255,255,255,0.3);
}
.clients-list02.line-dark li:before{
	border-left:1px solid #c6c6c6;
}
.clients-list02.line-dark li:after{
	border-bottom:1px solid #c6c6c6;
}
.clients-list02 li img{
	max-width:100%;
}
.clients-list03 {
	margin:0;
	padding:0;
	list-style:none;
	overflow:hidden;
	width:100%;
}
.clients-list03 li{
	margin:0 0px -1px -1px;
	padding:25px 0;
	list-style:none;
	float:left;
	width:25%;
	position:relative;
	text-align:center;
}
.clients-list03 li:before{
	content:"";
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	border-left:1px solid #cccccc;
}
.clients-list03 li:after{
	content:"";
	position:absolute;
	bottom:0px;
	left:0px;
	right:0px;
	border-bottom:1px solid #cccccc;
}
.clients-list03 li img{
	max-width:100%;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.clients-list03 li:hover img {
	opacity:0.6;
	filter:alpha(opacity=60);
}
.clients-list04 {
	margin:0;
	padding:0;
	list-style:none;
	overflow:hidden;
	width:100%;
}
.clients-list04 li{
	margin:0 0px -1px -1px;
	padding:25px 0;
	list-style:none;
	float:left;
	width:25%;
	position:relative;
	text-align:center;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
	z-index:1;
}
.clients-list04 li:before{
	content:"";
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	border-left:1px solid #20a3f0;
	border-bottom:1px solid #20a3f0;
	opacity:0.5;
	filter:alpha(opacity=0.5);
	z-index:-1;
}
.clients-list04 li:after{
	content:"";
	position:absolute;
	top:0;
	bottom:0px;
	left:0px;
	right:0px;
	z-index:-1;
	opacity:0;
	filter:alpha(opacity=0);
	visibility:hidden;
	background-color:#20a3f0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.clients-list04 li:hover:after{
	opacity:0.5;
	filter:alpha(opacity=50);
	visibility:visible;
}
.clients-list04 li img{
	max-width:100%;
}
.clients-list05 {
	margin:0 auto;
	padding:0;
	list-style:none;
	overflow:hidden;
	width:90%;
}
.clients-list05 li{
	margin:0 ;
	padding: 0;
	list-style:none;
	float:left;
	width:12.5%;
	position:relative;
	text-align:center;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.clients-list05 li img{
	max-width:100%;
}
.clients-list06 {
	margin:0;
	padding:0;
	list-style:none;
	overflow:hidden;
	width:100%;
	border-right:1px solid #20a3f0;
	border-top:1px solid #20a3f0;
}
.clients-list06 li{
	margin:0 0px 0px 0px;
	padding: 0;
	list-style:none;
	float:left;
	width:25%;
	position:relative;
	text-align:center;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
	z-index:1;
	background-color:transparent;
}
.clients-list06 li:before{
	content:"";
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	border-left:1px solid #20a3f0;
	border-bottom:1px solid #20a3f0;
	z-index:-1;
}
.clients-list06 li:hover{
	background-color:#f9f9f9;
}
.clients-list06 li img{
	max-width:100%;
}
.clients-list07 {
	margin:0;
	padding:0;
	list-style:none;
	overflow:hidden;
	width:100%;
}
.clients-list07 li{
	margin:0 0px -1px -1px;
	padding:15px 0;
	list-style:none;
	float:left;
	width:25%;
	position:relative;
	text-align:center;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
	z-index:1;
}
.clients-list07 li:hover{
	background-color:#20a3f0;
}
.clients-list07 li img{
	max-width:100%;
}
.clients-carousel01 .img_box{
	text-align:center;
	margin:0px 14px;
	border-bottom:1px solid #dcdbdb;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.clients-carousel01 .img_box a{
	display:block;
}
.clients-carousel01 .img_box:before{
	content:"";
	border:7px solid transparent;
	border-bottom-color:#20a3f0;
	position:absolute;
	bottom:0;
	left:50%;
	margin-left:-3px;
	opacity:0;
	visibility:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.clients-carousel01 .img_box:hover{
	border-color:#20a3f0;
}
.clients-carousel01 .img_box:hover:before{
	opacity:1;
	visibility:visible;
}
.clients-carousel01 .owl-pagination{
	margin-top:40px;
}
.clients-carousel01 .owl-page{
	background-color:#e6e6e6;
	border:none;
	height:11px;
	width:11px;
}
.clients-carousel01 .owl-page.active{
	background-color:#20a3f0
}
.clients-carousel02 .img_box{
	text-align:center;
	margin:0px 14px;
	background:#f9f9f9;
	border:1px solid #f9f9f9;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.clients-carousel02 .img_box a{
	display:block;
}
.clients-carousel02 .img_box:hover{
	background-color:transparent;
	border-color:#20a3f0
}
.clients-carousel02 .owl-buttons .owl-prev,
.clients-carousel02 .owl-buttons .owl-next {
	width: 31px;
	height: 31px;
	line-height: 31px;
	margin: -16px 0 0 0;
	background-color:transparent;
	border:1px solid #e1e1e1;
	border-radius:0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
.clients-carousel02 .owl-buttons .owl-prev:before,
.clients-carousel02 .owl-buttons .owl-next:before{
	border-color:#e1e1e1;
	border-width:1px ;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	margin:-4px 0 0 -2px;
}
.clients-carousel02 .owl-buttons .owl-next:before{
	margin:-4px 0 0 -4px;
}
.clients-carousel03 .img_box{
	text-align:center;
	margin:0px 14px;
	background:#333333;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.clients-carousel03 .img_box a{
	display:block;
}
.clients-carousel03 .img_box:hover{
	background-color:#20a3f0;
}
.clients-carousel03 .owl-buttons .owl-prev,
.clients-carousel03 .owl-buttons .owl-next {
	width: 33px;
	height: 33px;
	line-height: 33px;
	margin: -17px 0 0 0;
	background-color:transparent;
	border:1px solid #e1e1e1;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.clients-carousel03 .owl-buttons .owl-prev:before,
.clients-carousel03 .owl-buttons .owl-next:before{
	border-color:#e1e1e1;
	border-width:1px ;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	margin:-4px 0 0 -2px;
}
.clients-carousel03 .owl-buttons .owl-next:before{
	margin:-4px 0 0 -6px;
}
.clients-carousel04{
   padding:0 80px;
}
.clients-carousel04 .img_box{
	text-align:center;
	margin:0px 0;
	background:transparent;
	position:relative;
}
.clients-carousel04 .img_box a,
.clients-carousel04 .img_box a,
.clients-carousel04 .img_box,
.clients-carousel04 .img_box{
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.clients-carousel04 .img_box a:before,
.clients-carousel04 .img_box a:after,
.clients-carousel04 .img_box:before,
.clients-carousel04 .img_box:after{
/*    filter: alpha(opacity=100);
    opacity: 1;*/
	border:transparent;
		transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
	position:absolute;
	width:30px;
	height:30px;
	content:"";
}
.clients-carousel04 .img_box:hover:before{
   position:absolute;
   left:4px;
   top:4px;
   width:30px;
   height:30px;
   border-left:2px solid #20a3f0;
   border-top:2px solid #20a3f0;
   content:"";
}
.clients-carousel04 .img_box:hover:after{
   position:absolute;
   right:4px;
   top:4px;
   width:30px;
   height:30px;
   border-right:2px solid #20a3f0;
   border-top:2px solid #20a3f0;
   content:"";
}
.clients-carousel04 .img_box a:hover:before{
   position:absolute;
   left:4px;
   bottom:4px;
   width:30px;
   height:30px;
   border-left:2px solid #20a3f0;
   border-bottom:2px solid #20a3f0;
   content:"";
}
.clients-carousel04 .img_box a:hover:after{
   position:absolute;
   right:4px;
   bottom:4px;
   width:30px;
   height:30px;
   border-right:2px solid #20a3f0;
   border-bottom:2px solid #20a3f0;
   content:"";
}
.clients-carousel04 .img_box a{
	display:block;
}
.clients-carousel04 .img_box:hover{
	background-color:transparent;
	border-color:#20a3f0
}
.clients-carousel04 .owl-buttons .owl-prev,
.clients-carousel04 .owl-buttons .owl-next {
	width: 30px;
	height: 40px;
	line-height: 40px;
	margin: -15px 0 0 0;
	background-color:#020202;
	border-radius:3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
    left:0
}
.clients-carousel04 .owl-buttons .owl-next{
	right:0;
	left:auto;
}
.clients-carousel04 .owl-buttons .owl-prev:before,
.clients-carousel04 .owl-buttons .owl-next:before{
	border-color:#e1e1e1;
	border-width:1px ;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	margin:-4px 0 0 -2px;
}
.clients-carousel04 .owl-buttons .owl-next:before{
	margin:-4px 0 0 -7px;
}
.clients-title01{
    text-align: center;
	margin-bottom:30px;
}
.clients-title01 h2{
    font-size: 24px;
    color: #333333;
    font-weight: normal;
    line-height: 1.2;
    display: inline-block;
    position: relative;
    padding: 0 0 20px 0;
	position:relative;
	margin:0 0 15px 0;
}
.clients-title01 h2:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -20px;
    width: 40px;
	background-color: #20a3f0;
	height:2px;
}
@media only screen and (min-width:1200px) {
.clients-title01 p{
  padding:0 270px;
}
}
@media only screen and (min-width:1650px) {
.clients-carousel04 .owl-buttons .owl-prev,
.clients-carousel04 .owl-buttons .owl-next {
    left:100px
}
.clients-carousel04 .owl-buttons .owl-next{
	right:100px;
	left:auto;
}
.clients-carousel04{
   padding:0 200px;
}
}
@media only screen and (max-width:767px) {
.clients-list01{
   display:inline;
}
.clients-list01 li{
   border:0;
}
.clients-list04 li:before{
   border-left:0;
}
.clients-textlist01 li{
   float:none;
   width:100%;
}
.clients-list01 li,
.clients-list02 li,
.clients-list03 li,
.clients-list04 li,
.clients-list05 li,
.clients-list06 li,
.clients-list07 li{
  float:left;
  width:50%;
}
.clients-list07 li{
  padding:0;
}


}
.tab-title h3{
  color:#424242;
  line-height:1.3;
  margin:0 0 40px 0;  
}
[class*="dg-tabs-"]:after,
.resp-tabs-container:after,
.resp-tab-container:after  {
	clear: both;
	content: ".";
	height: 0px;
	font-size: 0px;
	visibility: hidden;
	display: block;
}
.dg-tabs-top ,
.dg-tabs-bottom {
	clear: both;
}
.dg-tabs-top ul.resp-tabs-list ,
.dg-tabs-bottom ul.resp-tabs-list {
	margin: 0;
	padding:0;
	display:inline-block;
	border-left: 1px solid #e8e8e8;
	vertical-align:bottom;
}
.dg-tabs-top .resp-tabs-container ,
.dg-tabs-bottom .resp-tabs-container {
	padding: 0;
	margin: 0 0 8px;
	clear: both;
	border: 1px solid #e8e8e8;
}
.dg-tabs-top .resp_margin,
.dg-tabs-bottom .resp_margin,
.dg-tabs-left .resp_margin, 
.dg-tabs-right .resp_margin{
	padding:20px 20px;
}

.dg-tabs-top ul.resp-tabs-list li ,
.dg-tabs-bottom ul.resp-tabs-list li {
	font-size: 15px;
	margin: 0;
	list-style: none;
	border-top: 1px solid #e8e8e8;
	border-right: 1px solid #e8e8e8;
	margin-bottom: -1px;
	float: left;
	position: relative;
	z-index: 1;
	padding: 8px 15px;
	white-space: nowrap;
	cursor: pointer;
    transition:background-color ease-in 200ms,color ease-in 200ms;
    -moz-transition:background-color ease-in 200ms,color ease-in 200ms;
    -webkit-transition:background-color ease-in 200ms,color ease-in 200ms;
    -o-transition:background-color ease-in 200ms,color ease-in 200ms;
    -ms-transition:background-color ease-in 200ms,color ease-in 200ms;	
	color:#424242;
}
.dg-tabs-top ul.resp-tabs-list li:hover ,
.dg-tabs-bottom ul.resp-tabs-list li:hover {
	color: #333;
	background: #eeeeee;
}
.dg-tabs-top ul.resp-tabs-list li.resp-tab-active ,
.dg-tabs-bottom ul.resp-tabs-list li.resp-tab-active {
	position: relative;
	z-index: 1;
	color: #FFF;
}
.dg-tabs-top ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top ul.resp-tabs-list li.resp-tab-active, 
.dg-tabs-bottom ul.resp-tabs-list li.resp-tab-active:hover ,
.dg-tabs-bottom ul.resp-tabs-list li.resp-tab-active:hover {
}
.dg-tabs-top ul.resp-tabs-list li.resp-tab-active ,
.dg-tabs-bottom ul.resp-tabs-list li.resp-tab-active {
	background-color: #FFF;
	color: #20a3f0;
}
.dg-tabs-top h2.resp-accordion, 
.dg-tabs-top .resp_container ,
.dg-tabs-bottom h2.resp-accordion, 
.dg-tabs-bottom .resp_container {
	display: none;
}

.dg-tabs-bottom ul.resp-tabs-list{
	margin:0 0 8px;
}
.dg-tabs-bottom .resp-tabs-container {
    margin:0;
}
.dg-tabs-bottom ul.resp-tabs-list li{
	border-top:none;
	border-bottom: 1px solid #e8e8e8;
	margin-top: -1px;
}
.dg-tabs-left ,
.dg-tabs-right {
	clear: both;
}
.dg-tabs-left .resp-tabs-container ,
.dg-tabs-right .resp-tabs-container{
	padding: 0;
	margin: 0 0 8px;
	border: 1px solid #e8e8e8;
	overflow: auto;
}
.dg-tabs-left ul.resp-tabs-list ,
.dg-tabs-right ul.resp-tabs-list {
	float: left;
	margin: 0 -1px 0 0;
	padding:0;
	border-bottom: 1px solid #e8e8e8;
}
.dg-tabs-left ul.resp-tabs-list li,
.dg-tabs-right ul.resp-tabs-list li {
	font-size: 13px;
	color:#424242;
	margin: 0;
	list-style: none;
	border-top: 1px solid #e8e8e8;
	border-left: 1px solid #e8e8e8;
	position: relative;
	z-index: 1;
	min-width: 120px;
	padding: 8px 15px;
	white-space: nowrap;
	cursor: pointer;
	text-align:right;
    transition:background-color ease-in 200ms,color ease-in 200ms;
    -moz-transition:background-color ease-in 200ms,color ease-in 200ms;
    -webkit-transition:background-color ease-in 200ms,color ease-in 200ms;
    -o-transition:background-color ease-in 200ms,color ease-in 200ms;
    -ms-transition:background-color ease-in 200ms,color ease-in 200ms;	
}

.dg-tabs-left ul.resp-tabs-list li:hover,
.dg-tabs-right ul.resp-tabs-list li:hover {
	background: #eeeeee;
	color: #333;
}
.dg-tabs-left ul.resp-tabs-list li.resp-tab-active ,
.dg-tabs-right ul.resp-tabs-list li.resp-tab-active {
	position: relative;
	z-index: 1;
	color: #20a3f0;
	background-color: #FFF
}
.dg-tabs-left h2.resp-accordion, 
.dg-tabs-left .resp_container ,
.dg-tabs-right h2.resp-accordion, 
.dg-tabs-right .resp_container {
	display: none;
}

.dg-tabs-right ul.resp-tabs-list{
	float:right;
	margin:0 0 0 -1px;
}
.dg-tabs-right .resp-tabs-container {
    margin:0;
}
.dg-tabs-right ul.resp-tabs-list li{
	border-left:none;
	border-right: 1px solid #e8e8e8;
	text-align:left;
}

@media only screen and (max-width:768px) {
	[class*="dg-tabs-"] ul.resp-tabs-list {
		display: none;
	}
	[class*="dg-tabs-"] h2.resp-accordion {
		border: 1px solid #e1e1e1;
		border-bottom: none;
		font-size: 15px;
		font-weight: normal;
		padding: 8px 15px;
		cursor: pointer;
		color: #919191;
		margin: 0;
		display: block;
		transition: all ease-in 200ms;
		-moz-transition: all ease-in 200ms;/* Firefox 4 */
		-webkit-transition:all ease-in 200ms;/* Safari and Chrome */
		-o-transition:all ease-in 200ms;/* Opera */
		-ms-transition:all ease-in 200ms;/* IE9? */
	}
	[class*="dg-tabs-"] h2.resp-accordion:hover{
		background: #eeeeee;
		color: #333333;
	}
	[class*="dg-tabs-"] h2.resp-tab-active, 
	[class*="dg-tabs-"] h2.resp-tab-active:hover {
		background: #20a3f0;
		color: #FFF;
	}
	[class*="dg-tabs-"] .resp-arrow {
		float: right;
		position: relative;
		top: 1px;
		display: inline-block;
		font-family: 'FontAwesome';
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		margin-top: 10px;
	}
	[class*="dg-tabs-"] .resp-arrow:before{
		content: "\f067";
	}
	[class*="dg-tabs-"] .resp-tab-active .resp-arrow:before{
		content: "\f068";
	}

	[class*="dg-tabs-"] .resp-tabs-container  {
		width: 100%;
		border: none;
		border-bottom: 1px solid #e1e1e1;
	}
	[class*="dg-tabs-"] .resp-tab-content {
		border: 1px solid #e1e1e1;
		border-bottom: none;
		width: auto !important;
		display: none;
	}
	[class*="dg-tabs-"] .resp-tabs-container{
		margin-bottom:8px;
	}
}

/*dg-tabs-top01*/
.dg-tabs-top01 ul.resp-tabs-list{
	border:none;
}
.dg-tabs-top01 ul.resp-tabs-list li{
	border:none;
	padding:10px 20px;
	border-bottom:1px solid transparent;
		transition: all ease-in 200ms;
		-moz-transition: all ease-in 200ms;/* Firefox 4 */
		-webkit-transition:all ease-in 200ms;/* Safari and Chrome */
		-o-transition:all ease-in 200ms;/* Opera */
		-ms-transition:all ease-in 200ms;/* IE9? */
}
.dg-tabs-top01 ul.resp-tabs-list li:hover,
.dg-tabs-top01 ul.resp-tabs-list li.resp-tab-active{
	color:#424242;
	border-bottom-color:#20a3f0;
	background:none;
}
.dg-tabs-top01 .resp-tabs-container{
	border:none;
	border-top:1px solid #e0dede;
}
.dg-tabs-top01 .resp_margin{
	padding:20px 20px 0 20px;
}
/*dg-tabs-top02*/
.dg-tabs-top02 ul.resp-tabs-list{
	border:none;
	margin:0 0 0 20px;
}
.dg-tabs-top02 ul.resp-tabs-list li{
	color:#272727;
	border:1px solid transparent;
	border-bottom:none;
	padding:15px 20px 11px 20px;
}
.dg-tabs-top02 ul.resp-tabs-list li.resp-tab-active{
	border-color:#e0dede;
	color:#272727;
}
.dg-tabs-top02 ul.resp-tabs-list li .fa,
.dg-tabs-top02 h2.resp-accordion .fa{
	margin-right:6px;
	font-size:16px;
	width:20px;
	height:20px;
	line-height:20px;
	text-align:center;
	display:inline-block;
}
.dg-tabs-top02 .resp-tabs-container{
    border:0;   
    border-top: 1px solid #e8e8e8;
}
.dg-tabs-top02 .resp_margin {
    padding: 20px 20px 0 20px;
}
/*dg-tabs-top03*/
.dg-tabs-top03 ul.resp-tabs-list li span{
    padding:11px 20px;
	display:inline-block;
	line-height:1.2;
}
.dg-tabs-top03 ul.resp-tabs-list li{
    margin-top:1px;
	padding:0;
}
.dg-tabs-top03 ul.resp-tabs-list li.resp-tab-active{
    border-top: 2px solid #20a3f0;
	margin-top: 0;	
}
.dg-tabs-top03 ul.resp-tabs-list li.resp-tab-active{   
    color: #424242;
}	
/*dg-tabs-top04*/
.dg-tabs-top04 ul.resp-tabs-list li span{
    padding:11px 20px;
	display:inline-block;
	line-height:1.2;	
}
.dg-tabs-top04 ul.resp-tabs-list li{
    margin-top:1px;
	padding:0;
	margin-bottom:0;
}
.dg-tabs-top04 ul.resp-tabs-list li.resp-tab-active{
    border-top: 2px solid #20a3f0;
	margin-top: 0;
	color: #424242;	
	-moz-box-shadow:3px 0 6px 0px #e0e0e0; 
	-webkit-box-shadow:3px 0 6px 0px #e0e0e0; 
	box-shadow:3px 0 6px 0px #e0e0e0;
}
/*dg-tabs-top05*/
.dg-tabs-bg01{
       background: url("/Portals/_default/Skins/ForVend/images/dg-tabs-bg01.jpg") left top no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
	padding:10px 0;
}
.dg-tabs-top05 ul.resp-tabs-list{   
    border-radius: 2px 0 0 0;
}   
.dg-tabs-top05,
.dg-tabs-top05 ul.resp-tabs-list li{
   color:#fff;
}
.dg-tabs-top05 ul.resp-tabs-list li{
   padding:1px 0 0 0;
}
.dg-tabs-top05 ul.resp-tabs-list li span{
    padding:11px 20px;
	display:inline-block;
	line-height:1.2;
}
.dg-tabs-top05 ul.resp-tabs-list li em{
    display:inline-block;
	padding:0 10px 0 0;}

.dg-tabs-top05 ul.resp-tabs-list li.resp-tab-active{
    border-top: 2px solid #20a3f0;
	padding: 0;
	background-color:transparent;
	color: #fff;	
}
.dg-tabs-top05 .resp-tabs-container{
    border:1px solid #b6b6b6;
}
.dg-tabs-top05 ul.resp-tabs-list li{   
    border-top: 1px solid #b6b6b6;
    border-right: 1px solid #b6b6b6;
}
/*dg-tabs-top06*/
.dg-tabs-top06,
.dg-tabs-top06 ul.resp-tabs-list li{
    color:#fff;
}
.dg-tabs-top06 ul.resp-tabs-list li span{
    padding:11px 20px;
	display:inline-block;
	line-height:1.2; 	
}
.dg-tabs-top06 ul.resp-tabs-list li{
    padding:1px 0 0 0;	
}
.dg-tabs-top06 ul.resp-tabs-list li em{
    display:inline-block;
	padding:0 10px 0 0;
}
.dg-tabs-top06 ul.resp-tabs-list li.resp-tab-active{
    border-top: 2px solid #20a3f0;
	padding: 0;
	background-color:transparent;	
	position:relative;	
}
.dg-tabs-top06 ul.resp-tabs-list li.resp-tab-active span{
}
.dg-tabs-top06 ul.resp-tabs-list li.resp-tab-active:before {
    border: 3px solid transparent;
    border-top: 3px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    margin: 0 0 0 -2px;
} 
.dg-tabs-top06 .resp-tabs-container{
    border:1px solid #b6b6b6;
}
.dg-tabs-top06 ul.resp-tabs-list li{   
    border-top: 1px solid #b6b6b6;
    border-right: 1px solid #b6b6b6;
}
/*dg-tabs-top07*/
.dg-tabs-top07 ul.resp-tabs-list li{
	font-size:15px;	
	border:0;	
	padding:0;
}
.dg-tabs-top07 ul.resp-tabs-list li span{
  padding:0 20px;
  display:inline-block;
  border-top: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;  
  height:40px;
  line-height:40px;
}
.dg-tabs-top07 ul.resp-tabs-list li:last-child span{
   border-right: 1px solid #e8e8e8; 
}
.dg-tabs-top07 ul.resp-tabs-list li.resp-tab-active span{	
	 margin-top:-10px;
	 border-right:1px solid #e8e8e8;
	 margin-right:-1px;	 
	 color:#424242;
	 height:50px;
	 line-height:40px;
	 padding-top:10px;
	 background-color:#fff;
}
.dg-tabs-top07 ul.resp-tabs-list li .fa,
.dg-tabs-top07 h2.resp-accordion .fa{
	margin-right:6px;
	font-size:16px;
	width:20px;
	height:20px;
	line-height:20px;
	text-align:center;
	display:inline-block;
}
.dg-tabs-top07 ul.resp-tabs-list{
  border:0;
}
.dg-tabs-top07 ul.resp-tabs-list li:hover{
    color: #fff;
    background:#20a3f0;
}
/*dg-tabs-top08*/
.dg-tabs-top08 ul.resp-tabs-list{
  border:0; 
  margin:0 0 0 1px;
}
.dg-tabs-top08 ul.resp-tabs-list li{
	color:#383838;
	font-size:15px;	
	border:0;	
	padding:0;	
	background:#e8e7e7;
}
.dg-tabs-top08 ul.resp-tabs-list li span{
  padding:0 20px;
  display:inline-block;
  border-top: 1px solid #e8e8e8;
  border-right: 1px solid #fff; 
  height:40px;
  line-height:40px;  
}
.dg-tabs-top08 ul.resp-tabs-list li.resp-tab-active{
  margin:0 0 0 -1px;
}
.dg-tabs-top08 ul.resp-tabs-list li.resp-tab-active span{	
	 margin-top:-10px;
	 margin-right:0;
	 border-right:1px solid #e8e8e8;
	 border-left:1px solid #e8e8e8;	
	 border-radius:5px 5px 0 0;
	 background:#fff;
	 color:#383838;
	 padding-top:10px;
	 height:50px;
	 line-height:40px;
	 background-color:#fff;
}
.dg-tabs-top08 ul.resp-tabs-list li .fa,
.dg-tabs-top08 h2.resp-accordion .fa{
	margin-right:6px;
	font-size:16px;
	width:20px;
	height:20px;
	line-height:20px;
	text-align:center;
	display:inline-block;
}
.dg-tabs-top08 ul.resp-tabs-list li:hover{
    color: #fff;
    background:#20a3f0;
}
.dg-tabs-top08 .resp_margin{
    padding:30px;
}
/*dg-tabs-top09*/
.dg-tabs-top09 ul.resp-tabs-list li{
	font-size:15px;	
	padding:11px 20px;
	line-height:1.2;
	 background:#f0f0f0;
	 border-right:1px solid #fff;
}
.dg-tabs-top09 ul.resp-tabs-list li.resp-tab-active{
   border-bottom:1px solid #20a3f0;
   color:#20a3f0;  
}
.dg-tabs-top09 ul.resp-tabs-list li.resp-tab-active:before {
    border: 3px solid transparent;
    border-top: 3px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom:-7px;
    width: 0;
    margin: 0 0 0 -2px;
}
.dg-tabs-bg02{
   background:#f9f9f9;
   padding:20px 0
 }
.dg-tabs-top09 ul.resp-tabs-list li:hover{
    color: #fff;
    background:#20a3f0;
}
.dg-tabs-top09 ul.resp-tabs-list li.resp-tab-active:hover{ 
   color:#20a3f0;
   background:#fff;   
}
/*dg-tabs-top10*/
.dg-tabs-top10 ul.resp-tabs-list li{
   background:#f0f0f0;
    padding:16px 20px;
   line-height:1.2;
   font-size:15px;
   border:0;
   margin:0;
   border-right:1px solid #fff;
}
.dg-tabs-top10 ul.resp-tabs-list li.resp-tab-active{
   color:#fff;
   position:relative;
   border-radius:10px 0 0 0;
}
.dg-tabs-top10 .resp-tabs-container .resp-tab-content-active .resp_margin{
  color:#fff;
}
.dg-tabs-top10 .resp-tabs-container .resp-tab-content-active .resp_margin h2{
  color:#fff;
}
.dg-tabs-top10 ul.resp-tabs-list li.resp-tab-active:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    content: "";
    display: block;
    border:5px solid #7201aa;
    border-color:#1f6c9a #1f6c9a transparent transparent;
    background-color: #f9f9f9; 
	 transform:rotate(446deg);
    -ms-transform:rotate(446deg);
    -moz-transform:rotate(446deg);
    -webkit-transform:rotate(446deg);
    -o-transform:rotate(446deg);
}
.dg-tabs-top10 ul.resp-tabs-list{
  border:0;
}
.dg-tabs-top10  .resp-tabs-container{
   border:0;
   background-color:#20a3f0;
}

/*dg-tabs-top11*/
.dg-tabs-top11 ul.resp-tabs-list li{
   background:#e3e3e3;
    padding:16px 30px;
   line-height:1.2;
   font-size:15px;
   border:0;  
   border-right:1px solid #fff;
   margin:0;
    	transition: all ease-in 200ms;
		-moz-transition: all ease-in 200ms;/* Firefox 4 */
		-webkit-transition:all ease-in 200ms;/* Safari and Chrome */
		-o-transition:all ease-in 200ms;/* Opera */
		-ms-transition:all ease-in 200ms;/* IE9? */  
}
.dg-tabs-top11 ul.resp-tabs-list li.resp-tab-active{
   background:#20a3f0;
   color:#fff;
   position:relative;
   border-right:1px solid transparent;
}
.dg-tabs-top11 ul.resp-tabs-list{
  border:0;
}

.dg-tabs-top11 .resp_margin{
    padding:30px;
} 
.dg-tabs-top11  .resp-tabs-container{
   border:0;  
   background:#20a3f0;
   color:#fff;
}
/*dg-tabs-top12*/
.dg-tabs-top12{
  border:1px solid #cccbcb;  
}
.dg-tabs-top12 ul.resp-tabs-list{
  padding:5px;
}
.dg-tabs-top12 ul.resp-tabs-list li{
   background:#e3e3e3;
    padding:11px 30px;
   line-height:1.2;
   font-size:15px;
   border:0;  
   margin:5px;
}
.dg-tabs-top12 ul.resp-tabs-list li.resp-tab-active{
   background:#20a3f0;
   color:#fff;
   position:relative;     
}
.dg-tabs-top12 .resp_margin{
    padding:30px;
} 
.dg-tabs-top12 .resp-tabs-container{
    border:0;
    border-top:1px solid #cccbcb;
	margin:0	
}
.dg-tabs-top12 ul.resp-tabs-list li.resp-tab-active:before {
    border: 4px solid transparent;
    border-top: 4px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom:-8px;
    width: 0;
    margin: 0 0 0 -2px;
}
/*dg-tabs-top13*/
.dg-tabs-top13{
  border:1px solid #cccbcb;  
}
.dg-tabs-top13 ul.resp-tabs-list{
  padding:5px;
}
.dg-tabs-top13 ul.resp-tabs-list li{
   background:#f0f0f0;
    padding:11px 20px;
   line-height:1.2;
   font-size:15px;
   border:0;
   margin:5px;  
   border-radius:5px;
}
.dg-tabs-top13 ul.resp-tabs-list li.resp-tab-active{
   background:#20a3f0;
   color:#fff;
   position:relative;   
}
.dg-tabs-top13 .resp-tabs-container{
    border:0;
    border-top:1px solid #cccbcb;
	margin:0;		
}
.dg-tabs-top13 ul.resp-tabs-list li.resp-tab-active:before {
    border: 4px solid transparent;
    border-top: 4px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom:-8px;
    width: 0;
    margin: 0 0 0 -2px;
}
/*dg-tabs-top14*/
.dg-tabs-top14 ul.resp-tabs-list{
    width:100%
}
.dg-tabs-top14 ul.resp-tabs-list{
   border:0;
}
.dg-tabs-top14 .resp-tabs-container{  
	border:1px solid #e0dede;
    border-top:0;
	margin-right: 1px;
}
.dg-tabs-top14 ul.resp-tabs-list li{
   background:#eeeeee;
    padding:11px 0;
   line-height:1.2;
   font-size:15px;
   width:33.33333%;
    text-align: center;
    border-radius: 5px 5px 0 0;
    border-right: 2px solid #e0dede;
	border-top: 2px solid #e0dede;
  
}
.dg-tabs-top14 ul.resp-tabs-list li em{
   display:inline-block;
   padding:0 10px 0 0;
}
.dg-tabs-top14 ul.resp-tabs-list li:last-child{
   border-right: 1px solid #e0dede;
}
.dg-tabs-top14 ul.resp-tabs-list li:first-child{
   border-left: 1px solid #e0dede;
}
.dg-tabs-top14 ul.resp-tabs-list li span{
  display:inline-block;
}
.dg-tabs-top14 ul.resp-tabs-list li.resp-tab-active{
  border-top: 2px solid #20a3f0;   
  color:#333333;
}
.dg-tabs-top14 .resp_margin{
    padding:25px;
} 
/*dg-tabs-top15*/
.dg-tabs-top15 ul.resp-tabs-list{
    width:100%
}
.dg-tabs-top15 ul.resp-tabs-list{
   border:0;
}
.dg-tabs-top15 .resp-tabs-container{  
	border:1px solid #e0dede;  
	margin-right: 1px;
}
.dg-tabs-top15 ul.resp-tabs-list li{
   background:#eeeeee;
    padding:11px 30px;
   line-height:1.2;
   font-size:15px; 
    text-align: center;
    border-radius: 5px 5px 0 0;
    border-right: 1px solid #e0dede;
	border-left: 1px solid #e0dede;
	border-top: 2px solid #e0dede;
	margin:0 5px -1px 0;
	position:relative;  
}
.dg-tabs-top15 ul.resp-tabs-list li:before{
   content:"";
   position:absolute;
   bottom:0;
   width:100%;
   left:0;
   height:1px;
   background:#e0dede;
}
.dg-tabs-top15 ul.resp-tabs-list li em{
   display:inline-block;
   padding:0 10px 0 0;
}
.dg-tabs-top15 ul.resp-tabs-list li span{
  display:inline-block;
}
.dg-tabs-top15 ul.resp-tabs-list li.resp-tab-active{
  border-top: 2px solid #20a3f0; 
  border-bottom:0;  
  color:#333333;
}
.dg-tabs-top15 ul.resp-tabs-list li.resp-tab-active:before{
  display:none;
}
.dg-tabs-top15 .resp_margin{
  padding:25px;
} 
.dg-tabs-top15 .resp_margin{
    padding:30px;
} 
/*dg-tabs-top16*/
.dg-tabs-top16 ul.resp-tabs-list li{
   padding:12px 20px;
   line-height:1.2;
   font-size:15px; 

}
.dg-tabs-top16 ul.resp-tabs-list li em{
   display:inline-block;
   padding:0 5px 0 0;
}
.dg-tabs-top16 ul.resp-tabs-list li.resp-tab-active{
   background:#20a3f0;
   color:#fff;
 } 
 /*dg-tabs-top17*/
.dg-tabs-top17 ul.resp-tabs-list li{
   padding:12px 20px;
   line-height:1.2;
   font-size:15px;
   background:#eeeeee;
   margin:0 5px 0 0;
}
.dg-tabs-top17 ul.resp-tabs-list li em{
   display:inline-block;
   padding:0 5px 0 0;
}
.dg-tabs-top17 ul.resp-tabs-list li.resp-tab-active{   
    color:#fff;
    background: -webkit-linear-gradient(135deg, #00ccff, #00ccff, #1183da);
    background: -o-linear-gradient(135deg, #00ccff, #00ccff, #1183da);
    background: -moz-linear-gradient(135deg, #00ccff, #00ccff, #1183da);
    background: linear-gradient(135deg, #00ccff, #00ccff, #1183da );
    background-color: #00ccff;
 }
.dg-tabs-top17 .resp-tabs-container{
   background:#eeeeee;
   border:0;
}
.dg-tabs-top17 ul.resp-tabs-list li:hover{
    color: #fff;
    background:#20a3f0;
}
 /*dg-tabs-top18*/
.tab_top_img{
	width:100%;
}
.tab_top_img img{
	width:100%;
}
.dg-tabs-top18{
  text-align:center;
  border:1px solid #e0dede;
  border-top:none;
  position:relative;
}

.dg-tabs-top18 ul.resp-tabs-list{
  padding:0;
  margin:0;
  position:absolute;
  bottom:100%;
  left:0;
  right:0;
  text-align:center;
  border:none;
  font-size:0;
	word-spacing:-1px;
}
.dg-tabs-top18 ul.resp-tabs-list li{
   padding:14px 15px;
   line-height:1.2;
   font-size:15px;
   background:#eeeeee;
   margin:0 0 0 0;
   border-left:1px solid #fff;
   border-top:0;
   border-right:0;
   background:rgba(255,255,255,0.8);
   color:#333;
   float:none;
   display:inline-block;
	word-spacing:0px;
}
.dg-tabs-top18 ul.resp-tabs-list li em{
   display:inline-block;
   padding:0 10px 0 0;
}
.dg-tabs-top18 ul.resp-tabs-list li:first-child{
   border:0;
}
.dg-tabs-top18 .resp-tabs-container{
  text-align:left;
  border:0;
}
.dg-tabs-top18 ul.resp-tabs-list li.resp-tab-active{
  background:#fff;
  color:#333333;
}
.dg-tabs-top18 ul.resp-tabs-list li:hover{
    color: #fff;
    background:#20a3f0;
}
.dg-tabs-top18 ul.resp-tabs-list li.resp-tab-active:hover{
  background:#fff;
  color:#333333;
}
 /*dg-tabs-top19*/
.dg-tabs-top19{
  text-align:center;
  border:1px solid #e0dede;
  border-top:none;
  position:relative;
}
.dg-tabs-top19 ul.resp-tabs-list{
	margin:0;
	padding:0;
  position:absolute;
  bottom:100%;
  left:0;
  right:0;
  text-align:center;
  border:none;
}
.dg-tabs-top19 ul.resp-tabs-list li{
   padding:14px 15px;
   line-height:1.2;
   font-size:15px;
   background:#eeeeee;
   margin:0 2px 0 0;
   border-left:0;
   border-top:0;
   border-right:0;
   background:rgba(255,255,255,0.8);
   color:#383838;
   float:none;
   display:inline-block;
}
.dg-tabs-top19 ul.resp-tabs-list li em{
   display:inline-block;
   padding:0 10px 0 0;
}
.dg-tabs-top19 ul.resp-tabs-list li:first-child{
   border:0;
}
.dg-tabs-top19 .resp-tabs-container{
  text-align:left;
  border:0;
}
.dg-tabs-top19 ul.resp-tabs-list li.resp-tab-active{
  background:#fff;
  color:#383838;
}
.dg-tabs-top19 ul.resp-tabs-list li:hover{
    color: #fff;
    background:#20a3f0;
}
.dg-tabs-top19 ul.resp-tabs-list li.resp-tab-active:hover{
  background:#fff;
  color:#333333;
}
/*dg-tabs-bottom01*/
.dg-tabs-bg03{
    background: url("/Portals/_default/Skins/ForVend/images/dg-tabs-bg03.jpg") left top no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    padding: 10px 0;   
}
.dg-tabs-bottom01 ul.resp-tabs-list {
    margin: -21px 0 0 0;  
}
.dg-tabs-bottom01{
   text-align:center;
}
.dg-tabs-bottom01 ul.resp-tabs-list li{
   padding:12px 20px;
   font-size:15px;
   line-height:1.2;
   border-radius:5px;
   margin:0 3px;
   border:0;
   background:#fff;
}
.dg-tabs-bottom01 ul.resp-tabs-list li em{
   display:inline-block;
   padding:0 10px 0 0;
}
.dg-tabs-bottom01 ul.resp-tabs-list{
  border:0;
}
.dg-tabs-bottom01 .resp-tabs-container{
   text-align:left;
   border:1px solid #0e5b95;
   color:#fff;
}
.dg-tabs-bottom01 .resp_margin{
    padding:30px;
}
.dg-tabs-bottom01 ul.resp-tabs-list li.resp-tab-active{
  border:0;
  color:#fff;
  background:#20a3f0
}
/*dg-tabs-bottom02*/
.dg-tabs-bottom02{
   text-align:center;   
}
.dg-tabs-bottom02 ul.resp-tabs-list{
   margin:0;  
}
.dg-tabs-bottom02 ul.resp-tabs-list li{ 
   font-size:15px;
   line-height:1.2;
   color:#fff;  
   margin:0 0 0 0;
   border:0;
   border-top:1px solid #0e5b95;
   border-bottom:1px solid #0e5b95; 
   padding:0;
   		transition: all ease-in 200ms;
		-moz-transition: all ease-in 200ms;/* Firefox 4 */
		-webkit-transition:all ease-in 200ms;/* Safari and Chrome */
		-o-transition:all ease-in 200ms;/* Opera */
		-ms-transition:all ease-in 200ms;/* IE9? */
}
.dg-tabs-bottom02 ul.resp-tabs-list li span{
   display:block;
   padding:17px 20px;   
   border-left:1px solid #0e5b95;
   border-right:1px solid #0e5b95;
   margin:0 0 0 -1px;
}
.dg-tabs-bottom02 ul.resp-tabs-list li:first-child span{
   margin:0 0 0 0;  
}
.dg-tabs-bottom02 ul.resp-tabs-list li em{
   display:block;
   padding:0 0 10px 0;
}
.dg-tabs-bottom02 ul.resp-tabs-list{
  border:0;
}
.dg-tabs-bottom02 .resp-tabs-container{
   text-align:left;   
   color:#fff;
   border:1px solid #0e5b95;
   border-bottom:0;
}
.dg-tabs-bottom02 .resp_margin{
    padding:30px;
}
.dg-tabs-bottom02 ul.resp-tabs-list li.resp-tab-active{ 
  color:#fff;
  background:#20a3f0; 
}
.dg-tabs-bottom02 ul.resp-tabs-list li.resp-tab-active span{
}
/*dg-tabs-bottom03*/
.dg-tabs-bottom03{
  border-bottom:0; 
}
.dg-tabs-bottom03 ul.resp-tabs-list{
    width:100.1%;
	margin:0;
}
.dg-tabs-bottom03 ul.resp-tabs-list{
   border:0;
}
.dg-tabs-bottom03 .resp-tabs-container{  	
    border:0;
	margin-right: 1px;	
}
.dg-tabs-bottom03 ul.resp-tabs-list li{
   background:#eeeeee;
   color:#333;  
   line-height:1.2;
   font-size:15px;  
    text-align: center;   
	border-top:0; 
	padding:0;
	border:0;		
}
.dg-tabs-bottom03 ul.resp-tabs-list li span{
   display:inline-block;
   padding:11px 0;	
   border-right: 1px solid #e0dede;
   border-left: 1px solid #e0dede;
   border-bottom: 2px solid #e0dede;
   border-radius: 0 0 5px 5px; 
   		transition: all ease-in 200ms;
		-moz-transition: all ease-in 200ms;/* Firefox 4 */
		-webkit-transition:all ease-in 200ms;/* Safari and Chrome */
		-o-transition:all ease-in 200ms;/* Opera */
		-ms-transition:all ease-in 200ms;/* IE9? */	
}
.dg-tabs-bottom03 ul.resp-tabs-list li em{
   display:inline-block;
   padding:0 10px 0 0;
}
.dg-tabs-bottom03 ul.resp-tabs-list li:last-child span{  
   margin-right:1px;  
}
.dg-tabs-bottom03 ul.resp-tabs-list li span{
  display:block;
}
.dg-tabs-bottom03 ul.resp-tabs-list li.resp-tab-active span{
  border-bottom: 2px solid #20a3f0;   
  color:#333333;
}
.dg-tabs-bottom03 .resp_margin{
    padding:25px;
	border-left:1px solid #e0dede;
	border-right:1px solid #e0dede;
	border-top:1px solid #e0dede;
}
.dg-tabs-bottom03 ul.resp-tabs-list li:hover span{
    color: #fff;
    background:#20a3f0;
}
.dg-tabs-bottom03 ul.resp-tabs-list li.resp-tab-active:hover span{
  color:#333333;
  background:#fff;
}
/*dg-tabs-bottom04*/
.dg-tabs-bottom04{
   text-align:center;
   border:1px solid #e0dede;
}
.dg-tabs-bottom04 ul.resp-tabs-list{
   margin:0;
   width:100%;
}
.dg-tabs-bottom04 ul.resp-tabs-list li{ 
   font-size:15px;
   line-height:1.2;
   margin:0;
   border:0;
   border-top:1px solid #e0dede; 
   width:25%;
   padding:0;
}
.dg-tabs-bottom04 ul.resp-tabs-list li:first-child{
  border-left:0;
}
.dg-tabs-bottom04 ul.resp-tabs-list li:last-child span{
  padding-right:1px;
}
.dg-tabs-bottom04 ul.resp-tabs-list li span{
   display:block;
   padding:11px 0;   
   border-left:1px solid #e0dede;
}
.dg-tabs-bottom04 ul.resp-tabs-list li em{
   display:inline-block;
   padding:0 10px 0 0;
}
.dg-tabs-bottom04 ul.resp-tabs-list{
  border:0;
}
.dg-tabs-bottom04 .resp-tabs-container{
   text-align:left;     
   border:0;
}
.dg-tabs-bottom04 ul.resp-tabs-list li.resp-tab-active{ 
  color:#fff;
  background:#20a3f0;
  border-top:1px solid #e0dede;  
}
.dg-tabs-bottom04 ul.resp-tabs-list li.resp-tab-active span{
   border-left:1px solid #e0dede;  
}
/*dg-tabs-top20*/
.dg-tabs-top20{
  text-align:center;
}
.dg-tabs-top20 ul.resp-tabs-list li{
    font-size:13px;
	text-transform:uppercase;
	}

.dg-tabs-top20 ul.resp-tabs-list li span{
    padding:25px 36px;
	display:inline-block;
	line-height:1.2;
}
.dg-tabs-top20 ul.resp-tabs-list li{
    margin-top:1px;
	padding:0;
}
.dg-tabs-top20 ul.resp-tabs-list li.resp-tab-active{
    border-top: 2px solid #20a3f0;
	margin-top: 0;	
}
.dg-tabs-top20 ul.resp-tabs-list li.resp-tab-active{   
    color: #424242;
}
.dg-tabs-top20 .resp_margin{
    padding:20px 20px;
	text-align:left;
}
/*dg-tabs-top21*/
.dg-tabs-top21{
  border:1px solid #cccbcb;
  text-align:center;  
}
.dg-tabs-top21 ul.resp-tabs-list{
  padding:5px 0;
  border:0;
}
.dg-tabs-top21 ul.resp-tabs-list li{
   background:#e3e3e3;
   color:#333;
    padding:11px 30px;
   line-height:1.2;
   font-size:15px;
   border:0;  
   margin:5px;
}
.dg-tabs-top21 ul.resp-tabs-list li.resp-tab-active{
   background:#20a3f0;
   color:#fff;
   position:relative;     
}
.dg-tabs-top21 .resp_margin{
    padding:30px;
} 
.dg-tabs-top21 .resp-tabs-container{
   text-align:left;
    border:0;
    border-top:1px solid #cccbcb;	
	margin:0;
}
.dg-tabs-top21 ul.resp-tabs-list li.resp-tab-active:before {
    border: 4px solid transparent;
    border-top: 4px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom:-8px;
    width: 0;
    margin: 0 0 0 -2px;
}
/*dg-tabs-top22*/
.dg-tabs-top22{
  border:1px solid #cccbcb;
  text-align:center;  
}
.dg-tabs-top22 ul.resp-tabs-list{
  padding:5px 0;
  border:0;
}
.dg-tabs-top22 ul.resp-tabs-list li{
   background:#f0f0f0;
   color:#333;
   padding:11px 30px;
   line-height:1.2;
   font-size:15px;
   border:0;
   margin:5px;  
   border-radius:5px;
}
.dg-tabs-top22 ul.resp-tabs-list li.resp-tab-active{
   background:#20a3f0;
   color:#fff;
   position:relative;   
} 
.dg-tabs-top22 .resp-tabs-container{
    text-align:left;
    border:0;
    border-top:1px solid #cccbcb;	
	margin:0;
}
.dg-tabs-top22 ul.resp-tabs-list li.resp-tab-active:before {
    border: 4px solid transparent;
    border-top: 4px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom:-8px;
    width: 0;
    margin: 0 0 0 -2px;
}
/*dg-tabs-left01*/
.dg-tabs-left01{
    border-bottom:1px solid #bdbcbc;
	border-right:1px solid #bdbcbc;
}
.dg-tabs-left01 .resp-tabs-container{
   margin:0;
   border-bottom:0;
   border-right:0 
   }

.dg-tabs-left01 ul.resp-tabs-list li{
   padding:0 0;
   border:0;
   text-align:center;
}
.dg-tabs-left01 ul.resp-tabs-list li span{
   font-size:15px;
   color:#333;
  display:block;
  padding:0 0;
  border-top: 1px solid #bdbcbc;
  border-left:0;
  border-right:0;
}
.dg-tabs-left01 ul.resp-tabs-list{
   border-left: 1px solid #bdbcbc;
   border-bottom:0;
   border-right: 1px solid #bdbcbc;
}
.dg-tabs-left01 ul.resp-tabs-list li.resp-tab-active{
   background-color: transparent;
}
.dg-tabs-left01 ul.resp-tabs-list li.resp-tab-active span{
  border-right: 1px solid #00c2f6;
  margin-right: -1px;
  color:#333;
 
}
.dg-tabs-left01 .resp_margin{
    padding:30px;
} 
/*dg-tabs-right01*/
.dg-tabs-right01 ul.resp-tabs-list li {
   border:1px solid transparent;
   margin:0 0 0 0;
   font-size:15px;
   color:#333;
   padding:16px 10px;
   line-height:1.2;
   text-align:center;
   min-width:112px
}
.dg-tabs-right01 ul.resp-tabs-list{
   border:0
}
.dg-tabs-right01 ul.resp-tabs-list li.resp-tab-active{
  border: 1px solid #bdbcbc;
  border-left:1px solid transparent;
  color:#333;
  background-color:#f9f9f9;
 
}
.dg-tabs-right01 .resp_margin{
   padding:30px;  
}
.dg-tabs-right01 .resp-tabs-container{
    border: 1px solid #bdbcbc;
}
/*dg-tabs-left02*/
.dg-tabs-left02 ul.resp-tabs-list li{
   font-size:15px;
   color:#333;
   padding:16px 10px;
   line-height:1.2;
   text-align:center;
   border-radius:5px 0 0 5px;
   margin-left:1px; 
   min-width:130px;
   
}
.dg-tabs-left02 ul.resp-tabs-list li.resp-tab-active{
   border-left:2px solid #00c2f6;
   color:#333;
    margin-left:0;
}
.dg-tabs-left02 .resp_margin{
   padding:25px;
}
/*dg-tabs-left03*/
.dg-tabs-left03 ul.resp-tabs-list li{
   font-size:15px;
   color:#383838;
   padding:16px 10px;
   line-height:1.2;
   text-align:center;  
   margin-left:1px;
   min-width:98px;   
}
.dg-tabs-left03 ul.resp-tabs-list li.resp-tab-active{
   border-left:2px solid #00c2f6;
   color:#383838;
   margin-left:0;
   position:relative;
   -moz-box-shadow:0px 4px 5px 0px #e0e0e0;
    -webkit-box-shadow:0px 4px 5px 0px #e0e0e0;
    box-shadow:0px 4px 5px 0px #e0e0e0	
}
.dg-tabs-left03 ul.resp-tabs-list li.resp-tab-active:after{
   content:"";
   position:absolute;
   bottom: -6px;
   left: -2px;
/*   background:url("/Portals/_default/Skins/ForVend/images/dg-tabs-shadow.png") repeat-x left bottom;*/
   width:102%;
   height:6px;
}
/*dg-tabs-left04*/
.dg-tabs-left04 ul.resp-tabs-list li{
   font-size:15px;
   color:#333;
   padding:14px 10px;
   line-height:1.2;
   text-align:center;   
   margin:0 0 5px 0; 
   border-bottom: 1px solid #e8e8e8;
   min-width:130px;
   
}
.dg-tabs-left04 ul.resp-tabs-list li em{
   display:inline-block;
   padding:0 10px 0 0;
}
.dg-tabs-left04 ul.resp-tabs-list li.resp-tab-active{  
   color:#333;   
}
.dg-tabs-left04 ul.resp-tabs-list{
  border:0;
}
.dg-tabs-left04 .resp_margin{
   padding:30px;
}
/*dg-tabs-left05*/
.dg-tabs-left05 ul.resp-tabs-list li{
   font-size:15px;
   padding:16px 10px;
   line-height:1.2;
   text-align:center;  
   margin-left:1px;
   min-width:108px;   
}
.dg-tabs-left05 ul.resp-tabs-list li.resp-tab-active{
   border-left:2px solid #00c2f6;
   color:#424242;
   margin-left:0; 
}
.dg-tabs-left05 ul.resp-tabs-list li.resp-tab-active:before {
    border: 4px solid transparent;
    border-left: 4px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    left:0;
    top:50%;
    width: 0;
    margin:-4px 0 0 -0;
}
.dg-tabs-bg04{
  background:#021f26;
  padding:20px 0;
  color:#fff;
}
/*dg-tabs-left06*/
.dg-tabs-left06 ul.resp-tabs-list{
  border-top:1px solid #0b4a59;
  border-bottom:0;
}
.dg-tabs-left06 ul.resp-tabs-list li{
   font-size:15px;
   color:#fff;
   padding:16px 10px;
   line-height:1.2;
   text-align:center;  
    margin-left:0;
	 min-width:105px;
	 border-bottom: 1px solid #0b4a59;
    border-left: 1px solid #0b4a59;
	border-top:0;   
}
.dg-tabs-left06 ul.resp-tabs-list li.resp-tab-active{  
    color:#fff;
    margin-left:-10px;
	background-color:#021f26;
	border-bottom:1px solid #0b4a59;
	border-top:1px solid #0b4a59;
	margin-top: -1px;
}
.dg-tabs-left06 .resp_margin{
   padding:50px 10px 25px 40px;
}
.dg-tabs-left06 .resp-tabs-container{
   border:1px solid #0b4a59;
}
/*dg-tabs-left07*/
.dg-tabs-left07 ul.resp-tabs-list{
  border-top:1px solid #0b4a59;
  border-bottom:0;
}
.dg-tabs-left07 ul.resp-tabs-list li{
   font-size:15px;
   color:#fff;
   padding:16px 10px;
   line-height:1.2;
   text-align:center;  
    margin-left:0;
	 min-width:125px;
	 border-bottom: 1px solid #0b4a59;
    border-left: 1px solid #0b4a59;
	 border-right: 1px solid #0b4a59;
	border-top:0;
	background:#193339;   
	
}
.dg-tabs-left07 ul.resp-tabs-list li.resp-tab-active{  
    color:#fff;
    margin-left:-10px;
	background-color:#021f26;
	border-bottom:1px solid #0b4a59;
	border-top:1px solid #0b4a59;
	margin-top: -1px;
	border-radius:5px 0 0 5px;
}
.dg-tabs-left07 .resp_margin{
   padding:25px;
}
.dg-tabs-left07 .resp-tabs-container{
   border:1px solid #0b4a59;
}
/*dg-tabs-left08*/
.dg-tabs-left08 ul.resp-tabs-list{
  border:0;
}
.dg-tabs-left08 ul.resp-tabs-list li{
   font-size:15px;
   color:#fff;
   padding:13px 10px;
   line-height:1.2;
   text-align:center;  
    margin-left:0;
	 min-width:125px;
	 border: 1px solid #0b4a59; 
	background:#193339;  
	margin:0 0 1px 0;
}
.dg-tabs-left08 ul.resp-tabs-list li.resp-tab-active{     
	background-color:#021f26;	
}
.dg-tabs-left08 .resp_margin{
   padding:25px;
}
.dg-tabs-left08 .resp-tabs-container{
   border:1px solid #0b4a59;
}
.dg-tabs-left08 ul.resp-tabs-list li.resp-tab-active:before {
    border: 4px solid transparent;
    border-right: 4px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    margin: -4px 0 0 -0;
}
/*dg-tabs-left09 */
.dg-tabs-left09  ul.resp-tabs-list{
   border-bottom:1px solid #e2e0e0;  
}
.dg-tabs-left09  ul.resp-tabs-list li{
   background:#f9f9f9;
    padding:12px 10px;
   line-height:1.2;
   font-size:15px;
   border:0;
   margin:0;
   border:#e0dede;
   min-width:93px;
   text-align:center;
   border:1px solid #e2e0e0;  
   border-bottom:0;
}
.dg-tabs-left09  ul.resp-tabs-list li.resp-tab-active{
   background:#20a3f0;
   color:#fff;
   position:relative;
   border-radius:16px 0 0 0;
   border:1px solid transparent;
   border-bottom:0;
}
.dg-tabs-left09  ul.resp-tabs-list li.resp-tab-active:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    content: "";
    display: block;
    border:5px solid #7201aa;
    border-color:#1f6c9a #1f6c9a transparent transparent;
    background-color: #f9f9f9; 
	 transform:rotate(446deg);
    -ms-transform:rotate(446deg);
    -moz-transform:rotate(446deg);
    -webkit-transform:rotate(446deg);
    -o-transform:rotate(446deg);
} 
.dg-tabs-left09   .resp-tabs-container{
   border:1px solid #cccbcb;
   border-radius: 0 5px 5px 5px;
}
/*dg-tabs-left10 */
.dg-tabs-left10 ul.resp-tabs-list{
   border-bottom:0;  
   margin:0;
}
.dg-tabs-left10 ul.resp-tabs-list li{
   background:#e3e3e3;
    padding:12px 10px;
   line-height:1.2;
   font-size:15px;
   border:0;
   margin:0;
   border-bottom:1px solid #fff;
   min-width:94px;
   text-align:center;
  
}
.dg-tabs-left10 ul.resp-tabs-list li.resp-tab-active{
   background:#20a3f0;
   color:#fff;
   position:relative;  
   border-bottom:1px solid transparent;
   
}
.dg-tabs-left10 .resp_margin{
    padding:30px;	
} 
.dg-tabs-left10 .resp-tabs-container{
   border:0; 
   background:#20a3f0;
   color:#fff;
}
/*dg-tabs-left11*/
.dg-tabs-left11 ul.resp-tabs-list li{
   font-size:15px;
   color:#333;
   padding:11px 10px;
   line-height:1.2;
   text-align:center; 
	min-width:110px;
	border-radius:5px;
	background:#e3e3e3;
	border:0;
	margin-bottom:4px;   
}
.dg-tabs-left11 ul.resp-tabs-list li.resp-tab-active{ 
   color:#fff;  
   background:#20a3f0;   
}
.dg-tabs-left11 ul.resp-tabs-list li.resp-tab-active:before {
    border: 4px solid transparent;
    border-left: 4px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    right:-8px;
    top:50%;
    width: 0;
    margin:-4px 0 0 -0;
}
.dg-tabs-left11 .resp_margin{
   padding:30px;
   background:#f9f9f9;
}
.dg-tabs-left11 ul.resp-tabs-list{
   padding:5px 10px 5px 5px;
   border:1px solid #e0dede;
   background:#f9f9f9;   
}
/*dg-tabs-left12 */
.dg-tabs-left12 ul.resp-tabs-list{
   border-bottom:0;  
   margin:0;
}
.dg-tabs-left12 ul.resp-tabs-list li{
   background:#f0f0f0;
    padding:12px 10px;
   line-height:1.2;
   font-size:15px;
   border:0;
   margin:0;
   border-bottom:1px solid #fff;
   min-width:94px;
   text-align:center;
  
}
.dg-tabs-left12 ul.resp-tabs-list li.resp-tab-active{
   background:#20a3f0;
   color:#fff;
   position:relative;  
   border-bottom:1px solid #fff;   
}
.dg-tabs-left12 ul.resp-tabs-list li.resp-tab-active:before {
    border: 4px solid transparent;
    border-left: 4px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    right:-8px;
    top:50%;
    width: 0;
    margin:-4px 0 0 -0;
}
/*dg-tabs-left13*/
.dg-tabs-left13 ul.resp-tabs-list{
   border-bottom:0;
}
.dg-tabs-left13 ul.resp-tabs-list li{
   font-size:15px;
   color:#fff;
   padding:12px 10px;
   line-height:1.2;
   text-align:center;
   border-radius:5px 0 0 5px;     
	 min-width:118px;
	 background-color:#021429; 
	 border-top:1px solid #707070;
	 border-bottom:1px solid #707070;
	 border-left:2px solid #707070; 
}
.dg-tabs-left13 ul.resp-tabs-list li em{
  padding:0 10px 0 0;
}
.dg-tabs-left13 ul.resp-tabs-list li.resp-tab-active{
   border-left:2px solid #00c2f6;
   color:#333;  
   border-top:1px solid transparent;
   border-bottom:1px solid transparent;
	
}
.dg-tabs-left13 .resp_margin{
   padding:20px;
   color:#fff;
}
.dg-tabs-bg05 {
    background: url("/Portals/_default/Skins/ForVend/images/dg-tabs-img05.jpg") left top no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    padding: 30px 0;
}
.dg-tabs-left13 .resp-tabs-container{   
    border: 1px solid #707070;	
}
/*dg-tabs-left14*/
.dg-tabs-left14 ul.resp-tabs-list{
   border-bottom:0;
}
.dg-tabs-left14 ul.resp-tabs-list li{
   font-size:15px;
   color:#fff;
   padding:12px 10px;
   line-height:1.2;
   text-align:center;
   border-radius:5px 0 0 5px; 
   margin:0 0 10px 0;    
	 min-width:118px;
	 background-color:#021429; 
	 border-top:1px solid #707070;
	 border-bottom:1px solid #707070;
	 border-left:2px solid #707070; 
}
.dg-tabs-left14 ul.resp-tabs-list li.resp-tab-active{
   border-left:2px solid #00c2f6;
   color:#333;  
   border-top:1px solid transparent;
   border-bottom:1px solid transparent;
	
}
.dg-tabs-left14 .resp_margin{  
   color:#fff;
   padding:20px;
}
.dg-tabs-left14 .resp-tabs-container{   
    border: 1px solid #707070;	
}
/*dg-tabs-left15*/
.dg-tabs-left15 ul.resp-tabs-list{
   border-bottom: 1px solid #707070;
}
.dg-tabs-left15 ul.resp-tabs-list li{
   font-size:15px;
   color:#fff;
   padding:11px 10px;
   line-height:1.2;
   text-align:center; 
   min-width:125px;
   background-color:transparent; 
   border-top: 1px solid #707070;
   border-left: 1px solid #707070;

}
.dg-tabs-left15 ul.resp-tabs-list li.resp-tab-active{
  background-color:#20a3f0;
  color:#fff;
}
.dg-tabs-left15 ul.resp-tabs-list li em{
  padding:0 10px 0 0;  
}
.dg-tabs-left15 .resp-tabs-container{   
    border: 1px solid #707070;
	color:#fff;   
}
.dg-tabs-left15 .resp_margin{
   padding:30px 10px 30px 30px;  
}
/*dg-tabs-left16*/
.dg-tabs-left16 ul.resp-tabs-list{
   border:0;
   margin:0;
}
.dg-tabs-left16 ul.resp-tabs-list li{
   font-size:15px;
   color:#333;
   padding:11px 10px;
   line-height:1.2;
   text-align:center; 
   min-width:130px;
   background-color:#efefef; 
   border:0;
   margin:0 0 6px 0;
}
.dg-tabs-left16 ul.resp-tabs-list li.resp-tab-active{
  background-color:#fff;
  color:#333;
}
.dg-tabs-left16 ul.resp-tabs-list li em{
  padding:0 10px 0 0;
  }
.dg-tabs-left16 .resp-tabs-container{   
    border:0;
	background:#fff;	
}
.dg-tabs-left16 .resp_margin{
   padding:30px;  
}
.dg-tabs-left16 ul.resp-tabs-list li:hover{
    color: #fff;
    background:#20a3f0;
}
.dg-tabs-left16 ul.resp-tabs-list li.resp-tab-active:hover{   
    background:#fff;
	color:#333;
}
/*dg-tabs-left17*/
.dg-tabs-left17 ul.resp-tabs-list{
   border-bottom:0;
   position:absolute;
   left:-50px;
   top:10px;
}
.dg-tabs-left17 ul.resp-tabs-list li{
   font-size:15px;
   color:#333;
   padding:11px 10px;
   line-height:1.2;
   text-align:center; 
   min-width:132px;
   background-color:#fff; 
   border: 1px solid #e0dede;
   margin:0 0 6px 0;
   border-radius:5px;   
}
.dg-tabs-left17 ul.resp-tabs-list li em{
  padding:0 10px 0 0;
}
.dg-tabs-left17 ul.resp-tabs-list li.resp-tab-active{
  color:#333;
  border:1px solid #20a3f0
}
.dg-tabs-left17 ul.resp-tabs-list li em{
  padding:0 10px 0 0;  
}
.dg-tabs-left17 .resp-tabs-container{   
    border: 1px solid #e0dede;	
}
.dg-tabs-left17 .resp_margin{
   padding:30px 20px 30px 90px;  
}
/*dg-tabs-left18*/
.dg-tabs-left18 ul.resp-tabs-list{
   border-bottom:0;
   border-left:1px solid #e0dede;
}
.dg-tabs-left18 ul.resp-tabs-list li{
   font-size:15px;
   color:#333;
   padding:17px 10px;
   line-height:1.2;
   text-align:center;    
   border: 1px solid #e0dede; 
   border-left:0; 
   margin-bottom:3px;
   background-color:#ececec;
}
.dg-tabs-left18 ul.resp-tabs-list li:last-child{
   margin-bottom:0;
}
.dg-tabs-left18 ul.resp-tabs-list li em{
   display:inline-block;
}
.dg-tabs-left18 ul.resp-tabs-list li.resp-tab-active{
  background-color:#20a3f0;
  color:#fff;
}
.dg-tabs-left18 ul.resp-tabs-list li em{
  padding:0 0 10px 0;  
  display:block;
}
.dg-tabs-left18 .resp-tabs-container{   
    border: 1px solid #e0dede;	 
}
.dg-tabs-left18 .resp_margin{
   padding:30px;  
}
.dg-tabs-left18 ul.resp-tabs-list li:hover{
    color: #fff;
    background:#20a3f0;
}
/*dg-tabs-left19*/
.dg-tabs-left19 ul.resp-tabs-list{
  margin:0;
}
.dg-tabs-left19 ul.resp-tabs-list li{
   font-size:13px;
   color:#333;
   padding:25px 35px;
   line-height:1.2;
   text-align:center;  
   margin-left:1px;
   text-transform:uppercase;
    
}
.dg-tabs-left19 ul.resp-tabs-list li.resp-tab-active{
   border-left:2px solid #00c2f6;
   color:#333;
   margin-left:0;
   position:relative;	
}
.dg-tabs-left19 ul.resp-tabs-list li.resp-tab-active:after{
   content:"";
   position:absolute;
   bottom: -6px;
   left: -2px;
   background:url("/Portals/_default/Skins/ForVend/images/dg-tabs-shadow.png") repeat-x left bottom;
   width:102%;
   height:6px;
}
.dg-tabs-left19 .resp_margin{
   padding:30px;
   text-align:center;
}
/*tab contaienr*/
.tab_list{
   margin:0;
   padding:0;
   list-style:none;
   width:50%;
   float:left;}

.tab_list li{
   margin:0;
   padding:12px 0;
   list-style:none;
   line-height:1.2;
   }
.tab_list li span{
  color:#20a3f0;
  display:inline-block;
  padding:0 10px 0 0 ;
}

.resp_margin .tabstop06_con h2{
    font-size: 25px;
    text-transform: uppercase;  
    color: #fff;
    font-weight: normal;
    line-height: 1;
    margin: 0 0 18px 0;
}
.tab_list02{
   margin:0;
   padding:0;
   list-style:none; 
}
.tab_list02 li{
   margin:0;
   padding:12px 0;
   list-style:none;
   line-height:1.2;
   }
.tab_list02 li span{
  color:#20a3f0;
  display:inline-block;
  padding:0 10px 0 0 ;
}
.resp_margin h2{
  font-size:15px;
  color:#333;
  text-transform:uppercase;
}
.dg-tabs-top11 .resp_margin h2{
  color:#fff;
}
.dg-tabs-top10 .resp_margin h2{
    margin: 0px 0 10px 0;
	line-height:1.2;
}
.dg-tabs-top13 .resp_margin h2{
    margin: 0px 0 17px 0;
	line-height:1.2;
}
.dg-tabs-top17 .resp_margin .tab_list li:last-child{
  padding:12px 0 0 0;
}
.dg-tabs-top17 .resp_margin .tab_list:first-child{
  padding:0 0 0 20px;
}
.dg-tabs-bottom01 .tab_list02 li span{
  color:#fff;
}
.dg-tabs-left03 .resp_margin h2{
  position:relative;
  font-weight:bold;
  font-size:25px;
  color:#272727;
  display: inline-block;
  margin: 7px 0 0 0;
}
.dg-tabs-left03 .resp_margin h2:before{
  position:absolute;
  content:"";
  right:-53px;
  top:50%;
  border-bottom:2px solid #999999;
  width:45px;
}
.dg-tabs-left03 .resp_margin h2:after{
  position:absolute;
  content:"";
  left:-53px;
  top:50%;
  border-bottom:2px solid #999999;
  width:45px;
}
.dg-tabs-right01 .tab_list02 li{
   float:left;
   padding:0 20px 0 0;
} 
.dg-tabs-right01 .tab_list02 li span{
   color:#333;
} 
.dg-tabs-left01 .tab_list02{
  float:left;
  padding:0 0 0 40px;
}
.dg-tabs-top21 .tab_list li{
  padding:11px 0; 
}
.dg-tabs-left19 .resp_margin h3{
  color:#000000;
  font-size:13px;
  margin:10px 0 10px 0;
  text-transform:uppercase;
}
.dg-tabs-top20 .resp_margin h3{
  color:#666;
  font-size:13px;
  margin:0;
  text-transform:uppercase;
}
.dg-tabs-top20 .resp_margin h2{
  color:#20a3f0;
  font-size:25px;
  text-transform:uppercase;
  font-weight:bold;  
      margin: 0;
    letter-spacing: 2px;
    line-height: 1.2;
}
.dg-tabs-top20 .resp_margin .left{
   float:left;
    margin-right: 2%;
    width: 27%;
}
.dg-tabs-top20 .resp_margin .right{
   float:left;
   width:71%;
}
.dg-tabs-left19 .resp_margin h2{
  color:#20a3f0;
  font-size:25px;
  text-transform:uppercase;
  font-weight:bold;  
}
.dg-tabs-left19 .resp_margin .line{
  height:4px;
  background:#20a3f0;
  width:16px;
  margin:0 auto;  
}
.dg-tabs-top20 .resp_margin .line{
  height:4px;
  background:#20a3f0;
  width:40px;
  margin:20px 0;  
}
.dg-tabs-left19 .resp_margin .social_a em{
   display:inline-block;
   margin:5px 10px;
}
.dg-tabs-top20 .resp_margin .social_a em{
    color: #999;
    display: inline-block;
    font-size: 18px;
    margin: 0 20px 5px 0;
}
.dg-tabs-left06 .resp_margin h2{
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
	font-weight:bold;
	margin:15px 0 5px 0;	
}
.dg-tabs-left10 .resp_margin h2{
    color:#fff;
	font-size:13px;
	margin:0 0 10px 0;
}
.dg-tabs-left11 .resp_margin h2{
    font-size: 15px;
    color: #000;
    text-transform: uppercase;
    font-weight: normal;
	margin:6px 0 12px 0;
}
.dg-tabs-left12 .resp_margin h2{
    font-size:13px;
    color: #000;
    text-transform: uppercase;
    font-weight: normal;
	margin:14px 0 18px 0;
}
@media only screen and (min-width:1500px) {
.dg-tabs-top20 .resp_margin{
    padding:40px;
}
.dg-tabs-top13 ul.resp-tabs-list li{
    padding:11px 30px;
}
.dg-tabs-top10 ul.resp-tabs-list li {
    padding: 16px 30px;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.dg-tabs-top01 .resp_margin,.dg-tabs-top02 .resp_margin,.dg-tabs-top03 .resp_margin,.dg-tabs-top04 .resp_margin,.dg-tabs-top05 .resp_margin,.dg-tabs-top06 .resp_margin,.dg-tabs-top07 .resp_margin,.dg-tabs-top08 .resp_margin,.dg-tabs-top09 .resp_margin,.dg-tabs-top10 .resp_margin,.dg-tabs-top11 .resp_margin,.dg-tabs-top12 .resp_margin,.dg-tabs-top13 .resp_margin,.dg-tabs-top16 .resp_margin,.dg-tabs-top17 .resp_margin,.dg-tabs-top18 .resp_margin,.dg-tabs-top19 .resp_margin,
.dg-tabs-top21 .resp_margin,.dg-tabs-top20 .resp_margin,.dg-tabs-top22 .resp_margin
.dg-tabs-bottom01 .resp_margin,.dg-tabs-bottom02 .resp_margin,.dg-tabs-bottom03 .resp_margin,.dg-tabs-bottom04 .resp_margin,
.dg-tabs-left01 .resp_margin,.dg-tabs-left02 .resp_margin,.dg-tabs-left03 .resp_margin,.dg-tabs-left04 .resp_margin,.dg-tabs-left05 .resp_margin,
.dg-tabs-left06 .resp_margin,.dg-tabs-left07 .resp_margin,.dg-tabs-left09  .resp_margin,.dg-tabs-left11 .resp_margin,.dg-tabs-left12 .resp_margin,
.dg-tabs-left13 .resp_margin,.dg-tabs-left14 .resp_margin,.dg-tabs-left15 .resp_margin,.dg-tabs-left16 .resp_margin,.dg-tabs-left17 .resp_margin,
.dg-tabs-left18 .resp_margin,.dg-tabs-left19 .resp_margin,
.dg-tabs-right01 .resp_margin{
   padding:15px;
} 
.dg-tabs-left17 ul.resp-tabs-list{
    border-bottom: 0;
    position: inherit;
    left: 0;
    top: 0;
    margin: 10px 5px 0 0;
}
.dg-tabs-bottom03 ul.resp-tabs-list li em,
.dg-tabs-bottom04 ul.resp-tabs-list li em
 {   
    padding: 0 0 0 0;   
}
.dg-tabs-bottom03 ul.resp-tabs-list li,
.dg-tabs-bottom04 ul.resp-tabs-list li {
    font-size:13px;   
}
/*tab contaienr*/
.tab_list { 
    width: 100%;
    float: none;
}
.dg-tabs-left03 .resp_margin h2:before {   
    right: -40px;   
    width: 30px;
}
.dg-tabs-left03 .resp_margin h2:after {  
    left: -40px;  
    width: 30px;
} 
.dg-tabs-left03 .resp_margin h2{
  font-size:18px;
}
.dg-tabs-top13,.dg-tabs-top12,.dg-tabs-top18,.dg-tabs-top18,.dg-tabs-top21,.dg-tabs-bottom03{
  margin-bottom:8px!important;
}
.dg-tabs-top08 ul.resp-tabs-list{
  margin-top:10px;
}
.dg-tabs-bottom02 .resp-tabs-container{
  margin-top:8px;
}
.dg-tabs-top17 .resp_margin .tab_list:first-child {
    padding: 0 0 0 0;
}
}

@media only screen and (max-width: 768px) {
.dg-tabs-top .resp_margin,
.dg-tabs-bottom .resp_margin,
.dg-tabs-left .resp_margin, 
.dg-tabs-right .resp_margin,
.dg-tabs-top01 .resp_margin,
.dg-tabs-top02 .resp_margin,
.dg-tabs-top20 .resp_margin{
   padding:15px;
} 
.dg-tabs-top01 .resp-tabs-container,
.dg-tabs-top02 .resp-tabs-container,
.dg-tabs-top10 .resp-tabs-container,
.dg-tabs-top12 .resp-tabs-container,
.dg-tabs-top13 .resp-tabs-container,
.dg-tabs-top19 .resp-tabs-container,
.dg-tabs-top18 .resp-tabs-container,
.dg-tabs-top21 .resp-tabs-container,
.dg-tabs-top22 .resp-tabs-container,
.dg-tabs-bottom03 .resp-tabs-container,
.dg-tabs-bottom04 .resp-tabs-container,
.dg-tabs-left01 .resp-tabs-container,
.dg-tabs-right01 .resp-tabs-container,
.dg-tabs-left09 .resp-tabs-container,
.dg-tabs-left17 .resp-tabs-container,
.dg-tabs-left18 .resp-tabs-container{
   border:none;
   border-bottom:1px solid #e0dede;
}
.dg-tabs-top10,
.dg-tabs-top12,
.dg-tabs-top13,
.dg-tabs-top19,
.dg-tabs-top18,
.dg-tabs-top21,
.dg-tabs-top22,
.dg-tabs-bottom02,
.dg-tabs-bottom03,
.dg-tabs-bottom04,
.dg-tabs-left09,
.dg-tabs-left17,
.dg-tabs-left18{
  border:0;
}
.dg-tabs-left01 {
    border-bottom: 0;
    border-right: 0;	
}
.dg-tabs-left06 .resp-tab-content,
.dg-tabs-left07 .resp-tab-content,
.dg-tabs-left08 .resp-tab-content{
  border: 1px solid #0b4a59;
  border-bottom: none;
}
.dg-tabs-left06 h2.resp-accordion,
.dg-tabs-left07 h2.resp-accordion,
.dg-tabs-left08 h2.resp-accordion{
  border: 1px solid #0b4a59;
  border-bottom: none;
  color:#fff;
}
.dg-tabs-left06 .resp-tabs-container,
.dg-tabs-left07 .resp-tabs-container,
.dg-tabs-left08 .resp-tabs-container{
  border:none;
  border-bottom:1px solid #0b4a59;
}

.dg-tabs-bottom01 .resp-tab-content,
.dg-tabs-bottom02 .resp-tab-content{
  border: 1px solid #0e5b95;
  border-bottom: none;
}
.dg-tabs-bottom01 h2.resp-accordion,
.dg-tabs-bottom02 h2.resp-accordion{
  border: 1px solid #0e5b95;
  border-bottom: none;
  color:#fff;
}
.dg-tabs-bottom01 .resp-tabs-container,
.dg-tabs-bottom02 .resp-tabs-container{
  border:none;
  border-bottom:1px solid #0e5b95;
}
.dg-tabs-left13 .resp-tab-content,
.dg-tabs-left14 .resp-tab-content,
.dg-tabs-left15 .resp-tab-content{
  border: 1px solid #707070;
  border-bottom: none;
}
.dg-tabs-left13 h2.resp-accordion,
.dg-tabs-left14 h2.resp-accordion,
.dg-tabs-left15 h2.resp-accordion{
  border: 1px solid #707070;
  border-bottom: none;
  color:#fff;
}
.dg-tabs-left13 .resp-tabs-container,
.dg-tabs-left14 .resp-tabs-container,
.dg-tabs-left15 .resp-tabs-container{
  border:none;
  border-bottom:1px solid #707070;
}
.dg-tabs-top05 .resp-tabs-container,
.dg-tabs-top06 .resp-tabs-container{
   border:0;
   border-bottom: 1px solid #b6b6b6;  
}

.dg-tabs-top05 .resp-tab-content,
.dg-tabs-top06 .resp-tab-content{
  border: 1px solid #b6b6b6;
  border-bottom: none;
}
.dg-tabs-top05 h2.resp-accordion,
.dg-tabs-top06 h2.resp-accordion{
  border: 1px solid #b6b6b6;
  border-bottom: none;
  color:#fff;
}
[class*="dg-tabs-"] h2.resp-accordion em{
  padding:0 5px 0 0
}
.dg-tabs-top10 .resp-tabs-container {   
  border-radius: 0;
}
.dg-tabs-top11 h2.resp-accordion,
.dg-tabs-left10 h2.resp-accordion{
  color:#fff;
}
.dg-tabs-top12 .resp-tabs-container,
.dg-tabs-top21 .resp-tabs-container{
  margin-bottom:6px;}

.tab_top_img {
    height: auto;
    overflow: hidden;
    position: inherit;
}
.dg-tabs-top20{
  text-align:left;
}
.dg-tabs-top10 h2.resp-accordion{
  color:#fff;
}
/*tab contaienr*/
.tab_list { 
    width: 100%;
    float: none;
}
.tab-title h3{
    margin: 10px 0 10px 0;
}
.dg-tabs-top17 .resp_margin .tab_list:first-child {
    padding: 0;
}
.dg-tabs-top20 .resp_margin .left {
    float: none;
    margin-right: 0;
    width: 100%;
}	
.dg-tabs-top20 .resp_margin .right {
    float: none;
    width: 100%;
}
}
.aboutus01-title1 h3,
.aboutus01-title2 h3{
    font-size: 20px;
    color: #20a3f0;  
    margin: 0 0 8px 0;
	font-weight:normal;
	line-height:1.2;
}
.aboutus01-title1 h1,
.aboutus01-title2 h1{
    font-size: 30px;
    color: #333;   
    margin: 0 0 28px 0;	
	font-weight:normal;
	line-height:1.2;
}
.aboutus01-title2{
	text-align:center;
}
.aboutus01-title1 ul {
    margin: 0 0 15px;
    padding: 0;
    list-style-type: none;
}
.aboutus01-title1 ul li {
    line-height: normal;
    padding:23px 0 0 0;
}
.aboutus01-title1 ul li span.fa{
    font-size: 16px;
    color: #20a3f0;
    margin: 0 15px 0 0;
}
.aboutus01-testimonials-box {
    position: relative;
    width: 100%;
}
.aboutus01-testimonials-box img{
   width:100%;
}
.aboutus01-testimonials blockquote p {
    font-size: 15px;
    line-height: 1.2;
    text-indent: 0;
    margin: 0;
	font-weight:bold;
	font-style:normal;
	color:#fff;
	text-transform:uppercase;	
}
.aboutus01-testimonials blockquote span{
	font-size:13px;
	font-style:normal;
	color:#fff;
}
.aboutus01-testimonials blockquote{
	padding:15px 20px;
	margin:0;
	font-style:normal;
	color:#fff;
	position:absolute;
	bottom:0;
	background: #000;
    opacity: 0.8;
	width:100%;
}
.aboutus01-testimonials .last_page:before, 
.aboutus01-testimonials .next_page:before{
	border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
	position: absolute;   
    z-index: 999;   
    width: 15px;
	height:15px;
	content:"";
	  transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
	top:50%;
	left:50%;
	margin:-6px 0 0 -8px
	}
.aboutus01-testimonials .last_page, 
.aboutus01-testimonials .next_page {  
    border: none;
    text-indent: -100px;
    overflow: hidden;
    width: 75px;
	min-height:74px;  
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    bottom: 0;
    right: 0;
    position:absolute;
    display: inline-block;
   
}
.aboutus01-testimonials .last_page:hover, 
.aboutus01-testimonials .next_page:hover{
  background:#20a3f0;
}
.aboutus01-testimonials .next_page:before{  
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
   
}
.aboutus01-testimonials .next_page{	
	right:75px;
}
.aboutus01-title2 .img .the2, .aboutus01-title2 .img .the3 {
    position: absolute;
    text-align: center;
    bottom: -24px;
    left: 55%;
}
.aboutus01-title2 .img .the2 {
    margin: 0 0 0 100px;
}
.aboutus01-title2 .img .the3 {
    left: auto;
    right: 50%;
    margin: 0 155px 0 0;
    bottom: -40px;
}
.aboutus01-title2 .img .the1 {
    text-align: center;
}
.aboutus01-title2 .img {
    position: relative;
    text-align: center;
    margin: 40px 0 0 0;
}
.aboutus01-title2 .img .the4 {
    position: absolute;
    top: 27px;
    right: 30px;
    width: 173px;
    height: 173px;
    border: 10px solid #F1F1F1;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #20a3f0;
    color: #fff;
    padding: 32px 17px;
}
.aboutus01-title2 .img .the4 span.fa {
    font-size: 33px;
}
.aboutus01-title2 .img .the4 p{
  font-size:14px;
  font-weight: bold;
  text-transform:uppercase;
  line-height: 1.4;
  margin: 8px 0 0 0;
}
.aboutus01-bg01{
    background: #eff0f1;
}
.aboutus01-ibox {
    text-align: center;
    margin: 30px 0 0 0;
}
.aboutus01-ibox .ico {
    width: 140px;
    height: 140px;
    line-height: 140px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #20a3f0;
    font-size: 40px;
    color: #fff;
    margin: 0 auto 30px;
    position: relative;
}
.aboutus01-ibox .ico > span {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #333333;
    font-size: 20px;
    color: #fff;
    top: 0;
    right: 0;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}
.aboutus01-ibox h5 {
    font-size: 18px;
    color: #333;
	line-height:1.2;
	margin:0 0 20px 0;
}
.aboutus01-ibox:hover .ico > span {
    -webkit-animation-name: flipInY;
    -moz-animation-name: flipInY;
    -o-animation-name: flipInY;
    animation-name: flipInY;
}
.aboutus01-bg02{
    background-image:url("/Portals/_default/Skins/ForVend/images/pages/aboutus01-bg02.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    padding: 220px 0 200px 0;
}
.aboutus01-title3 h1 {
    font-size: 60px;
    color: #fff;
    font-weight: normal;
    line-height: normal;
    margin: 0 0 30px 0;
	line-height:1.2;
}
.aboutus01-title3 p {
    padding: 0 160px;
    color: #fff;
    margin: 0 0 60px 0;
    font-size: 17px;
    line-height: 30px;
}
.aboutus01-title3 a.Button_white {
    padding: 16px 54px;
    margin: 0 15px 15px;
}
@media only screen and (max-width: 991px) {
	.aboutus01-bg02{
		background-attachment:scroll;
		padding: 60px 0 60px 0;
	}
	.aboutus01-title3 h1{
		font-size:20px;
	}
}
a.aboutus01-bnt, 
a:link.aboutus01-bnt, 
a:active.aboutus01-bnt, 
a:visited.aboutus01-bnt{
    padding: 16px 40px;
    font-size: 14px;
    display: inline-block;
    white-space: nowrap;
    color: #FFF;
    border: 2px solid #ffffff;
    margin: 0 12px 10px 0;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
a.aboutus01-bnt:hover {
    background-color: #3cceda;
    border-color: #3cceda;
	text-decoration:none;
}

.aboutus01-fullmain {
    margin: 0;
    display: table-row;
    clear: both;
    padding: 0;
}
.aboutus01-fullmain .aboutus01-fullbox{
    padding:80px 60px;
}
.aboutus01-fullmain .the1,
.aboutus01-fullmain .the2,
.aboutus01-fullmain .the3{
    display: table-cell;
    padding: 0;
    float: none;
	overflow:hidden;
}
.aboutus01-fullmain .the1 {
    background-color: #20a3f0;   
}
.aboutus01-fullmain .the2 {
    background-color: #E9E9E9;   
}
.aboutus01-fullmain .the3 {
    background-color: #262626; 
}
.aboutus01-fullmain .aboutus01-fullbox h3 {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 30px 0;
	line-height:1.2;
}
.aboutus01-fullmain  .the2 .aboutus01-fullbox h3 {
    color: #333;
}
.aboutus01-fullmain .aboutus01-fullbox p {
    color: #fff;
    margin: 0;
}
.aboutus01-fullmain .the2 .aboutus01-fullbox p {
    color: #333;
}
.aboutus01-fullmain .the2 .aboutus01-fullbox .icon em.fa{
    position: absolute;
    color: rgba(0,0,0,0.1);
    top: -89px;
    right: -89px;
    font-size: 266px;
}
.aboutus01-fullmain .the1 .aboutus01-fullbox .icon em.fa {
    position: absolute;
    color: rgba(255,255,255,0.3);
    top: -89px;
    right: -89px;
    font-size: 266px;
}
.aboutus01-fullmain .the3 .aboutus01-fullbox .icon em.fa{
    position: absolute;
    color: rgba(255,255,255,0.1);
    top: -89px;
    right: -89px;
    font-size: 266px;
}
.aboutus01-fullmain .aboutus01-fullbox .links a {
    color: #fff;
    font-size: 15px;
    padding: 19px 55px;
	line-height:1.2;
    border: 2px solid #fff;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    display: inline-block;
    margin: 30px 0 0 0;
    text-decoration: none;
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.aboutus01-fullmain .aboutus01-fullbox .links a:hover {
    background-color: #333!important;
    border-color: #333!important;
    color: #FFF!important;
}
.aboutus01-fullmain .the2 .aboutus01-fullbox .links a {
    color: #333;
    border: 2px solid #333;
}
.aboutus01-ibox02 {
    margin: 30px 0 0 0;
}
.aboutus01-ibox02 img {
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.aboutus01-ibox02 .text_sytle_1 {
    padding: 25px 30px;
    border: 1px solid #DDDDDD;
    border-top: none;
    position: relative;
}
.aboutus01-ibox02 .text_sytle_1 h3 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
	line-height:1.2;
	margin:0 0 8px 0;
}
.aboutus01-ibox02 .text_sytle_1 p {
    margin: 0;
}
.aboutus01-ibox02 .text_sytle_1:before {
    position: absolute;
    content: "";
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    bottom: 100%;
    left: 30px;
}
.aboutus01-ibox02.photo_box:hover .shade {
    filter: alpha(opacity=100);
    opacity: 1;
	background:#20a3f0;
}
.aboutus01-ibox02.photo_box .ico span{
  background:#fff;
  color:#20a3f0;
}
/*about us2*/

/*aboutus02-tab01*/
.aboutus02-tab01 ul.resp-tabs-list{
  width:100%;
  border:0;
}
.aboutus02-tab01 ul.resp-tabs-list li span{
    padding:14px 5px;
	display:inline-block;
	line-height:1.2;
}
.aboutus02-tab01 ul.resp-tabs-list li{
    margin-top:4px;
	padding:0;
	text-align:center;
	background:#f3f3f3;
	margin-bottom:0;
	 font-size:13px;
	 color:#444;
	width:33.33333333%;
}
.aboutus02-tab01 ul.resp-tabs-list li:first-child{
    border-left: 1px solid #e8e8e8;
}
.aboutus02-tab01 ul.resp-tabs-list li:last-child{
    padding-right:1px;
}
.aboutus02-tab01 ul.resp-tabs-list li.resp-tab-active{
    border-top: 5px solid #20a3f0;
	margin-top: 0;
	background:#fff;	
}
.aboutus02-tab01 ul.resp-tabs-list li.resp-tab-active{   
    color: #383838;
}
.aboutus02-tab01 .resp_margin{
    padding:30px;
}
.aboutus02-tab01 .resp-tabs-container{
  margin:0 0 30px 0;
}

@media only screen and (max-width: 767px) {
	.aboutus02-tab01 .left{
		float:none;
		margin:0 0 20px;
	}
}

/*aboutus02-tab01 end*/
.aboutus02-title01{
    text-align: center;
}
.aboutus02-title01 h2{
    font-size: 24px;
    color: #333333;
    font-weight: normal;
    line-height: 1.3;
    display: inline-block;
    position: relative;
    padding: 0 0 20px 0;
	position:relative;
	margin:0 0 25px 0;
}
.aboutus02-title01 h2:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -33px;
    width: 66px;
    height: 2px;
	background-color: #20a3f0;
}
.aboutus02-bnt{
    display: inline-block;
    padding: 10px 43px;
    color: #fff !important;
    position: relative;
    transition: all 300ms ease-in-out 0s;
	background:#20a3f0;
	margin:0 0 20px 0;
}
.aboutus02-bnt:hover {
    text-decoration: none;
    background-color: #444444;
}
.aboutus02-tit2 {
    font-size: 24px;
    color: #fff;
    font-weight: normal;
    line-height: 1.3;
    text-align: center;
    position: relative;
    margin-bottom: 45px;
    padding: 0 0 20px 0;
}
.aboutus02-tit2:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -33px;
    width: 66px;
    height: 2px;
	background-color: #20a3f0;
}
.aboutus02-meetteam {
    margin-bottom: 20px;
}
.aboutus02-teambox, .aboutus02-meetteam .team_member {
    transition: all 300ms ease-in-out 0s;
}
.aboutus02-teambox {
    width: 214px;
    height: 214px;
    padding: 7px;
    margin: 0 auto;
    border-radius: 50%;
}
.aboutus02-meetteam .team_member {
    border-radius: 50%;
    position: relative;
    border: 3px solid #b2b5ad;
    margin: 0 auto;
}
.aboutus02-meetteam .team_member>img {
    border-radius: 50%;
}
.aboutus02-meetteam .team_member>span {
    position: absolute;
    right: 0;
    top: 141px;
    font-size: 20px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: #20a3f0;
    color: #fff;
    text-align: center;
    border-radius: 50%;
}
.aboutus02-meetteam>p {
    color: #fff;
    padding: 25px 0 0 0;
    text-align: center;
}
.aboutus02-meetteam>p>a {
    display: block;
    padding-bottom: 15px;
    font-size: 14px;
    color: #FFF;
    text-decoration: none;
    transition: color ease-in 200ms;
    -moz-transition: color ease-in 200ms;
    -webkit-transition: color ease-in 200ms;
    -o-transition: color ease-in 200ms;
    -ms-transition: color ease-in 200ms;
}
.aboutus02-bg01{
    background-image: url("/Portals/_default/Skins/ForVend/images/pages/aboutus02-bg01.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
@media only screen and (max-width: 991px) {
	.aboutus02-bg01 {
		background-attachment:scroll;
	}
}
.aboutus02-meetteam .aboutus02-teambox:hover {
    background: rgba(255,255,255,0.2);
}
.aboutus02-meetteam .team_member:hover {
    border: 3px solid #20a3f0;
}
.aboutus02-meetteam .team_member>span.fa-volume-down{
    background-color: #f36e6e;
}
.aboutus02-meetteam .team_member>span.fa-video-camera{
    background-color: #efb402;
}
.aboutus02-meetteam .team_member>span.fa-pencil{
    background-color: #5aaff0;
}
.aboutus02-bg02 {
    border-top: 1px solid #fff;
	background-color: #20a3f0;
}
.aboutus02-mumber01 .column:first-child {
    border: none;
}
.aboutus02-mumber01 .column {
    float: left;
    width: 20%;
    text-align: center;
    border-left: 1px solid rgba(255,255,255,0.5);
    padding: 40px 0 40px 0;
}
.number_Animation.aboutus02-mumber01 .number {
    color: #fff;
    display: block;
    font-weight: normal;
    font-size: 48px;
}
.number_Animation.aboutus02-mumber01 .number_name {
    font-weight: normal;
    font-size: 13px;
    color: #fff;
    opacity: 0.9;
}
/*aboutus02-testimonials01*/
.aboutus02-testimonials01{
   margin-bottom:13px;
}
.aboutus02-testimonials01 .last_page,
.aboutus02-testimonials01 .next_page {
	width:40px;
	height:40px;
	border:1px solid #fff;
	background-color:transparent;
	top: 30px;
	bottom: 0;
	left: 50%;
	right:auto;
	font-size:0;
	overflow: hidden;
	text-indent:-999;
	}
.aboutus02-testimonials01 .last_page {
	margin: 0 0 0 -110px;
	}
.aboutus02-testimonials01 .next_page{
	margin: 0 0 0 70px;
	}
.aboutus02-testimonials01 .last_page:hover,
.aboutus02-testimonials01 .next_page:hover{
	background-color:#fff !important;
	border:1px solid #transparent;
	}
.aboutus02-testimonials01 .last_page:before{
	content: "";
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	width: 8px;
	height: 8px;
	left:50%;
	top: 50%;
	position: absolute;
	margin: -4px 0 0 -4px;
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	}
.aboutus02-testimonials01 .last_page:hover:before{
	border-top: 2px solid #22bb9c;
	border-left: 2px solid #22bb9c;
	}
.aboutus02-testimonials01 .next_page:before{
	content: "";
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	width: 8px;
	height: 8px;
	left:50%;
	top: 50%;
	position: absolute;
	margin: -4px 0 0 -4px;
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	}
.aboutus02-testimonials01 .next_page:hover:before{
	border-right: 2px solid #22bb9c;
	border-bottom: 2px solid #22bb9c;
}
.aboutus02-testimonials01 .dot {
	right: 0;
	bottom: 26px;
	width: 100%;
	text-align: center;
}
.aboutus02-testimonials01 .dot a {
	border: 0px solid #aaa;
	width: 13px;
	height: 13px;
	background:#d6d6d6;
}
.aboutus02-testimonials01 .dot a.actived {
	width: 13px;
	height: 13px;
	border: 0px solid #919191;
	background:#20a3f0
}
.aboutus02-testimonials01{
	padding:49px 0px 63px 0px;

}
.aboutus02-testimonials01 li{
	margin:49px 0 0 0;
	padding:0 15px 60px 15px;
	border:1px solid #dbdbdb;
	border-radius:5px;
	}
.aboutus02-testimonials01 blockquote {
	background: none;
	padding: 0px;
	margin:-51px 0 0 0px;
	text-indent: 0;
	border-left:none;
}
.aboutus02-testimonials01 blockquote p {
	padding: 0px;
	text-align: center;
	font-size: 13px;
	font-style: normal;
	text-indent:inherit;
	line-height:20px;
}
.aboutus02-testimonials01 .Pic {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	vertical-align: middle;
	display: block;
	margin: 0px auto;
	overflow: hidden;
	text-align: center;
	text-indent: 0;
}
.aboutus02-testimonials01 small {
	position: relative;
	top: 0;
	left: 0;
	font-size:14px;
	font-style: normal;
	padding: 10px 0 7px;
	width: 100%;
	font-weight: normal;
	text-align: center;
	color: #20a3f0;
}
.aboutus02-testimonials01 small:before {
	content: " ";
}
.aboutus02-testimonials01 small span {
	display: block;
	font-weight: normal;
	text-transform:none;	
	color:#444444;
	font-size:13px;
	margin:4px 0 2px 0;
}
/*aboutus02-testimonials01 end*/
.aboutus02-demo{
   padding:4px 0 0 0
}
.aboutus02-demo a,.aboutus02-demo a:link {
    display: block;
    border: 1px solid #e8e8e8;
    text-align: center;	
		transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.aboutus02-demo a:hover{
	background-color:rgba(0,0,0,0.1);
}
.aboutus02-demo .row:first-child {
    padding: 0 0 30px 0;
}
.aboutus02-carouse .owl-buttons .owl-prev,
.aboutus02-carouse .owl-buttons .owl-next{
	filter:alpha(opacity=0);
	opacity:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
	background:#000;
	    border-radius: 0%;
    -moz-border-radius: 0%;
    -webkit-border-radius: 0;
	width:30px;
}
.aboutus02-carouse:hover .owl-buttons .owl-prev,
.aboutus02-carouse:hover .owl-buttons .owl-next{
	filter:alpha(opacity=100);
	opacity:1;
}
.aboutus02-carouse .item {
	text-align:center;
	margin:auto;
	position:relative;
	overflow:hidden;
	cursor:pointer;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.aboutus02-carouse .item .photo_box{
	margin:0;
	}
.aboutus02-carouse .owl-buttons .owl-prev{
   left:0;
}
.aboutus02-carouse .owl-buttons .owl-next{
   right:0;
}
.aboutus02-carouse .photo_box .content p{
  margin:0;
  line-height:1.2
}
.aboutus02-carouse .photo_box .content h3{
 margin-bottom:0;
}
.aboutus02-carouse .photo_box .ico span{
  background:#20a3f0
}
.aboutus02-title3 h2 {
    font-size: 20px;
    color: #333333;
    font-weight: normal;
    line-height: 1.3;
    display: inline-block;
    position: relative;
    padding: 0 0 20px 0;
	margin:0 0 20px 0;
}
.aboutus02-title3 h2:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 66px;
    height: 2px;
	background-color: #20a3f0;
}
/*Our Team2*/
.team-Detail-bg{
   background-color:#f2f2f2;
}
.ourteam02-ibox {
    text-align: center;
    margin: 0 0 80px 0;
}
.ourteam02-ibox .photo_box {
    position: relative;
    margin: 0 0 30px 0;
}
.ourteam02-ibox .photo_box:hover em.glyphicons {
    display: none;
}
.ourteam02-ibox .photo_box .shade {
    background-color: #20a3f0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.ourteam02-ibox .photo_box:hover .shade {
    filter: alpha(opacity=100);
    opacity: 1;
}

.ourteam02-ibox .photo_box .ico span {
    background-color: transparent;
    font-size: 40px;
}
.ourteam02-ibox h3 {
    font-size: 17px;
    color: #333; 
    font-weight: bold;
    margin: 0 0 5px 0;
	line-height:1.2;
}

.ourteam02-ibox h6 {
    font-size: 13px;
    color: #20a3f0;
    font-weight: normal;
    margin: 0 0 20px 0;
}

.ourteam02-ibox p {
    font-size: 13px;
    color: #666;
    margin: 0 0 20px 0;
}

.ourteam02-ibox .icon a.fa {
    font-size: 15px;
    margin: 0 5px;
	width:33px;
	height:33px;
	text-align:center;
	line-height:33px;
	color:#fff;	
	border-radius:50%;
}
.ourteam02-ibox .icon a:hover.fa{
   text-decoration:none;
}
.ourteam02-ibox .icon a.the1.fa {
    background: #00BDED;
}

.ourteam02-ibox .icon a.the2.fa {
    background: #2F4C9F;
}

.ourteam02-ibox .icon a.the3.fa {
    background: #E62B97;
}
.ourteam02-ibox .photo_box em.fa{
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: #20a3f0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    font-size: 24px;
}
.ourteam02-bg{
  background:#EFF0F1;
}
.ourteam02-full {
    position: relative;
}

.ourteam02-full .ourteam02-full-left.the1 {
    float: left;
    width: 50%;
    text-align: center;
}

.ourteam02-full .ourteam02-full-left.the1 .ourteam02-full-lmain {
    position: relative;
    padding: 115px 125px;
    background-color: #00CFD9;
}

.ourteam02-full .ourteam02-full-left.the1 .ourteam02-full-lmain:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    border-width: 18px 0 18px 18px;
    border-color: transparent transparent transparent #00CFD9;
    border-style: solid;
    z-index: 1;
    margin: -9px 0 0 0;
}

.ourteam02-full .ourteam02-full-left.the1 .ourteam02-full-lmain img {
    display: inline-block;
    margin: 0 0 30px 0;
}

.ourteam02-full .ourteam02-full-left.the1 .ourteam02-full-lmain p {
    font-size: 15px;
    color: #f4f5f6;
    margin: 0 0 30px 0;
}

.ourteam02-full .ourteam02-full-left.the1 .ourteam02-full-lmain h3 {
    font-size: 17px;
    color: #f4f5f6;  
    margin: 0 0 5px 0;
	line-height:1.2;
}

.ourteam02-full .ourteam02-full-left.the1 .ourteam02-full-lmain h6 {
    font-size: 13px;
    color: #f4f5f6;
    font-weight: normal;
    margin: 0;
	line-height:1.2;
}

.ourteam02-full .ourteam02-full-right.the1 {
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url("/Portals/_default/Skins/ForVend/images/pages/ourteam02-r.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.ourteam02-full .ourteam02-full-left.the2 {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("/Portals/_default/Skins/ForVend/images/pages/ourteam02-l.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.ourteam02-full .ourteam02-full-right.the2 {
    float: right;
    width: 50%;
    text-align: center;
}

.ourteam02-full .ourteam02-full-right.the2 .ourteam02-full-rmain {
    padding: 100px 125px;
    background-color: #2C82D4;
    position: relative;
}

.ourteam02-full .ourteam02-full-right.the2 .ourteam02-full-rmain:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    border-width: 18px 18px 18px 0;
    border-color: transparent #2C82D4 transparent transparent;
    border-style: solid;
    z-index: 1;
    margin: -9px 0 0 0;
}

.ourteam02-full .ourteam02-full-right.the2 .ourteam02-full-rmain img {
    display: inline-block;
    margin: 0 0 30px 0;
}

.ourteam02-full .ourteam02-full-right.the2 .ourteam02-full-rmain p {
    font-size: 15px;
    color: #f4f5f6;
    margin: 0 0 30px 0;
}

.ourteam02-full .ourteam02-full-right.the2 .ourteam02-full-rmain h3 {
    font-size: 17px;
    color: #f4f5f6;  
    margin: 0 0 5px 0;
	line-height:1.2;
}

.ourteam02-full .ourteam02-full-right.the2 .ourteam02-full-rmain h6 {
    font-size: 13px;
    color: #f4f5f6;
    font-weight: normal;
    margin: 0;
	line-height:1.2;
}
@media only screen and (max-width: 767px) {
	.ourteam02-full .ourteam02-full-left.the1 .ourteam02-full-lmain:before{
		display:none;
	}	
}

/*Our Team2*/
.ourteam01-title1{
  text-align:center;
  padding:0 0 20px 0;
}
.ourteam01-title1 h4{
    font-size: 30px;
    line-height: 1.2;
    color: #333333;
    white-space: normal;
    vertical-align: middle;
    font-weight: bold;
    margin: 0;
    display: inline-block;
    position: relative;
    padding: 0 27px;
}
.ourteam01-title1 h4:before {
    content: "";
    border-left: 3px solid #20a3f0;
    height: 22px;
    margin: 0;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -11px;
}
.ourteam01-title1 h4:after {
    content: "";
    border-right: 3px solid #20a3f0;
    height: 22px;
    margin: 0;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -11px;
}
.ourteam01-title2 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 30px;
	line-height:1.2;
}
.ourteam01-title2 span {
    display: block;
    color: #999999;
    font-size: 13px;
    letter-spacing: 1px;
	margin:8px 0 0 0;
}
.ourteam01-dropcaps{
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    float: left;
    font-size: 40px;  
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    margin: 5px 25px 15px 0;
    border-color: #20a3f0;
    color: #20a3f0;
	border: 1px solid #21a3f0;
}

.ourteam01-list {
    margin: 0;
    padding: 0;
    clear: both;
    list-style: none;
    overflow: hidden;
}
.ourteam01-list li {
    width: 50%;
    float: left;
    padding: 5px 0;
}
.ourteam01-list li .fa {
    color: #999999;
    font-size: 18px;
    vertical-align: middle;
    margin-right: 10px;
}
@media only screen and (max-width: 767px) {
	.ourteam01-list li{
		width:auto;
		
	}
}
a.ourteam-bnt, 
a:link.ourteam-bnt, 
a:active.ourteam-bnt, 
a:visited.ourteam-bnt{
    font-size: 14px;
    padding: 15px 45px;
    color: #FFF!important;
    background-color: #20a3f0;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    margin: 0 0 0 0;
    transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
}
a.ourteam-bnt:hover {
    background-color:#444!important;
    text-decoration: none;
}
.ourteam01-ibox {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-bottom: 3px solid #21a3f0;
    padding: 55px 10px;
    margin-bottom: 20px;
    color: #333333;
}

.ourteam01-ibox .fa {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 28px;
    background-color: #21a3f0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #FFF;
    margin: 0 0 30px;
}

.ourteam01-ibox h3 {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
	line-height:1.2;
	margin-top:0;
}
.ourteam01-ibox p {
    margin-bottom: 20px;
}
.ourteam01-bg01{
  background:#f4f4f4;
}
.ourteam01-bg02 {
    background: url("/Portals/_default/Skins/ForVend/images/pages/ourteam01-bg02.jpg") no-repeat center center;
    background-size: cover;
}
.ourteam01-title3 {
    font-size: 30px;
    line-height: 1.2;
    color: #333333;
    white-space: normal;
    vertical-align: middle;
    font-weight: bold;
    margin: 0 0 20px;
    position: relative;
    text-align: center;
}
.ourteam01-title3 span {
    color: #FFF;
}
.ourteam01-title3 span {
    display: inline-block;
    position: relative;
    padding: 0 26px;
}
.ourteam01-title3 span:before {
    content: "";
    border-left: 3px solid #20a3f0;
    height: 22px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -11px;
}
.ourteam01-title3 span:after {
    content: "";
    border-right: 3px solid #20a3f0;
    height: 22px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -11px;
}
.ourteam01-title3 span:before, 
.ourteam01-title3 span:after {
    border-color: #FFF;
}
.ourteam-ibox02 {
    margin: 0;
    padding: 0;
    background-color: #FFF;
    overflow: hidden;
    box-shadow: 0 0 35px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 0 35px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0 0 35px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
}
.ourteam-ibox02 li {
    list-style: none;
    width: 33.333%;
    float: left;
    border-right: 1px solid #dddddd;
    padding:80px 85px;
    text-align: left;
    color: #333;
}
.ourteam-ibox02 li:last-child {
    border: none;
}
.ourteam-ibox02 li img {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    margin-bottom: 55px;
    max-width: 100%;
}
.ourteam-ibox02 li h3 {
    color: #333333;
    font-size: 18px;
    margin:0 0 30px 0;
	font-weight:normal;
	line-height:1.2;
}
.ourteam-ibox02 li h3 span {
    display: block;
    font-size: 13px;
    color: #999999;
    padding-top: 8px;
}
.ourteam-ibox02 li a {
    font-size: 14px;
}
.ourteam-ibox02 {
    margin-bottom: -280px;
}
.ourteam01-chart {
	text-align: center;
}
.ourteam01-chart .percentage3 {
	position: relative;
	margin: auto;
	width: 196px;
	height: 196px;
	border-width:3px;
	border-style:solid;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.ourteam01-chart .percentage3 canvas{
	margin:-1px 0 0 -1px;
}
.ourteam01-chart .percentage_inner {
	position:absolute;
	top:12px;
	left:12px;
	text-align:center;
	font-size:40px;
	font-weight:bold;
	width: 166px;
	height: 166px;
	line-height:166px;
	border-width:2px;
	border-style:solid;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	color:#333333;
}
.ourteam01-chart p{
	color:#FFF;
	font-size:16px;
	font-weight:normal;
}
.ourteam01-chart .percentage3 + p{
	color:#333333;
	font-size:15px;
	padding:30px 0 0;
	font-weight:bold;
}
.ourteam01-logo {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
.ourteam01-logo li {   
    padding: 8px 10px;
	width:16.6%;
    border-right: 1px solid #d3d3d3;
    margin-bottom: 8px;
	float:left;
}
.ourteam01-logo li:last-child {
    border: none;
}
.ourteam01-bg03 {
    background-color: #20a3f0;
	color:#fff;
}
.ourteam01-text{
    position: relative;
}
.ourteam01-text a.ourteam-bnt02,
.ourteam01-text a:link.ourteam-bnt02, 
.ourteam01-text a:active.ourteam-bnt02, 
.ourteam01-text a:visited.ourteam-bnt02 {
    line-height:1.2;
	margin:10px 108px 0 108px;
	padding:19px 58px;
	font-weight:normal;
	min-width:195px;
	display:inline-block;
	letter-spacing:normal;	  
}
.ourteam01-text .text_left {
    text-align: center;
    font-size: 25px;
    padding: 10px 0;
    font-weight: bold;
	letter-spacing:2px;  
}
.ourteam01-text .text_right {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.ourteam01-text .text_right .ourteam-bnt02 {
    margin: 0;
}
.ourteam-bnt02, a.ourteam-bnt02, a:link.ourteam-bnt02, a:active.ourteam-bnt02, a:visited.ourteam-bnt02 {
    padding: 18px 58px;
    font-size: 15px;
    display: inline-block;
    white-space: nowrap;
    color: #fff;
    border: 2px solid #fff;
    margin: 0 12px 10px 0;
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -webkit-transition: all ease-in 200ms;
    transition: all ease-in 200ms;
}
.ourteam-bnt02:hover, a.ourteam-bnt02:hover {
    background-color: #2e2e2e;
    border-color: #2e2e2e;
    color: #FFF;
    text-decoration: none;
}
.ourteam01-number{
	padding-bottom:10px;
}
.ourteam01-number .number-left{
  text-align:right;
  width:40%;
  float:left;
  padding:55px 0;
}
.ourteam01-number .number-center{
  float:left;
  width:20%;  
}
.ourteam01-number .number-center em{
  width:70%;
  height:160px;
  background:#d33999;
  text-align:center;
  color:#fff;
  font-size:30px;
  line-height:160px;
  border-bottom: 15px solid rgba(0,0,0,0.2);
  margin:0 auto;
  display:block;
  position:relative;
}
.ourteam01-number .number-center em:after{
	border:15px solid transparent;
    border-right:20px solid #d33999;
    content: "";
    display: block;
    position: absolute;
    left:-35px;
    top: 50%;
    width: 0;
	margin-top:-8px;
}
.ourteam01-number .number{
  font-size:30px;
  color:#d33999;
  font-weight:bold;
}
.ourteam01-number .text_title{
  font-size:20px;
  color:#333333;
  font-weight:bold;
}
.ourteam01-number .number-right{
  float:left;
  width:40%;
}
.ourteam01-number .text_title{
    display: inline-block;
	padding:0 0 0 40px;
}
.ourteam01-number .number-right h2{
  font-size:15px;
  color:#333;
  font-weight:bold;
  position:relative;
   margin:0 0 15px 0;
  padding:0 0 20px 0;
  text-transform:uppercase;
  line-height:1.2;
}
.ourteam01-number .number-right h2:before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  border-bottom:2px solid #666;
  width:35px; 
}
.ourteam01-number .number-right span{
  color:#d33999
}
.ourteam01-number.number-color2 .number-right,
.ourteam01-number.number-color4 .number-right{
   text-align:right;
}
.ourteam01-number.number-color2 .number-left,
.ourteam01-number.number-color4 .number-left{
  text-align:left;
}
.ourteam01-number.number-color2 .number-right h2:before,
.ourteam01-number.number-color4 .number-right h2:before{
  right:0;
  left:auto;
}
.ourteam01-number.number-color2 .number-center em:after{
  border-left: 20px solid #20a3f0;
  right: -20px;
  border-right:0;
  left:auto;
}
.ourteam01-number.number-color3 .number-center em:after{
  border-right: 20px solid #f3aa2c;
}
.ourteam01-number.number-color4 .number-center em:after{
  border-left: 20px solid #3cceda;
  right: -20px;
  border-right:0;
  left:auto;
}
.ourteam01-number.number-color2 .number-right span,
.ourteam01-number.number-color2 .number{
  color:#20a3f0
}
.ourteam01-number.number-color3 .number-right span, 
.ourteam01-number.number-color3 .number {
    color: #f3aa2c;
}
.ourteam01-number.number-color4 .number-right span, 
.ourteam01-number.number-color4 .number {
    color: #3cceda;
}
.ourteam01-number.number-color2 .number-center em{
  background:#20a3f0
}
.ourteam01-number.number-color3 .number-center em{
  background:#f3aa2c
}
.ourteam01-number.number-color4 .number-center em{
  background:#3cceda
}
.outteam01-bg02{
    background-image: url("/Portals/_default/Skins/ForVend/images/pages/outteam01-bg02.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-attachment: fixed;  
}
@media only screen and (max-width: 991px) {
	.outteam01-bg02 {
		background-attachment:scroll;
	}
}
/*history 1*/
.history-box {
    position: relative;
}

.history-box:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 95px;
    border-right: 8px solid #e0e0e0;
}

.history-box .history-boxmain {
    padding-left: 172px;
    position: relative;
    margin-bottom: 80px;
}

.history-box .history-boxmain .history-boxdate {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #fff;
    color: #FFF;
    font-size: 18px;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 89px;
    border: 3px solid #20a3f0;
	overflow:hidden;
}

.history-box .history-boxmain .history-boxdate span {
    display: block;
    font-size: 14px;
    padding: 20px 0 0;
}

.history-box .history-boxmain .history-boxcontent {
    border: 1px solid #dddddd;
	border-left:3px solid #21a3f0;
    padding: 60px;
    position: relative;
    background-color: #FFF;
    color: #555;
}

.history-box .history-boxmain .history-boxcontent:after {
    content: "";
    overflow: hidden;
    display: block;
    height: 0;
    clear: both;
}

.history-box .history-boxmain .history-boxcontent:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: -10px;
    top: 45px;
    border:10px solid transparent;
    border-right:10px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    left:-23px;
    top:60px;
    width: 0;	
}
.history-box .history-boxmain .history-boxpic { 
    float: left;
    margin-right: 30px;
    width: 46%;
    position: relative;
    overflow: hidden;
}
.history-box .history-boxmain .history-boxpic img {
    width: 100%;
}
.history-box .history-boxmain .history-boxpic .history-boxinfo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px 10px 10px;
    background-color: #000;
    background-color: rgba(0,0,0,0.55);
    color: #FFF;
    font-size: 13px;
}

.history-box .history-boxmain .history-boxpic .history-boxinfo span {
    font-size: 18px;
    color: #bbbbbb;
    vertical-align: middle;
    margin: 0 4px 4px 10px;
    transition: color ease-in 200ms;
    -moz-transition: color ease-in 200ms;
    -webkit-transition: color ease-in 200ms;
    -o-transition: color ease-in 200ms;
    -ms-transition: color ease-in 200ms;
}

.history-box .history-boxmain .history-boxpic .history-boxinfo span:hover {
    color: #20a3f0
}

.history-box .history-boxmain .history-boxright {
    overflow: hidden;
	width:47%;
	float:right;
}
.history-box .history-boxmain h3 {
    color: #333333;
    font-size: 20px;   
    padding: 0 0 25px 0;
	margin:0;
	line-height:1.2;
	
}
.history-box .history-boxmain h4{
	text-transform:uppercase;
	font-size:13px;
	color:#666;
	margin:0 0 20px 0;
}
.history-box .history-boxmain h3 span{
	display:block;
	font-weight:normal;
	font-size:13px;
	padding:12px 0 0 0;	
	color:#666666;
}
.history-box .history-boxmain ul{
	padding:0 0 10px 0;
	margin:0;
}
.history-box .history-boxmain ul li{
	list-style:none;
	position:relative;
	padding:5px 0 5px 25px;
	line-height:1.2;
	
}
.history-box .history-boxmain ul.history01-list li{
	width:50%;
	float:left;	
}
.history-box .history-boxmain p{
	margin:0 0 15px 0;
}
.history-box .history-boxmain ul li span{
	position:absolute;
	left:0;
	top:7px;}

.history-box .history-boxmain .photo_box .ico span{
	color:#3e3e3e;
	background:#fff;	
}
.history-box .history-boxmore,.history-box .history-boxgotop {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #888888;
    color: #FFF;
    font-size: 18px;
    text-align: center;
    position: relative;
    z-index: 10;
    transition: background-color ease-in 200ms;
    -moz-transition: background-color ease-in 200ms;
    -webkit-transition: background-color ease-in 200ms;
    -o-transition: background-color ease-in 200ms;
    -ms-transition: background-color ease-in 200ms;
}

.history-box .history-boxmore a,.history-box .history-boxmore a:hover {
    display: block;
    color: #FFF;
    text-decoration: none;
}
.history-box .history-boxmore:hover,.history-box .history-boxgotop:hover {
    background-color: #20a3f0
}
.history-box .history-boxgotop {
    margin:75px 0 0 55px;
    cursor: pointer;
    position: relative;
}
.history-box .history-boxgotop:before {
    content: "";
    border-top: 6px solid #FFF;
    border-left: 6px solid #FFF;
    width: 25px;
    height: 25px;
    display: inline-block;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    margin-top: 35px;
}
.history01-carousel .owl-buttons .owl-prev, 
.history01-carousel .owl-buttons .owl-next {
	position: absolute;
	left: 0;
	top: 50%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 0px;
	text-align: center;
	cursor: pointer;
	margin: -15px 0 0 0;
	border: none;
	border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	-webkit-border-radius: 0 3px 3px 0;
	background-color: #fff;
}
.history01-carousel .owl-buttons .owl-next {
	left: auto;
	right: 0;
	border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	-webkit-border-radius: 3px 0 0 3px;
}
.history01-carousel .owl-buttons .owl-prev:before, 
.history01-carousel .owl-buttons .owl-next:before {
	border-left: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
}
.history01-carousel .owl-buttons .owl-next:before {
	border-left: none;
	border-right: 2px solid #ccc;
}
.history01-carousel .owl-buttons .owl-prev:hover, 
.history01-carousel .owl-buttons .owl-next:hover{
	background:#fff;	
}
.history01-carousel .owl-buttons .owl-prev:hover:before, 
.history01-carousel .owl-buttons .owl-next:hover:before {
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
}
.history01-carousel .owl-buttons .owl-next:hover:before {
	border-left: none;
	border-right: 2px solid #fff;
}

a.history01-bnt, 
a:link.history01-bnt, 
a:active.history01-bnt, 
a:visited.history01-bnt {
    font-size: 14px;
    padding: 15px 45px;
    color: #FFF!important;
    background-color: #20a3f0;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    margin: 15px 0 0 0;
    transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
}
a:hover.history01-bnt{
	background:#333!important;
}
.history-top{
	position:relative;
	padding:0 0 40px 0;
}
.history-top img{
	padding:2px;
	background:#fff;
	border:2px solid #20a3f0;
	border-radius:50%;
}
.history01-carouse02{
	position:relative;
}
.history01-carouse02 .owl-pagination{
	text-align:right;
	 margin:-35px 0 0 0;
	z-index:9999;
	position:relative;
	padding:0 20px 0 0;	
}
.history01-carouse02 .owl-page{
	margin:0 0 0 6px;
	vertical-align:top;
	width:15px;
	height:15px;
	background:#8e8d8d;
	border:none;	
}
.history01-carouse02.carousel img {
    width: 100%;
}
/*history 02*/
.history02 {
    position: relative;
    z-index: 2;  
}
.history02 img {
    width: 100%;
}
.history02:before {
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    left: 50%;
    border-left: 1px solid #e9e8e8;
    z-index: -1;
}
.history02 .time_year {
    border: 1px solid #bcbcbc;
    width: 122px;
    height: 72px;
    margin: 0 auto 64px;
    clear: both;
}
.history02 .time_year span {
    background-color: #bcbcbc;
    text-align: center;
    font-size: 26px;
    color: #ffffff;
    border: 4px solid #ffffff;
    display: block;
    height: 70px;
    line-height: 64px;
}
.history02 .time_box_left,.history02 .time_box_right {
    position: relative;
    clear: both;
}
.history02 .time_box_left:after,.history02 .time_box_right:after {
    clear: both;
    content: ".";
    height: 0;
    font-size: 0;
    visibility: hidden;
    display: block;
}
.history02 .time_box_top{
	padding:8px 8px 50px 8px;
	border: 1px solid #d4d4d4;
	background:#fafafa;	
	position:relative;
	margin:30px 0 60px 0;
}
.history02 .time_box_top:before{
	content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: -11px;
    border-bottom: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
    background-color: #FFF;
	    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
	margin:0 0 0 -10px;
	left:50%;
}
.history02 .time_content,.history02 .time_photo {
    width: 44%;
    margin: 0 0 0 6%;
    float: left;
    border: 1px solid #d4d4d4;
    padding: 8px 8px 30px 8px;
    position: relative;
    margin-bottom: 60px;
	background:#fafafa;
}
.history02 .time_content{
	 margin:0 6% 0 0;
}
.history02 .time_photo{
	margin-top:100px;}

.history02 .time_photo {
    float: right;
}
.history02 .time_month {
    width: 70px;
    height: 70px;
	line-height:70px;  
    text-align: center;
    background-color: #fff;
    color: #666;
    font-size: 14px;
    position: absolute;
    left: 50%;
    margin: 0 0 0 -35px;
    margin-top: 86px;
	border-radius:50%;
	border:1px solid #e9e8e8;
	z-index:1;
}
.history02 .time_month.time_month_top{
	margin-top:-35px;
	top:0;
}
.history02 .time_month.time_month_two{
	z-index: 1;
    margin:0 0 0 -34px;
    right: auto;
    top: 0;	
}
.history02 .time_month.time_month_one{
	z-index: 1;     
    top:102px;
	margin:0 0 0 -34px;
}
.history02 .time_box_left .time_content:before,
.history02 .time_box_left .time_photo:before,
.history02 .time_box_right .time_photo:before,
.history02 .time_box_right .time_content:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top:27px;
    border-bottom: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
    background-color: #fafafa;
}
.history02 .time_box_left .time_content:before,.history02 .time_box_right .time_photo:before {
    right: -11px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.history02 .time_box_left .time_photo:before,.history02 .time_box_right .time_content:before {
    left: -11px;
    transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}

.history02 .time_box_right .time_photo {
    float: left;
}

.history02 .time_box_right .time_content {
    float: right;
    margin-top: 56px;
}

.history02 .time_box_right .time_photo:before {
    top: 150px;
}
.history02 .time_box_right .time_month {
    margin-top: 142px;
}
.history02 .time_more {
    background-color: #3cceda;
    color: #FFF;
    padding: 13px 30px;
    display: inline-block;
    text-decoration: none;
}
.history02-title01{
	text-align:center;
	font-size:29px;
	color:#3b9cf7;
	margin:0;
	text-transform:uppercase;
	line-height:1;	
}
.history02-carouse02 .owl-buttons .owl-prev, 
.history02-carouse02 .owl-buttons .owl-next {
	position: absolute;
	left: 0;
	top:30%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 0px;
	text-align: center;
	cursor: pointer;
	margin: -15px 0 0 0;
	border: none;
	border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	-webkit-border-radius: 0 3px 3px 0;
	background-color:transparent;
	border:1px solid #fff;
	border-left:0;
}
.history02-carouse02 .owl-buttons .owl-next {
	left: auto;
	right: 0;
	border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	-webkit-border-radius: 3px 0 0 3px;
	border-right:0;
	border-left:1px solid #fff;
}
.history02-carouse02 .owl-buttons .owl-prev:before, 
.history02-carouse02 .owl-buttons .owl-next:before {
	border-left: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
}
.history02-carouse02 .owl-buttons .owl-next:before {
	border-left: none;
	border-right: 2px solid #ccc;
}
.history02-carouse02 .owl-buttons .owl-prev:hover, 
.history02-carouse02 .owl-buttons .owl-next:hover{
	background:#fff;	
}
.history02-carouse02 .owl-buttons .owl-prev:hover:before, 
.history02-carouse02 .owl-buttons .owl-next:hover:before {
	border-left: 2px solid #21a3f0;
	border-bottom: 2px solid #21a3f0;
}
.history02-carouse02 .owl-buttons .owl-next:hover:before {
	border-left: none;
	border-right: 2px solid #21a3f0;
}
.history02 .time_box_top{
	text-align:center;
}
.history02 .time_title{	
	text-transform:uppercase;
	color:#363839;
	font-size:20px;
	line-height:1;
	padding:0 0 20px 0;
}
.history02 .time_content_top{
	padding:48px 0 0 0;
	
}
a.history02-bnt, 
a:link.history02-bnt, 
a:active.history02-bnt, 
a:visited.history02-bnt{
    font-size: 16px;
    padding: 15px 20px;
    color: #FFF!important;
    background-color: #20a3f0;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    margin: 15px 0 0 0;
    transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
	text-transform:uppercase;
	line-height:1;
	font-weight:normal;
}
div a.history02-bnt:hover{
  background-color:#444;
}
.time_box_top a.history02-bnt, 
.time_box_top a:link.history02-bnt, 
.time_box_top a:active.history02-bnt, 
.time_box_top a:visited.history02-bnt{
	padding: 15px 40px;
}
.time_box_top a:hover.history02-bnt{
  background-color:#444;
}
.history02 .time_box_left h2{
	font-size:20px;
	color:#333;
	font-weight:normal;
	text-transform:uppercase;
	line-height:1;
	padding:20px 0 20px 0;	
	margin:0;	
}
.history02 .time_box_left h3{
	font-size:20px;
	color:#333;
	font-weight:normal;
	text-transform:uppercase;
	line-height:1;
	padding:20px 0 20px 0;
	margin:0 0 20px 0;
	position:relative;		
}
.history02 .time_box_left h3:before{
	content:"";
	border-bottom:2px solid #3b9cf7;
	width:57px;
	position:absolute;
	left:0;
	bottom:0px;
}
.history02 .time_box_left h3.back-title:before{
	border-bottom:2px solid #666666;
}
.history02 .time_phone_con,
.history02 .history02-carouse02-con{
	padding:0 10px;
}
.history02 ul{
	margin:0;
	padding:0 0 20px 0;
}
.history02 ul li{
	list-style:none;
	padding:10px 0;
	line-height:1.2;
}
.history02 ul.history02-list01 li{
	width:50%;
	float:left;
}
.history02 ul li em{
	color:#3b9cf7;
}
.history02 .photo_box .ico span{
	background-color: transparent;
	border:1px solid #fff;
	border-radius:0;  
}
.history02-bottom{
	width:70px;
	height:70px;
	border-radius:50%;
	border:1px solid #e9e8e8;
	position:absolute;
	bottom:0;
	left:50%;
	text-align:center;
	line-height:70px;
	margin:0 0 0 -35px;
	background:#fff;
	color:#999;
	}
/*history03*/
.history03-content{
    padding: 35px 0 0;
}

.history03-tree_middle {
    background: url("/Portals/_default/Skins/ForVend/images/pages/history03-bg.jpg") center top repeat-y;
}

.history03-tree_middle > .row {
    padding: 20px 0 60px;
}

.history03-tree_middle h3 {
    font-size: 20px;
    color: #010101;
    font-weight: normal;
    margin: 0 0 20px;
	line-height:1.2;
}

.history03-content .tree_left img,
.history03-content .tree_left > div {
    float: right;
}

.history03-content .tree_right img,
.history03-content .tree_right > div {
    float: left;
}

.history03-content .tree_left > div,
.history03-content .tree_right > div {
    padding-top: 38px;
}

.history03-content .accent_text {
    color: #3b9cf7;
}

.history03-content .left_branch {
    margin-right: -7px;
    padding-top: 10px;
}

.history03-content .right_branch {
    margin-left: -7px;
    padding-top: 15px;
}

.history03-img {
    margin: 0 30px;
}
.history03-content .pr50{
   padding-right: 42px;
}
.history03-content .pl50 {
    padding-left: 42px;
}
.history03-line{
   border-bottom:2px solid #666666;
   width:46px;
   text-align:right;
   float:right; 
   vertical-align:top;
}
.history03-tree_middle h4{
  color:#666666;
  font-weight:normal;
  text-transform:uppercase;
  clear:both;
  padding:15px 0 0 0;
  font-size:13px;
  line-height:1;
  margin:0 0 20px 0;
}
.history03-tree_middle em.fa{
  color:#20a3f0;
}
.history03-title h2{
    font-size: 24px;
    line-height: 1.2;
    color: #333333;
    white-space: normal;
    vertical-align: middle;
	margin:0;
	line-height:1;
	text-align:center;
	font-weight:normal;
}
.history03-title .line {
    width: 70px;
    height: 1px;
    background-color: #3b9cf7;
    margin: 30px auto;
}
.pr10 {
    padding-right: 10%;
}
.pl10 {
    padding-left: 10%;
}
/*Contact us*/
.contactus01-title1 {
    font-size: 30px;
    line-height: 1.2;
    color: #fff;
    white-space: normal;
    vertical-align: middle;
    font-weight: bold;
    margin: 0 0 20px;
    position: relative;
    text-align: center;
}
.contactus01-title1 span {
    color: #FFF;
}
.contactus01-title1 span {
    display: inline-block;
    position: relative;
    padding: 0 46px;
}
.contactus01-title1 span:before, .contactus01-title1 span:after {
    border-color: #FFF;
}
.contactus01-title1 span:before {
    content: "";
    border-left: 3px solid #fff;
    height: 22px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -11px;
}
.contactus01-title1 span:after {
    content: "";
    border-right: 3px solid #fff;
    height: 22px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -11px;
}
.contactus01-ibox {
    padding: 25px 0 30px 105px;
    position: relative;
}
.contactus01-ibox .fa {
    position: absolute;
    left: 10px;
    top: 40px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #37acf1;
    color: #FFF;
    font-size: 26px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.contactus01-ibox h3 {
    font-size: 17px;
    color: #333333;
    margin: 10px 0 20px 0;
    line-height: 1.2;
}
@media only screen and (max-width: 767px) {
	.contactus01-ibox {
		padding: 10px 0 15px 80px;
		text-align:left;
	}
	.contactus01-ibox .fa{
		left:0;
	}

}

.conatctus01-imgbottom > [class^="col-md"]{
    display: table-cell;
    float: none;
    vertical-align: bottom;
}
.contactus01-bg01 {
    background: url("/Portals/_default/Skins/ForVend/images/pages/contactus01-bg01.jpg") no-repeat center center;
    background-size: cover;	
}
.contactus01-ibox02 {
    margin: -30px 0 -305px 0;
    padding: 0;
    background-color: #FFF;
    overflow: hidden;
    box-shadow: 0 0 35px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 0 35px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0 0 35px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
}
.contactus01-ibox02 li {
    list-style: none;
    width: 33.333%;
    float: left;
    padding: 100px 60px 85px 60px;
}
.contactus01-ibox02 li .fa {
    width: 102px;
    height: 102px;
    line-height: 102px;
    text-align: center;
    font-size: 40px;
    color: #20a3f0;
    border: 2px solid #20a3f0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    margin-bottom: 35px;
}
.contactus01-ibox02 li h3 {
    color: #333333;
    font-size: 18px;
    font-weight: normal;
    margin:0 0 25px 0;
	line-height:1.2;
}
.contactus01-ibox02 p {
    line-height: 2;
    color: #666666;
}
@media only screen and (max-width: 767px) {
	.contactus01-ibox02 li .fa {
		width: 80px;
		height: 80px;
		line-height: 80px;
		font-size: 30px;
		margin-bottom:5px;
	}
	.contactus01-ibox02 li h3{
		margin-bottom:15px;
	}
}
.color_white {
  color:#fff;
}
.Contactus01-bg02{
  padding:395px 0 92px 0;
  border-bottom:1px solid #ccc;
}
.Contactus01-Container01{
  width:714px;
  margin:0 auto;
}
.contactus01-number {
    border: 1px solid #ffffff;
    padding:40px 20px 30px 20px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
	color:#666;
}
.contactus01-number .fa {
    font-size: 50px;
	color:#333;
}
.contactus01-number .number {
    display: block;
    font-size: 40px;
    padding: 2px 0;
    font-weight: lighter;
	color:#333;
}
.contactus02-info {
    border: 1px solid #e3e3e3;
    min-height: 150px;
    position: relative;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 0 20px 0 170px;
    white-space: nowrap;
}
.contactus02-info > span.fa{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 130px;
    background-color: #20a3f0;
    text-align: center;
    font-size: 50px;
    color: #FFF;
    line-height: 150px;
    transition: background-color ease-in 200ms;
    -moz-transition: background-color ease-in 200ms;
    -webkit-transition: background-color ease-in 200ms;
    -o-transition: background-color ease-in 200ms;
    -ms-transition: background-color ease-in 200ms;
}
.contactus02-info:hover > span.fa {
    background-color: #b5b5b5;
}
.contactus02-info:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 150px;
    vertical-align: middle;
    margin-right: -4px;
}
.contactus02-info .inforight {
    display: inline-block;
    vertical-align: middle;
    padding: 20px 0;
    white-space: normal;
}
.contactus02-info .inforight h4 {
    font-size: 18px;
    color: #555555;
    font-weight: normal;
	line-height:1.2;
	margin:0 0 10px 0;
}
.contactus02-info .inforight p{
   margin:0;
}
.contactus02-bg01 {
    position: relative;
    z-index: 2;
}
.contactus02-bg01 .bg_left,
.contactus02-bg01 .bg_right,
.contactus02-bg01 .content_mid {
    position: static;
}
.contactus02-bg01 .bg_right {  
	padding:70px 0 70px 40px;
	
}
.contactus02-bg01 .bg_left:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: url("/Portals/_default/Skins/ForVend/images/pages/contactus02-bg01.jpg") no-repeat center center;
    background-size: cover;
}
.contactus02-bg01 .bg_right:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    background: url("/Portals/_default/Skins/ForVend/images/pages/contactus02-bg02.png") no-repeat center center;
	background-color:#20a3f0;
    background-size: cover;
    z-index: -1;
}
@media only screen and (max-width: 767px) {
	.contactus02-bg01 .bg_left:before {
		display:none;
	}
	.contactus02-bg01 .bg_right:before{
		width:100%;
	
	}
}


.contactus02-ibox{
    position: relative;
    overflow: hidden;
}
.contactus02-ibox.border:before {
    content: "";
    border-left: 1px solid #e2e2e2;
    right: 0;
    top: 0;
    height: 100%;
    position: absolute;
}
.contactus02-ibox .pic {
    float: right;
    padding: 0 30px;
    width: 210px;
}
.contactus02-ibox .pic img {
    max-width: 100%;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.contactus02-ibox .left {
    overflow: auto;
    float: none;
}
.contactus02-ibox h3 {
    font-size: 16px;
    color: #333333;
	line-height:1.2;
	margin:0;
}
.contactus02-ibox h3 span {
    display: block;
    font-size: 13px;
    color: #666666;
    padding: 8px 0 25px;
}
.contactus02-ibox .social_list_10 span {
    width: 33px;
    height: 33px;
    line-height: 33px;
    font-size: 15px;
    display: inline-block;
    margin: 0 3px 5px;
    text-align: center;
    background-color: #20a3f0;
    transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #FFF;
	 background-color: #20a3f0;
}
.contactus02-ibox .social_list_10 span:hover{
   background:#444;
}
.contactus02-bg02 .contactus02-text:after {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 15px;
    border-color: #20a3f0 transparent transparent transparent;
    top: 100%;
    left: 50%;
    margin: 0 0 0 -15px;
}
.contactus02-bg02 .contactus02-text {
    font-size: 28px;
    color: #fff;
    padding: 38px 0;
    margin: 0;
    display: block;
    position: relative;
	text-align:center;
	line-height:1.2;
}
.contactus02-bg02{
  background:#20a3f0;
}
.contactus02-ibox02 {
    text-align: center;
    margin: 60px 0 0 0;
}
.contactus02-out .contactus02-icon {
    display: inline-block;
    width: 92px;
    height: 92px;
    line-height: 80px;
    border-width: 1px;
    border-style: solid;
    color: #fff;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    font-size: 40px;
}
.contactus02-out.the1 .contactus02-icon {
    border-color: #1B58A1;
    background-color: #1B58A1;
}
.contactus02-out.the2 .contactus02-icon {
    border-color: #FFAA07;
    background-color: #FFAA07;
}
.contactus02-out.the3 .contactus02-icon {
    border-color: #20a3f0;
    background-color: #20a3f0;
}
.contactus02-out.the4 .contactus02-icon {
    border-color: #F10403;
    background-color: #F10403;
}
.contactus02-out .contactus02-icon .contactus02-iconborder {
    border: 5px solid transparent;
    display: inline-block;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: border ease-in 200ms;
    -moz-transition: border ease-in 200ms;
    -webkit-transition: border ease-in 200ms;
    -o-transition: border ease-in 200ms;
    -ms-transition: border ease-in 200ms;
}
.contactus02-out:hover .contactus02-icon .contactus02-iconborder {
    border: 5px solid #fff;
}
.contactus02-out h3 {
    font-size: 18px;
    color: #20a3f0;
    margin: 30px 0 5px 0;
    font-weight: normal;
	line-height:1.2;
}
.contactus02-title01 {
    text-align: center;
}
.contactus02-title01 h2 {
    color: #333333;
    display: inline-block;
    font-size: 30px;
    font-weight: normal;
    line-height: 1.2;
    margin: 0 0 35px;
    padding: 0 0 23px;
    position: relative;
}
.contactus02-title01 h2::before {
    background-color: #20a3f0;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    margin-left: -33px;
    position: absolute;
    width: 66px;
}
/*Our Services*/
.service01-ibox {
    margin: 30px 0 0 0;
}
.service01-ibox .service01-ibox_main {
    position: relative;
    padding: 0 0 0 90px;
}
.service01-ibox .service01-ibox_main:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100px;
    background-color: #CCCCCC;
    left: 19px;
    top: 70px;
}
.service01-ibox .service01-ibox_main.the3:before {
    display: none;
}
.service01-ibox .service01-ibox_main em.fa {
    font-size: 40px;
    color: #20a3f0;
    position: absolute;
    left: 0;
    top: 15px;
}
.service01-ibox .service01-ibox_main h3 {
    margin: 0 0 20px 0;
    font-size: 17px;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
	line-height:1.2;
}
.service01-ibox .service01-ibox_main p {
    color: #666;
}
.service01-full {
    position: relative;
    margin: 0 0 40px 0;
}
.service01-full .service01-full_left {
    background-color: #00CFD9;
}
.service01-full .service01-full_left .service01-full_left_main {
    text-align: center;
    padding: 301px 503px 301px 80px;
}
.service01-full .service01-full_left .service01-full_left_main em{
    display: inline-block;
    margin: 0 0 20px 0;
	color:#fff;
	font-size:25px;
}
.service01-full .service01-full_left .service01-full_left_main p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    line-height: 24px;
}
.service01-full .service01-full_right {
    background-color: #2C82D4;
}
.service01-full .service01-full_right .service01-full_right_main {
    text-align: center;
    padding: 301px 80px 301px 503px;
}
.service01-full .service01-full_right .service01-full_right_main em{
    display: inline-block;
    margin: 0 0 20px 0;
	color:#fff;
	font-size:25px;
}
.service01-full .service01-full_right .service01-full_right_main p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    line-height: 24px;
}
.service01-full .service01-full_img {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 140px;
}
.service01-full_img img {
    display: inline-block;
}
.service01-ibox02 {
    width: 244px;
    height: 244px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 1px dashed #aaa;
    margin: 68px auto 0;
    position: relative;
}
.service01-ibox02_right {
    margin: 30px 0 0 0;
}
.service01-ibox02 em.fa {
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #20a3f0;
    color: #fff;
    position: absolute;
    font-size: 40px;
}
.service01-ibox02 em.the1.fa {
    top: 0;
    left: 50%;
    margin: -38px 0 0 -60px;
}
.service01-ibox02 em.the2.fa {
    bottom: 12px;
    left: 0;
    top: auto;
    margin: 0 0 0 -38px;
}
.service01-ibox02 em.the3.fa {
    bottom: 12px;
    top: auto;
    right: 0;
    margin: 0 -38px 0 0;
}
.service01-ibox02_r{
    margin: 30px 0 0 0;
}
.service01-tab ul.resp-tabs-list li{
   background:#eee;
    padding:21px 47px;
   line-height:1.2;
   font-size:15px;
   border:0;
   border-right: 2px solid #fff;   
}
.service01-tab ul.resp-tabs-list li.resp-tab-active{
   background:#20a3f0;
   color:#fff;
   position:relative;     
}
.service01-tab .resp_margin{
    padding:40px 0 0 0;
} 
.service01-tab .resp-tabs-container{
    border:0;  
	margin:0	
}
.service01-tab ul.resp-tabs-list li.resp-tab-active:before {
    border: 4px solid transparent;
    border-top: 4px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom:-8px;
    width: 0;
    margin: 0 0 0 -2px;
}
.service-bg01{	
	background:#333333;
	color:#fff;
}
.ourservices_d {
    background-color: #333;
}
.ourservices_d .aboutus_b h1 {
    color: #fff;
}
.ourservices_d .aboutus_b p {
    color: #999;
}
.service01-imgbox .service01-imgcon {
    width: 25%;
    float: left;
}
.service01-imgbox .service01-imgcon .photo_box {
    margin: 0;
}
.service01-imgbox .service01-imgcon .photo_box .shade {
    background-color: #20a3f0;
    padding: 20px;
}
.service01-imgbox .service01-imgcon .photo_box:hover .shade {
    filter: alpha(opacity=90);
    opacity: 0.9;
}
.service01-imgbox .service01-imgcon .photo_box .shade2 {
    width: 100%;
    height: 100%;
    background-color: #000;
    filter: alpha(opacity=0);
    opacity: 0;
    z-index: 0;
}
.service01-imgbox .service01-imgcon .photo_box:hover .shade2 {
    filter: alpha(opacity=20);
    opacity: 0.2;
}
.service01-imgbox .photo_box .ico span{
	background-color: transparent;
	border:1px solid #fff;
	width:65px!important;
	height:65px!important;
	line-height:65px!important;	
}
.service01-chart {
    text-align: center;
    color: #fff;
}
.service01-chart .bgcolor1 {
    background-color: #00CFD9;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 40px 0;
    margin: 30px 0 0 0;
}
.service01-chart .bgcolor2 {
    background-color: #83D580;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 40px 0;
    margin: 30px 0 0 0;
}
.service01-chart .bgcolor3 {
    background-color: #FFBD3E;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 40px 0;
    margin: 30px 0 0 0;
}
.service01-chart .bgcolor4 {
    background-color: #51CAB8;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 40px 0;
    margin: 30px 0 0 0;
}
.service01-chart .service01-percentage2 {
    position: relative;
    margin: 0 auto;
    width: 170px;
    height: 170px;
    line-height: 170px;
    color: #fff;
}
.service01-chart .service01-percentage2 .percentage_inner {
    font-size: 30px;
    color: #fff;
    font-weight: normal;
	position:absolute;
	width:100%;
}
.service01-chart p {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    margin: 30px 0 0 0;
}
.service02-ibox {
    text-align: center;
    margin: 0 0 40px;
    position: relative;
    z-index: 1;	
}

.service02-ibox:before {
    content: "";
    top: 101px;
    border-bottom: 1px dashed #d3d3d3;
    position: absolute;
    width: 100%;
    left: 50%;
    z-index: -1;
}
.row > .col-sm-6:last-child .service02-ibox:before {
    display: none;
}
.service02-ibox span.fa {
    font-size: 50px;
    color: #333333;
}
.service02-ibox h3 {
    margin:55px 0 30px 0;
    font-size: 16px;
    color: #333333;
	line-height:1.2;
}
.service02-ibox .ico {
    width: 203px;
    height: 203px;
    border: 2px solid #7770cc;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    margin: 0 auto 40px;
    background-color: #FFF;
}
.service02-ibox .ico span {
    width: 90px;
    height: 90px;
    line-height: 90px;
    background-color: #7770cc;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    font-size: 30px;
    color: #FFF;
    margin-top: 56px;
    position: relative;
    z-index: 1;
}
.service02-ibox .ico span:after {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-color: #7770cc;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}
.service02-ibox .ico.color_1 span, .service02-ibox .ico.color_1 span:after {
    background-color: #20a3f0;
}
.service02-ibox .ico.color_1 {
    border-color: #20a3f0;
}
.service02-ibox .ico.color_3 span, .service02-ibox .ico.color_3 span:after {
    background-color: #b75ccd;
}
.service02-ibox .ico.color_3 {
    border-color: #b75ccd;
}
.service02-ibox .ico.color_4 span, .service02-ibox .ico.color_4 span:after {
    background-color: #4680dd;
}
.service02-ibox .ico.color_4 {
    border-color: #4680dd;
}
@media only screen and (max-width: 767px) {
	.service02-ibox:before{
		display:none;
	}
}

.service02-bg01{
	background:#f4f4f4;
	text-align:center;
}
.service02-chart {
	text-align: center;
}
.service02-chart .percentage2 {
	position: relative;
	margin: 16px auto 37px;
	width: 275px;
	height: 275px;
	color:#FFF;
	border:2px solid #FFF;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	padding:12px;
}
.service02-chart .percentage_inner {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	text-align:center;
	font-size:60px;
	font-weight:bold;
	margin-top:60px;
}
.service02-chart p{
	color:#FFF;
	font-size:16px;
}
.service02-bg02{
	background:#20a3f0;
}
.service02-carousel .item {
	margin:0 15px;
	padding:0px;
}
.service02-carousel .owl-page{
	border:none;
	background-color:#cecece;
	width:20px;
	height:20px;
	margin:0px 4px;
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
}
.service02-carousel .owl-page:hover,
.service02-carousel .owl-page.active{
	background-color:#20a3f0;
}
.service02-carousel .blockquote_6 {
    border: 1px solid #dddddd;
    background-color: #f8f8f8;
    text-align: center;
    padding: 0 50px;
    margin-bottom: 154px;
    color: #333;
}
.service02-carousel .blockquote_6 .ico {
    font-size: 28px;
    position: relative;
    display: inline-block;
    color: #21a3f0;
    padding: 0 15px;
    margin: 40px 0 20px;
}
.service02-carousel .blockquote_6 .ico:before,.blockquote_6 .ico:after {
    content: "";
    width: 50px;
    right: 100%;
    top: 50%;
    border-bottom: 1px solid #21a3f0;
    position: absolute;
}
.service02-carousel .blockquote_6 .ico:after {
    left: 100%;
    right: auto;
}
.service02-carousel .blockquote_6 p {
    text-indent: 0;
    margin-bottom: 30px;
	font-style:normal;
}
.service02-carousel .blockquote_6 small {
    position: static;
    padding: 0;
    margin-bottom: -124px;
}
.service02-carousel .blockquote_6 small:before {
    content: "";
}
.service02-carousel .blockquote_6 .pic {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 1px solid #dddddd;
    padding: 5px;
    margin: auto auto 30px;
    background-color: #FFF;
}
.service02-carousel .blockquote_6 small img {
    max-width: 100%;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.service02-carousel .blockquote_6 small span {
    font-weight: bold;
    font-size: 14px;
    color: #333333;
    font-style: normal;
}
.service02-carousel .blockquote_6 small span em {
    font-weight: normal;
    font-size: 13px;
    color: #888888;
    display: block;
    padding-top: 5px;
    font-style: normal;
}
.service02-title1 {
    font-size: 40px;
    color: #e6e6e6;
    margin-bottom: 60px;
    line-height: 1.2;
}
.service02-full-left {
    margin: 0;
    padding: 0;
    list-style: none;
}
.service02-full-left li {
    padding: 0 0 60px 85px;
    position: relative;
    overflow: hidden;
}
.service02-full-left li .fa {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 38px;
    opacity: 0.4;
}
.service02-full-left li h3 {
    margin:0 0 20px 0;
    font-size: 17px;
    color: #ffffff;
	line-height:1.2;
}
.service02-full-left li:before {
    content: "";
    position: absolute;
    top: 70px;
    left: 22px;
    border-right: 1px solid #FFF;
    height: 100%;
    opacity: 0.4;
}
.service02-full-left li:last-child:before {
    display: none
}
.service02-bg03 .right_img {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url("/Portals/_default/Skins/ForVend/images/pages/service02-full-right.jpg") no-repeat center center;
    background-size: cover;
}
.service02-bg03{
    background-color: #7770cc;
	position:relative;
	color:#fff;
}
.service02-bg03 .row{
    margin-left:0;
    margin-right:0;
}
.service02-bg03 a.ourteam-bnt02{
    line-height:1.2;
	padding:19px 50px;
	min-width:196px;

}
/*faq*/
.faq01-chart {
	text-align:center;
}
.faq01-chart .percentage5 {
	position: relative;
	margin: auto auto 10px;
	width: 180px;
	height: 180px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border:22px solid #f0f0f0;
}
.faq01-chart .percentage5 .percentage_inner{
	position:absolute;   
	width: 100%;	
	line-height:120px;
	text-align:center;
	font-size:30px;
	color:#333;
	margin:0;
}
.faq01-chart .percentage5 canvas{
	margin:-12px;
}
.faq01-chart h3{
	color:#333333;
	font-size:18px;
	text-align:center;
	padding:32px 0 25px;
	margin:0;
	line-height:1.2;
}
.faq01-chart p{
	padding:0 10px;
}
.faq01-Testimonials .faq_list {
    margin: 0;
    padding: 0 0 60px;
}
.faq01-Testimonials .faq_list dt {
    font-size: 15px;
    color: #333333;
    padding:20px 0 20px 60px;
    position: relative;
	text-transform:uppercase;
	margin:0;
}
.faq01-Testimonials .faq_list dt:before {
    content: "\f128";
    font-family: "FontAwesome";
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    top: 9px;
    left: 0;
    background-color: #20a3f0;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #FFF;
    font-size: 20px;
}
.faq01-Testimonials .faq_list dd {
    font-size: 13px;
    color: #666666;
    line-height: 2;
    padding: 0 0 40px 60px;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 25px;
}
.faq01-Testimonials .dot a:hover, 
.faq01-Testimonials .dot a.actived {
    background-color: #20a3f0;
}
.faq01-Testimonials .dot a {
    width: 17px;
    height: 17px;
    background-color: #d0d0d0;
    border: none;
    margin-right: 5px;
}
.faq01-bg01{
	background:#f4f4f4;
	position:relative;
}
.faq-text a.ourteam-bnt02{
   line-height:1.2;
   padding:19px 45px;
   min-width:234px;
   margin:0;
}
.faq-text .icon {
    width: 150px;
    height: 150px;
    line-height: 150px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #219ae1;
    margin: auto auto 70px;
}
.faq-text h3 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.2;
}
.fag01-bg02 {
    background: url("/Portals/_default/Skins/ForVend/images/pages/fag01-bg02.jpg") no-repeat center bottom;
    background-size: cover;
	text-align:center;
	color:#fff;
}
.faq-imgbox img {
    max-width: 100%;
}

.faq-imgbox h3 {
    color: #333333;
    font-size: 20px;
    padding: 40px 0 25px;
	margin:0;
	line-height:1.2;
}
.faq-imgbox p {
    margin-bottom: 40px;
}
.faq-imgbox a.ourteam-bnt, 
.faq-imgbox a:link.ourteam-bnt, 
.faq-imgbox a:active.ourteam-bnt,
.faq-imgbox a:visited.ourteam-bnt{
	font-weight:normal;
	font-size:15px;
}
.faq01-bg01 .col-md-6.faq01-imgbottom{
   position:absolute;
   right:0;
   bottom:0;   
}
.faq02-ibox {
    position: relative;
}
.faq02-ibox .img {
    text-align: center;
    position: relative;
    padding: 260px 0;
    z-index: 1;
}
.faq02-ibox .img:before {
    content: "";
    z-index: -1;
    position: absolute;
    width: 266px;
    height: 266px;
    background-color: #D6D6D6;
    left: 50%;
    top: 50%;
    margin: -133px 0 0 -133px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.faq02-ibox .img:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #DCDCDC;
    top: 50%;
    margin: -1px 0 0 0;
    left: 0;
    z-index: -2;
}
.faq02-ibox .img img {
    display: inline-block;
}
.faq02-ibox .faq02-ibox_left_top {
    position: absolute;
    left: 0;
    top: 30px;
    text-align: left;
    width: 30%;
	z-index:2;
}
.faq02-ibox .faq02-ibox_left_top .main h3,.faq02-ibox .faq02-ibox_left_bottom .main h3,.faq02-ibox .faq02-ibox_right_top .main h3,.faq02-ibox .faq02-ibox_right_bottom .main h3 {
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    margin: 0;
	line-height:1.2;
}
.faq02-ibox .faq02-ibox_left_top .main h3 em.fa,.faq02-ibox .faq02-ibox_left_bottom .main h3 em.fa,.faq02-ibox .faq02-ibox_right_top .main h3 em.fa,.faq02-ibox .faq02-ibox_right_bottom .main h3 em.fa {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    background-color: #20a3f0;
    font-size: 28px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    vertical-align: middle;
    margin: 0 15px 0 0;
}
.faq02-ibox .faq02-ibox_right_top .main h3 em.fa,.faq02-ibox .faq02-ibox_right_bottom .main h3 em.fa {
    margin: 0 0 0 15px;
}
.faq02-ibox .faq02-ibox_left_top .main p,.faq02-ibox .faq02-ibox_left_bottom .main p,.faq02-ibox .faq02-ibox_right_top .main p,.faq02-ibox .faq02-ibox_right_bottom .main p {
    font-size: 13px;
    color: #666;
    margin: 25px 0 0 0;
}
.faq02-ibox .faq02-ibox_left_bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: left;
    width: 30%;
	z-index:2;
}
.faq02-ibox .faq02-ibox_right_top {
    position: absolute;
    right: 0;
    top: 30px;
    text-align: right;
    width: 30%;
	z-index:2;
}
.faq02-ibox .faq02-ibox_right_bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
    width: 30%;
	z-index:2
}
.faq02-Testimonials blockquote{
	color:#fff;
	font-size:13px;
	font-style:normal;
	padding:0;
	margin:0;
	line-height:22px;
	}
.faq02-Testimonials blockquote .main{
	width:50%;
	background-color:rgba(0,38,40,0.8);
	padding:168px 130px 248px 130px;
	}
.faq02-Testimonials blockquote .main h2{
	color:#20a3f0;
	font-size:20px;
	font-weight:normal;
	margin:0 0 10px 0;
	line-height:1.2;
	}
.faq02-Testimonials blockquote .main h1{
	color:#fff;
	font-size:30px;
	font-weight:normal;
	margin:0 0 30px 0;
	line-height:1.2;
	}
.faq02-Testimonials blockquote .main p{
	color:#aaa;
	font-size:13px;
	margin:0 0 40px 0;
	font-style:normal;
	text-indent:0;
	}
.faq02-Testimonials blockquote .main a{
	text-decoration:none;
	font-size:15px;
	color:#fff;
	background-color:#20a3f0;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding: 19px 42px;
	display:inline-block;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.faq02-Testimonials blockquote .main a:hover{
	background-color:#333;
}
.faq02-Testimonials blockquote small{
	width:100%;
	height:100%;
    bottom:auto;
    left:0;
	top:0;
    padding: 0;
	z-index:-1;
}
.faq02-Testimonials blockquote small span{
	width:100%;
	height:100%;
	display:block;
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}
.faq02-Testimonials blockquote small:before{
	display:none;
}
.faq02-Testimonials .dot{
	left:130px;
	bottom:150px;
	z-index:12;
	}
.faq02-Testimonials .dot a{
	width:18px;
	height:18px;
	border:1px solid transparent !important;
	background-color:rgba(255,255,255,0.3);
	}
.faq02-Testimonials .dot a.actived{
	background-color:transparent!important;
	border:1px solid #fff!important;
	}
.faq02-Testimonials .last_page{
	display:none;
	}
.faq02-Testimonials .next_page {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 60px;
    line-height: 60px;
    width: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    text-align: center;
    color: #fff;
    font-family: Helvetica;
    top: 118px;
    bottom: auto;
    left: 50%;
    right:auto;
	margin:0 0 0 -190px;
	font-size:0;
	z-index:12;
}
.faq02-Testimonials .next_page:before{
	font-family: 'FontAwesome';
	content: "\f105";
	position:absolute;
    font-size: 30px;
    left: 50%;
    margin: 0 0 0 -5px;
}
.faq02-Testimonials img{
  height:100%;
  width:100%;
}
.faq02-accordion{
	margin:30px 0 0 0;
}
.faq02-accordion .panel-default {
	background-color:transparent;
	border: none;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	box-shadow:none;
}
.faq02-accordion .panel-default > .panel-heading {
	background-color: #F6F6F5;
	border: none;
	padding: 0px;
	border-radius:			4px;
	-moz-border-radius:		4px;
	-webkit-border-radius:	4px;
}
.faq02-accordion .panel-heading + .panel-collapse .panel-body {
	border: none;
	padding: 0px 0px 0px 50px ;
	margin:50px 0 50px 50px;
	border-left:2px solid #20a3f0;
}
.faq02-accordion .panel-heading + .panel-collapse .panel-body img{
	float:right;
	margin: 0 0 0 30px;
}

.faq02-accordion .panel-default > .panel-heading a {
	font-size: 15px;
	font-weight: bold;
	padding: 14px 0 14px 30px;
	color: #333;
	display: block;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
.faq02-accordion .panel+.panel{
   margin-top:15px;
}
.faq02-accordion .panel-default > .panel-heading a.collapsed {
	color: #333;
	background-color: #F6F6F5;
}

.faq02-accordion .panel-default > .panel-heading a:hover {
	text-decoration: none;
}
.faq02-accordion .panel-default .panel-title{
	position:relative;
	padding-left:46px;
}
.faq02-accordion .panel-default .accordion_icon {
	position:absolute;
	left:0px;
	top:0px;
	background-color:#20a3f0;
	width:50px;
	height: 100%;
	margin:0;
	float: left;
  	font-family: 'FontAwesome';
 	-webkit-font-smoothing: antialiased;
	border-top-left-radius:			4px;
	-moz-border-top-left-radius:		4px;
	-webkit-border-top-left-radius:	4px;
	border-bottom-left-radius:			4px;
	-moz-border-bottom-left-radius:		4px;
	-webkit-border-bottom-left-radius:	4px;
}
.faq02-accordion .panel-default .accordion_icon:before{
	position:absolute;
	top:50%;
	left:50%;
	margin:-11px 0 0 -7px;
	content:"\2212";
	color:#FFF;
	font-size:20px;
}
.faq02-accordion .panel-default .collapsed .accordion_icon:before {
	content:"\002B";
	color:#FFF;
}
@media only screen and (max-width: 767px) {
	.faq02-accordion .panel-heading + .panel-collapse .panel-body{
		margin:20px 0 20px 0;
		padding-left:15px;
	}

}


.faq02-chart {
    text-align: center;
}
.faq02-chart .faq02-percentage{
    margin: 30px auto;
    color: #20a3f0;
}
.faq02-chart .faq02-percentage .percentage_inner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    line-height: 120px !important;
    text-align: center;
    font-size: 24px;
    color: #333;
    background-color: #fff;
    padding: 0;
    margin: 40px 0 0 -60px;
	position: absolute;
    left: 50%;
}
.faq02-chart h3 {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 20px 0;
}
.faq02-chart p {
    font-size: 13px;
    color: #fff;
}
.faq02-bg01{
    background-image: url("/Portals/_default/Skins/ForVend/images/pages/faq02-bg01.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
	color:#fff;
}
@media only screen and (max-width: 991px) {
	.faq02-bg01 {
		background-attachment:scroll;
	}
}
a.faq02-bnt, 
a.faq02-bnt:link, 
a.faq02-bnt:active, 
a.faq02-bnt:visited {
    border: 2px solid #fff;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    margin-top: 2px;
    padding: 10px 30px;
    font-weight: normal;
    text-decoration: none;
    transition: all 200ms ease-in 0s;
	display: inline-block;
    vertical-align: bottom;
    margin:10px 40px 0 40px;
	border-radius:2px;
}
a:hover.faq02-bnt{
  background:#fff;
  color:#20a3f0;
}
.faq02-text{
    position: relative;
}
.faq02-text .text_left {
    text-align: center;
    font-size: 30px;
    padding: 10px 0;   
}
.faq02-text .text_right {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.faq02-text .text_right .ourteam-bnt02 {
    margin: 0;
}
/*Pricing*/
.dg-title25.Pricing-title h3{
  color:#000;
  text-transform:uppercase;
}
.dg-title25 .line:before, 
.dg-title25 .line:after{
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
.pricing01-bg01{
   background:#f4f4f4;
}
.pricing01-ibox {
    border: 1px solid #20a3f0;
    padding: 60px 60px 40px;
    text-align: center;
    margin-bottom: 40px;
}

.pricing01-ibox .ico {
    width: 80px;
    height: 72px;
    line-height: 72px;
    display: block;
    background-color: #21a3f0;
    text-align: center;
    font-size: 30px;
    color: #FFF;
    margin: auto auto 55px;
    position: relative;
}

.pricing01-ibox .ico:before {
    content: "";
    border: 8px solid transparent;
    border-top-color: #21a3f0;
    border-left-color: #21a3f0;
    position: absolute;
    top: 100%;
    left: 0;
}

.pricing01-ibox h3 {
    font-size: 16px;
    color: #333333;
    padding-bottom: 18px;
	margin: 0;
    line-height: 1.2;
}
.pricing01-price {
    padding: 0;
    min-width: 100%;
    display: table;
    margin: auto ;
}

.pricing01-price > div {
    display: table-cell;
    vertical-align: bottom;
    float: none;
}

.pricing01-price .price_title {
    padding: 40px 0px 40px;
    margin: 0;
    text-align: center;
    background-color: #20a3f0;
    border-bottom: none;
}

.pricing01-price .price_title h2 {
    color: #FFF;
    font-size: 18px;
	text-transform:uppercase;
	line-height:1.2;
}

.pricing01-price .price_holder {
    border-color: #bbbbbb;
    border-top: none;
    text-align: center;
    margin: 0 0 40px 0;
    background-color: #FFF;
}

.pricing01-price .price_holder ul {
    border: none;
}

.pricing01-price .price_holder ul li {
    border: none;
    text-align: center;
    color: #666666;
    border-bottom: 1px solid #d4d4d4;
    padding: 20px 0;
}

.pricing01-price .price_holder ul li:nth-child(even) {
    background-color: #f6f6f6
}

.pricing01-price .price_holder .price_box {
    background-color: #20a3f0;
    padding: 0 0 40px;
}

.pricing01-price .price_holder .price_box .box {
    width: 204px;
    height: 204px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 2px solid #ffffff;
    margin: auto;
    text-align: center;
    color: #FFF;
    padding-top: 65px;
    margin-bottom: 20px;
}

.pricing01-price .price_holder .price_box .sup {
    vertical-align: inherit;
    font-size: 40px;
    line-height: 1.2;
    font-weight: bold;
}

.pricing01-price .price_holder .price_box .price {
    font-size: 40px;
    line-height: 1.2;
    font-weight: bold;
}

.pricing01-price .price_holder .price_box .unit {
    display: inline-block;
    font-size: 20px;
    padding-top: 5px;
}

.pricing01-price .price_holder .price_box em {
    display: block;
    font-style: normal;
    font-size: 14px;
    padding-top: 5px;
}

.pricing01-price .price_holder .btn {
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    padding: 20px 50px;
    font-size: 15px;
    display: inline-block;
    margin: 30px 0;
    background-color: #4680dd;
}

.pricing01-price .price_holder .btn:hover {
    background-color: #333!important;
}
.pricing01-price .color_2 .price_title, .pricing01-price .color_2 .price_holder .price_box, .pricing01-price .color_2 .price_holder .btn {
    background-color: #7770cc;
}
.pricing01-price .color_3 .price_title, .pricing01-price .color_3 .price_holder .price_box, .pricing01-price .color_3 .price_holder .btn {
    background-color: #b75ccd;
}
.pricing01-price .color_4 .price_title, .pricing01-price .color_4 .price_holder .price_box, .pricing01-price .color_4 .price_holder .btn {
    background-color: #4680dd;
}
.pricing01-title{
    color: #ffffff;
    font-size: 30px;
    margin:50px 0 45px 0;
	line-height:1.2
}
.pricing01-list {
    margin: 0;
    padding: 0;
    clear: both;
    list-style: none;
    overflow: hidden;
}

.pricing01-list li {
    margin: 0;
    padding: 10px 0;
}

.pricing01-list li .fa {
    color: #fff;
    font-size: 15px;
    vertical-align: middle;
    margin-right: 20px;
}
.pricing01-list li a{
    color:#fff;
}
.pricing01-list li:hover a,
.pricing01-list li:hover .fa{
    color: #20a3f0;
    text-decoration: none;
}
.pricing01-bg02 {
    background: url("/Portals/_default/Skins/ForVend/images/pages/pricing01-bg02.jpg") no-repeat center center;
    background-size: cover;
	color:#fff;
	
	position:relative;
}
.pricing01-bg02 .prcing01-img img.shaowd{
	-moz-box-shadow:0 15px 15px -8px #dcdcdc;
	-webkit-box-shadow:0 15px 15px -8px #dcdcdc;
	box-shadow:0 15px 15px -8px #dcdcdc;
	border-radius:50px 50px 0 0;
}
.pricing01-bg02 .prcing01-img{
	position:absolute;
	bottom:0;
	right:0;
}
.pricing01-bg02 .prcing01-img .prcing01-left{
    left: -44px;  
    position: absolute;
    top: 115px;

}
.pricing01-bnt, a.pricing01-bnt, a:link.pricing01-bnt, a:active.pricing01-bnt, a:visited.pricing01-bnt{
    padding: 18px 58px;
    font-size: 15px;
    display: inline-block;
    white-space: nowrap;
    color: #fff;
    border: 2px solid #fff;   
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -webkit-transition: all ease-in 200ms;
    transition: all ease-in 200ms;
	line-height:1.2;
	min-width:236px;
}
.pricing01-img-list {
    margin: 0 -3px;
    padding: 0;
    list-style: none;
    text-align: center;
    overflow: hidden;
}

.pricing01-img-list li {
    float: left;
    width: 16.6666%;
}

.pricing01-img-list li .box {
    background-color: #eeeeee;
    margin: 3px;
    padding: 60px 5px 46px;
    font-size: 16px;
}

.pricing01-img-list img {
    margin-bottom: 21px;
    display: inline-block;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.pricing01-bnt02, a.pricing01-bnt02, a:link.pricing01-bnt02, a:active.pricing01-bnt02, a:visited.pricing01-bnt02{
    padding: 12px 40px;
    font-size: 15px;
    display: inline-block;
    white-space: nowrap;
    color: #20a3f0;
    border: 2px solid #20a3f0;
    margin: 0 12px 10px 0;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -webkit-transition: all ease-in 200ms;
    transition: all ease-in 200ms;
}
a.pricing01-bnt02:hover,
a.pricing01-bnt:hover{
    border-color: #20a3f0;
    background-color: #20a3f0;
	color:#fff!important;
	text-decoration:none;
}
.pricing02-price {
	padding: 0;
	margin:30px 0 0 0;
}
.pricing02-price .price_main{
	position:relative;
	margin:0 0 15px 0;
	}
.pricing02-price .price_main:before{
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:1px;
	height:100%;
	background-color:#d4d4d4;
	margin:0 0 0 -15px;
	}
.pricing02-price .price_main.the1:before{
	display:none;
	}
.pricing02-price .price_title {
	padding:0px;
	margin: 0;
	border:none;
	text-align:center;
}

.pricing02-price .price_title .img{
	position:relative;
	display:inline-block;
}
.pricing02-price .price_title .img img{
	display:inline-block;
	}
.pricing02-price .price_title em.fa{
	height:60px;
	width:60px;
	line-height:60px;
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
	background-color:#20a3f0;
	color:#fff;
	text-align:center;
	position:absolute;
	right:0px;
	top:0px;
}
.pricing02-price .price_title .line{
	width:50px;
	height:1px;
	background-color:#20a3f0;
	display:block;
	margin:30px auto;
	}


.pricing02-price .price_holder{
	border:none;
	margin:0;
	padding:0;
	text-align:center;
}
.pricing02-price .price_box{
	color:#666;
	padding:0;
	}
.pricing02-price .sup{
	font-size:40px;
	color:#333;
	}

.pricing02-price .price{
	font-size:24px;
	color:#333;
}
.pricing02-price .unit{
	display:block;
	text-align:center;
	color:#20a3f0;
	font-size:17px;
	font-weight:bold;
	text-transform:uppercase;
}
.pricing02-price .price_holder ul{
	border:none;
	margin: 15px 0;
	max-width:75%;
	display:inline-block;
	}
.pricing02-price .price_holder ul li{
	text-align:left;
	font-size:13px;
	color:#666;
	border:none;
	padding: 10px 0 10px 0;
}
.pricing02-price .price_holder ul li span.fa {
	font-size:14px;
	color:#20a3f0;
	margin:0 10px 0 0;
}
.pricing02-price a.btn{
	background-color:#20a3f0;
	font-size:14px;
	color:#ffffff;
	margin:0 auto;
	padding:12px 26px;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}
.pricing02-price a.btn:hover{
	background-color:#333!important;
}
@media only screen and (max-width: 767px) {
	.pricing02-price .price_main:before{
		display:none;
	}
	.pricing02-price .price_main{
		margin-bottom:30px;
	}
}

.pricing-full {
    position: relative;
}
.pricing-full .pricing-full_left {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("/Portals/_default/Skins/ForVend/images/pages/pricing-full-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.pricing-full .pricing-full_right {
    float: right;
    width: 50%;
}
.pricing-full .pricing-full_right .pricing-full_right_main {
    background-color: #ECECEC;
    padding: 76px 40px 100px 40px;
}
.pricing-full .pricing-full_right .pricing-full_right_main h3 {
    font-size: 20px;
    color: #20a3f0;
    font-weight: normal;
    margin: 0 0 10px 0;
}
.pricing-full .pricing-full_right .pricing-full_right_main h1 {
    font-size: 30px;
    color: #333;  
    margin: 0 0 20px 0;
}
.pricing-full .pricing-full_right .pricing-full_right_main p {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px 0;
}
.pricing-full .pricing-full_right .pricing-full_right_main ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.pricing-full .pricing-full_right .pricing-full_right_main ul li {
    margin:20px 0 0 -1px;
    position: relative;
	float:left;
	width:33.333333%;    
    list-style-type: none;
    cursor: pointer;
	border: 1px solid #cbcbcb;
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
	text-align:center;
}
.pricing-full .pricing-full_right .pricing-full_right_main ul li:hover  {
	background-color:rgba(255,255,255,0.5);
}
.pricing02-title1 h3 {
    font-size: 20px;
    color: #20a3f0;
    font-weight: normal;
    margin: 0 0 10px 0;
	line-height:1.2;
}
.pricing02-title1 h1 {
    font-size: 30px;
    color: #333;  
    margin: 0 0 20px 0;
	line-height:1.2;
}
.pricing02-title1 p {
    font-size: 13px;
    color: #666;
    font-weight: normal;
   
}
.pricing02-title1 a.links {
    font-size: 15px;
    color: #20a3f0;
    text-decoration: none;
    border: 2px solid #20a3f0;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    display: inline-block;
    padding: 10px 32px;
    margin: 30px 0 20px 0;
    transition: background-color ease-in 200ms,color ease-in 200ms;
    -moz-transition: background-color ease-in 200ms,color ease-in 200ms;
    -webkit-transition: background-color ease-in 200ms,color ease-in 200ms;
    -o-transition: background-color ease-in 200ms,color ease-in 200ms;
    -ms-transition: background-color ease-in 200ms,color ease-in 200ms;
}
.pricing02-title1 a.links:hover {
    background-color: #20a3f0;
    color: #fff;
}
.pricing02-bg01 {
    background-image: url("/Portals/_default/Skins/ForVend/images/pages/pricing02-bg01.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
	color:#fff;
}
@media only screen and (max-width: 991px) {
	.pricing02-bg01 {
		background-attachment:scroll;
	}
}
.pricing02-ibox {
    background-color: #fff;
    padding: 0 45px 60px 45px;
    text-align: center;
    margin: 70px 0 22px 0;
}
.pricing02-ibox .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 1px solid #ddd;
    margin: -40px auto 40px;
    display: inline-block;
    background-color: #fff;
    padding: 6px;
}
.pricing02-ibox .icon em.fa {
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    margin: 0 auto;
    background-color: #20a3f0;
    color: #fff;
    font-size: 25px;
}
.pricing02-ibox h5 {
    font-size: 15px;
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 22px 0;
	line-height:1.2;
}
.pricing02-ibox p {
    color: #8a8989;
    margin: 0 0 20px 0;
}
.pricing02-ibox a.links {
    text-decoration: none;
}
/*Team Detial*/
.detail01_box {
    text-align: center;
}
.detail01_box .detail01_area_1,.detail01_box .detail01_area_3,.detail01_box .detail01_area_4,.detail01_box .detail01_area_6 {
    width: 200px;
    height: 200px;
    line-height: 200px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: #FFF;
}
.detail01_box .detail01_area_1 span,.detail01_box .detail01_area_3 span,.detail01_box .detail01_area_4 span,.detail01_box .detail01_area_6 span {
    display: inline-block;
    line-height: 1.6;
    padding: 20px;
    font-size: 16px;
    vertical-align: middle;
}
.detail01_box .detail01_area_1:before,.detail01_box .detail01_area_3:before,.detail01_box .detail01_area_4:before,.detail01_box .detail01_area_6:before {
    content: "";
    width: 43px;
    border-bottom: 1px solid #c2c2c2;
    position: absolute;
}
.detail01_box .detail01_area_1:before {
    top: 50%;
    left: 100%;
    margin: -1px 0 0 10px
}
.detail01_box .detail01_area_3:before {
    top: 50%;
    right: 100%;
    margin: -1px 10px 0 0;
}
.detail01_box .detail01_area_4:before {
    top: 6px;
    left: 100%;
    margin: 0 0 0 -28px;
    transform: rotate(-45deg);
}
.detail01_box .detail01_area_6:before {
    top: 6px;
    right: 100%;
    margin: 0 -28px 0 0;
    transform: rotate(45deg);
}
.detail01_box .detail01_area_2 {
    width: 330px;
    height: 330px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    margin: 0 63px;
}
.detail01_box .detail01_area_1{
	background-color:#d33999
}
.detail01_box .detail01_area_3{
	background-color:#20a3f0
}
.detail01_box .detail01_area_4{
	background-color:#f3aa2c
}
.detail01_box .detail01_area_6{
	background-color:#3cceda
}


.detail01_box .detail01_area_2 img {
    max-width: 100%;
}
.detail01_box .detail01_area_5 {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin: 35px 33px 0;
    font-size: 18px;
    color: #333;
}
.detail01_box .detail01_area_5 h3{
   line-height:1.2;
   margin:0 0 8px 0;  
}
.detail01_box .detail01_area_5 p {
    color: #999999;
    font-size: 14px;
}
.detail01-Testimonials{
	min-height:inherit;
}
.detail01-Testimonials .mark{
	width:38px;
	height:38px;
	font-size:36px;
	color:#20a3f0;
	background-color:transparent;
	margin:auto auto 35px;
}
.detail01-Testimonials blockquote{
	font-size:13px;
	text-align:center;
	font-style:normal;
	color:#666666;
	margin: 0 5%;
	padding-bottom:98px;
}
.detail01-Testimonials .last_page,
.detail01-Testimonials .next_page{
	width:16px;
	height:16px;
	border:none;
	border-right:3px solid #767676;
	border-bottom:3px solid #767676;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	overflow:hidden;
	text-indent:100px;
	top:50%;
}
.detail01-Testimonials .last_page{
	left:15px;
	right:auto;
	transform:rotate(135deg);
	-ms-transform:rotate(135deg); /* IE 9 */
	-moz-transform:rotate(135deg); /* Firefox */
	-webkit-transform:rotate(135deg); /* Safari and Chrome */
	-o-transform:rotate(135deg); /* Opera */
}
.detail01-Testimonials .next_page{
	right:15px;
	left:auto;
	transform:rotate(-45deg);
	-ms-transform:rotate(-45deg); /* IE 9 */
	-moz-transform:rotate(-45deg); /* Firefox */
	-webkit-transform:rotate(-45deg); /* Safari and Chrome */
	-o-transform:rotate(-45deg); /* Opera */
}
.detail01-Testimonials .dot{
	text-align:center;
}
.detail01-Testimonials .dot{
	text-align:center;
	width:100%;
}
.detail01-Testimonials .dot a img{
	width:60px;
	height:60px;
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
}
.detail01-Testimonials .dot a{
	text-indent:inherit;
	width:auto;
	height:auto;
	padding:5px;
	border:1px solid #c9c9c9;
}
.detail01-Testimonials .dot a.actived{
	border:1px solid #20a3f0;
}
.detail01-isotope .photo {
	position:relative;
	overflow:hidden;
}
.detail01-isotope a.pricing01-bnt02{
   min-width:195px;
   margin:10px 18px;
}
.detail01-isotope{
   margin-bottom:12px;
}
.detail01-isotope .photo:before {
	content:"";
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.5);	
	position:absolute;
	opacity:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.detail01-isotope .photo:after {
	content:"";
	left:0px;
	top:0px;
	bottom:0px;
	right:0px;
	position:absolute;
	border:1px solid #FFF;
	opacity:0;
	transition: 		all ease-in 300ms;
	-moz-transition: 	all ease-in 300ms; /* Firefox 4 */
	-webkit-transition: all ease-in 300ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 300ms; /* Opera */
	-ms-transition: 	all ease-in 300ms; /* IE9? */
}
.detail01-isotope .ico {
	position:absolute;
	top:50%;
	width:100%;
	left:0;
	text-align:center;
	margin-top:-35px;
	z-index:10;
	opacity:0;
	transform:scale(1.2);
	-webkit-transform:scale(1.2);
	transition: 		all ease-in 400ms;
	-moz-transition: 	all ease-in 400ms; /* Firefox 4 */
	-webkit-transition: all ease-in 400ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 400ms; /* Opera */
	-ms-transition: 	all ease-in 400ms; /* IE9? */
}
.detail01-isotope .photo:hover:before{
	opacity:1;
}
.detail01-isotope .photo:hover:after{
	left:20px;
	top:20px;
	bottom:20px;
	right:20px;
	opacity:1;
}
.detail01-isotope .photo:hover .ico{
	opacity:1;
	transform:scale(1);
	-webkit-transform:scale(1);
}
.detail01-isotope .ico span {
	width:70px;
	height:70px;
	line-height:70px;
	text-align:center;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#20a3f0;
	color:#FFF;
	font-size:26px;
	margin:0px 5px;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
.detail01-isotope .ico a:hover{
	text-decoration:none;
}
.detail01-isotope .ico a:hover span {
	background-color:#333;
	text-decoration:none;
}
.detail01-isotope.isotope-spacing .isotope_item .photo{
	margin:1px;	
}
.detail01-bg01{
  background:#f4f4f4
}
.detail01-chart {
	text-align: center;
}
.detail01-chart p{
   margin:0 0 40px 0;
}
.detail01-chart .percentage4 {
	position: relative;
	margin: auto auto 10px;
	width: 94px;
	height: 94px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	color:#20a3f0;
}
.detail01-chart .percentage3 canvas{
	margin:-1px 0 0 -1px;
}
.detail01-chart .percentage_inner {
	position:absolute;
	top:0px;
	left:0px;
	text-align:center;
	font-size:20px;
	font-weight:bold;
	width: 94px;
	height: 94px;
	line-height:94px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	color:#FFF;
}
.detail01-chart .percentage4 + h3{
    color: #FFF;
    font-size: 18px;
    padding: 20px 0 10px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}
.detail01-chart .percentage4 + h3:after{
	content:"";
	padding-top:15px;
	font-weight:bold;
	width:30px;
	display:block;
	margin:auto;
	border-bottom:1px solid #FFF;
}
.detail01-bg02{
    background: url("/Portals/_default/Skins/ForVend/images/pages/detial01-bg02.jpg") no-repeat center center;
    background-size: cover;
	color:#fff;
	background-attachment:fixed;
	}
@media only screen and (max-width: 991px) {
	.detail01-bg02 {
		background-attachment:scroll;
	}
}
.detail01-title2{
    color: #333333;
    font-size: 30px;
	margin-bottom: 30px;
    line-height: 1.2;
}
.detail01-ibox {
    margin: 0 0 10px;
    padding: 0;
}

.detail01-ibox li {
    margin: 0 0 50px;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.detail01-ibox li span {
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    border: 1px solid #20a3f0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    font-size: 40px;
    color: #20a3f0;
    float: left;
    margin-right: 30px;
}

.detail01-ibox li h3 {
    font-size: 15px;
    color: #333333;
    overflow: hidden;
    line-height: 1.2;
    margin: 0;
}

.detail01-ibox li h3:after {
    content: "";
    width: 36px;
    border-bottom: 2px solid #20a3f0;
    margin: 26px 0 22px;
    display: block;
}
.detail01-ibox li p {
    overflow: hidden;
}
.detail02_box h4 {
    font-size: 18px;
    color: #20a3f0;
    font-weight: normal;
}

.detail02_box h4 {
    font-size: 18px;
    color: #20a3f0;
    font-weight: normal;
}

.detail02_box h4 span {
    display: block;
    color: #555555;
    font-size: 13px;
    padding-top: 12px;
}

.detail02_box ul {
    margin: 0;
    padding: 11px 0 15px 0;
}

.detail02_box ul li {
    list-style: none;
    display: inline-block;
    font-size: 0;
}

.detail02_box ul li a {
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 4px 0 0;
	width:36px;
	height:36px;
	text-align:center;
	line-height:36px;
	background:#c6c6c6;
	color:#fff;
	 transition: all 300ms ease-in-out 0s;
	 font-size:16px;
}

.detail02_box ul li a:hover{
   background:#20a3f0;
   color:#fff;  
}
.detail02_box .line {
    border-bottom: 1px solid #e5e5e5;
    clear: both;
    overflow: hidden;
    margin: 5px 0 25px;
}
.detail02-loade {
    width: 100%;
    margin-bottom: 30px;
}

.detail02-loade th {
    font-weight: normal;
    width: 10%;
    white-space: nowrap;
    margin: 0;
    padding: 14px 20px 14px 0;
    vertical-align: middle;
}

.detail02-loade td {
    vertical-align: middle;
    text-align: left;
    padding: 14px 0;
}

.detail02-loade .progress {
    overflow: visible;
    height: 14px;
    line-height: 14px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    background-color: #e2e1e1;
    box-shadow: none;  
    margin: 0 50px 0 0;
    position: relative;
}

.detail02-loade .progress .bar {
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    height: 14px;
    line-height: 14px;
    width: 0;
    transition: width ease-in 1000ms;
    -moz-transition: width ease-in 1000ms;
    -webkit-transition: width ease-in 1000ms;
    -o-transition: width ease-in 1000ms;
    -ms-transition: width ease-in 1000ms;
    background-color: #21c69e;
}
.detail02-loade .progress.color1 .bar{
  background-color:#8d6cc3;
}
.detail02-loade .progress.color2 .bar{
  background-color:#b65ccd;
}
.detail02-loade .progress.color4 .bar{
  background-color:#ef8494;
}
.detail02-loade .progress.color5 .bar{
  background-color:#1bbc9b;
}
.detail02-loade .bar span {
    position: absolute;
    left: 100%;
    top: 50%;
    margin: -8px 0 0 10px;
    color: #444444;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    text-indent: 0;
    display: none;
}
.detail02-bg01 {
    background-image: url("/Portals/_default/Skins/ForVend/images/pages/detail02-bg01.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
	color:#fff;
	position:relative;
}
@media only screen and (max-width: 991px) {
	.detail02-bg01 {
		background-attachment:scroll;
	}
}
.detail-bottom-icon {
	position:relative;
}
.detail02-bg01 > .top-icon, 
.detail02-bg01 > .bottom-icon, 
.detail-bottom-icon > .bottom-icon,
.detail-bottom-icon .top-icon{
    width: 64px;
    height: 64px;
    line-height: 54px;
    display: block;
    margin: auto;
    background-color: #20a3f0;
    border: 5px solid #ffffff;
    text-align: center;
    font-size: 26px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    position: relative;
    top: -32px;
    color: #FFF;
	  left: 50%;
    margin: 0 0 0 -32px;
    position: absolute;
}
.detail02-bg01 > .bottom-icon{
    top: auto;
    bottom: -32px;
}
.detail-bottom-icon > .bottom-icon{
    top:auto;
    bottom: -82px;
}
@media only screen and (max-width: 767px) {
.detail02-bg01 > .top-icon, 
.detail02-bg01 > .bottom-icon, 
.detail-bottom-icon > .bottom-icon,
.detail-bottom-icon .top-icon{
    width: 54px;
    height: 54px;
    line-height: 44px;
}
.detail02-bg01 > .bottom-icon{
    bottom: -27px;
}
.detail-bottom-icon > .bottom-icon{
    bottom: -77px;
}
}

.detail02-title1 {
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    font-weight: normal;
    margin-bottom: 20px;
}
.detail02-list {
    position: relative;
}
.detail02-list:before {
    content: "";
    position: absolute;
    top: 53px;
    left: 15px;
    right: 15px;
    display: block;
    border-bottom: 4px solid rgba(255,255,255,0.5);
}
.detail02-list .date {
    font-size: 16px;
    color: #FFF;
    margin-bottom: 83px;
    position: relative;
    padding-left: 50px;
}
.detail02-list .date:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 3px solid #FFF;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #20a3f0;
    top: 46px;
    left: 70px;
}
.detail02-list .info {
    content: "";
    background-color: rgba(255,255,255,0.1);
    padding: 26px;
    position: relative;
	margin:0 0 12px 0;
}
.detail02-list .info a {
    color: #FFF;
}
.detail02-list .info a:hover{
   color:#20a3f0;
   text-decoration:none;
}
.detail02-list .info:before {
    content: "";
    position: absolute;
    border: 10px solid transparent;
    border-bottom-color: rgba(255,255,255,0.1);
    bottom: 100%;
    left: 69px;
}
@media only screen and (max-width: 767px) {
	.detail02-list:before{
		border:none;
		border-left:4px solid rgba(255,255,255,0.5);
		width:0px;
		height:100%;
		top:0;
	}
	.detail02-list .info{
		margin-left:20px;
	}
	.detail02-list .date{
		padding:0;
		margin:0 0 10px 20px;
	}
	.detail02-list .date:before{
		left:-27px;
		top:5px;
	}
	.detail02-list .info:before{
		left:10px;
	}
	
}


.detail02-carousel{
	margin-bottom:50px;
}
.detail02-carousel .owl-pagination{
  margin-top:35px;
}
.detail02-carousel .owl-item {
	text-align:center;	
}
.detail02-carousel .item {
	display:inline-block;
	margin-right:36px;
}
.detail02-carousel .item:hover h3{
  background-color:#20a3f0;
}
.detail02-carousel .item h3{
	font-size:13px;
	color:#FFF;
	padding:14px 0;
	background-color:#757575;
	font-weight:normal;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
	margin:0;
}
.detail02-carousel .item:hover h3{
}
.detail02-carousel .carousel .owl-pagination{
	padding-top:10px;
}
.detail02-carousel .owl-page{
	border:none;
	height:12px;
	width:12px;
	background-color:#aaaaaa;
	margin:0px 3px 3px;
}
.detail02-carousel .owl-page.active{
	border:none!important;
	background-color:#20a3f0;
}
.detail02-list02 {
    margin: -15px 0 0;
    padding: 0;
    list-style: none;
}
.detail02-list02 li {
    padding: 11px 0;
    border-bottom: 1px solid #dbdbdb;
}
.detail02-list02 li span {
    font-size: 20px;
    margin-right: 15px;
    vertical-align: middle;
}
.detail02-title2 h2{
   font-weight:normal;
   font-size:20px;
   color:#444444;
   line-height:1.2;
   text-align:center;
   margin:0;
   padding:0 0 20px 0;
}
.footer_box{
}
.detail01-bnt a.ourteam-bnt, .detail01-bnt a:link.ourteam-bnt, .detail01-bnt a:active.ourteam-bnt, .detail01-bnt a:visited.ourteam-bnt{
	  font-weight:normal;
	  padding:22px 50px;
	  line-height:1.2;
  }
/*404*/
.title-404{
    font-weight: normal;
    font-size: 30px;
    padding-bottom: 25px;
    letter-spacing: 7px;
    text-align: center;
	line-height:1.2;
	margin:0;
}
.social_404 span {
    font-size: 20px;
    display: inline-block;
    margin: 0 10px 5px;
    text-align: center;
    transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    color: #FFF;
    opacity: 0.7;
}
.social_404 a:hover span{
  color:#fff;
  opacity: 1;
}
.two404-title {
    font-size: 30px;
    color: #333;
    text-align: center;
    font-weight: normal;
    line-height: normal;
    margin: 0 0 20px 0;
	text-align:center;
	line-height:1.2;
}
.two404-title p{
   font-size:15px;
   padding:15px 0 0 0;
}
.two404-bg01{
   background:#f8f8f8;
   text-align:center;
}
.two404-bg01 a.two404-bnt{
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    background-color: #20a3f0;
    padding: 18px 54px;
    margin: 22px 18px;
    border: 2px solid #20a3f0;
    text-decoration: none;
    transition: background-color ease-in 200ms,color ease-in 200ms,border-color ease-in 200ms;
    -moz-transition: background-color ease-in 200ms,color ease-in 200ms,border-color ease-in 200ms;
    -webkit-transition: background-color ease-in 200ms,color ease-in 200ms,border-color ease-in 200ms;
    -o-transition: background-color ease-in 200ms,color ease-in 200ms,border-color ease-in 200ms;
    -ms-transition: background-color ease-in 200ms,color ease-in 200ms,border-color ease-in 200ms;
}
.two404-bg01 a.two404-bnt:hover {
    background-color: #333;
	border-color:#333;
	color:#FFF;
}
a.three404-bnt, 
a:link.three404-bnt, 
a:active.three404-bnt, 
a:visited.three404-bnt {
    padding: 22px 30px;
    font-size: 14px;
    display: inline-block;
    white-space: nowrap;
    color: #FFF;
	line-height:1.2;
    background-color: #20a3f0;
    margin: 0 30px 10px 0;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transition: background-color ease-in 200ms;
    -moz-transition: background-color ease-in 200ms;
    -webkit-transition: background-color ease-in 200ms;
    -o-transition: background-color ease-in 200ms;
    -ms-transition: background-color ease-in 200ms;
}
a.three404-bnt:hover {
    background-color: #2e2e2e!important;
    color: #FFF;
    text-decoration: none;
}
.three404-input .textbox {
    height: 60px;
    width: 100%;
    background: none;
    border: none;
    text-indent: 5px;
    outline: none;
}
.three404-input .btn {
    width: 60px;
    height: 60px;
    line-height: 50px;
    position: absolute;
    top: -1px;
    right: -1px;
    border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    background-color: #20a3f0;
    color: #FFF;
    font-size: 24px;
    transition: background-color ease-in 200ms;
    -moz-transition: background-color ease-in 200ms;
    -webkit-transition: background-color ease-in 200ms;
    -o-transition: background-color ease-in 200ms;
    -ms-transition: background-color ease-in 200ms;
}
.three404-input {
    border: 1px solid #cccccc;
    height: 60px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    position: relative;
    padding-right: 67px;
}
.three404-list{
  margin:0;
  padding:0;
}
.three404-list li {
    margin: 0;
    padding: 4px 0;
	list-style:none;
}
.three404-list li .fa {
    font-size: 15px;
    margin-right: 10px;
    color: #20a3f0;
	min-width:18px;
	text-align:center;
}
.four404-title h1 {
    font-size: 150px;
    color: #ddd;
    line-height: normal;
}
.four404-title p {
    font-size: 14px;
    color: #777;
}
.four404-title {
    text-align: center;
}
@media only screen and (max-width: 767px) {
	.four404-title h1 {
		font-size: 60px;
	}
}
.four404-title2 h2{
   font-size:14px;
   line-height:1.2;
   text-transform:uppercase;
   margin:0;
   color:#333333;
   padding:0 0 10px 0;  
}
.four404-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.four404-list li {
    border-bottom: 1px solid #CCCCCC;
    color: #555;
    position: relative;
    padding: 12px 0 12px 20px;
}
.four404-list li:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #1E7AD8;
    left: 0;
    top: 50%;
    margin: -8px 0 0 0;
	background:#20a3f0
}
.four404-list li:after {
    content: "";
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 5px;
    height: 5px;
    left: 4px;
    top: 50%;
    position: absolute;
    margin: -3px 0 0 0;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.four404-list02 {
    margin: 10px 0;
    padding: 0;  
}
.four404-list02 ul{
   margin:18px 0 0 0;
}
.four404-list02 li {
    color: #555;
    line-height: 32px;
	list-style:none;
}
.four404-list02 li span.fa {
    font-size: 12px;
    color: #20a3f0;
    margin: 0 10px 0 0;
}
.four404-box .four404-input {
    position: relative;
    margin: 20px 0;
}
.four404-box a.four404-bnt{
    color: #fff;
    display: inline-block;
    border-radius: 100px;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    padding: 6px 19px;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0 5px 10px 0;
	border:1px solid #20a3f0;
	background:#20a3f0;	
		    transition:  background-color ease 300ms;
    -moz-transition:  background-color ease 300ms;
    -webkit-transition:  background-color ease 300ms;
    -o-transition:  background-color ease 300ms;
    -ms-transition:  background-color ease 300ms;
}
.four404-box a:hover.four404-bnt{
   background:transparent;
   color:#20a3f0;  
}
.four404-box .four404-input input {
    background-color: #E5E5E5;
    display: block;
    border: none;
    outline: none;
    padding: 10px 36px 10px 15px;
    width: 100%;
}
.four404-box .four404-input > a {
    position: absolute;
    right: 15px;
    top: 50%;
    display: inline-block;
    font-size: 16px;
    margin: -14px 0 0 0;
}
.four404-box {
    padding: 10px 0 0;
}
@media only screen and (max-width: 991px) and (min-width: 768px){
/*About us*/
.aboutus01-fullmain .the1, 
.aboutus01-fullmain .the2, 
.aboutus01-fullmain .the3{
    display:block;
}
/*Our Team*/
.ourteam-ibox02 li{
    padding: 35px;
}
.ourteam01-logo li {
    padding: 0;
    width: 33.3%;
    border-right: 0;	
    margin: 8px 0;
    float: left;
}
/*Our Service*/
.service02-bg03 .right_img{
    position: static;
    min-height: 300px;
    width: 100%;
    clear: both;
}
.service02-bg03.pb-60,
.service02-bg03.pt-60 {
    padding-bottom: 0;
}
.service02-ibox:before{
	display:none;
}
/*Team Detail*/
.detail01_box .detail01_area_3:before{
   display:none;}
/*pricing*/
.pricing01-price {  
    display: block;  
}
.pricing01-price > div {
    display: block;   
    float: left;
}
.pricing01-ibox { 
    padding: 60px 15px 40px 15px;    
}
.pricing01-img-list li {
    float: left;
    width: 33.333333%;
}
.pricing01-bg02 .prcing01-img .prcing01-left{
   display:none;	
}
.pricing01-bg02 .prcing01-img{
  position:relative;
  text-align:center;
}
.pricing-full .pricing-full_right .pricing-full_right_main {   
    padding: 20px;
}
.pricing02-ibox {  
    padding: 0 15px 40px 15px;  
}
/*faq*/
.faq01-bg01 .col-md-6.faq01-imgbottom {
    position: relative;
    right: 0;
    bottom: 0;
}
.faq02-Testimonials blockquote .main{
  padding:15px 15px 60px 15px;
}
.faq02-Testimonials .next_page {
    top: 10px;
    bottom: auto;
    left: 50%;
    right: auto;   
    margin: 5px 0 0 -70px;
}
.faq02-Testimonials .dot {
    left: 15px;
    bottom: 15px;   
}
}
@media only screen and (max-width: 991px){
.service02-bg03{
	padding:0 15px;
}
.ourteam01-text .text_right{
    position: static;
    transform: none;
    -webkit-transform: none;
	text-align:center;
}
.ourteam01-text .text_left{
    text-align: center;
    margin-right: 0;
}
.ourteam02-full .ourteam02-full-left.the1 .ourteam02-full-lmain,
.ourteam02-full .ourteam02-full-right.the2 .ourteam02-full-rmain{
   padding:20px;
}
/*History*/
.history-box .history-boxmain .history-boxpic { 
    float: none;
    margin:0 0 30px 0;
    width: 100%;   
}
.history-box .history-boxmain .history-boxcontent{
   padding:20px;
}
.history-box .history-boxmain .history-boxright {  
    width: 100%;
    float: none;
}
.history-box .history-boxmain {
    padding-left: 140px;  
}
.history02 .time_content {
    margin: 0px 8% 0 0;
}
.history02 .time_content, .history02 .time_photo {
    width: 42%;
}
/*faq*/
.faq02-ibox .faq02-ibox_left_top {
    position: relative;
    left: 0;
    top: 0;  
    width: 100%;
	margin:0 0 30px 0;
}
.faq02-ibox .faq02-ibox_left_bottom {
    position: relative;
    left: 0;
    bottom: 0;   
    width: 100%;
}
.faq02-ibox .faq02-ibox_right_top {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
	margin:30px 0;
}
.faq02-ibox .faq02-ibox_right_bottom {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
}
.faq02-ibox .img{
  display:none;
}
.faq02-ibox .faq02-ibox_left_top .main p, 
.faq02-ibox .faq02-ibox_left_bottom .main p, 
.faq02-ibox .faq02-ibox_right_top .main p, 
.faq02-ibox .faq02-ibox_right_bottom .main p{
  margin-top:15px;
}
.ourteam01-text a.ourteam-bnt02,
.ourteam01-text a:link.ourteam-bnt02, 
.ourteam01-text a:active.ourteam-bnt02, 
.ourteam01-text a:visited.ourteam-bnt02 { 
	margin:10px 10px 0 10px;		  
}
/*Contact Us*/
.conatctus01-imgbottom > [class^="col-md"] {
    display: inherit;
    float: none;
	text-align:center;  
}
}
@media only screen and (max-width: 767px){
/*About Us*/
.aboutus01-title2 .img .the4 {
    position: relative;
    top: 0;
    right: 0;  
    margin:-19px auto 0 auto;
}
.aboutus01-title2 .img .the3 {
    left: auto;
    right: 0;
    margin: 0;
    bottom: 0;
}
.aboutus01-title2 .img .the2 {
    margin: 30px 0 0;
}
.aboutus01-title2 .img .the2, .aboutus01-title2 .img .the3 {
    position: relative;
    text-align: center;
    bottom: 0;
    left: 0;
}
.aboutus01-title3 p {
    padding: 0;  
}
.aboutus01-fullmain .aboutus01-fullbox {
    padding: 30px 0;
}
.aboutus01-fullmain .the1, 
.aboutus01-fullmain .the2, .aboutus01-fullmain .the3 {
    display: block; 
	padding:0 15px;  
}
.aboutus02-mumber01 .column,
.aboutus02-mumber01 .column:first-child{
    float: none;
    width: 100%;  
    border-bottom: 1px solid rgba(255,255,255,0.5);
	border-left:0;   
}
.aboutus02-bnt{
  margin-bottom:20px;
}
.aboutus02-demo a{
  margin-bottom:15px;
}
.ourteam-ibox02 li {  
    width: 100%;  
    padding: 30px;  
}
.ourteam01-logo li {   
    width: 50%;
    border-right:0;
    margin: 8px 0;   
}
.ourteam02-full .ourteam02-full-right.the1,
.ourteam02-full .ourteam02-full-left.the2{
    width: 100%;
	position:relative;
	height:300px;
}
.ourteam02-full .ourteam02-full-left.the1,
.ourteam02-full .ourteam02-full-right.the2 {
    float: none;
    width: 100%;   
}
.ourteam02-full .ourteam02-full-left.the1 .ourteam02-full-lmain,
.ourteam02-full .ourteam02-full-right.the2 .ourteam02-full-rmain{
	padding:30px 20px;
}
.ourteam01-number {
    text-align: center;
	margin-bottom:20px;
}
.ourteam01-number .number-left {
    text-align: center;
    width: 100%;
    float: none;
    padding: 0 0;
	clear:both;
}
.ourteam01-number .number-right {
    float: none;
    width: 100%;
	clear:both;
    text-align: center;
}
.ourteam01-number.number-color2 .number-right, 
.ourteam01-number.number-color4 .number-right{
	text-align:center;
}

.ourteam01-number .number-right h2:before,
.ourteam01-number.number-color2 .number-right h2:before, 
.ourteam01-number.number-color4 .number-right h2:before{
	left:50%;
	right:auto;
	margin-left:-18px;
}
.ourteam01-number .number-center {
    float: none;
    width: 100%;
	padding:20px 0;
}
.ourteam01-number .number-center em{
	margin:auto;
	width:50%;
	height:120px;
	line-height:120px;
}
.ourteam01-number.number-color2 .number-left, 
.ourteam01-number.number-color4 .number-left {
    text-align: center;
}
.ourteam01-number .number-center em:after{
	display:none;
}
.ourteam01-number .text_title{
	padding-left:10px;
}
/*History*/
.history-box .history-boxmain .history-boxpic { 
    float: none;
    margin-right: 30px;
    width: 100%;   
}
.history-box .history-boxmain .history-boxcontent{
   padding:20px;
}
.history-box .history-boxmain .history-boxright {  
    width: 100%;
    float: none;
}
.history-box .history-boxmain {
    padding-left: 0;   
}
.history-box .history-boxmain .history-boxcontent:before{
  display:none;
}
.history-box .history-boxmain .history-boxdate{
  position:relative;
  top:11px;
  z-index:1;
}
.history02 .time_content, .history02 .time_photo {
    width: 100%;
}
.history02 .time_content, .history02 .time_photo{
   margin:50px 0;
}
.history02 .time_month.time_month_one,
.history02 .time_month.time_month_two  {   
    left: 50%;
    right: auto;
    top: 0;
    margin: -35px 0 0 -35px;
	display:none;
}
.history02 .time_box_top{	
	margin:30px 0 50px 0;
}
.history02 .time_box_left .time_content:before, 
.history02 .time_box_left .time_photo:before, 
.history02 .time_box_right .time_photo:before, 
.history02 .time_box_right .time_content:before{
  display:none;
}
.history03-content .pr50{
   padding-right: 0;
}
.history03-content .pl50 {
    padding-left: 0;
}
.history03-img{
    margin: 20px 0;
}
.history03-content .right_branch {
    margin-left: -7px;
   padding-top: 25px;
}
/*Our Service*/
.service01-tab .resp_margin {  
    padding: 15px;
}
.service01-ibox02_r {  
    border-bottom: 1px solid #e1e1e1;
}
.service01-imgbox .service01-imgcon {
    width: 50%;
    float: left;
}
.service01-imgbox .photo_box .ico span {    
    width: 40px!important;
    height: 40px!important;
    line-height: 40px!important;
}
.service02-bg03 .right_img{
    position: static;
    min-height: 300px;
    width: 100%;
    clear: both;
}
.service02-bg03.pb-60,
.service02-bg03.pt-60 {
    padding-bottom: 0;
}
.service02-carousel .blockquote_6{
	padding:0 20px;	
}
/*faq*/
.faq01-bg01 .col-md-6.faq01-imgbottom {
    position: relative;
    right: 0;
    bottom: 0;
}
.faq02-Testimonials blockquote .main {
    width: 100%;  
    padding: 60px 15px 120px 15px;
}
.faq02-Testimonials .next_page {  
    top: 15px;
    bottom: auto;
    left: auto;
    right: 15px;   
}
.faq02-Testimonials .dot {
    left: 15px;
    bottom: 60px;   
}
/*Contact Us*/	
.Contactus01-Container01{
   width:auto;
}
.contactus01-ibox02 li {
    list-style: none;
    width: 100%;
    float: left;
    padding: 20px;
}
.contactus01-ibox02{
   padding:20px 0;
}
.contactus02-bg01 .bg_right {
    padding: 70px 0 70px 0;
}
.contactus02-info > span.fa { 
    width: 60px; 
    font-size: 35px;   
}
.contactus02-info {  
    padding: 0 15px 0 75px;  
}
.contactus02-ibox.border:before{
  display:none;
}
.contactus02-ibox .pic {
    float: none;
    padding: 15px 0;   
}
/*pricing*/
.pricing01-price > div {
    display: block;   
}
.pricing01-img-list li {
    float: left;
    width: 50%;
}
.pricing01-ibox { 
    padding: 60px 15px 40px 15px;    
}
.pricing01-bg02 .prcing01-img .prcing01-left{
   display:none;	
}
.pricing01-bg02 .prcing01-img{
  position:relative;
  text-align:center;
}
.pricing-full .pricing-full_left {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 300px;
}
.pricing-full .pricing-full_right {
    float: none;
    width: 100%;
}
.pricing-full .pricing-full_right .pricing-full_right_main ul li {
    margin: 0 0 20px 0;
    position: relative;
    float: none;
    width: 100%;
	text-align:center;  
}
/*Team Detail*/
.detail01_box .detail01_area_2 {  
    margin: 0;
}
.detail01_box .detail01_area_1:before, 
.detail01_box .detail01_area_3:before, 
.detail01_box .detail01_area_4:before, 
.detail01_box .detail01_area_6:before{
    display:none;
}
.detail01_box .detail01_area_1, .detail01_box .detail01_area_3, .detail01_box .detail01_area_4, .detail01_box .detail01_area_6{
    display:block;
    margin:10px 0;
}
.detail01_top,
.detail01_bottom{
    display: inline-block;
}
.detail01_box .detail01_area_5{
    display:block;
}
.detail01_box .detail01_area_2{
    width:200px;
    height:200px;
}
.detail01-ibox li span {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 21px;  
}
}
@media only screen and (max-width: 1200px){
.service01-full .service01-full_img {
    text-align: center;
    position: relative;
    top: 0;
	margin-top:20px;
}
.service01-full .service01-full_right .service01-full_right_main,
.service01-full .service01-full_left .service01-full_left_main {
    text-align: center;
    padding: 60px 0;
}
}
@media only screen and (min-width: 1600px){
.faq02-ibox .img {   
    padding: 230px 0;   
}
.aboutus01-title2 .img .the4 {  
    top: 21px;
    right: 135px;
}
.ourteam02-ibox .photo_box em.fa{
  right:30px;
  top: 20px;
}
}
.ibox-title,
.ibox-title02{
	text-align:center;
	font-size:20px;
	font-weight:normal;
	color:#424242;
	margin-bottom:38px;
	line-height:1.6;
}
.ibox-title:after,
.ibox-title02:after{
	content:"";
	display:block;
	width:40px;
	border-bottom:2px solid #20a3f0;
	margin:20px auto 0;
}
.ibox-title02{
	color:#FFF;
}
.dg-iconbox01,
.dg-iconbox02 {
	text-align:center;
	margin-bottom:30px;
}
[class*="dg-ico"]{
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-iconbox01 [class*="dg-ico"],
.dg-iconbox02 [class*="dg-ico"],
.dg-iconbox05 [class*="dg-ico"]{
	margin:0 auto 24px;
}
.dg-iconbox01 .dg-ico07,
.dg-iconbox02 .dg-ico07,
.dg-iconbox05 .dg-ico07{
	margin:25px auto 58px;
}
.dg-iconbox01 .dg-ico14,
.dg-iconbox02 .dg-ico14,
.dg-iconbox05 .dg-ico14{
	margin:25px auto 58px;
}

[class*="dg-ico"] img{
	max-width:100%;
	vertical-align:inherit;
}

.dg-iconbox01 h3,
.dg-iconbox02 h3{
	font-size:15px;
	color:#333333;
	margin:0px 0 14px ;
	line-height:1.2;
}
.dg-iconbox01 h3:after{
	content:"";
	display:block;
	border-bottom:2px solid #444444;
	width:28px;
	margin:14px auto 0;
}
.dg-iconbox02 .more{
	font-size:15px;
}

.dg-iconbox03{
	margin-bottom:30px;
}
.dg-iconbox03 h3{
	font-size:15px;
	color:#424242;
	margin:0 0 12px;
	line-height:1.2;
}
.dg-iconbox03 h3 [class*="dg-ico"]{
	vertical-align:middle;
	margin-right:18px;
}
.dg-iconbox03 > [class*="dg-ico"]{
	float:left;
	margin-right:18px;
}
.dg-iconbox03 > [class*="dg-ico"] + .box-right{
	overflow:hidden;
}
.dg-iconbox03 .box-right a,
.dg-iconbox03 .box-right a:link,
.dg-iconbox03 .box-right a:active,
.dg-iconbox03 .box-right a:visited{
	text-decoration:underline;
	color:#666666;
}
.dg-iconbox03 .box-right a:hover{
	color:#20a3f0;
}


.dg-iconbox04{
	margin:0 auto 4px;
	overflow:hidden;
}
.dg-iconbox04 [class*="dg-ico"]{
	float:left;
	position:relative;
}
.dg-iconbox04 [class*="dg-ico"] .left-line{
	position:absolute;
	top:100%;
	left:50%;
	height:10000px;
	border-left:1px solid #b4b4b4;
	margin-top:4px;
	transition: 		border-color ease-in 200ms;
	-moz-transition: 	border-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: border-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		border-color ease-in 200ms; /* Opera */
	-ms-transition: 	border-color ease-in 200ms; /* IE9? */
}
.dg-iconbox04:hover [class*="dg-ico"] .left-line{
	border-left-color:#00c6ff;
}
.dg-iconbox04 h3{
	color:#1d1d1d;
	font-size:15px;
	margin:0 0 10px;	
	line-height:1.2;
}
.dg-iconbox04 [class*="dg-ico"] + .box-main{
	overflow:hidden;
	padding-left:25px;
	padding-bottom:60px;
}
.dg-iconbox04.box-left{
	text-align:right;
}
.dg-iconbox04.box-left [class*="dg-ico"]{
	float:right;
}
.dg-iconbox04.box-left [class*="dg-ico"] + .box-main{
	padding-left:0;
	padding-right:25px;
}
.dg-iconbox04:last-child .box-main{
	padding-bottom:0
}
.dg-iconbox05{
	border:1px solid #cccccc;
	border-top:6px solid #20a3f0;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	text-align:center;
	padding:35px 35px 0;
	margin-bottom:30px;
}
.dg-iconbox05 h3{
	font-size:15px;
	color:#20a3f0;
	line-height:1.2;
}
.dg-iconbox05 h3:after{
	content:"";
	width:94px;
	border-bottom:1px solid #20a3f0;
	display:block;
	margin:18px auto 20px;
}
.dg-iconbox05 [class*="dg-btn"]{
	transform:translateY(50%);
	-webkit-transform:translateY(50%);
}

.dg-iconbox06{
	border:1px solid #cccccc;
	border-top:6px solid #08c6f5;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	text-align:center;
	padding:0 25px 25px;
	margin-top:40px;
	margin-bottom:30px;
}
.dg-iconbox06 h3{
	font-size:15px;
	color:#20a3f0;
	margin:-10px 0 25px;
	line-height:1.2;
}
.dg-iconbox06 h3:after{
	content:"";
	width:94px;
	border-bottom:1px solid #20a3f0;
	display:block;
	margin:20px auto;
}
.dg-iconbox06 [class*="dg-ico"]{
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
}

.dg-iconbox07{
	border:1px solid #cccccc;
	border-top:6px solid #20a3f0;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	padding:30px 22px;
	margin-bottom:30px;
	transition: 		border-color ease-in 200ms;
	-moz-transition: 	border-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: border-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		border-color ease-in 200ms; /* Opera */
	-ms-transition: 	border-color ease-in 200ms; /* IE9? */
}
.dg-iconbox07 h3{
	font-size:15px;
	color:#424242;
	margin:0 0 12px;
	line-height:1.2;
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */
}
.dg-iconbox07:hover h3{
	color:#20a3f0;
}
.dg-iconbox07 h3 [class*="dg-ico"]{
	vertical-align:middle;
	margin-right:18px;
	margin-bottom:5px;
}
.dg-iconbox07 > [class*="dg-ico"]{
	float:left;
	margin-right:18px;
}
.dg-iconbox07 > [class*="dg-ico"] + .box-right{
	overflow:hidden;
}
.dg-iconbox07 .box-right a,
.dg-iconbox07 .box-right a:link,
.dg-iconbox07 .box-right a:active,
.dg-iconbox07 .box-right a:visited{
	text-decoration:underline;
	color:#666666;
}
.dg-iconbox07 .box-right a:hover{
	color:#20a3f0;
}
.dg-iconbox07:hover{
	border-top-color:#333333;
}
.dg-iconbox07:hover .dg-ico05{
	color:#20a3f0;
}
.dg-iconbox08{
	border:1px solid #cccccc;
	padding:30px 22px;
	margin-bottom:30px;
	position:relative;
}
.dg-iconbox08:after{
	content:"";
	position:absolute;
	left:-1px;
	right:-1px;
	bottom:-1px;
	opacity:0;
	visibility:hidden;
	border-bottom:2px solid #20a3f0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-iconbox08 h3{
	font-size:15px;
	color:#424242;
	margin:0 0 12px;
	line-height:1.2;
}
.dg-iconbox08 h3 small{
	display:block;
	color:#424242;
	font-size:13px;
	margin-top:8px;
}
.dg-iconbox08 h3 [class*="dg-ico"]{
	vertical-align:middle;
	margin-right:18px;
}
.dg-iconbox08 > [class*="dg-ico"]{
	float:left;
	margin-right:18px;
}
.dg-iconbox08 > [class*="dg-ico"] + .box-right{
	overflow:hidden;
}
.dg-iconbox08 .box-right a,
.dg-iconbox08 .box-right a:link,
.dg-iconbox08 .box-right a:active,
.dg-iconbox08 .box-right a:visited{
	text-decoration:underline;
	color:#666666;
}
.dg-iconbox08 .box-right a:hover{
	color:#20a3f0;
}
.dg-iconbox08:hover:after{
	opacity:1;
	visibility:visible;
}

.dg-iconbox09{
	border:1px solid #cccccc;
	border-top:6px solid #20a3f0;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	padding:30px 22px;
	margin-bottom:30px;
	text-align:center;
	transition: 		border-color ease-in 200ms;
	-moz-transition: 	border-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: border-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		border-color ease-in 200ms; /* Opera */
	-ms-transition: 	border-color ease-in 200ms; /* IE9? */
}
.dg-iconbox09 h3{
	font-size:15px;
	color:#424242;
	margin:0 0 12px;
	line-height:1.2;
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */
}
.dg-iconbox09 h3:after{
	content:"";
	width:35px;
	border-bottom:3px solid #424242;
	display:block;
	margin:20px auto;
}
.dg-iconbox09 [class*="dg-ico"]{
	margin:0 auto 24px;
}
.dg-iconbox10 {
	border:1px solid #cccccc;
	padding:22px 22px 22px 52px;
	margin-left:32px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	position:relative;
	margin-bottom:30px;
	transition: 		border-color ease-in 200ms;
	-moz-transition: 	border-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: border-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		border-color ease-in 200ms; /* Opera */
	-ms-transition: 	border-color ease-in 200ms; /* IE9? */
}
.dg-iconbox10 h3{
	font-size:15px;
	color:#424242;
	margin:0 0 12px;
	line-height:1.2;
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */
}
.dg-iconbox10 [class*="dg-ico"]{
	position:absolute;
	left:0px;
	top:50%;
	transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
}
.dg-iconbox10:hover{
	border-color:#20a3f0;
}
.dg-iconbox10:hover h3{
	color:#20a3f0
}
.dg-iconbox11 {
	position:relative;
	margin-bottom:30px;
	color:#ffffff;
}
.dg-iconbox11 h3{
	font-size:15px;
	color:#02bef5;
	margin:0 ;
	line-height:1.2;
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */
}
.dg-iconbox11 h3:after{
	content:"";
	display:block;
	border-bottom:3px solid #02bef5;
	width:15px;
	margin:6px 0px 15px;
}
.dg-iconbox11 [class*="dg-ico"]{
	float:left;
	margin-right:20px
}
.dg-iconbox11 [class*="dg-ico"] + .box-right{
	overflow:hidden;
	padding-top:30px;
}



.dg-iconbox12{
	padding:50px 40px;
	background-color:#ffffff;
	margin-bottom:30px;
}
.dg-iconbox12 h3{
	font-size:15px;
	color:#424242;
	margin:0 0 12px;
	line-height:1.2;
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */
}
.dg-iconbox12 h3:after{
	content:"";
	display:block;
	border-bottom:2px solid #666666;
	width:30px;
	margin-top:16px;
	transition: 		border-color ease-in 200ms;
	-moz-transition: 	border-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: border-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		border-color ease-in 200ms; /* Opera */
	-ms-transition: 	border-color ease-in 200ms; /* IE9? */
}
.dg-iconbox12 h3 small{
	font-size:15px;
	color:#888888;
	display:block;
	margin-top:5px;
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */
}
.dg-iconbox12 > [class*="dg-ico"]{
	float:left;
	margin-right:18px;
}
.dg-iconbox12 > [class*="dg-ico"] + .box-right{
	overflow:hidden;
}
.dg-iconbox12:hover{
	color:#FFF;
	background-color:#20a3f0;
}
.dg-iconbox12:hover h3,
.dg-iconbox12:hover h3 small{
	color:#FFF;
}
.dg-iconbox12:hover h3:after{
	border-bottom-color:#ffffff;
}
.dg-iconbox13{
	padding:0px 40px;
	white-space:nowrap;
	margin-bottom:30px;
	height:385px;
	border:2px solid #ffffff;
	text-align:center;
	position:relative;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-iconbox13:after{
	content:"";
	height:100%;
	display:inline-block;
	vertical-align:middle;
	width:0;
	overflow:hidden;
}
.dg-iconbox13 .box-center{
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
}
.dg-iconbox13 h3{
	color:#FFF;
	font-size:15px;
	line-height:1.2;
}
.dg-iconbox13 h3:before{
	content:"";
	display:block;
	width:40px;
	border-bottom:2px solid #ffffff;
	margin:0 auto 17px;
}
.dg-iconbox13 [class*="dg-ico"]{
	margin-bottom:30px;
}
.dg-iconbox13 .dg-ico03,
.dg-iconbox13:hover .dg-ico03{
	border-color:#FFF!important;
	color:#FFF!important;
}
.dg-iconbox13:hover{
	background-color:#20a3f0;
	border-color:#20a3f0;
}
.dg-iboxlist{
	margin:0;
	padding:0;
}
.dg-iboxlist:after {
	clear:both;
	content:".";
	height:0px;
	font-size:0px;
	visibility:hidden;
	display:block;
}
.dg-iboxlist li{
	list-style:none;
	float:left;
	width:20%;
	text-align:center;
	height:397px;
	white-space:nowrap;
}
.dg-iboxlist li:before{
	content:"";
	display:inline-block;
	height:397px;
	vertical-align:middle;
}
.dg-iboxlist li.color-01{
	background-color:#78d3e9;
}
.dg-iboxlist li.color-02{
	background-color:#3c9eb6;
}
.dg-iboxlist li.color-03{
	background-color:#1b788f;
}
.dg-iboxlist li.color-04{
	background-color:#1a4d5a;
}
.dg-iboxlist li.color-05{
	background-color:#0a2d36;
}
.dg-iboxlist li .center{
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
}
.dg-iboxlist li h3{
	color:#FFF;
	font-size:15px;
	margin:30px auto 0;
	line-height:1.2;
}
@media only screen and (max-width: 767px) {
	.dg-iboxlist li{
		width:auto;
		float:none;
	}
}
.dg-iboxlist li .dg-ico05{
	color:#FFF;
}

.dg-ico01,
.dg-ico01.fa{
	width:64px;
	height:64px;
	line-height:64px;
	text-align:center;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	font-size:24px;
	display:inline-block;
	border:1px solid #20a3f0;
	background-color:#20a3f0;
	color:#FFF;
}
[class*="dg-iconbox"]:hover .dg-ico01,
[class*="dg-iconbox"]:hover .dg-ico01.fa{
	color:#888888;
	background-color:transparent;
	border-color:#888888;
}

.dg-ico02,
.dg-ico02.fa{
	width:64px;
	height:64px;
	line-height:64px;
	text-align:center;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#4c4f50;
	color:#FFF;
	font-size:24px;
	display:inline-block;
	position:relative;
	overflow:hidden;
}
[class*="dg-iconbox"]:hover .dg-ico02,
[class*="dg-iconbox"]:hover .dg-ico02.fa{
	background-color:#20a3f0;
}
.dg-ico02:after{
	content:"";
	position:absolute;
	background-color:#000;
	opacity:0.15;
	width:50%;
	height:100%;
	left:0;
	top:0;
	z-index:0;
	transform:rotate(-135deg);
	-webkit-transform:rotate(-135deg);
	transform-origin:right center;
	-webkit-transform-origin:right center;
}
.dg-ico02 >*{
	position:relative;
	z-index:2;
}
.dg-ico03,
.dg-ico03.fa{
	width:80px;
	height:80px;
	line-height:80px;
	text-align:center;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border:1px solid #b4b4b4;
	color:#888888;
	font-size:24px;
	display:inline-block;
}
[class*="dg-iconbox"]:hover .dg-ico03,
[class*="dg-iconbox"]:hover .dg-ico03.fa{
	border:1px solid #20a3f0;
	color:#20a3f0;
}

.dg-ico04{
	width:93px;
	height:93px;
	line-height:93px;
	text-align:center;
	font-size:30px;
	display:inline-block;
	position:relative;
	color:#888888;
	transition:			none;
	-moz-transition: 	none; /* Firefox 4 */
	-webkit-transition: none; /* Safari and Chrome */
	-o-transition: 		none; /* Opera */
	-ms-transition: 	none; /* IE9? */
}
.dg-ico04 .fa{
	position:relative;
	z-index:3;
}

.dg-ico04 .hexagon,
.dg-ico04 .hexagon:before,
.dg-ico04 .hexagon:after{
    width: 78px;
    height: 48px;
	display:block;
	position:absolute;
    left: 7px;
    top: 23px;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	-webkit-transform-origin:center center;
	transform-origin:center center;
	border-left:1px solid #c0c0c0;
	border-right:1px solid #c0c0c0;
}
.dg-ico04 .hexagon:before {
    content: "";
    top:0px;
    left: -1px;
	transform:rotate(120deg);
	-webkit-transform:rotate(120deg);
}
.dg-ico04 .hexagon:after {
    content: "";
    top:0px;
    left: -1px;
	-webkit-transform:rotate(-120deg);
	transform:rotate(-120deg);
}
[class*="dg-iconbox"]:hover .dg-ico04{
	color:#FFF;
}
[class*="dg-iconbox"]:hover .dg-ico04 .hexagon,
[class*="dg-iconbox"]:hover .dg-ico04 .hexagon:before,
[class*="dg-iconbox"]:hover .dg-ico04 .hexagon:after{
	background-color:#20a3f0;
	border-color:#20a3f0;
}

.dg-ico05,
.fa.dg-ico05 {
	font-size:52px;
	color:#333333;
	display:inline-block;
	text-align:center;
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */
}
.dg-ico05.accent {
	color:#20a3f0;
}
.dg-ico05.yellow {
	color:#f0ad4e;
}
.dg-ico05.red {
	color:#d70b0b;
}

.dg-ico06,
.fa.dg-ico06{
	display:inline-block;
	width:80px;
	height:80px;
	line-height:80px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	font-size:28px;
	color:#FFF;
	text-align:center;
	background: -webkit-linear-gradient(135deg, #23abeb, #34d1d5);
	background: -o-linear-gradient(135deg, #23abeb, #34d1d5); 
	background: -moz-linear-gradient(135deg, #23abeb, #34d1d5); 
	background: linear-gradient(135deg, #23abeb, #34d1d5);
	background-color:#23abeb;
	position:relative;
}
.dg-ico06:after{
	content:"";
	position:absolute;
	left:5px;
	top:5px;
	right:5px;
	bottom:5px;
	background-color:#333333;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	z-index:1;
	visibility:hidden;
	opacity:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-ico06:before,
.dg-ico06 .fa{
	position:relative;
	z-index:2;
}
[class*="dg-iconbox"]:hover .dg-ico06:after{
	visibility:visible;
	opacity:1;
}



.dg-ico07,
.dg-ico14,
.dg-ico07 .hexagon,
.dg-ico14 .hexagon {
    width: 92px;
    height: 50px;
    line-height: 46px;
    border-radius: 10px;
}
.dg-ico07,
.dg-ico14{
	text-align: center;
    color: #fff;
    z-index: 3;
    margin: 25px auto 68px;
    display: block;
	position:relative;
    background: linear-gradient(135deg,#18e2ba 0,#47d1ff 100%);
    background: -moz-linear-gradient(135deg, #4ddbc0 0%, #44d0fc 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#4ddbc0), color-stop(100%,#44d0fc));
    background: -webkit-linear-gradient(135deg, #4ddbc0 0%,#44d0fc 100%);
    background: -o-linear-gradient(135deg, #4ddbc0 0%,#44d0fc 100%);
    background: -ms-linear-gradient(135deg, #4ddbc0 0%,#44d0fc 100%);
    background: linear-gradient(135deg, #4ddbc0 0%,#44d0fc 100%);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
}
.dg-ico07:after, 
.dg-ico07:before,
.dg-ico14:after, 
.dg-ico14:before,
.dg-ico07 .hexagon:after, 
.dg-ico07 .hexagon:before,
.dg-ico14 .hexagon:after, 
.dg-ico14 .hexagon:before {
    top: -17px;
    content: "";
    width: 48px;
    height: 48px;
	transform: scalex(1.7)rotate(45deg);
    -webkit-transform: scalex(1.7)rotate(45deg);
    -moz-transform: scalex(1.7)rotate(45deg);
    -ms-transform: scalex(1.7)rotate(45deg);
    -o-transform: scalex(1.7)rotate(45deg);
    border-radius: 6px 17px;
    left: 22px;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
}
.dg-ico07:before,
.dg-ico14:before,
.dg-ico07 .hexagon:before,
.dg-ico14 .hexagon:before{
    top: 20px;
}
.dg-ico07:after, 
.dg-ico07:before,
.dg-ico14:after, 
.dg-ico14:before {
    z-index: 0;
    position: absolute;
    background: linear-gradient(45deg,#18e2ba 0,#47d1ff 100%);
    background: #4ddbc0;
    background: -moz-linear-gradient(45deg, #4ddbc0 0%, #44d0fc 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#4ddbc0), color-stop(100%,#44d0fc));
    background: -webkit-linear-gradient(45deg, #4ddbc0 0%,#44d0fc 100%);
    background: -o-linear-gradient(45deg, #4ddbc0 0%,#44d0fc 100%);
    background: -ms-linear-gradient(45deg, #4ddbc0 0%,#44d0fc 100%);
    background: linear-gradient(45deg, #4ddbc0 0%,#44d0fc 100%);
}
.dg-ico07 > *,
.dg-ico07 .fa,
.dg-ico14 > *,
.dg-ico14 .fa{
	z-index:4;
	position:relative;
    font-size: 36px;
	vertical-align:middle;
}
 
.dg-ico07 .hexagon,
.dg-ico14 .hexagon {
	position:absolute;
    display: block;
    text-align: center;
    z-index: 3;
    margin: 0 auto;
    position: absolute;
    top: 0px;
    left:0;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	transform:scale(0.9);
	-webkit-transform:scale(0.9);
	transform-origin:center center;
	-webkit-transform-origin:center center;
}
.dg-ico07 .hexagon:after, 
.dg-ico07 .hexagon:before,
.dg-ico14 .hexagon:after, 
.dg-ico14 .hexagon:before {
    z-index: 0;
    content: "";
    position: absolute;
}
[class*="dg-iconbox"]:hover .dg-ico07 .hexagon, 
[class*="dg-iconbox"]:hover .dg-ico07 .hexagon:before, 
[class*="dg-iconbox"]:hover .dg-ico07 .hexagon:after {
    background: #2c3e50;
}
.dg-ico14{
	margin:30px auto;
}
.dg-ico14,
.dg-ico14 .hexagon {
    width: 110px;
    height: 67px;
    line-height: 67px;
    border-radius: 10px;
}
.dg-ico14:after, 
.dg-ico14:before,
.dg-ico14 .hexagon:after, 
.dg-ico14 .hexagon:before {
    width: 56px;
    height: 56px;
    top: -19px;
    left: 27px;
	border-radius: 6px 18px;
}
.dg-ico14:before{
    top: 28px;
}
.dg-ico14:before,
.dg-ico14 .hexagon:before{
    top: 28px;
}

[class*="dg-iconbox"]:hover .dg-ico14 .hexagon, 
[class*="dg-iconbox"]:hover .dg-ico14 .hexagon:before, 
[class*="dg-iconbox"]:hover .dg-ico14 .hexagon:after {
    background: #333333;
}





.dg-ico08,
.fa.dg-ico08{
    background-image: url("/Portals/_default/Skins/ForVend/images/dg-icon-10-bg.png")!important;
    background-position: left top;
    background-size: cover;
	width:80px;
	height:80px;
	line-height:80px;
	font-size:34px;
	color:#FFF;
	display:inline-block;
	background-color:#393939;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
[class*="dg-iconbox"]:hover .dg-ico08,
[class*="dg-iconbox"]:hover .fa.dg-ico08{
	background-color:#20a3f0;
}

.dg-ico09 {
	display:inline-block;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	overflow:hidden;
	width:80px;
	height:80px;
}

.dg-ico10,
.dg-ico10.fa{
	width:80px;
	height:80px;
	line-height:80px;
	text-align:center;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border:1px solid #b4b4b4;
	color:#888888;
	font-size:24px;
	display:inline-block;
	position:relative;
}
.dg-ico10:after{
	content:"";
	position:absolute;
	top:3px;
	left:3px;
	right:3px;
	bottom:3px;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}

[class*="dg-iconbox"]:hover .dg-ico10,
[class*="dg-iconbox"]:hover .dg-ico10.fa{
	border:1px solid #20a3f0;
	color:#fff;
}
[class*="dg-iconbox"]:hover .dg-ico10:after{
	background-color:#20a3f0;
}
[class*="dg-iconbox"] .dg-ico10:before{
	position:relative;
	z-index:4;
}
.dg-ico11,
.dg-ico11.fa {
	width:80px;
	height:80px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border:1px solid #afafaf;
	text-align:center;
	position:relative;
	color:#FFF;
}
.dg-ico11:after{
	content:"";
	position:absolute;
	top:5px;
	left:5px;
	right:5px;
	bottom:5px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#afafaf;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
[class*="dg-iconbox"]:hover .dg-ico11{
	border-color:#20a3f0;
}
[class*="dg-iconbox"]:hover .dg-ico11:after{
	background-color:#20a3f0;
}
[class*="dg-iconbox"] .dg-ico11:before{
	position:relative;
	z-index:4;
}

.dg-ico12,
.dg-ico12.fa {
	width:80px;
	height:80px;
	line-height:76px;
	border:2px solid #afafaf;
	text-align:center;
	position:relative;
	color:#888888;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
[class*="dg-iconbox"]:hover .dg-ico12{
	border-color:#20a3f0;
	color:#20a3f0;
}

.dg-ico13,
.dg-ico13.fa {
	width:64px;
	height:64px;
	line-height:62px;
	color:#888888;
	font-size:26px;
	border:1px solid #888888;
	text-align:center;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#FFF;
}
[class*="dg-iconbox"]:hover .dg-ico13{
	border-color:#20a3f0;
	color:#20a3f0;
}




.dg-ico01.size-xs,
.dg-ico02.size-xs,
.dg-ico03.size-xs,
.dg-ico05.size-xs,
.dg-ico06.size-xs,
.dg-ico08.size-xs,
.dg-ico09.size-xs,
.dg-ico10.size-xs,
.dg-ico11.size-xs,
.dg-ico12.size-xs{
	width:42px;
	height:42px;
	line-height:42px;
	font-size:18px;
}
.dg-ico01.size-sm,
.dg-ico02.size-sm,
.dg-ico03.size-sm,
.dg-ico06.size-sm,
.dg-ico08.size-sm,
.dg-ico09.size-sm,
.dg-ico10.size-sm,
.dg-ico11.size-sm,
.dg-ico12.size-sm{
	width:64px;
	height:64px;
	line-height:64px;
	font-size:26px;
}
.dg-ico01.size-lg,
.dg-ico02.size-lg,
.dg-ico03.size-lg,
.dg-ico06.size-lg,
.dg-ico08.size-lg,
.dg-ico09.size-lg,
.dg-ico10.size-lg,
.dg-ico11.size-lg,
.dg-ico12.size-lg{
	width:80px;
	height:80px;
	line-height:80px;
	font-size:28px;
}
.dg-ico01.size-xl,
.dg-ico02.size-xl,
.dg-ico03.size-xl,
.dg-ico06.size-xl,
.dg-ico08.size-xl,
.dg-ico09.size-xl,
.dg-ico10.size-xl,
.dg-ico11.size-xl,
.dg-ico12.size-xl{
	width:110px;
	height:110px;
	line-height:110px;
	font-size:36px;
}

.dg-ico05.size-xs{
	font-size:18px;
}
.dg-ico05.size-sm{
	font-size:36px;
}
.dg-ico05.size-lg{
	font-size:58px;
}
.dg-ico05.size-xl{
	font-size:76px;
}



.iconbox-bg01{
	background:#fafafa;
}
.iconbox-bg02{
	background:#2c3a44;
}
.iconbox-bg03{
	background:url("/Portals/_default/Skins/ForVend/images/iconbox-bg03.jpg") no-repeat center center;
	background-size:cover;
}
.iconbox-bg04{
	background:#000723;
}


@media only screen and (max-width: 991px) {
.dg-iconbox08,
.dg-iconbox12{
  padding:15px;
}
.dg-iconbox08 > [class*="dg-ico"],
.dg-iconbox11 [class*="dg-ico"] {  
    margin-right:10px;
}
.dg-iconbox11{
   margin-top:30px;
}
.dg-iconbox11 .dg-ico06.size-xl{
    font-size: 28px;
    height:64px;
    line-height: 64px;
    width: 64px;
}
.dg-iconbox11 [class*="dg-ico"] + .box-right {
    padding-top: 0;
}
.dg-iconbox11 .dg-ico14, 
.dg-iconbox11 .dg-ico14 .hexagon{
    width: 64px;
    height: 30px;
    line-height: 25px;
    border-radius: 5px;
    font-size: 22px;
}
.dg-iconbox11 .dg-ico14 .fa{
  font-size:28px;
}
.dg-iconbox11 .dg-ico14:after, 
.dg-iconbox11 .dg-ico14:before, 
.dg-iconbox11 .dg-ico14 .hexagon:after, 
.dg-iconbox11 .dg-ico14 .hexagon:before {
    width: 36px;
    height: 36px;
    top: -15px;
    left: 14px;
    border-radius: 6px 16px;
}
.dg-iconbox11 .dg-ico14:before{
  top:8px;
}
[class*="dg-iconbox"]:hover .dg-ico14 .hexagon, 
[class*="dg-iconbox"]:hover .dg-ico14 .hexagon:before, 
[class*="dg-iconbox"]:hover .dg-ico14 .hexagon:after{
  background-color:inherit;
}
}

@media only screen and (max-width: 767px) {
.dg-iconbox07{
  padding:15px;
}
.dg-iconbox12 > [class*="dg-ico"] {
    float: left;
    margin-right: 10px;
}
.dg-ico01.size-lg, .dg-ico02.size-lg, .dg-ico03.size-lg, .dg-ico06.size-lg, .dg-ico08.size-lg, .dg-ico09.size-lg, .dg-ico10.size-lg, .dg-ico11.size-lg, .dg-ico12.size-lg {
    font-size: 28px;
    height: 42px;
    line-height: 42px;
    width: 42px;
}
.dg-ico01.size-sm, .dg-ico02.size-sm, .dg-ico03.size-sm, .dg-ico06.size-sm, .dg-ico08.size-sm, .dg-ico09.size-sm, .dg-ico10.size-sm, .dg-ico11.size-sm, .dg-ico12.size-sm {
    font-size: 25px;
    height: 42px;
    line-height: 42px;
    width: 42px;
}
.dg-iconbox03 > [class*="dg-ico"],
.dg-iconbox07 h3 [class*="dg-ico"]{
  margin-right:10px;
}
.dg-iconbox03 > [class*="dg-ico"] {
    margin-left: 0;
}
.dg-iconbox04 [class*="dg-ico"] + .box-main {
    padding-left: 10px;
}
}
.dg-price ul{
	margin:0;
	padding:0;
	list-style:none;
}
.dg-price li{
	margin:0;
	padding:13px 0;
	list-style:none;
}
.dg-price .price-border {
	border:1px solid #d8d8d8;
	margin-bottom:30px;
	position:relative;
}
.dg-price .price-title h2{
	margin:0;
	letter-spacing:1px;
	line-height:1.2;	
}
.dg-price .price-title {
	padding:15px 10px;
}
.dg-price .price-box .sup{
	font-weight:bold;
	font-size:30px;
	display:inline-block;
}
.dg-price .price-box .price{
	font-weight:bold;
	font-size:30px;
	display:inline-block;
}
.dg-price .price-box .unit{
	font-size:13px;
	display:inline-block		;
	margin:-10px 0 0 0;
}
.dg-price .price-marker{
    right: -1px;
    top: 6px;
    padding: 0px 8px;
    height: 22px;
    line-height: 23px;
    font-size: 12px;
	position:absolute;
	background-color:#F00;
	color:#FFF;
}
.dg-price .price-marker:before{
	content:"";
	position:absolute;
	top:0;
	left:-11px;
	border:11px solid #F00;
	border-left-color:transparent;
	border-right-width:0;
	background-color:transparent;
}

@media only screen and (max-width: 767px) {
	.dg-price .price-border {
		margin:0 0 15px;
	}
	.dg-price .price-border.best-value {
		margin:0 0 15px;
	}
}


/**/
.dg-price-bg01{
	background:url("/Portals/_default/Skins/ForVend/images/dg-price-bg01.jpg") no-repeat center center;
	background-size:cover;
}
.dg-price-bg02{
	background:url("/Portals/_default/Skins/ForVend/images/dg-price-bg02.jpg") no-repeat center center;
	background-size:cover;
}

/**/
.dg-price01{
	text-align:center;
}
.dg-price01 .price-border{
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	position:relative;
}
.dg-price01 .price-border:before,
.dg-price01 .price-border:after{
	content:"";
	position:absolute;
	bottom:4px;
	left:-1px;
	right:-1px;
	border-bottom:1px solid #d8d8d8;
	height:10px;
	border-radius:0 0 6px 6px;
	-moz-border-radius:0 0 6px 6px;
	-webkit-border-radius:0 0 6px 6px;
}
.dg-price01 .price-border:before{
	bottom:9px;
}
.dg-price01 .price-title{
	background-color:#20a3f0;
	margin:0px 12%;
	padding:35px 10px;
	font-size:30px;
	color:#ffffff;
	font-weight:bold;
	border-radius:0 0 6px 6px;
	-moz-border-radius:0 0 6px 6px;
	-webkit-border-radius:0 0 6px 6px;
	margin-top:-5px;
}
.dg-price01 .price-title h2{
    color: #FFF;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: 1px;
}
.dg-price01 .price-box {
	border-bottom:1px solid #e3e3e3;
	padding:12px 0;
}
.dg-price01 .price-box .sup,
.dg-price01 .price-box .price{
	font-size:20px;
	margin:0px 1px;
}
.dg-price01 .price-box .unit{
	margin:0px 1px;
	display:inline-block;
}
.dg-price01 .price-holder {
	overflow:hidden;
}
.dg-price01 .price-holder ul{
	display:inline-block;
	max-width:75%;
}
.dg-price01 .price-holder li{
	list-style-type:decimal;
	list-style-position:outside;
	text-align:left;
	position:relative;
	padding-left:15px;
}
.dg-price01 .price-holder li:after{
	content:"";
	position:absolute;
	bottom:0px;
	left:-4000px;
	width:10000px;
	border-bottom:1px solid #e3e3e3;
}
.price01-btn-box{
	margin:30px 10px 40px;
}
.dg-price01 .color-1 .price-title{
	background-color:#20a3f0;
}
.dg-price01 .color-1 .price-box .sup, 
.dg-price01 .color-1 .price-box .price{
	color:#20a3f0;
}
.dg-price01 .color-2 .price-title{
	background-color:#ef8494;
}
.dg-price01 .color-2 .price-box .sup, 
.dg-price01 .color-2 .price-box .price{
	color:#ef8494;
}
.dg-price01 .color-3 .price-title{
	background-color:#f0ad4e;
}
.dg-price01 .color-3 .price-box .sup, 
.dg-price01 .color-3 .price-box .price{
	color:#f0ad4e;
}
.dg-price01 .color-4 .price-title{
	background-color:#1cc0be;
}
.dg-price01 .color-4 .price-box .sup, 
.dg-price01 .color-4 .price-box .price{
	color:#1cc0be;
}
.dg-price02 .price-border{
	border-color:#56b0ee;
	text-align:center;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.dg-price02 .price-title{
	background: -webkit-linear-gradient(90deg, #0676f4, #00d1fe);
	background: -o-linear-gradient(90deg, #0676f4, #00d1fe); 
	background: -moz-linear-gradient(90deg, #0676f4, #00d1fe); 
	background: linear-gradient(90deg,#0676f4, #00d1fe);
	background-color:#0676f4;
	border-radius:10px 10px 0 0;
	-moz-border-radius:10px 10px 0 0;
	-webkit-border-radius:10px 10px 0 0;
	margin:-1px -1px 0;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.dg-price02 .price-title h2{
	color:#FFF;
	font-size:20px;
	font-weight:normal;
}
.dg-price02 .price-box{
	width:139px;
	height:139px;
	margin:38px auto;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border:1px solid transparent;
	background: -webkit-linear-gradient(90deg, #0676f4, #00d1fe);
	background: -o-linear-gradient(90deg, #0676f4, #00d1fe); 
	background: -moz-linear-gradient(90deg, #0676f4, #00d1fe); 
	background: linear-gradient(90deg,#0676f4, #00d1fe);
	background-size:101%;
	background-color:#0676f4;
	color:#FFF;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.dg-price02 .price-box .sup{
	font-size:13px;
	line-height:1.2;
	margin-top:38px;
	font-weight:normal;
	vertical-align:super;
}
.dg-price02 .price-box .price{
	font-size:45px;
	line-height:1.2;
	margin-top:23px;
	font-weight:normal;
	vertical-align:top;
	margin-bottom:10px;
}
.dg-price02 .price-box .unit{
	display:block;
	text-align:center;
	font-size:15px;
}
.dg-price02 .price-holder li{
	padding:17px 10px;
	transition: background ease-in 200ms;
	-webkit-transition: background ease-in 200ms; /* Safari and Chrome */
}
.dg-price02 .price-holder li:nth-child(2n-1){
	background-color:#ebebeb;
}
.price02-btn-box{
	margin:23px 0px 21px;
}
.price02-btn-box .dg-btn-1{
   border:1px solid #fff;
}
.dg-price02 .price-border:hover,
.dg-price02 .price-border.best-value{
	background-color:#20a3f0;
	color:#FFF;
}
.dg-price02 .price-border:hover .price-title,
.dg-price02 .price-border.best-value .price-title{
	background:rgba(0,0,0,0.35);
}
.dg-price02 .price-border:hover .price-holder li:nth-child(2n-1),
.dg-price02 .price-border.best-value .price-holder li:nth-child(2n-1){
	background-color:rgba(0,0,0,0.2);
}
.dg-price02 .price-border:hover .price-box,
.dg-price02 .price-border.best-value .price-box{
	background:none;
	border:1px solid #FFF;
}
.dg-price02 .price-border:hover .dg-btn-1,
.dg-price02 .price-border.best-value .dg-btn-1{
	background:none;
	border:1px solid #FFF;
}
.dg-price03.row{
	margin:0 0 0 1px;
}
.dg-price03 [class*="col-"]{
	margin:0 0 0 -1px;
	padding:0;
}
.dg-price03 .price-border{
	border-color:#acacac;
	padding:35px;
	color:#FFF;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-price03 .price-title{
	padding:0;
}
.dg-price03 .price-title h2{
	color:#20a3f0;
	font-size:15px;
	font-weight:bold;
}
.dg-price03 .price-title h6 {
    font-size: 20px;
    color: #20a3f0;
    margin: -5px 0 0;
    font-weight: bold;
    line-height: 1.2;
}
.dg-price03 .price-box .sup,
.dg-price03 .price-box .price{
	font-size:45px;
	font-weight:normal;
	margin:0px 1px;
}
.dg-price03 .price-info {
	padding:0px;
}
.dg-price03 .price-info:after{
	content:"";
	width:50%;
	border-bottom:1px solid rgba(255,255,255,0.8);
	display:block;
	margin:30px 0 18px;
}
.dg-price03 .price-holder .fa{
	margin-right:10px;
	color:#20a3f0;
}
.dg-price03 .dg-btn-1{
	margin:0px 0px 2px;
	color:#20a3f0!important;
}
.dg-price03 .best-value {
	margin-top:-24px;
}
.dg-price03 .best-value .price-title h6{
  margin:-10px 0 10px 0;
}
.dg-price03 .best-value .dg-btn-1{
	margin-top:24px;
}
.dg-price03 .best-value,
.dg-price03 .price-border:hover {
	background-color:#2a2a2a;
	border:1px solid #888888;
}
.dg-price04 .price-border{
	border-color:#cccccc;
	text-align:center;
			transition: 		border ease-in 200ms;
	-moz-transition: 	border ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	border ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		border ease-in 200ms; /* Opera */
	-ms-transition: 	border ease-in 200ms; /* IE9? */
}
.dg-price04 .price-title{
	margin:0;
	padding:18px 10px;
}
.dg-price04 .price-title h2{
	font-size:15px;
	color:#FFF;
	line-height:1.2;
}
.dg-price04 .price-box{
	padding:20px 10px 26px;
	color:#FFF;
	margin:0 -1px;
}
.dg-price04 .price-box .sup,
.dg-price04 .price-box .price{
	font-size:45px;
	line-height:1.4;
	font-weight:normal;
}
.dg-price04 .price-box .sup{
	font-size:36px;
}
.dg-price04 .price-box .unit{
	display:block;
	text-align:center;
	font-size:13px;
	color:#fff;
	margin:0;
}
.dg-price04 .price-holder li{
	border-bottom:1px dashed #cbcbcb;
}
.dg-price04 .price-holder li .fa{
	margin:0 2px;
}
.dg-price04 .col-md-3{
   width:20%;
}
.price04-btn-box{
	margin:22px 0px 21px;
}
.dg-price04 .price-marker {
	transform:rotate(-26deg);
	-webkit-transform:rotate(-26deg);
	left:1px;
	right:auto;
	top: 9px;
	width:50px;
	height:22px;
	line-height:22px;
	text-align:right;
	padding:0 3px 0 0;
	background-color:#f4c159;
}
.dg-price04 .price-marker:before{
    left: auto;
    right: 100%;
    border-left: 12px solid transparent;
    border-right: 0px solid transparent;
    border-top: 0px solid transparent;
    border-bottom: 23px solid #f4c159;
    margin: -1px -1px 0 0px;
}
.dg-price04 .price-marker:after{
    content: "";
    position: absolute;
    top: 0;
    left:100%;    
	border-left: 46px solid #f4c159;
    border-right: 0px solid transparent;
    border-top: 23px solid transparent;
    border-bottom: 0px solid transparent;
	margin:-1px 0 0 -1px;
}
.dg-price04 .color-1 .price-title{
	background-color: #e8606d;
}
.dg-price04 .color-1 .price-box{
	background-color: #ef8494;
}
.dg-price04 .color-1 .fa{
	color: #ef8494;
}
.dg-price04 .color-5 .btn-accent{
    border-color: #1bbc9b;
    background-color: #1bbc9b;
}
.dg-price04 .color-5 .price-title{
	background-color: #13a17e;
}
.dg-price04 .color-5 .price-box{
	background-color: #1bbc9b;
}
.dg-price04 .color-5 .fa{
	color: #1cc0be;
}
.dg-price04 .color-2 .price-title{
	background-color: #147fd1;
}
.dg-price04 .color-2 .price-box{
	background-color: #20a3f0;
}
.dg-price04 .color-2 .fa{
	color: #20a3f0;
}
.dg-price04 .color-3 .btn-accent{
    border-color: #8d6cc3;
    background-color: #8d6cc3;
}
.dg-price04 .color-3 .btn-accent:hover{
   background-color:#222533;
}
.dg-price04 .color-3 .price-title{
	background-color: #7a46ba;
}
.dg-price04 .color-3 .price-box{
	background-color: #8d6cc3;
}
.dg-price04 .color-3 .fa{
	color: #8d6cc3;
}
.dg-price04 .color-4 .btn-seagreen{
    border-color: #eaa037;
    background-color: #eaa037;
}
.dg-price04 .color-4 .price-title{
	background-color: #e28623;
}
.dg-price04 .color-4 .price-box{
	background-color: #eaa037;
}
.dg-price04 .color-4 .fa{
	color: #eaa037;
}
.dg-price04 .best-value{
	margin-top:-20px;
}
.dg-price04 .best-value .price-title{
	padding:27px 10px
}
.dg-price04 .best-value .price04-btn-box{
	margin-bottom:41px;
}
.dg-price05 .col-md-3{
   width:20%;
}
.dg-price05 .price-border{
	text-align:center;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.dg-price05 .price-title{
	margin:15px 10px 0px;
}
.dg-price05 .price-title h2{
	font-size:20px;
	font-weight:normal;
	margin-bottom:15px;
	color:inherit;
}
.dg-price05 .price-title .fa{
	width:56px;
	height:56px;
	line-height:56px;
	font-size:32px;
	display:inline-block;
}
.dg-price05 .price-box{
	color:#666666;
	padding:14px 10px;		
	background-color:#e9e9e9;
	margin-top:15px;
}
.dg-price05 .price-box .unit{
	display:inline-block;	
}
.dg-price05 .price-box .sup,
.dg-price05 .price-box .price{
	font-size:13px;
	font-weight:normal;
	color:#020202;
}
.dg-price05 .price05-btn-box{
	margin:25px 5px;
}
.dg-price05 .color-1 .price-title{
	color: #666666;
}
.dg-price05 .color-1 .btn{
	background-color:#666666;
}
.dg-price05 .color-1.best-value,
.dg-price05 .color-1:hover{
	border-color:#666666;
}
.dg-price05 .color-2 .price-title{
	color: #20a3f0;
}
.dg-price05 .color-2 .btn{
	background-color:#20a3f0;
}
.dg-price05 .color-2.best-value,
.dg-price05 .color-2:hover{
	border-color:#20a3f0;
}
.dg-price05 .color-3 .price-title{
	color: #f2c25f;
}
.dg-price05 .color-3 .btn{
	background-color:#f2c25f;
}
.dg-price05 .color-3.best-value,
.dg-price05 .color-3:hover{
	border-color:#f2c25f;
}
.dg-price05 .color-4 .price-title{
	color: #1bbc9b;
}
.dg-price05 .color-4.best-value,
.dg-price05 .color-4:hover{
	border-color:#1bbc9b;
}
.dg-price05 .color-5 .price-title{
	color: #dc717c;
}
.dg-price05 .color-5.best-value,
.dg-price05 .color-5:hover{
	border-color:#dc717c;
}
.dg-price06 .col-md-3{
   width:20%;
}
.dg-price06 .price-border{
	background-color:#FFF;
	text-align:center;
			transition: 		border ease-in 200ms;
	-moz-transition: 	border ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	border ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		border ease-in 200ms; /* Opera */
	-ms-transition: 	border ease-in 200ms; /* IE9? */
}
.dg-price06 .price-title{
	text-align:center;
	margin:-1px -1px 0;
	padding:22px 10px 55px;
	background-color:#ef8494;
}
.dg-price06 .price-title h2{
    color: #FFF;
    font-size: 20px;
    line-height: 1.2;
}
.dg-price06 .price-box {
	width:137px;
	height:137px;
	background-color:#ef8494;
	border:5px solid #FFF;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	margin:-46px auto 10px;
	text-align:center;
	color:#FFF;
	font-weight:normal;
	padding-top:38px;
	line-height:1;
}
.dg-price06 .price-box .sup{
	font-size:13px;
	vertical-align:text-top;
}
.dg-price06 .price-box .price{
	font-size:50px;
	font-weight:normal;
	vertical-align:middle;
}
.dg-price06 .price-box .unit{
	font-size:13px;
	vertical-align:bottom;
}
.dg-price06 .price-holder ul{
	border-top:1px solid #dedede;
}
.dg-price06 .price-holder li{
	border-bottom:1px solid #dedede;
}
.dg-price06 .dg-btn-1{
	margin:13px 0px 23px;
}
.dg-price06 .color-1 .price-title,
.dg-price06 .color-1 .price-box,
.dg-price06 .color-1 .btn{
	background-color: #ef8494;
}
.dg-price06 .color-2 .price-title,
.dg-price06 .color-2 .price-box,
.dg-price06 .color-2 .btn{
	background-color: #20a3f0;
}
.dg-price06 .color-3 .price-title,
.dg-price06 .color-3 .price-box,
.dg-price06 .color-3 .dg-btn-1{
	background-color: #8d6cc3;
}
.dg-price06 .color-3 .dg-btn-1:hover{
   border-color: #222533;
   background-color:#222533;
}
.dg-price06 .color-4 .price-title,
.dg-price06 .color-4 .price-box,
.dg-price06 .color-4 .btn{
	background-color: #1bbc9b;
}
.dg-price06 .color-5 .price-title,
.dg-price06 .color-5 .price-box,
.dg-price06 .color-5 .btn{
	background-color: #f0ad4e;
}
.dg-price06 .best-value{
	margin-top:-20px;
}
.dg-price06 .best-value .price-title{
	padding-bottom:75px;
}
.dg-price06 .best-value .price-title h2{
   font-weight:bold;
}
.dg-price06 .best-value .dg-btn-1{
	margin:27px 0;
}
/*dg-price07*/
.dg-price07{
	text-align:center;	
}
.dg-price07 .price-border{
    border:1px solid #20a3f0;
	padding:36px 0 0 0;
}
.dg-price07 .price-box{
	width:152px;	
	height:152px;
	border-radius:50%;
	border:2px solid #20a3f0;
	color:#fff;
	text-align:center;
	margin:0 auto;	
}
.dg-price07 .price-box .price-pad{
	width:140px;
	height:140px;
	border-radius:50%;
	background-color:#20a3f0;
	margin:4px auto;
	padding:25px 0 0 0;
}
.dg-price07 .price-box .unit{
   margin:0;
}
.dg-price07 .dg-price .price-box .sup{
	font-size:30px;	
}
.dg-price07 .price-box .line{
	display:block;
	border-bottom:1px solid #fff;
	width:25px;
	margin:0 auto 4px auto;
}
.dg-price07 .price-title{
	font-size:25px;
	font-weight:bold;
	colro:#20a3f0;
	text-transform:uppercase;
}
.dg-price07 .price-title h2{
   color:#20a3f0;
   line-height:1.2;
   font-size:25px;
   letter-spacing:1px;
   margin:10px 0;
}
.dg-price07 .price-holder li:nth-child(odd){
	background-color:rgba(244,244,244	,0.8);
}
.dg-price07 .price-holder li{
	line-height:1.2;
	padding:21px 0;
}
.dg-price07 .dg-btn-3{
    display: inline-block;
	margin:20px 0;
	min-width:97px;
}
/*dg-price07 end*/
/*dg-price08*/
.dg-price08 {
	text-align:center;
}
.dg-price08 .left-title {
	float:left;
	width:20%;
	color:#FFF;
}
.dg-price08 .left-title .price-border{
	background-color:#2c2c2c;
	border-color:transparent;
}
.dg-price08 .row{
	float:right;
	width:80%;
	margin:0 0 0;
}
.dg-price08 .row .price-border{
	background-color:#FFF;
}
.dg-price08 [class*="col-"]{
	margin:0 0 0 -1px;
	padding:0;
}
.dg-price08 .price-title{
	padding:20px 10px;
	background-color:#4d4d4d;
	margin:-1px -1px 0;
}
.dg-price08 .price-title h2{
	font-size:15px;
	color:#FFF;
}
.dg-price08 [class*="col-"]:nth-child(2n-1) .price-title{
	background-color:#333333;
}
.dg-price08 .price-box {
	background-color:#20a3f0;
	color:#FFF;
	margin:0 -1px;
	padding:50px 10px;
}
.dg-price08 [class*="col-"]:nth-child(2n-1) .price-box{
	background-color:#207df0;
}
.dg-price08 .left-title .price-box{
	background-color:#2c2c2c;
}
.dg-price08 .price-box .sup,
.dg-price08 .price-box .price{
	font-size:45px;
	font-weight:normal;
	margin:0px 1px;
	line-height:1.4;
}
.dg-price08 .price-box .unit{
	display:block;
	margin:0;
}
.dg-price08 .price-holder li:nth-child(2n-1){
	background-color:#e8e8e8;
}
.dg-price08 .left-title .price-holder li:nth-child(2n-1){
	background-color:#4d4d4d;
}
.dg-price08 .price-holder .fa-check{
	color:#25a445;
}
.dg-price08 .price-holder .fa-close{
	color:#cd0d0b;
}
.dg-price08 .dg-btn-1{
	margin:38px 0 28px 0;
}
.dg-price08 .price-btninfo {
	margin:35px 0;
	height:36px;
	line-height:36px;
}
.dg-price08 .price-btninfo .fa{
	font-size:24px;
	vertical-align:middle;
	margin:0 0 2px 5px;
}
.dg-price08 .mobile-text{
	display:none;
	margin-right:10px;
}
/*dg-price08 end*/
/*dg-price09*/
.dg-price09{
  text-align:center;
}
.dg-price09 .price-title{
  background-color:#2e2d2d;
  color:#fff;
  padding:35px 10px;
}
.dg-price09 .price-title span{
  position:relative;
  font-size:20px;
  padding:0 0 12px 0;
}
.dg-price09 .price-title span:after{
  position:absolute;
  content:"";
  border-bottom:1px solid #fff;
  width:22px;
  bottom:0;
  left:50%;
  margin:0 0 0 -12px;
}
.dg-price09 .price-title h2{
  font-size:15px;
  color:#fff;
  line-height:1.2;
  margin:0;
  padding:10px 0 0 0;
}
.dg-price09 .price-box{
  color:#20a3f0;
  padding:16px 0;
}
.dg-price09 .price-box .price{
  font-size:48px;
}
.dg-price09 .price-box .unit{
  display:inline-block;
}
.dg-price09 .price-holder ul li{
  border-top:1px solid #dcdcdc;
  margin:0 42px;
  line-height:1.2;
  padding:17px 0;
}
.dg-price09 .price-holder,
.dg-price09 .price-box{
  background-color:#fff;
}
.dg-price09 .price-border{
  background-color:#ececec;
      transition: border ease-in 200ms;
    -moz-transition: border ease-in 200ms;
    -webkit-transition: border ease-in 200ms;
    -o-transition: border ease-in 200ms;
    -ms-transition: border ease-in 200ms;
}
.dg-price09 .dg-btn-2{
	margin:28px 0;
	min-width:140px;
	display:inline-block;
}
.dg-price09 .color-2 .price-title{
   background-color:#20a3f0;
}
.dg-price09 .color-3 .price-title{
   background-color:#ef8494;
}
.dg-price09 .color-3.price-border:hover{
   border:1px solid #ef8494
}
.dg-price09 .color-4 .price-title{
   background-color:#1bbc9b;
}
.dg-price09 .color-1.price-border:hover{
   border:1px solid #2e2d2d
}
.dg-price09 .color-2.price-border:hover{
   border:1px solid #20a3f0
}
.dg-price09 .color-4.price-border:hover{
   border:1px solid #1bbc9b
}
/*.dg-price10*/
.dg-price-bg03{
    background: url("/Portals/_default/Skins/ForVend/images/dg-price-bg03.jpg") no-repeat center center;
    background-size: cover;
}
.dg-price10{
    text-align:center;
	color:#fff;
}
.dg-price10 .price-title h2{
   font-weight:normal;
   font-size:14px;
   text-transform:uppercase;
   color:#fff;
   margin:7px 0;
}
.dg-price10 .price-holder ul li,
.dg-price10 .price-box,
.dg-price10 .price-title,
.dg-price10 .price-border{
   border-bottom:1px solid #fff;
   border-color:rgba(255,255,255,0.5);
}
.dg-price10 .price-box{
  color:#20a3f0;
  padding:20px 0;
}
.dg-price10 .price-box .sup,
.dg-price10 .price-box .price {
  font-size:45px;
  font-weight:bold; 
}
.dg-price10 .price-box .unit{
  display:block;
}
.dg-price10 .price-holder ul li{
  line-height:1.2;
  padding:17px 0;
}
.dg-price10 .dg-btn-1{
    margin: 37px 0;
	display:inline-block;
	min-width:130px;
}
/*dg-price11*/
.dg-price11.row{
	margin:0 0 0 1px;
}
.dg-price11 [class*="col-"]{
	margin:0 0 0 -1px;
	padding:0;
}
.dg-price11 .price-border{   
	border-color:#d8d8d8;
	text-align:center;
	border-radius:5px 5px 10px 10px;	
}
.dg-price11 .price-title{
	padding:12px 0;
	background-color:#20a3f0;
	text-transform:uppercase;	
	 border-radius:5px 5px 0 0;
	 	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */	
}
.dg-price11 .price-border:hover .price-title,
.dg-price11 .price-border:hover .btn{
    background-color:#333333;
}
.dg-price11 .best-value .price-title{
    position: relative;
    width: 110%;
    margin: -15px -5% 0 -5%;
    z-index: 999;
    background-color: #333333;
    padding: 26px 0;
    border-radius: 5px;
}
.dg-price11 .price-title h2{
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
    font-weight: bold;
}
.dg-price11 .price-title h6 {
	font-size:20px;
	color:#20a3f0;
	margin:-5px 0 12px;
}
.dg-price11 .price-box .sup,
.dg-price11 .price-box .price{
	font-size:30px;
	font-weight:normal;
	margin:0px 1px;
}
.dg-price11 .price-box .unit{
  display:block;
}
.dg-price11 .price-info {
	padding:0px;
}
.dg-price11 .price-info:after{
	content:"";
	width:50%;
	border-bottom:1px solid rgba(255,255,255,0.8);
	display:block;
	margin:20px 0 10px;
}
.dg-price11 .price-pad{
   width:134px;
   height:134px;
   background-color:#e3f0f9;
   border-radius:50%;
   border:5px solid #fff;
   -moz-box-shadow:0 0px 15px 3px #f5f5f5; 
	-webkit-box-shadow:0 0px 15px 3px #f5f5f5; 
	box-shadow:	0 0px 15px 3px #f5f5f5;
   margin:0 auto; 
   padding:25px 0 0 0;
}
.dg-price11 .price-box{
   padding:35px 0;
}
.dg-price11 .best-value .price-box{
   background-color:#f4fbff; 
   padding:22px 0 35px 0;
}
.dg-price11 .price-holder li {
    list-style-type: decimal;
    text-align: left;
    position: relative;
    padding-left: 15px;
	z-index:100;
}
.dg-price11 .price-holder li:nth-child(even),
.dg-price11 .price-bottom{
   background-color:#e7e7e7;
}
.dg-price11 .price-holder ul {
  position:relative;
    display: inline-block;
    max-width: 75%;
}
.dg-price11 .price-holder{
  overflow:hidden;
  position:relative;
    border-top:1px solid #d8d8d8;
  border-radius:6px 6px 0 0;
}
.dg-price11 .price-holder li:nth-child(even):after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -4000px;
    width: 10000px;  
    background: #efeeee;
    height: 100%;
	z-index:-1;
}
.dg-price11 .price-holder:before{
    content: "";
    position: absolute;
    top: 3px;
    left: -1px;
    right: -1px;
    border-top: 1px solid #d8d8d8;
    height: 10px;
    border-radius:10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
}
.dg-price11 .dg-btn-1{
    margin: 28px 0;
	min-width:170px;	
}
.dg-price11 .price-bottom{
   margin-bottom:5px;
}
.dg-price11 .best-value .price-bottom{
   margin-bottom:15px;
}
/*dg-price12*/
.dg-price12 .price-title h2{
   text-align:center;
   font-size:13px;
   color:#424242;
   position:relative;
   margin:0;
   line-height:1.2;
       font-weight: bold;
    letter-spacing: normal;
}
.dg-price12 .price-title{
   position:relative;
}
.dg-price12 .price-title:before {
    border: 10px solid transparent;
    border-top: 10px solid #fff;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 0;
	margin:0 0 0 -10px;
}
.dg-price12 .color-1 .price-box{
  background-color:#f9cf79;
}
.dg-price12 .color-2 .price-box{
  background-color:#ef8494;
}
.dg-price12 .color-4 .price-box{
  background-color:#1bbc9b;
}
.dg-price12 .price-border{
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
	text-align:center;
}
.dg-price12 .price-border.color-1:hover{
  border-color:#f9cf79;
}
.dg-price12 .price-border.color-2:hover{
  border-color:#ef8494;
}
.dg-price12 .price-border.color-3:hover{
  border-color:#20a3f0;
}
.dg-price12 .price-border.color-4:hover{
  border-color:#1bbc9b;
}
.dg-price12 .price-box{
  color:#fff;
  text-align:center;
  padding:10px 0;
  background-color:#20a3f0    
}
.dg-price12 .price-box .unit{
  display:inline-block;
}
.dg-price12 .price-box .price{
  font-size:48px;
}
.dg-price12 .price-box .sup{
    font-size: 20px;
    font-weight: normal;
    vertical-align: top;
    line-height: 3.6;
}
.dg-price12 .dg-btn-1{
	display:inline-block;
	margin:20px 5px;
}
.dg-price12 ul{
    padding:27px 0 0 50px;
	text-align:left;
}
.dg-price12 ul li em{
   display:inline-blcck;
   padding:0 20px 0 0;
   color:#666;
}
/**/
.dg-price-bg04 {
    background: url("/Portals/_default/Skins/ForVend/images/dg-price-bg04.jpg") no-repeat center center;
    background-size: cover;
}
.dg-price13{
  color:#fff;
  text-align:center;
}
.dg-price13 .price-box{
  width:175px;
  height:175px;
  border:25px solid #fff;
  border-radius:50%;
  margin:0 auto 20px auto;
  line-height:125px;
  padding:0 0 20px 0;
}
.dg-price13 .price-box .price{
  font-size:45px;
}
.dg-price13 .price-box .sup{
    font-size: 13px;
    font-weight: normal;
    vertical-align: top;   
    display: inline-block;
    padding: 0 2px 0 0;
	margin:-7px 0 0 0;
}
.dg-price13 .price-border{
   border:none;
   background-color:#20a3f0;
   border-radius:8px;
       transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.dg-price13 .price-border:hover,
.dg-price13 .price-border.color-1:hover,
.dg-price13 .price-border.color-2:hover,
.dg-price13 .price-border.color-3:hover{
  background-color:#20a3f0;
}
.dg-price13 .price-border.color-1{  
   background:#1bbc9b
}
.dg-price13 .price-border.color-2{  
   background:#ef8494
}
.dg-price13 .price-border.color-3{
   border:none;
   background:#373737
}
.dg-price13 .price-title h2{
  color:#fff;
  font-size:15px;
  text-transform:uppercase;
}
.dg-price13 .price-title {
    padding: 20px 10px;
}
.dg-price13 .price-holder li{
  border-bottom:1px solid #fff;
  padding:0;
  line-height:26px;
}
.dg-price13 .dg-btn-2{
    margin: 34px 0;
	min-width:125px;
}
/*dg-price14*/
.dg-price14{
  text-align:center;
}
.dg-price14 .price-title h2{
    font-size: 25px;
    color: #fff;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}
.dg-price14 .price-border{
  border-radius:5px;
  position:relative;
  background:#fff;
}
.dg-price14 .price-border:before{
  content:"";
  border:1px solid #ddd;
  top:4px;
  left:8px;
  height:100%;
  width:100%;
  position:absolute;
  border-radius:5px;
  z-index:-1;

}
.dg-price14 .price-border .price-title{
  margin:34px 0 10px 0;
  background-color:#20a3f0;
}
.dg-price14 .price-border.color-1 .price-title,
.dg-price14 .price-border.color-1 .btn{
  background-color:#0ed1c1;
}
.dg-price14 .price-border.color-2 .price-title,
.dg-price14 .price-border.color-2 .btn{
  background-color:#5bc0de;
}
.dg-price14 .price-border.color-4 .price-title,
.dg-price14 .price-border.color-4 .btn{
  background-color:#127dcf;
}
.dg-price14 .price-border.color-1 .price-box .sup,
.dg-price14 .price-border.color-1 .price-box .price{
  color:#0ed1c1;
}
.dg-price14 .price-border.color-2 .price-box .sup,
.dg-price14 .price-border.color-2 .price-box .price{
  color:#5bc0de;
}
.dg-price14 .price-border.color-4 .price-box .sup,
.dg-price14 .price-border.color-4 .price-box .price{
  color:#127dcf;
}
.dg-price14 .price-box .sup{
  font-size:40px;
  font-weight:normal;
  color:#20a3f0;
  vertical-align: top;
}
.dg-price14 .price-box .price{
  font-size:93px;
  font-weight:normal;
  color:#20a3f0;
  line-height:1;
}
.dg-price14 .price-box .unit{
  font-size:15px;
  text-transform:uppercase;
  margin:0;
  display:block;
  color:##343434;
}
.dg-price14 .price-holder p{
  margin:0;
  padding:30px 10px 8px 10px;
}
.dg-price14 .price-border .dg-btn-1{
    margin: 20px 0;
	min-width:120px;
}
/*dg-price15*/
.dg-price15{
  text-align:center;
}
.dg-price15 .price-border.best-value{
  -moz-box-shadow:0 -2px 10px 0px #dcdcdc; 
  -webkit-box-shadow:0 -2px 10px 0px #dcdcdc; 
  box-shadow:0 -2px 10px 0px #dcdcdc
}
.dg-price15 .price-border:hover .price-title em.fa,
.dg-price15 .price-border:hover .price-box,
.dg-price15 .price-border:hover .btn{
    background-color:#20a3f0;
	color:#fff;
}
.dg-price15 .price-title{
  position:relative;
  padding:60px 10px 20px 10px;
}
.dg-price15 .price-title em.fa{
  width:65px;
  height:65px;
  line-height:65px;
  text-align:center;
  border-radius:50%;
  border:1px solid #d4d4d4;
  position:absolute;
  left:50%;
  top:0;
  margin:-32.5px 0 0 -32.5px;
  font-size: 25px;
  color: #20a3f0;
  background-color:#fff;
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;  
}
.dg-price15 .price-title h2{
  font-size:20px;
  color:#20a3f0;
  font-weight:normal;
}
.dg-price15 .price-box{
  background-color:#ececec;
  border:1px solid #d4d4d4;
  border-left:0;
  border-right:0;
  padding:3px 0;
  color: #20a3f0;
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.dg-price15 .price-box .sup,
.dg-price15 .price-box .price{
  font-size:30px;
  font-weight:normal;
}
.dg-price15 .price-box .unit{
  display:inline-block;
}
.dg-price15 .price-holder ul li{
  border-bottom:1px solid #d4d4d4;
  line-height:1.2;
  padding:22px 0;
}
.dg-price15 .dg-btn-3{
    margin: 21px 0px 20px;
	display:inline-block;
	min-width: 140px;
}
/*dg-price16*/
.dg-price16{
  text-align:center;
}
.dg-price16 .price-border{
  border-radius:5px; 
}
.dg-price16 .price-box{
  background-color:#ededed;
  padding:25px 0 35px 0;
  border-bottom:1px solid #d9d9d9;
  border-radius:5px;		
}
.dg-price16 .price-box .sup{
  font-size:20px;
  font-weight:normal;
  display:inline-block;
  padding:0 5px 0 0;
}
.dg-price16 .price-box .price{
  font-size:45px;
}
.dg-price16 .price-box .unit{
  display:inline-block;
}
.dg-price16 .price-title{  
  position:relative;
  margin:-13px 0 0 0;
} 
.dg-price16 .price-title h2{
    position: absolute;
    font-size:13px;
    color:#fff;
    font-weight:normal;
    left: 50%;
    border: none;
    top: 0;
    width: 150px;
    height: 26px;
    line-height: 26px;
    background-color:#20a3f0;
	text-transform:uppercase;
	margin:0 0 0 -75px;   
}
.dg-price16 .price-title .arrow-left:before {
    display: inline-block;
    content: "";
    position: absolute;
    top: -1px;
    left: -13px;
    border: 13px solid transparent;   
    border-bottom: 14px solid #20a3f0;
}
.dg-price16 .price-title .arrow-left:after{
    display: inline-block;
    content: "";
    position: absolute;
    top: 0px;
    left: -13px;
    border: 13px solid transparent; 
    border-top: 14px solid #20a3f0;
}
.dg-price16 .price-title .arrow-right:before {
    display: inline-block;
    content: "";
    position: absolute;
    top: -1px;
    right: -13px;
    border: 13px solid transparent;   
    border-bottom: 14px solid #20a3f0;
}
.dg-price16 .price-title .arrow-right:after{
    display: inline-block;
    content: "";
    position: absolute;
    top: 0px;
    right: -13px;
    border: 13px solid transparent; 
    border-top: 14px solid #20a3f0;
}
.dg-price16 .color-1 .price-title h2{
   background-color:#1bbc9b;
}
.dg-price16 .color-1 .price-title .arrow-left:before,
.dg-price16 .color-1 .price-title .arrow-right:before{  
    border-bottom: 14px solid #1bbc9b;
}
.dg-price16 .color-1 .price-title .arrow-left:after,
.dg-price16 .color-1 .price-title .arrow-right:after{  
    border-top: 14px solid #1bbc9b;
}
.dg-price16 .color-3 .price-title h2{
   background-color:#8d6cc3;
}
.dg-price16 .color-3 .price-title .arrow-left:before,
.dg-price16 .color-3 .price-title .arrow-right:before{  
    border-bottom: 14px solid #8d6cc3;
}
.dg-price16 .color-3 .price-title .arrow-left:after,
.dg-price16 .color-3 .price-title .arrow-right:after{  
    border-top: 14px solid #8d6cc3;
}
.dg-price16 ul{
  padding:0 0 8px 0;
}
.dg-price16 .btn {
    padding: 14px 0;
    line-height: 1.2;
    color: #666666;
    font-size: 13px;
    border-radius: 5px;
    background: #eaeaea;
    text-transform: uppercase;
    display: block;
    margin: 9px;
}
.dg-price16 .price-border:hover .btn{
  background-color:#20a3f0;
  color:#fff;
}
.dg-price16 li{
  padding:6px 0
}
/*dg-price17*/
.dg-price17{
  text-align:center;
}
.dg-price17 .price-title{
  padding:40px 10px 30px 10px;
}
.dg-price17 .price-title,
.dg-price17 .price-box{
  background-color:#20a3f0;
}
.dg-price17 .price-title h2{
  color:#fff;
  font-size:30px;
}
.dg-price17 .price-box{
  color:#fff;
  padding:0 0 40px 0;  
}
.dg-price17 .price-box .unit{
  display:inline-block;
  font-size:20px;
  font-weight:bold;  
}
.dg-price17 .price-box .sup{
  font-size:20px;
  font-weight:normal;
  margin: 10px 10px 0 0;  
  vertical-align: top;
}
.dg-price17 .price-box .price{
  font-size:45px;
  line-height:1;
}
.dg-price17 .price-holder h3{
  color:#666;
  font-size:20px;
  text-transform:uppercase;
  margin:0 15px 25px 15px;
  padding:38px 0 32px 0;
  border-bottom:1px solid #ccc;
  line-height:1.2;  
}
.dg-price17 .price-holder p{
  text-align:left;
  padding:0 20px; 
}
.dg-price17 .btn {
    padding: 14px 27px;  
    line-height: 1.2;
    border: 1px solid #20a3f0;
    color: #2e2d2d;
    font-size: 20px;
    margin: 18px 0 13px 0;
    border-radius: 0;
    text-transform: uppercase;	
	position:relative;
	color:#fff;
	z-index:2;
}
.dg-price17 .btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background-color: #20a3f0;
    border-radius: inherit;
    -moz-border-radius: inherit;
    -webkit-border-radius: inherit;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
.dg-price17 .price-border.color-1 .price-title,
.dg-price17 .price-border.color-1 .price-box,
.dg-price17 .price-border.color-1 .btn:before{
   background-color:#8d6cc3;
}
.dg-price17 .price-border.color-1 .btn{
  border-color:#8d6cc3
}
.dg-price17 .price-border.color-3 .price-title,
.dg-price17 .price-border.color-3 .price-box,
.dg-price17 .price-border.color-3 .btn:before{
   background-color:#ef8494;
}
.dg-price17 .price-border.color-3 .btn{
  border-color:#ef8494
}
.dg-price17 .price-border.color-4 .price-title,
.dg-price17 .price-border.color-4 .price-box,
.dg-price17 .price-border.color-4 .btn:before{
   background-color:#f9cf79;
}
.dg-price17 .price-border.color-4 .btn{
  border-color:#f9cf79
}
.dg-price17 .price-border:hover .btn{
	background-color:#333;
	border:1px solid #333;
	color:#FFF;
}
.dg-price17 .price-border:hover .btn:before {
	background-color:#333;
}
/*dg-price18*/
.dg-price-bg05 {
    background: url("/Portals/_default/Skins/ForVend/images/dg-price-bg05.jpg") no-repeat center center;
    background-size: cover;
}
.dg-price18{
   text-align:center;
}
.dg-price18 .price-border{
  border:0;
  background-color:#20a3f0;
  color:#fff;
  padding:0 35px;
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.dg-price18 .price-border:hover{
  background-color:#2e2e2e;
}
.dg-price18 .price-border:hover .btn{
  background-color:#fff;
  color:#2e2e2e;
}
.dg-price18 .price-title{
   padding:40px 0 20px 0;
}
.dg-price18 .price-title h2{
  font-size:13px;
  color:#fff;
  font-weight:normal;
  text-transform:uppercase;
}
.dg-price18 ul{
  border-top:1px solid #fff;
  border-bottom:1px solid #fff;
  border-color:rgba(255,255,255,0.2);
  padding:25px 0;
}
.dg-price18 ul li{
  padding:13px 0;
  line-height:1.2;
}
.dg-price18 .btn {
    padding: 14px 18px;  
    line-height: 1.2;   
	background-color:#2e2e2e;
    color: #fff;
    font-size: 13px;
    margin: 31px 0;
    border-radius: 0;   
}
.dg-price18 .price-box .sup{
   font-size:25px;
   font-weight:normal;
   display:inline-block;
    margin: 8px 10px 0 0;
    vertical-align: top;   
}
.dg-price18 .price-box .price{
  font-size:55px;
  line-height:1.2;	
}
.dg-price18 .price-box .unit{
  display:inline-block;
  vertical-align: bottom;
  margin:-0 0 -5px 0
}
.dg-price18 .price-box{
   border-bottom:1px solid #fff;
  border-color:rgba(255,255,255,0.2);
  padding:24px 0 28px 0
}
/*dg-price19*/
.dg-price19 .price-border{
	border-color:#cccccc;
	text-align:center;
}
.dg-price19 .price-title{
	margin:0;
	padding:30px 10px;
}
.dg-price19 .price-title h2{
	font-size:25px;
	color:#FFF;
	font-weight:normal;
}
.dg-price19 .price-title span{
   color:#fff;
   font-style:italic;
}
.dg-price19 .price-box{
	padding:35px 10px 26px;
	color:#FFF;
	margin:0;
}
.dg-price19 .price-box .sup,
.dg-price19 .price-box .price{
	font-size:45px;
	line-height:1.2;	
}
.dg-price19 .price-box .sup{
	font-size:20px;
	display:inline-block;
	margin:15px 10px 0 0;
	vertical-align:top;
	font-weight:normal;
}
.dg-price19 .price-box .unit{
	display:block;
	text-align:center;
	font-size:15px;
	color:#fff;
	margin:0;
}
.dg-price19 .price-holder li:nth-child(odd){	
	background-color:#e9e9e9
}
.dg-price19 .price-holder ul{
   margin:15px 0 0 0;
   border-top:1px solid #cbcbcb;
}
.dg-price19 .price-holder li{
   border-bottom:1px solid #cbcbcb;
}
.dg-price19 .btn{
	margin:29px 0px 32px 0;
	padding:10px 35px 9px;
	font-size:13px;
	color:#20a3f0;
	font-weight:bold;
	color:#FFF;
	font-weight:normal;
	border-bottom:3px solid rgba(0,0,0,0.2);
}
.dg-price19 .color-1 .price-title{
	background-color: #12a587;
}
.dg-price19 .color-1 .price-box,
.dg-price19 .color-1 .btn{
	background-color: #1bbc9b;
}
.dg-price19 .color-2 .price-title{
	background-color: #e5b553;
}
.dg-price19 .color-2 .price-box,
.dg-price19 .color-2 .btn{
	background-color: #f9cf79;
}
.dg-price19 .color-3 .price-title{
	background-color: #077fd3;
}
.dg-price19 .color-3 .price-box,
.dg-price19 .color-3 .btn{
	background-color: #20a3f0;
}
.dg-price19 .color-4 .price-title{
	background-color: #6e47ad;
}
.dg-price19 .color-4 .price-box,
.dg-price19 .color-4 .btn{
	background-color: #8d6cc3;
}
.dg-price19 .price-border:hover .btn{
	background-color:#333;
	color:#FFF;
}
/*dg-price20*/
.dg-price20{
  text-align:center;
}
.dg-price20 .price-border{
  border:0;
  border-radius:5px;
}
.dg-price20 .price-holder {
    border: 1px solid #d8d8d8;
	border-top:0;
}
.dg-price20 .price-title{
  background-color:#333333;
  color:#fff;
  padding:0 10px 20px 10px;
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.dg-price20 .price-title h2{
  font-size:13px;
  font-weight:normal;
  color:#fff;
  margin:0;
  padding:20px 0;
}
.dg-price20 .price-box{
  padding:0 0 50px 0;
}
.dg-price20 .price-box .sup{
  font-size:15px;
  font-weight:normal;
  vertical-align: top;
  margin: 5px 10px 0 0;
}
.dg-price20 .price-box .price{
  font-size:45px;
  font-weight:normal;
  line-height:1.2;
}
.dg-price20 .price-box .unit{
  display:inline-block;
}
.dg-price20 .price-holder ul {
    display: inline-block;
    max-width: 75%;
	text-align:center;
	margin:30px 0;
}
.dg-price20 .price-holder li {   
    text-align: left;
    position: relative;
    padding-left: 15px;
}
.dg-price20 .price-holder li:before{
    content: "\f044";
	font-family:"FontAwesome";
	margin:0 15px 0 0;
	    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.dg-price20 .btn {
    padding: 14px 0;
    line-height: 1.2;
    color: #666666;
    font-size: 13px;
    border-radius: 5px;
    background: #fff;
    text-transform: uppercase;
    display: block;   
}
.dg-price20 .price-popular{
   border:1px solid #20a3f0;
   border-bottom:0;
   color:#20a3f0;
   border-radius:5px 5px 0 0;
   height:35px;
   line-height:35px;
   margin:-35px 0 0 0;
   padding:0 5px;
}
.dg-price20 .best-value .price-title{
  background-color:#20a3f0  
}
.dg-price20 .best-value .price-holder li:before{
  color:#20a3f0
}
.dg-price20 .price-border:hover .price-title{
  background-color:#20a3f0;  
}
.dg-price20 .price-holder:hover li:before{
  color:#20a3f0
}
/*dg-price-bg21*/
.dg-price-bg06 {
    background: url("/Portals/_default/Skins/ForVend/images/dg-price-bg06.jpg") no-repeat center center;
    background-size: cover;
}
.dg-price21{
  text-align:center;
  color:#fff;
}
.dg-price21 .price-border{
  border:1px solid #fff;
  border-top:5px solid #fff;
  border-color:rgba(255,255,255,0.8); 
  padding:57px 0 57px 0;
}
.dg-price21 .price-box{
  width:112px;
  height:112px;
  text-align:center;
  line-height:112px;
  border-radius:50%;
  background-color:#20a3f0;
  margin:0 auto;
  font-size:25px;
  color:#fff
}
.dg-price21 .price-line{
  border-bottom:1px solid #fff;
  border-color:rgba(255,255,255,0.8);
  width:135px;
  margin:36px auto 0 auto;
}
.dg-price21 .price-title{
  padding:50px 10px 20px 10px;
}
.dg-price21 .price-title h2{
  font-size:20px;
  font-weight:normal;
  color:#fff;
  margin:0;
  padding:0 0 50px 0;  
}
.dg-price21 ul{
  max-width:75%;
  display:inline-block;
  margin:0 0 35px 0
}
.dg-price21 ul li{
  text-align:left;
  padding:15px 0;
}
.dg-price21 ul li em{
 display:inline-block;
 padding:0 28px 0 0;
}
.dg-price21 .price-border .btn {
    padding: 17px 28px;
    line-height: 1.2;
    color: #fff;
    font-size: 20px;
    margin: 0 0;
    border-radius: 5px;
    background-color: #20a3f0;
    text-transform: uppercase;
    border-radius: 5px;
	font-weight:bold;	
}
.dg-price21 .price-border:hover .btn {
  background-color:#fff;
  color:#20a3f0;
}
/**/
.dg-price22{
    padding: 0;
    min-width: 100%;
    display: table;
    margin: auto ;
	text-align:center;
	color:#fff;
}

.dg-price22 > div {
    display: table-cell;
    vertical-align: bottom;
    float: none;
}
.dg-price22 .price-border{
   border:0;
   background-color:#20a3f0;
   padding:15px 0 20px 0;
   border-radius:5px;
}
.dg-price22 .color-1 .price-border{
  background-color:#989898;
}
.dg-price22 .color-3 .price-border{
  background-color:#1bbc9b;
}
.dg-price22 .color-4 .price-border{
  background-color:#8d6cc3;
}
.dg-price22 .price-title h2{
  font-size:20px;
  color:#fff;
  font-weight:blod;
  text-transform:uppercase;
}
.dg-price22 .price-title span{
  font-size:15px;
}
.dg-price22 .price-box{
  padding:20px 0 20px 0;
}
.dg-price22 .price-holder ul li{
  font-size:15px;
}
.dg-price22 .btn {
    padding: 16px 0;
    line-height: 1.2;
    color: #666666;
    font-size: 13px;
    border-radius: 5px;
    background: #fff;   
    display: block;
	margin:0 10px 0 10px;
}
.dg-price22 .price-border:hover .btn {
  background-color:#444;
  color:#fff;
}
.dg-price22 .price-popular{
    background-color:#20a3f0;
	font-weight:bold;
	position:relative;
	border-radius:5px;
	margin:0 0 11px 0;
	padding:6px 0;
}
.dg-price22 .price-popular:before {
    border:10px solid transparent;
    border-top:10px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    left: 0;   
    width: 0;
	bottom: -17px;
    width: 0;
    left: 50%;
    margin: 0 0 0 -10px;
	
}
/*dg-price23*/
.dg-price23 .price-border:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #d4d4d4;
    margin: 0 0 0 -15px;
}
.dg-price23 > div:first-child .price-border:before{
	display:none;
}
.dg-price23 .price-border{
   border:0;
   text-align:center;
   margin-top:40px;
}
.dg-price23{
   border-top:4px solid #20a3f0;  
}
.dg-price23 .price-title em{
  width:170px;
  height:170px;
  line-height:170px;
  text-align:center;
  border-radius:50%;
  border:1px solid #20a3f0;
  font-size:35px;
  color:#20a3f0;
  display:block;
  margin:0 auto;
}
.dg-price23 .price-title{
  padding:0 10px
}
.dg-price23 .price-title h2{
  font-size:20px;
  font-weight:normal;
  color:#2d2d2d;
  text-transform:uppercase;
  margin:0;
  padding:25px 0 40px 0;
}
.dg-price23 .price-box{
  color:#20a3f0;
  line-height:1;
}
.dg-price23 .price-box .sup{
  font-weight:normal;
  display:inline-block;
  margin:0 10px 0 0;
}
.dg-price23 .price-box .unit{
 display:inline-block;
}
.dg-price23 .price-holder{
  margin:35px 25px 0 25px
}
.dg-price23 .price-holder ul li{
  border-bottom:1px solid #d4d4d4
}
.dg-price23 .btn {
    padding: 12px 30px;
    line-height: 1.2;  
    color: #fff;
    font-size: 13px;
    margin: 23px 0 12px 0;
    border-radius: 5px;  
	background-color:#20a3f0;
}
.dg-price23 .price-border:hover .btn{
  background-color:#444;
}
/*dg-price24*/
.dg-price-bg07{
    background: url("/Portals/_default/Skins/ForVend/images/dg-price-bg07.jpg") no-repeat center center;
    background-size: cover;
}
.dg-price24{
}
.dg-price24 .price-border{
  border:0;
  background-color:#4a4a4a;
  text-align:center;
  color:#fff;
}
.dg-price24 .price-title{
  background-color:#303030;
  padding:17px 10px;
   transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.dg-price24 .price-title h2{
  color:#fff;
  font-weight:normal;
  font-size:13px;
}
.dg-price24 .price-box{
  line-height:1;
  padding:20px 0 0 0;
}
.dg-price24 .price-box .sup{
  font-size:15px;
  font-weight:normal;
  vertical-align:top;
  margin:10px 3px 0 0;
}
.dg-price24 .price-box .price{
  font-size:45px;
}
.dg-price24 .price-box .unit{
  display:inline-block;
}
.dg-price24 li{
  font-size:15px;
}
.dg-price24 ul{
  padding:40px 0;
}
.dg-price24 .btn{
  position:relative;
  background-color:#20a3f0;
  color:#fff;
  border-radius:0;
  font-size:13px; 
  height:55px;
  line-height:55px;
  padding:0 0 0 35px;
  margin:0 0 39px 0;
}
.dg-price24 .price-border:hover .price-title{
  background-color:#20a3f0;
}
.dg-price24 .btn:after{
  content: "\f178";
  font-family:"FontAwesome";
  padding:0 0 0 20px;
}
.dg-price24 .btn:before {
    border: 28px solid transparent;
    border-left: 30px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    right: -59px;
    top: -1px;
    width: 0;
    border-radius: 0px 0 0 3px;	
}
.dg-price24 .price-bnt{
  text-align:left
}
.dg-price24 .price-border.color-1 .btn:before{
   border-left: 30px solid #d39a24;
}
.dg-price24 .price-border.color-2 .btn:before{
   border-left: 30px solid #ef8494;
}
.dg-price24 .price-border.color-4 .btn:before{
   border-left: 30px solid #1bbc9b;
}
.dg-price24 .price-border.color-1 .btn{
  background-color:#d39a24
}
.dg-price24 .price-border.color-2 .btn{
  background-color:#ef8494
}
.dg-price24 .price-border.color-4 .btn{
  background-color:#1bbc9b
}
/**/
.dg-price25{
	text-align:center;
}
.dg-price25 .price-border{
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	position:relative;
}
.dg-price25 .price-border:before,
.dg-price25 .price-border:after{
	content:"";
	position:absolute;
	bottom:4px;
	left:-1px;
	right:-1px;
	border-bottom:1px solid #d8d8d8;
	height:10px;
	border-radius:0 0 6px 6px;
	-moz-border-radius:0 0 6px 6px;
	-webkit-border-radius:0 0 6px 6px;
}
.dg-price25 .price-border:before{
	bottom:9px;
}
.dg-price25 .price-title{
	background-color:#2e2e2e;
	padding:0 10px;	
	font-weight:bold;		
	border-radius:6px 6px 0 0;
	-moz-border-radius:6px 6px 0 0;
	-webkit-border-radius:6px 6px 0 0;
}
.dg-price25 .price-box{
   background-color:#2e2e2e;
}
.dg-price25 .price-title h2{
	color:#20a3f0;
	font-size:30px;
	text-transform:uppercase;
	line-height:1.2;
	padding:30px 0 0 0;
}
.dg-price25 .price-box {
	border-bottom:1px solid #e3e3e3;
	padding:0 0 30px 0;
}
.dg-price25 .price-box .sup,
.dg-price25 .price-box .price{
	font-size:13px;
	font-weight:normal;
	color:#20a3f0;	
}
.dg-price25 .price-box .price{
   display:inline-block;
   padding:0 3px;	
}
.dg-price25 .price-box .unit{
	display:inline-block;
	color:#fff;
}
.dg-price25 .price-holder {
	overflow:hidden;
}
.dg-price25 .price-holder ul{
	display:inline-block;
	max-width:75%;
}
.dg-price25 .price-holder li{
	list-style-type:decimal;
	list-style-position:outside;
	text-align:left;
	position:relative;	
	padding:13px 0 13px 15px;
}
.dg-price25 .price-holder li:after{
	content:"";
	position:absolute;
	bottom:0px;
	left:-4000px;
	width:10000px;
	border-bottom:1px solid #e3e3e3;
	background: rebeccapurple;	
}
.dg-price25 .price-holder li:nth-child(even):after{
    height:49px;
	background:#eeeeee;
	z-index:-1;
}
.dg-price25 .btn{	
	margin:26px 0 35px 0;
	padding:19px 50px;
	font-size:15px;
	color:#fff;
	background-color:#20a3f0;
	font-weight:bold;
	line-height:1.2;
	border-radius:8px;
}
.dg-price25 .btn:hover{
	background-color:#20a3f0;
	color:#FFF;
}
.dg-price25 .price-border:hover .price-title h2{
    color:#fff;
}
.dg-price25 .price-border:hover .btn{
   background-color:#444;
 
}
/*dg-price26*/
.dg-price26{
  text-align:center;
}
.dg-price26 .price-title {
	margin:0 -1px;
}
.dg-price26 .price-title h2{
  font-size:15px;
  font-weight:normal;
  text-transform:uppercase;
  color:#fff;
}
.dg-price26 .price-box {
    padding: 30px 0 30px 0;
}
.dg-price26 .price-box .sup{
    font-size: 20px;
    vertical-align: middle;
    margin: -20px 10px 0 0;
    display: inline-block;
}
.dg-price26 .price-box .price{
  font-size:48px;
  line-height:1.4;
}
.dg-price26 .price-box .unit{
  display:inline-block;
  margin:0 0 0 10px;
  vertical-align:bottom;
}
.dg-price26 .price-border .price-title{
  color:#fff;
  background-color:#20a3f0;
        transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.dg-price26 .price-border .price-title p{
  margin:0;
}
.dg-price26 .price-border.color-1 .price-title{
  background-color:#ef8494;
}
.dg-price26 .price-border.color-3 .price-title{
  background-color:#a489cf;
}
.dg-price26 li {  
    padding: 18px 0 18px 30px;  
    text-align: left;
    border-bottom: 1px solid #ccc;
	       transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
	margin:0 -1px;
}
.dg-price26 li:last-child{
  border-bottom:none;
}
.dg-price26 .price-popular{
  height:40px;
  line-height:40px;
  background-color:#333;
  border-bottom:1px solid #fff;
  color:#fff;
  margin:-40px -1px 0;
}
.dg-price26 .price-border:hover .price-title,
.dg-price26 li:hover{
  background-color:#20a3f0;
  color:#fff;
}
/*dg-price27*/
.dg-price-bg08 {
    background: url("/Portals/_default/Skins/ForVend/images/dg-price-bg08.jpg") no-repeat center center;
    background-size: cover;
}
.dg-price27{
  text-align:center;
}
.dg-price27 .price-title{
  background-color:#20a3f0;
  padding:19px 10px;  
}
.dg-price27 .price-title h2{
  color:#fff;
  line-height:1.2;
  font-size:13px;
}
.dg-price27 .price-box .sup,
.dg-price27 .price-box .price{
  font-size:20px;
}
.dg-price27 .price-box .unit{
  display:inline-block;
}
.dg-price27 .price-box{
  background-color:#e1e1e1;
  padding:8px 0;
}
.dg-price27 .price-border{
  border:1px solid #20a3f0;
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.dg-price27 .btn {
    padding: 16px 0;
    line-height: 1.2;
    color: #fff;
    font-size: 13px;
    border-radius: 0;
    background: #fff;
    display: block;
    margin: 0 20px 20px 20px;	
	border:1px solid #20a3f0;	
	background: transparent;
}
.dg-price27 ul{
   padding:20px 0;
	}
.dg-price27 li{
  color:#fff;
  padding:8px 0;	
}
.dg-price27 .price-border .price-title{
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}		
.dg-price27 .price-border.color-1 .price-title{
  background-color:#f9cf79;
}
.dg-price27 .price-border.color-1,
.dg-price27 .price-border.color-1 .btn{
  border-color:#f9cf79;	
}
.dg-price27 .price-border.color-2 .price-title{
  background-color:#ef8494;
}
.dg-price27 .price-border.color-2,
.dg-price27 .price-border.color-2 .btn{
  border-color:#ef8494;	
}
.dg-price27 .price-border.color-3 .price-title{
  background-color:#1bbc9b;
}
.dg-price27 .price-border.color-3,
.dg-price27 .price-border.color-3 .btn{
  border-color:#1bbc9b;	
}
.dg-price27 .price-border:hover,
.dg-price27 .price-border:hover .btn{
  border-color:#20a3f0;	
}
.dg-price27 .price-border:hover .price-title{
  background-color:#20a3f0;
}
/*dg-price28*/
.dg-price28 .col-sm-4{
  padding:0 25px;
}
.dg-price28.row{
  margin:0 -25px;
  padding:0 40px;
}
.dg-price28 .price-border{
  color:#fff;
  background-color:#303030;
}
.dg-price28 .price-title{
  background-color:#20a3f0;
  padding:10px;
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.dg-price28 .price-title h2{
  color:#FFF;
  font-size:13px;
  text-align:center;
  font-weight:bold;
}
.dg-price28 .price-box{
  text-align:center;
  line-height:1;
  padding:40px 0;
}
.dg-price28 .price-box .sup{
    font-size: 20px;
    font-weight: normal;
    vertical-align: top;
    margin: 10px 0 0 0;
}
.dg-price28 .price-box .price{
  font-size:50px;
}
.dg-price28 .price-box .unit{
  display:inline-block;
}
.dg-price28 .price-holder{
  margin:0 30px;
  border-top:1px solid #5c5c5c;
  padding:30px 0 0 0;
}
.dg-price28 .price-holder ul li em{
  display:inline-block;
  padding:0 15px 0 0;
  color:#20a3f0;
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.dg-price28 .btn {
    padding: 12px 0;
    line-height: 1.2;
    color: #fff;
    font-size: 13px;
    border-radius: 0;
    background-color: #20a3f0;
    display: block;  	  
}
.dg-price28 ul{
  padding:0 0 15px 0;
}
.dg-price28 .price-border.color-2 .price-title,
.dg-price28 .price-border.color-2 .btn{
  background-color:#1bbc9b;
}
.dg-price28 .price-border.color-2 .price-holder ul li em{
  color:#1bbc9b
}
.dg-price28 .price-border.color-3 .price-title,
.dg-price28 .price-border.color-3 .btn{
  background-color:#8d6cc3;
}
.dg-price28 .price-border.color-3 .price-holder ul li em{
  color:#8d6cc3
}
.dg-price28 .price-border:hover .price-title,
.dg-price28 .price-border:hover .btn{
  background-color:#20a3f0;
}
.dg-price28 .price-border:hover .price-holder ul li em{
  color:#20a3f0
}
/*dg-price29*/
.dg-price29.row{
	margin:0 0 0 1px;
}
.dg-price29 [class*="col-"]{
	margin:0 0 0 -1px;
	padding:0;
}
.dg-price29 .price-border{
	border:0;
	padding:0;	
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition:	all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
	margin:0 4px 0 0;
	text-align:center;
	border-top:3px solid #20a3f0;
}
.dg-price29 .price-title{
	padding:20px 0;
	background-color:#525252;
}
.dg-price29 .price-title em{
   color:#fff;
   font-size:25px;
}
.dg-price29 .price-title h2{
	color:#fff;
	font-size:20px;
	margin:15px 0 0 0;
}
.dg-price29 .price-box {
   color:#20a3f0;
   padding:20px 0 0 0;
}
.dg-price29 .price-box .unit{
  display:inline-block;
}
.dg-price29 .price-info {
	padding:0px;
}
.dg-price29 .price-info:after{
	content:"";
	width:50%;
	border-bottom:1px solid rgba(255,255,255,0.8);
	display:block;
	margin:20px 0 10px;
}
.dg-price29 .price-holder .fa{
	margin-right:10px;
	color:#20a3f0;
}
.dg-price29 .btn {
    margin: 18px 0px 18px 0;
    padding: 9px 27px ;
    font-size: 13px;
    color: #fff;  
    color: #FFF;
    font-weight: normal;
    background-color: #525252;
	text-transform:uppercase;
}
.dg-price29 .price-border:hover .btn{
	background-color:#20a3f0;	
}
.dg-price29 .price-holder ul li{
  margin-bottom:4px;
  background-color:#e9e9e9;
  padding:18px 0;
}
.dg-price29 .price-btn{
  background-color:#e9e9e9;
}

/*dg-price30*/
.dg-price30{
  text-align:center;
}
.dg-price30 .price-border{ 
}
.dg-price30 .price-box{
  padding:20px 0 32px 0;
  border-bottom:1px solid #d9d9d9;
  border-radius:5px;
  line-height:1.4;		
}
.dg-price30 .price-box .sup{
  font-size:20px;
  font-weight:normal;
  display:inline-block;
  padding:15px 5px 0 0;
  vertical-align:top;
}
.dg-price30 .price-box .price{
  font-size:50px;
}
.dg-price30 .price-box .unit{
  display:inline-block;
  vertical-align:bottom;
}
.dg-price30 .price-title{  
  position:relative;
  margin:-15px 0 0 0;
  padding:0;
} 
.dg-price30 .price-title h2{
    position: absolute;
    font-size:13px;
    color:#fff;
    font-weight:normal;
    left: 50%;
    border: none;
    top: 0;
    width: 150px;
    height: 30px;
    line-height: 30px;
    background-color:#20a3f0;
	text-transform:uppercase;
	margin:0 0 0 -75px;   
}
.dg-price30 .price-title .arrow-left:before {
    display: inline-block;
    content: "";
    position: absolute;
    top: 0px;
    left: -40px;
    border: 15px solid transparent;   
    border-right: 25px solid #20a3f0;
}
.dg-price30 .price-title .arrow-right:before {
    display: inline-block;
    content: "";
    position: absolute;
    top: 0px;
    right: -40px;
    border: 15px solid transparent;   
    border-left: 25px solid #20a3f0;
}
.dg-price30 .color-2 .price-title h2{
   background-color:#f9cf79;
}
.dg-price30 .color-2 .price-title .arrow-left:before{  
   border-right: 25px solid #f9cf79;
}
.dg-price30 .color-2 .price-title .arrow-right:before{  
   border-left: 25px solid #f9cf79;
}
.dg-price30 .color-3 .price-title h2{
   background-color:#1bbc9b;
}
.dg-price30 .color-3 .price-title .arrow-left:before{  
    border-right: 25px solid #1bbc9b;
}
.dg-price30 .color-3 .price-title .arrow-right:before{  
    border-left: 25px solid #1bbc9b;
}
.dg-price30 .color-4 .price-title h2{
   background-color:#ef8494;
}
.dg-price30 .color-4 .price-title .arrow-left:before{  
   border-right: 25px solid #ef8494;
}
.dg-price30 .color-4 .price-title .arrow-right:before{  
   border-left: 25px solid #ef8494;
}
.dg-price30 ul{
  padding:0 0 8px 0;
}
.dg-price30 .btn {
    padding: 14px 0;
    line-height: 1.2;
    color: #666666;
    font-size: 13px;   
    background: #eaeaea;
    text-transform: uppercase;
    display: block;
    margin:10px 25px 20px 25px;
}
.dg-price30 .price-border:hover .btn{
  background-color:#20a3f0;
  color:#fff;
}
.dg-price30 li{
  padding:8px 0
}
.dg-price30 .price-holder {
    padding:50px 0 0 0;
}
@media only screen and (min-width: 1200px) {
 .dg-price12 .dg-btn-1{
	min-width:208px;
}
.dg-price08 .dg-btn-1{
	min-width:130px;
} 
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.dg-price11 .best-value .price-title {
    position: relative;
    width: 100%;
    margin: 0; 
} 
.dg-price22{
  display:block;
}
.dg-price22 > div{
  display:block;
  float:left;
}

.dg-price28 .col-sm-4 {
    padding: 0 15px;
}
.dg-price28.row {
    margin: 0 -15px;
    padding: 0;
}
.dg-price04 .col-md-3,
.dg-price05 .col-md-3,
.dg-price06 .col-md-3{
    width:50%;
	float:left;
}
}
@media only screen and (max-width: 767px) {
	.dg-price08 .left-title {
		display:none;
	}
	.dg-price08 .left-title .price-border{
		background-color:#2c2c2c;
		border-color:transparent;
	}
	.dg-price08 .row{
		float:none;
		width:auto;
		margin:0 0 0;
	}
	.dg-price08 .mobile-text{
		display:inline-block;
		margin-right:10px;
	}
	.dg-price11 .best-value .price-title {
		position: relative;
		width: 100%;
		margin: 0; 
	}
	.dg-price15  .price-border,
	.dg-price .price-border.best-value{
	  margin-top:50px;
	}
	.dg-price15 > div:first-child .price-border{
	  margin-top:20px;
	}
.dg-price04 .col-md-3,
.dg-price05 .col-md-3,
.dg-price06 .col-md-3{
    width:100%;
	float:none;
}
	
}
/* Slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: none;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}
.slick-track:before, .slick-track:after {
	display: table;
	content: '';
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}



/* basic scrollbar styling */
/* vertical scrollbar */

.mCustomScrollBox{
	overflow:hidden;
}
.mCSB_container{
	width:auto;
	overflow:hidden;
}
.mCSB_container.mCS_no_scrollbar{
	margin-right:0;
}
.mCS_disabled>.mCustomScrollBox>.mCSB_container.mCS_no_scrollbar,
.mCS_destroyed>.mCustomScrollBox>.mCSB_container.mCS_no_scrollbar{
	margin-right:0px;
}
.mCustomScrollBox>.mCSB_scrollTools{
	width:16px;
	height:100%;
	top:0;
	right:0;
}
.mCSB_scrollTools .mCSB_draggerContainer{
	position:absolute;
	top:0;
	left:auto;
	bottom:0;
	right:0; 
	height:auto;
}
.mCSB_scrollTools a+.mCSB_draggerContainer{
	margin:20px 0;
}
.mCSB_scrollTools .mCSB_draggerRail{
	width:4px;
	height:100%;
	margin:0 auto;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
}
.mCSB_scrollTools .mCSB_dragger{
	cursor:pointer;
	width:100%;
	height:30px;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:4px;
	height:100%;
	margin:0 auto;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
	text-align:center;
}
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown{
	display:block;
	position:relative;
	height:20px;
	overflow:hidden;
	margin:0 auto;
	cursor:pointer;
}
.mCSB_scrollTools .mCSB_buttonDown{
	top:100%;
	margin-top:-40px;
}
/* horizontal scrollbar */
.mCSB_horizontal>.mCSB_container{
	height:auto;
	margin-right:0;
	margin-bottom:30px;
	overflow:hidden;
}
.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar{
	margin-bottom:0;
}
.mCS_disabled>.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar,
.mCS_destroyed>.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar{
	margin-right:0;
	margin-bottom:30px;
}
.mCSB_horizontal.mCustomScrollBox>.mCSB_scrollTools{
	width:100%;
	height:16px;
	top:auto;
	right:auto;
	bottom:0;
	left:0;
	overflow:hidden;
}
.mCSB_horizontal>.mCSB_scrollTools a+.mCSB_draggerContainer{
	margin:0 20px;
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
	width:100%;
	height:4px;
	margin:7px 0;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger{
	width:30px;
	height:100%;
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:100%;
	height:4px;
	margin:6px auto;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_horizontal>.mCSB_scrollTools .mCSB_buttonRight{
	display:block;
	position:relative;
	width:20px;
	height:100%;
	overflow:hidden;
	margin:0 auto;
	cursor:pointer;
	float:left;
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_buttonRight{
	margin-left:-40px;
	float:right;
}
.mCustomScrollBox{
	-ms-touch-action:none; /*MSPointer events - direct all pointer events to js*/
}

/* default scrollbar colors and backgrounds (default theme) */
.mCustomScrollBox>.mCSB_scrollTools{
	opacity:0.75;
	filter:"alpha(opacity=75)"; 
	-ms-filter:"alpha(opacity=75)"; /* old ie */
}
.mCustomScrollBox:hover>.mCSB_scrollTools{
	opacity:1;
	filter:"alpha(opacity=100)"; 
	-ms-filter:"alpha(opacity=100)"; /* old ie */
}
.mCSB_scrollTools .mCSB_draggerRail{
	background:#000; /* rgba fallback */
	background:rgba(0,0,0,0.4);
	filter:"alpha(opacity=40)"; 
	-ms-filter:"alpha(opacity=40)"; /* old ie */
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	background:#fff; /* rgba fallback */
	background:rgba(0,0,0,0.75);
	filter:"alpha(opacity=75)"; 
	-ms-filter:"alpha(opacity=75)"; /* old ie */
}
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
	background:rgba(0,0,0,0.85);
	filter:"alpha(opacity=85)"; 
	-ms-filter:"alpha(opacity=85)"; /* old ie */
}
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
	background:rgba(0,0,0,0.9);
	filter:"alpha(opacity=90)"; 
	-ms-filter:"alpha(opacity=90)"; /* old ie */
}
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight{
	background-image:url("/Portals/_default/Skins/ForVend/css/mCSB_buttons.png");
	background-repeat:no-repeat;
	opacity:0.4;
	filter:"alpha(opacity=40)"; -ms-filter:"alpha(opacity=40)"; /* old ie */
}
.mCSB_scrollTools .mCSB_buttonUp{
	background-position:0 0;
	/* 
	sprites locations are 0 0/-16px 0/-32px 0/-48px 0 (light) and -80px 0/-96px 0/-112px 0/-128px 0 (dark) 
	*/
}
.mCSB_scrollTools .mCSB_buttonDown{
	background-position:0 -20px;
	/* 
	sprites locations are 0 -20px/-16px -20px/-32px -20px/-48px -20px (light) and -80px -20px/-96px -20px/-112px -20px/-128px -20px (dark) 
	*/
}
.mCSB_scrollTools .mCSB_buttonLeft{
	background-position:0 -40px;
	/* 
	sprites locations are 0 -40px/-20px -40px/-40px -40px/-60px -40px (light) and -80px -40px/-100px -40px/-120px -40px/-140px -40px (dark) 
	*/
}
.mCSB_scrollTools .mCSB_buttonRight{
	background-position:0 -56px;
	/* 
	sprites locations are 0 -56px/-20px -56px/-40px -56px/-60px -56px (light) and -80px -56px/-100px -56px/-120px -56px/-140px -56px (dark) 
	*/
}
.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover{
	opacity:0.75;
	filter:"alpha(opacity=75)"; -ms-filter:"alpha(opacity=75)"; /* old ie */
}
.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active{
	opacity:0.9;
	filter:"alpha(opacity=90)"; -ms-filter:"alpha(opacity=90)"; /* old ie */
}

/*scrollbar themes*/
/*dark (dark colored scrollbar)*/
.mCS-dark>.mCSB_scrollTools .mCSB_draggerRail{
	background:#000; /* rgba fallback */
	background:rgba(0,0,0,0.15);
}
.mCS-dark>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	background:#000; /* rgba fallback */
	background:rgba(0,0,0,0.75);
}
.mCS-dark>.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
	background:rgba(0,0,0,0.85);
}
.mCS-dark>.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark>.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
	background:rgba(0,0,0,0.9);
}
.mCS-dark>.mCSB_scrollTools .mCSB_buttonUp{
	background-position:-80px 0;
}
.mCS-dark>.mCSB_scrollTools .mCSB_buttonDown{
	background-position:-80px -20px;
}
.mCS-dark>.mCSB_scrollTools .mCSB_buttonLeft{
	background-position:-80px -40px;
}
.mCS-dark>.mCSB_scrollTools .mCSB_buttonRight{
	background-position:-80px -56px;
}
/*light-2*/
.mCS-light-2>.mCSB_scrollTools .mCSB_draggerRail{
	width:4px;
	background:#fff; /* rgba fallback */
	background:rgba(255,255,255,0.1);
	-webkit-border-radius:1px;
	-moz-border-radius:1px;
	border-radius:1px;
}
.mCS-light-2>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:4px;
	background:#fff; /* rgba fallback */
	background:rgba(255,255,255,0.75);
	-webkit-border-radius:1px;
	-moz-border-radius:1px;
	border-radius:1px;
}
.mCS-light-2.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
	width:100%;
	height:4px;
	margin:6px 0;
}
.mCS-light-2.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:100%;
	height:4px;
	margin:6px auto;
}
.mCS-light-2>.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
	background:rgba(0,0,0,0.85);
}
.mCS-light-2>.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2>.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
	background:rgba(0,0,0,0.9);
}
.mCS-light-2>.mCSB_scrollTools .mCSB_buttonUp{
	background-position:-32px 0;
}
.mCS-light-2>.mCSB_scrollTools .mCSB_buttonDown{
	background-position:-32px -20px;
}
.mCS-light-2>.mCSB_scrollTools .mCSB_buttonLeft{
	background-position:-40px -40px;
}
.mCS-light-2>.mCSB_scrollTools .mCSB_buttonRight{
	background-position:-40px -56px;
}
/*dark-2*/
.mCS-dark-2>.mCSB_scrollTools .mCSB_draggerRail{
	width:4px;
	background:#000; /* rgba fallback */
	background:rgba(0,0,0,0.1);
	-webkit-border-radius:1px;
	-moz-border-radius:1px;
	border-radius:1px;
}
.mCS-dark-2>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:4px;
	background:#000; /* rgba fallback */
	background:rgba(0,0,0,0.75);
	-webkit-border-radius:1px;
	-moz-border-radius:1px;
	border-radius:1px;
}
.mCS-dark-2.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
	width:100%;
	height:4px;
	margin:6px 0;
}
.mCS-dark-2.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:100%;
	height:4px;
	margin:6px auto;
}
.mCS-dark-2>.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
	background:rgba(0,0,0,0.85);
}
.mCS-dark-2>.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2>.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
	background:rgba(0,0,0,0.9);
}
.mCS-dark-2>.mCSB_scrollTools .mCSB_buttonUp{
	background-position:-112px 0;
}
.mCS-dark-2>.mCSB_scrollTools .mCSB_buttonDown{
	background-position:-112px -20px;
}
.mCS-dark-2>.mCSB_scrollTools .mCSB_buttonLeft{
	background-position:-120px -40px;
}
.mCS-dark-2>.mCSB_scrollTools .mCSB_buttonRight{
	background-position:-120px -56px;
}
/*light-thick*/
.mCS-light-thick>.mCSB_scrollTools .mCSB_draggerRail{
	width:4px;
	background:#fff; /* rgba fallback */
	background:rgba(0,0,0,0.1);
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	border-radius:2px;
}
.mCS-light-thick>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:6px;
	background:#fff; /* rgba fallback */
	background:rgba(0,0,0,0.75);
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	border-radius:2px;
}
.mCS-light-thick.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
	width:100%;
	height:4px;
	margin:6px 0;
}
.mCS-light-thick.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:100%;
	height:6px;
	margin:5px auto;
}
.mCS-light-thick>.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
	background:rgba(0,0,0,0.85);
}
.mCS-light-thick>.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick>.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
	background:rgba(0,0,0,0.9);
}
.mCS-light-thick>.mCSB_scrollTools .mCSB_buttonUp{
	background-position:-16px 0;
}
.mCS-light-thick>.mCSB_scrollTools .mCSB_buttonDown{
	background-position:-16px -20px;
}
.mCS-light-thick>.mCSB_scrollTools .mCSB_buttonLeft{
	background-position:-20px -40px;
}
.mCS-light-thick>.mCSB_scrollTools .mCSB_buttonRight{
	background-position:-20px -56px;
}
/*dark-thick*/
.mCS-dark-thick>.mCSB_scrollTools .mCSB_draggerRail{
	width:4px;
	background:#000; /* rgba fallback */
	background:rgba(0,0,0,0.1);
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	border-radius:2px;
}
.mCS-dark-thick>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:6px;
	background:#000; /* rgba fallback */
	background:rgba(0,0,0,0.75);
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	border-radius:2px;
}
.mCS-dark-thick.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
	width:100%;
	height:4px;
	margin:6px 0;
}
.mCS-dark-thick.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:100%;
	height:6px;
	margin:5px auto;
}
.mCS-dark-thick>.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
	background:rgba(0,0,0,0.85);
}
.mCS-dark-thick>.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick>.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
	background:rgba(0,0,0,0.9);
}
.mCS-dark-thick>.mCSB_scrollTools .mCSB_buttonUp{
	background-position:-96px 0;
}
.mCS-dark-thick>.mCSB_scrollTools .mCSB_buttonDown{
	background-position:-96px -20px;
}
.mCS-dark-thick>.mCSB_scrollTools .mCSB_buttonLeft{
	background-position:-100px -40px;
}
.mCS-dark-thick>.mCSB_scrollTools .mCSB_buttonRight{
	background-position:-100px -56px;
}
/*light-thin*/
.mCS-light-thin>.mCSB_scrollTools .mCSB_draggerRail{
	background:#fff; /* rgba fallback */
	background:rgba(0,0,0,0.1);
}
.mCS-light-thin>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:4px;
}
.mCS-light-thin.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
	width:100%;
}
.mCS-light-thin.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:100%;
	height:2px;
	margin:7px auto;
}
/*dark-thin*/
.mCS-dark-thin>.mCSB_scrollTools .mCSB_draggerRail{
	background:#000; /* rgba fallback */
	background:rgba(0,0,0,0.15);
}
.mCS-dark-thin>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:4px;
	background:#000; /* rgba fallback */
	background:rgba(0,0,0,0.75);
}
.mCS-dark-thin.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
	width:100%;
}
.mCS-dark-thin.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:100%;
	height:2px;
	margin:7px auto;
}
.mCS-dark-thin>.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
	background:rgba(0,0,0,0.85);
}
.mCS-dark-thin>.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin>.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
	background:rgba(0,0,0,0.9);
}
.mCS-dark-thin>.mCSB_scrollTools .mCSB_buttonUp{
	background-position:-80px 0;
}
.mCS-dark-thin>.mCSB_scrollTools .mCSB_buttonDown{
	background-position:-80px -20px;
}
.mCS-dark-thin>.mCSB_scrollTools .mCSB_buttonLeft{
	background-position:-80px -40px;
}
.mCS-dark-thin>.mCSB_scrollTools .mCSB_buttonRight{
	background-position:-80px -56px;
}


.portfolio-list-page a,
.portfolio-list-page span{
	display:inline-block;
	border:1px solid #c8c8c8;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	padding:5px 15px;
	margin:0 6px 6px 0;
	color:#666666;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list-page a, 
.portfolio-list-page a:link, 
.portfolio-list-page a:active, 
.portfolio-list-page a:visited{
	color:#666666;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list-page a:hover,
.portfolio-list-page span{
	background-color:#20a3f0;
	border-color:#20a3f0;
	color:#FFF;
}
.portfolio-list-page em,
.portfolio-list-page i{
	font-style:normal;
	font-size:14px;
	color:#666666;
	padding-right:10px;
}
.portfolio-list-page .disabled{
    pointer-events: none;
    cursor: default;
	border-color:#d2d2d2!important;
	color:#d2d2d2!important;
}


.portfolio-isotope.loading:before{
	content:"";
	z-index:10;
	position:absolute;
	background:url("/Portals/_default/Skins/ForVend/images/loader.gif") no-repeat center center;
	left:50%;
	top:50%;
	width:37px;
	height:37px;
	margin:-15px 0 0 -15px;
}
.portfolio-isotope .element {
	position:absolute;
	top:0;
	left:0;
}
.portfolio-isotope.loading .portfolio-mian{
	visibility:hidden;
	opacity:0;
}
.portfolio-isotope .portfolio-mian{
	visibility:visible;
	opacity:1;
	transition: 		opacity ease-in 300ms;
	-moz-transition: 	opacity ease-in 300ms; /* Firefox 4 */
	-webkit-transition: opacity ease-in 300ms; /* Safari and Chrome */
	-o-transition: 		opacity ease-in 300ms; /* Opera */
	-ms-transition: 	opacity ease-in 300ms; /* IE9? */
}

.portfolio-list01-mid{
	margin:0px 20px;
}
.portfolio-list01.loading:before{
	top:100%;
	margin-top:0;
}
.portfolio-list01 img {
	max-width:100%;
}
.portfolio-list01 .filter-box {
	margin-bottom:40px;
}
.portfolio-list01 .filters a{
	border:1px solid #dcdcdc;
	padding:4px 20px;
	display:inline-block;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	color:#666666;
	margin:0px 5px 5px 0;
}
.portfolio-list01 .filters a:hover{
	color:#20a3f0;
	text-decoration:none;
}
.portfolio-list01 .filters a.active{
	background-color:#20a3f0;
	border-color:#20a3f0;
	color:#FFF!important;
}
.portfolio-list01 .element-box{
	position:relative;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list01 .portfolio-mian .element{
}
.portfolio-list01 .portfolio-mian .element-date {
	color:#666666;
	margin-bottom:8px;
}
.portfolio-list01 .element-pic{
	position:relative;
	margin-bottom:18px;
}
.portfolio-list01 .element-pic:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#000;
	background-color:rgba(0,0,0,0.7);
	opacity:0;
	visibility:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list01 .element-pic .ico{
	position:absolute;
	top:50%;
	left:0;
	right:0;
	text-align:center;
	margin-top:-23px;
	opacity:0;
	visibility:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list01 .element:hover .element-pic:before,
.portfolio-list01 .element:hover .element-pic .ico{
	opacity:1;
	visibility:visible;
}
.portfolio-list01 .element-pic .prolight_image_group{
	display:inline-block;
}
.portfolio-list01 .element-pic .ico-left,
.portfolio-list01 .element-pic .ico-right{
	width:45px;
	height:45px;
	line-height:45px;
	text-align:center;
	background-color:#20a3f0;
	display:inline-block;
	margin:0px 4px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	color:#FFF;
	font-size:18px;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
.portfolio-list01 .element-pic .ico-left:hover,
.portfolio-list01 .element-pic .ico-right:hover{
	background-color:#333;
}

.portfolio-list01 .portfolio-mian h3{
	margin:10px 0px 2px;
	font-size:18px;
}
.portfolio-list01 .portfolio-mian h3 a,
.portfolio-list01 .portfolio-mian h3 a:link,
.portfolio-list01 .portfolio-mian h3 a:active,
.portfolio-list01 .portfolio-mian h3 a:visited{
	font-size:18px;
	color:#666666;
}
.portfolio-list01 .element-info {
	margin-bottom:20px ;
}
.portfolio-list01 .element-info p{
	font-size:15px;
}
.portfolio-list01 .element-info p a, 
.portfolio-list01 .element-info p a:link, 
.portfolio-list01 .element-info p a:active, 
.portfolio-list01 .element-info p a:visited{
	color:#666666;
}
.portfolio-list01 .portfolio-mian h3 a:hover,
.portfolio-list01 .element-info p a:hover{
	color:#20a3f0;
}

.portfolio-list02-mid{
	margin:0px 20px;
}
.portfolio-list02.loading:before{
	top:100%;
	margin-top:10px;
}
.portfolio-list02 img {
	max-width:100%;
}
.portfolio-list02 .filter-box {
	margin-bottom:40px;
}
.portfolio-list02 .filters a{
	border:1px solid #dcdcdc;
	padding:4px 20px;
	display:inline-block;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	color:#666666;
	margin:0px 5px 5px 0;
}
.portfolio-list02 .filters a:hover{
	color:#20a3f0;
	text-decoration:none;
}
.portfolio-list02 .filters a.active{
	background-color:#20a3f0;
	border-color:#20a3f0;
	color:#FFF!important;
}
.portfolio-list02 .portfolio-mian{
	display:none;
	color:#FFF;
	text-align:center;
}
.portfolio-list02 .element-box {
	position:relative;
}
.portfolio-list02 .portfolio-mian .element{
	float:left;
	position:relative;
}
.portfolio-list02 .portfolio-mian .element-date {
	color:#FFF;
	font-size:14px;
	margin-bottom:18px;
}
.portfolio-list02 .element-pic{
	position:relative;
	margin:0px;
	text-align:center;
}
.portfolio-list02 .element-pic:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#000;
	background-color:rgba(0,0,0,0.7);
	opacity:0;
	visibility:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list02 .element:hover .element-pic:before{
	opacity:1;
	visibility:visible;
}
.portfolio-list02 .element-info .ico{
	text-align:center;
	margin-top:18px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list02 .element-info .prolight_image_group{
	display:inline-block;
}
.portfolio-list02 .element-info .ico-left,
.portfolio-list02 .element-info .ico-right{
	width:45px;
	height:45px;
	line-height:45px;
	text-align:center;
	background-color:#20a3f0;
	display:inline-block;
	margin:0px 4px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	color:#FFF;
	font-size:18px;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
.portfolio-list02 .element-info .ico-left:hover,
.portfolio-list02 .element-info .ico-right:hover{
	background-color:#333;
}
.portfolio-list02 .portfolio-mian h3{
	margin:10px 0px 2px;
	font-size:18px;
}
.portfolio-list02 .portfolio-mian h3 a,
.portfolio-list02 .portfolio-mian h3 a:link,
.portfolio-list02 .portfolio-mian h3 a:active,
.portfolio-list02 .portfolio-mian h3 a:visited{
	font-size:18px;
	color:#FFF;
}
.portfolio-list02 .element-info {
	margin-bottom:20px ;
	position:absolute;
	top:50%;
	left:0;
	right:0;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	opacity:0;
	visibility:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list02 .element-info p{
	font-size:15px;
}
.portfolio-list02 .element-info p a, 
.portfolio-list02 .element-info p a:link, 
.portfolio-list02 .element-info p a:active, 
.portfolio-list02 .element-info p a:visited{
	color:#FFF;
}
.portfolio-list02 .portfolio-mian h3 a:hover,
.portfolio-list02 .element-info p a:hover{
	color:#20a3f0;
}
.portfolio-list02 .element:hover .element-info {
	opacity:1;
	visibility:visible;
}
.portfolio-list03-mid{
	margin:0px 20px;
}
.portfolio-list03.loading:before{
	top:100%;
	margin-top:10px;
}
.portfolio-list03 img {
	max-width:100%;
}
.portfolio-list03 .filter-box {
	margin-bottom:40px;
}
.portfolio-list03 .filters a{
	border:1px solid #dcdcdc;
	padding:4px 20px;
	display:inline-block;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	color:#666666;
	margin:0px 5px 5px 0;
}
.portfolio-list03 .filters a:hover{
	color:#20a3f0;
	text-decoration:none;
}
.portfolio-list03 .filters a.active{
	background-color:#20a3f0;
	border-color:#20a3f0;
	color:#FFF!important;
}
.portfolio-list03 .element-box{
	position:relative;
}
.portfolio-list03 .portfolio-mian .element{
	width:25%;
	float:left;
	position:relative;
}
.portfolio-list03 .portfolio-mian .element-date {
	color:#FFF;
	margin-bottom:18px;
}
.portfolio-list03 .element-pic{
	position:relative;
	text-align:center;
}
.portfolio-list03 .element-pic:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#000;
	background-color:rgba(0,0,0,0.7);
	opacity:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list03 .element:hover .element-pic:before{
	opacity:1;
}
.portfolio-list03 .element-info .ico{
	text-align:center;
	margin-top:18px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list03 .element-info .prolight_image_group{
	display:inline-block;
}
.portfolio-list03 .element-info .ico-left,
.portfolio-list03 .element-info .ico-right{
	width:45px;
	height:45px;
	line-height:45px;
	text-align:center;
	background-color:#20a3f0;
	display:inline-block;
	margin:0px 4px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	color:#FFF;
	font-size:18px;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
.portfolio-list03 .element-info .ico-left:hover,
.portfolio-list03 .element-info .ico-right:hover{
	background-color:#333;
}
.portfolio-list03 .portfolio-mian{
	color:#FFF;
	text-align:center;
}
.portfolio-list03 .portfolio-mian h3{
	margin:10px 0px 2px;
	font-size:18px;
}
.portfolio-list03 .portfolio-mian h3 a,
.portfolio-list03 .portfolio-mian h3 a:link,
.portfolio-list03 .portfolio-mian h3 a:active,
.portfolio-list03 .portfolio-mian h3 a:visited{
	font-size:18px;
	color:#FFF;
}
.portfolio-list03 .element-info {
	margin-bottom:20px ;
	position:absolute;
	top:50%;
	left:0;
	right:0;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	opacity:0;
	visibility:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list03 .element-info p{
	font-size:13px;
}
.portfolio-list03 .element-info p a, 
.portfolio-list03 .element-info p a:link, 
.portfolio-list03 .element-info p a:active, 
.portfolio-list03 .element-info p a:visited{
	color:#FFF;
}
.portfolio-list03 .portfolio-mian h3 a:hover,
.portfolio-list03 .element-info p a:hover{
	color:#20a3f0;
}
.portfolio-list03 .element:hover .element-info {
	opacity:1;
	visibility:visible;
}
.portfolio-list03 .ico{
	position:absolute;
	top:0;
	right:0;
}
.portfolio-list03 .ico span{
	width:44px;
	height:44px;
	line-height:44px;
	text-align:center;
	background-color:#20a3f0;
	color:#FFF;
	font-size:26px;
	opacity:0;
	visibility:hidden;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list03 .element:hover .ico span{
	opacity:1;
	visibility:visible;
}
.portfolio-list04-mid{
	margin:0px 20px;
}
.portfolio-list04.loading:before{
	top:100px;
}
.portfolio-list04 img {
	max-width:100%;
}
.portfolio-list04 .filter-box {
	margin-bottom:40px;
	text-align:center;
}
.portfolio-list04 .filters a{
	border:1px solid #dcdcdc;
	padding:4px 20px;
	display:inline-block;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	color:#666666;
	margin:0px 5px 5px 0;
}
.portfolio-list04 .filters a:hover{
	color:#20a3f0;
	text-decoration:none;
}
.portfolio-list04 .filters a.active{
	background-color:#20a3f0;
	border-color:#20a3f0;
	color:#FFF!important;
}
.portfolio-list04 .element{
	margin-bottom:-1px;
	transition: 		background ease-in 200ms;
	-moz-transition: 	background ease-in 200ms; /* Firefox 4 */
	-webkit-transition: background ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background ease-in 200ms; /* Opera */
	-ms-transition: 	background ease-in 200ms; /* IE9? */
	position:relative;
}
.portfolio-list04 .element:after{
	content:"";
	display:block;
	clear:both;
}
.portfolio-list04 .element-pic {
	float:left;
	margin:0px;
	position:relative;
	width:66%;
}
.portfolio-list04 .element-pic img{
	width:100%;	
}
.portfolio-list04 .element-view {
	width:34%;
	position:absolute;
	right:0;
	top:0;
	height:100%;
	padding:30px;
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */
	border:1px solid #ebebeb; 
}

.portfolio-list04 .element-view h3{
	margin:0px 0 15px;
	font-size:22px;
}
.portfolio-list04 .element-view h3 a, 
.portfolio-list04 .element-view h3 a:link, 
.portfolio-list04 .element-view h3 a:active, 
.portfolio-list04 .element-view h3 a:visited{
	color:#666666;
}
.portfolio-list04 .element-info{
	border-bottom:1px solid #dcdcdc;
	padding-bottom:7px;
	margin-bottom:20px;
	font-size:14px;
}
.portfolio-list04 .element-info .sep {
	padding:0px 5px;
}
.portfolio-list04 .element-view .more {
	color:#20a3f0;
	border:1px solid #20a3f0;
	padding:8px 11px;
	margin-top:22px;
	display:inline-block;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list04 .element:hover{
	background-color:#20a3f0;
	color:#FFF;
}
.portfolio-list04 .element .element-pic:after{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#000000;
	opacity:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list04 .element:hover .element-pic:after{
	opacity:0.5;
}
.portfolio-list04 .element:hover .element-view a, 
.portfolio-list04 .element:hover .element-view a:link, 
.portfolio-list04 .element:hover .element-view a:active, 
.portfolio-list04 .element:hover .element-view a:visited{
	color:#FFF;
}
.portfolio-list04 .element:hover .element-view .more {
	color:#FFF;
	border:1px solid #FFF;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.portfolio-list04 .element-view {
	padding:20px;
}
}

@media only screen and (max-width: 767px) {
	.portfolio-list04 .element{
		margin-bottom:20px;
	}
	.portfolio-list04 .element-pic {
		float:none;
		border:none;
		margin:0;
		position:relative;
		max-width:100%;
		width:auto;
	}
	.portfolio-list04 .element-view {
		padding:20px;
		position:static;
		height:auto;
		width:auto;
	}
}
.portfolio-list05-mid{
	margin:0px 20px;
}
.portfolio-list05.loading:before{
	top:40%;
}
.portfolio-list05 {
	overflow:hidden;
}
.portfolio-list05 img {
	max-width:100%;
}
.portfolio-list05 .filter-box {
	margin-bottom:40px;
	text-align:center;
}
.portfolio-list05 .filters a{
	border:1px solid #dcdcdc;
	padding:4px 20px;
	display:inline-block;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	color:#666666;
	margin:0px 5px 5px 0;
}
.portfolio-list05 .filters a:hover{
	color:#20a3f0;
	text-decoration:none;
}
.portfolio-list05 .filters a.active{
	background-color:#20a3f0;
	border-color:#20a3f0;
	color:#FFF!important;
}
.portfolio-list05 .element {
	float:left;
	width:25%;
}
.portfolio-list05 .element-view{
	position:absolute;
	top:50%;
	left:0;
	right:0;
	text-align:center;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	color:#FFF;
}
.portfolio-list05 .element .element-box:before{
	content:"";
	position:absolute;
	bottom:0;
	right:0;
	left:0;
	top:0;
	background-color:#000;
	opacity:0.5;
}
.portfolio-list05 .element-view h3{
	font-size:22px;
}
.portfolio-list05 .element-view a,
.portfolio-list05 .element-view a:link,
.portfolio-list05 .element-view a:active,
.portfolio-list05 .element-view a:visited{
	color:#FFF;
}
.portfolio-list05 .element-view,
.portfolio-list05 .element .element-box:before{
	opacity:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list05 .element:hover .element-view{
	opacity:1;
}
.portfolio-list05 .element:hover .element-box:before{
	opacity:0.5;
}
.portfolio-list05 .element-box {
	position:relative;
}
.portfolio-list05 .portfolio-mian{
}
.portfolio-list05 .line:after,
.portfolio-list05 .line:before,
.portfolio-list05 .element-pic:after,
.portfolio-list05 .element-pic:before {
	content:"";
	width:100px;
	height:100px;
	position:absolute;
	opacity:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list05 .element-box:hover .line:after,
.portfolio-list05 .element-box:hover .line:before,
.portfolio-list05 .element-box:hover .element-pic:after,
.portfolio-list05 .element-box:hover .element-pic:before {
	opacity:1;
}

.portfolio-list05 .line:after{
	border-left:1px solid #ffffff;
	border-top:1px solid #ffffff;
	left:20px;
	top:20px;
}
.portfolio-list05 .line:before{
	border-right:1px solid #ffffff;
	border-bottom:1px solid #ffffff;
	right:20px;
	bottom:20px;
}
.portfolio-list05 .element-pic:after{
	border-left:1px solid #ffffff;
	border-bottom:1px solid #ffffff;
	left:20px;
	bottom:20px;
}
.portfolio-list05 .element-pic:before{
	border-right:1px solid #ffffff;
	border-top:1px solid #ffffff;
	right:20px;
	top:20px;
}
.portfolio-list05 .element-date{
	margin-bottom:20px;
	font-size:16px;
}
.portfolio-list05 .loadmore{
	display:inline-block;
	min-width:300px;
	max-width:100%;
	text-align:center;
	padding:16px 20px;
	background-color:#20a3f0;
	color:#FFF;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	margin-top:60px;
	font-size:15px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list05 .loadmore:hover{
	text-decoration:none;
	background-color:#333;
}
@media only screen and (max-width: 767px) {
	.portfolio-list05 .line:after,
	.portfolio-list05 .line:before,
	.portfolio-list05 .element-pic:after,
	.portfolio-list05 .element-pic:before {
		width:30px;
		height:30px;
	}
}
.portfolio-list06.loading:before {
	top:100px;
}

.portfolio-list06-mid{
	margin:0px 20px;
}
.portfolio-list06 {
	overflow:hidden;
}
.portfolio-list06 img {
	max-width:100%;
}
.portfolio-list06 .filter-box {
	margin-bottom:40px;
	text-align:center;
}
.portfolio-list06 .filters a{
	border:1px solid #dcdcdc;
	padding:4px 20px;
	display:inline-block;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	color:#666666;
	margin:0px 5px 5px 0;
}
.portfolio-list06 .filters a:hover{
	color:#20a3f0;
	text-decoration:none;
}
.portfolio-list06 .filters a.active{
	background-color:#20a3f0;
	border-color:#20a3f0;
	color:#FFF!important;
}
.portfolio-list06 .element {
	float:left;
}
.portfolio-list06 .element-view{
	position:absolute;
	top:50%;
	left:0;
	right:0;
	text-align:center;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	color:#FFF;
}
.portfolio-list06 .element-date{
	margin-bottom:20px;
}

.portfolio-list06 .element .element-pic:before {
	content:"";
	position:absolute;
	bottom:0;
	right:0;
	left:0;
	top:0;
	background-color:#000;
	opacity:0.5;
}
.portfolio-list06 .element-view h3{
	font-size:22px;
	margin-bottom:15px;
}
.portfolio-list06 .element-view a,
.portfolio-list06 .element-view a:link,
.portfolio-list06 .element-view a:active,
.portfolio-list06 .element-view a:visited{
	color:#FFF;
}
.portfolio-list06 .element-view,
.portfolio-list06 .element .element-pic:before{
	opacity:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-list06 .element:hover .element-view{
	opacity:1;
}
.portfolio-list06 .element:hover .element-pic:before{
	opacity:0.5;
}
.portfolio-list06 .element-box {
	position:relative;
}
.portfolio-list06 .portfolio-mian{
	display:none;
}
.portfolio-list06 .element-category {
	background-color:#20a3f0;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	display:inline-block;
	padding:2px 8px;
}
.portfolio-list06 div.element-category a:hover{
	color:#FFF;
}


/*detail*/

.portfolio-detail .detail-port-nav{
	border-bottom:1px solid #ebebeb;
	margin-bottom:80px;
	font-size:20px;
	padding-bottom:12px;
}
.portfolio-detail .detail-port-nav .nav-return{
	display:inline-block;
	border:1px solid #20a3f0;
	width:38px;
	height:38px;
	line-height:38px;
	text-align:center;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}
.portfolio-detail .detail-port-nav .nav-prev ,
.portfolio-detail .detail-port-nav .nav-next {
	float:right;
	width:38px;
	height:38px;
	line-height:38px;
	text-align:center;
}
.portfolio-detail .detail-port-nav .fa{
	margin:0;
}
.portfolio-detail .detail-title{
	color:#666666;
	font-size:18px;
	margin:0 0 3px;
}
.portfolio-detail .detail-info{
	color:#666666;
	margin-bottom:20px;
}
.portfolio-detail .sep{
	padding:0px 5px;
}
.portfolio-detail .fa {
	margin-right:3px;
}
.portfolio-detail .detail-preview {
	display:inline-block;
	border:1px solid #20a3f0;
	padding:10px 20px;
	margin:30px 0;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	color:#20a3f0;
	font-size:14px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-detail .detail-preview:hover {
	text-decoration:none;
	color:#FFF;
	background-color:#20a3f0;
}

.portfolio-detail .detail-skills dt{
	margin-bottom:10px;
	font-size:13px;
}
.portfolio-detail .detail-skills dd{
	color:#999999;
	font-size:13px;
}
.portfolio-detail .detail-skills dd .fa{
	color:#20a3f0;
	font-size:13px;
	margin:0px 3px 0 0;
}
.portfolio-detail .detail-info2{
	color:#666;
	font-size:14px;
}
.portfolio-detail .detail-info2 dt{
	float:left;
	width:30%;
	color:#666666;
	font-size:14px;
	font-weight:normal;
}
.portfolio-detail .detail-info2 dl{
	margin:0;
	padding:10px 0;
	border-bottom:1px solid #eeeeee;
}
.portfolio-detail .detail-info2 dl:after{
	content:"";
	clear:both;
	display:block;
}
.portfolio-detail .detail-info2 dd{
	overflow:hidden;
}
.portfolio-detail .detail-author{
	border-top:1px solid #ebebeb;
	border-bottom:1px solid #ebebeb;
	padding:30px 40px;
	margin-bottom:60px;
}
.portfolio-detail .detail-author:after{
	content:"";
	clear:both;
	display:block;
}
.portfolio-detail .detail-author .author-portrait{
	float:left;
	margin-right:55px;
	text-align:center;
}
.portfolio-detail .detail-author .author-portrait img{
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	margin-bottom:25px;
}
.portfolio-detail .detail-author a{
	width:25px;
	height:25px;
	line-height:25px;
	text-align:center;
	display:inline-block;
	background-color:#f4f4f4;
	color:#000000;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-detail .detail-author a:hover{
	color:#FFF;
}

.portfolio-detail .detail-author .author-right{
	overflow:hidden;
}
.portfolio-detail .detail-author .author-right .author-title {
	color:#555555;
	font-size:14px;
} 
.portfolio-detail .detail-author .author-right .author-title span{
	display:block;
	color:#666666;
	font-size:13px;
	font-weight:normal;
} 

.portfolio-detail .detail-author2{
	padding:30px 40px;
	margin-bottom:60px;
	background-color:#f8f8f8;
}
.portfolio-detail .detail-author2:after{
	content:"";
	clear:both;
	display:block;
}
.portfolio-detail .detail-author2 .author-portrait{
	float:left;
	margin-right:55px;
	text-align:center;
}
.portfolio-detail .detail-author2 .author-portrait img{
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	margin-bottom:25px;
}
.portfolio-detail .detail-author2 a{
	width:25px;
	height:25px;
	line-height:25px;
	text-align:center;
	display:inline-block;
	background-color:#f4f4f4;
	color:#000000;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}

.portfolio-detail .detail-author2 .author-right{
	overflow:hidden;
}
.portfolio-detail .detail-author2 .author-right .author-title {
	color:#555555;
	font-size:14px;
} 
.portfolio-detail .detail-author2 .author-right .author-title span{
	display:block;
	color:#666666;
	font-size:13px;
	font-weight:normal;
} 

@media only screen and (max-width: 767px) {
	.portfolio-detail .detail-author,
	.portfolio-detail .detail-author2{
		padding:0;
		border:none;
	}
	.portfolio-detail .detail-author .author-portrait,
	.portfolio-detail .detail-author2 .author-portrait{
		float:none;
		margin:0 auto 20px;	
	}
	

}


.portfolio-detail .detail-heading {
	font-size:24px;
	color:#666666;
	margin-bottom:30px;
}
.portfolio-detail .detail-related{
	font-size:15px;
	color:#666666;
	padding-bottom:20px;
}
.portfolio-detail .detail-related img{
	max-width:100%;
	margin-bottom:20px;
}
.portfolio-detail .detail-related a,
.portfolio-detail .detail-related a:link,
.portfolio-detail .detail-related a:active,
.portfolio-detail .detail-related a:visited{
	color:#666666;
}
.portfolio-detail .detail-related h3{
	margin:0 0 3px;
	color:#666666;
	font-size:18px;
}
.portfolio-detail .detail-related .date{
	font-size:14px;
	margin-bottom:15px;
	color:#666666;
}
.gallery-carousel.loading{
	display:none;
}
.gallery-carousel img {
	max-width:100%;
}
.gallery-carousel .slick-slide {
	position:relative;
	outline:none;
}
.gallery-carousel .slick-arrow{
	position:absolute;
	left:0;
	top:50%;
	border:none;
	outline:none;
	z-index:3;
	font-size:0;
	overflow:hidden;
	background-color:#20a3f0;
	width:35px;
	height:35px;
	margin-top:-18px;
	text-align:center;
	border-radius:0 2px 2px 0;
	-moz-border-radius:0 2px 2px 0;
	-webkit-border-radius:0 2px 2px 0;
	display:none;
}
.gallery-carousel .slick-arrow:before{
	content:"";
	position:absolute;
	left:50%;
	top:50%;
	width:8px;
	height:8px;
	margin:-4px 0 0 -3px;
	border-left:1px solid #FFF;
	border-bottom:1px solid #FFF;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
}

.gallery-carousel .slick-arrow.slick-next{
	left:auto;
	right:0;
}
.gallery-carousel .slick-arrow.slick-next:before{
	transform:rotate(-135deg);
	-webkit-transform:rotate(-135deg);
	left:auto;
	right:50%;
	margin:-4px -3px 0 0;
}
.gallery-carousel .slick-dots{
	text-align:center;
	padding-top:20px;
}
.gallery-carousel .slick-dots li{
	list-style:none;
	display:inline-block;
	margin:0px 5px;
}
.gallery-carousel .slick-dots li button{
	width:10px;
	height:10px;
	background:#c8c8c8;
	border:none;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	display:block;
	font-size:0;
	text-indent:-999px;
	overflow:hidden;
	padding:0;
	outline:none;
	transition: 		background-color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
.gallery-carousel .slick-dots li.slick-active button{
	background-color:#20a3f0;
}

.gallery-carousel01{
	margin-bottom:40px;
}
.gallery-carousel01 .item {
	padding:0px 10px;
}
.gallery-carousel01 .slick-slide:before {
	content:"";
	background-color:rgba(255,255,255,0.7);
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.gallery-carousel01 .slick-slide.slick-current:before {
	opacity:0;
	visibility:hidden;
}
.gallery-carousel01 .slick-arrow{
	left:2%;
	background-color:rgba(255,255,255,0.5);
	width:75px;
	height:75px;
	margin-top:-38px;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	display:none;
}
.gallery-carousel01 .slick-arrow:before{
	width:20px;
	height:20px;
	margin:-10px 0 0 -6px;
	border-left-color:#26a5ef;
	border-bottom-color:#26a5ef;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
}

.gallery-carousel01 .slick-arrow.slick-next{
	left:auto;
	right:2%;
}
.gallery-carousel01 .slick-arrow.slick-next:before{
	transform:rotate(-135deg);
	-webkit-transform:rotate(-135deg);
	left:auto;
	right:50%;
	margin:-10px -6px 0 0;
}
.gallery-carousel01 .loading:before{
	content:"";
	z-index:10;
	position:absolute;
	background:url("/Portals/_default/Skins/ForVend/images/loader.gif") no-repeat center center;
	left:50%;
	top:50%;
	width:30px;
	height:30px;
	margin:-15px 0 0 -15px;
}

.gallery-carousel02 {
	margin-bottom:40px;
}
.gallery-carousel02 .slick-arrow{
	left:1px;
}
.gallery-carousel02 .slick-arrow.slick-next{
	right:1px;
}
.gallery-carousel02 .item {
	padding:0px 1px;
}
.gallery-carousel03 {
	margin-bottom:40px;
}
.gallery-carousel03 .slick-dots {
	position:absolute;
	bottom:20px;
	left:0;
	right:0;
	margin:0;
	padding:0;
}
.gallery-carousel03 .slick-dots li{
	margin:0px 4px;
}
.gallery-carousel03 .slick-dots li button{
	border:1px solid #FFF;
	background-color:#FFF;
	width:12px;
	height:12px;
}
.gallery-carousel03 .slick-dots li.slick-active button{
	background-color:transparent;
}
.gallery-carousel04{
	margin-bottom:40px;
}
.gallery-carousel04 .slick-dots {
	position:absolute;
	bottom:20px;
	left:0;
	right:0;
	margin:0;
	padding:0;
}
.gallery-carousel04 .slick-dots li{
	margin:0px 4px;
}
.gallery-carousel04 .slick-dots li button{
	border:1px solid #FFF;
	background-color:#FFF;
	width:12px;
	height:12px;
}
.gallery-carousel04 .slick-dots li.slick-active button{
	background-color:transparent;
}


.portfolio-detail .gallery-img{
	margin-bottom:40px;
}
.portfolio-detail .gallery-img img{
	max-width:100%;
}



/**/
.portfolio-search {
	position:relative;
}
.portfolio-search .textbox{
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
    display: inline-block;
    margin: 0px;
    padding: 11px 50px 11px 10px;
    font-size: 14px;
    line-height: 20px;
    color: #555555;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #ffffff;
    border: 1px solid #c8c8c8;
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
	width:100%;
	outline:none;
}
.portfolio-search .submit{
	position:absolute;
	top:0;
	right:0;
	height:100%;
	width:40px;
	border:none;
	background:none;
}
.portfolio-search:before{
	content:"\f002";
	font-family:"FontAwesome";
	position:absolute;
	top:0;
	right:0;
	height:100%;
	width:40px;
	text-align:center;
	line-height:44px;
	color:#20a3f0;
	font-size:16px;
}
.portfolio-title01 {
	font-size:20px;
	color:#20a3f0;
	margin-bottom:12px;
	line-height:1.2;
	font-weight:bold
}
.portfolio-categories,
.portfolio-categories ul{
	list-style:none;
	margin:0;
	padding:0;
}
.portfolio-categories > li,
.portfolio-categories > li > ul > li{
	background-color:#fcfcfc;
	position:relative;
}
.portfolio-categories > li > a,
.portfolio-categories > li > ul > li > a{
	padding:10px 12px;
	color:#444444;
	display:block;
	font-weight:bold;
	border-top:1px solid #ffffff;
	border-bottom:1px solid #f5f5f5;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
} 

.portfolio-categories  a:hover {
	text-decoration:none;
}
.portfolio-categories > li > .arrow{
	content:"";
	width:22px;
	height:22px;
	line-height:18px;
	text-align:center;
	border:2px solid #666666;
	position:absolute;
	top:12px;
	right:11px;
	display:inline-block;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	cursor:pointer;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
} 
.portfolio-categories > li > .arrow:before{
	content:"";
	border:5px solid transparent;
	border-bottom-width:0px;
	border-top-color:#666666;
	display:inline-block;
	vertical-align:middle;	
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-categories > li > .arrow:after{
	content:"";
	position:absolute;
	top:-12px;
	left:-12px;
	bottom:-12px;
	right:-12px;
}
.portfolio-categories > li.active > a {
	background-color:#20a3f0;
	color:#FFF;
}
.portfolio-categories > li.active > .arrow{
	border-color:#FFF;
}
.portfolio-categories > li.active > .arrow:before{
	transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
	border-top-color:#FFF;
}
.portfolio-categories ul li > .arrow{
	content:"";
	width:45px;
	height:45px;
	line-height:18px;
	text-align:center;
	position:absolute;
	top:0px;
	right:0px;
	display:inline-block;
	cursor:pointer;
} 
.portfolio-categories ul li > .arrow:before{
	content:"";
	border-bottom:2px solid #999999;
	display:inline-block;
	vertical-align:middle;
	width:10px;
	position:absolute;
	left:50%;
	top:50%;
	margin:-1px 0 0 -5px;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
} 

.portfolio-categories ul li > .arrow:after{
	content:"";
	border-left:2px solid #999999;
	display:inline-block;
	vertical-align:middle;	
	height:10px;
	position:absolute;
	left:50%;
	top:50%;
	margin:-5px 0 0 -1px;
	visibility:visible;
	opacity:1;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
} 
.portfolio-categories ul li.active > .arrow:after{
	visibility:hidden;
	opacity:0;
}
.portfolio-categories ul li.active > a{
	color:#20a3f0;
	background-color:#f5f5f5;
}
.portfolio-categories ul ul li a{
	padding:10px 12px;
	color:#999999;
	display:block;
}
.portfolio-categories ul li a:hover{
	color:#20a3f0;
}
.portfolio-categories ul {
	display:none;
}
.portfolio-categories .current > ul{
	display:block;
}
.portfolio-photolist {
	margin:0 0 0 -2px;
	padding:0;
	font-size:0;
}
.portfolio-photolist li{
	list-style:none;
	display:inline-block;
	margin:0 0 3px 2px;
	font-size:13px;
}



.portfolio-tag a{
	display:inline-block;
	margin:0 7px 5px 0;
	border:1px solid #e5e5e5;
	padding:1px 12px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.portfolio-tag a, 
.portfolio-tag a:link, 
.portfolio-tag a:active, 
.portfolio-tag a:visited{
	color:#666666;
	text-decoration:none;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.portfolio-tag a:hover{
	border-color:#20a3f0;
	color:#20a3f0;
	text-decoration:none
}
.imgbox-title {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:30px;
}
.imgbox-title h3{
	font-size:30px;
	color:#3c3c3c;
	position:relative;
	font-weight:normal;
	line-height:1.2;
	margin:0;
}
.imgbox-title .line{
	position:relative;
	display:inline-block;
	font-size:20px;
	color:#333333;
	width:150px;
	height:30px;
	border-bottom:1px solid #d0d0d0;
}
.imgbox-title .line:after{
	content:"";
	width:9px;
	height:9px;
	position:absolute;
	bottom:2px;
	left:50%;
	margin-left:-4px;
	background-color:#20a3f0;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
}
.imgbox01{
  border:1px solid #dedede;
  text-align:center;
  padding:28px 10px 10px 10px;
  margin:0 0 20px 0;
        transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.imgbox01:hover{
	border:1px solid #20a3f0;
}
.imgbox01 .line{ 
  width:23px;
  border-top:1px solid #929292;
  margin:27px auto 0 auto;
}
.imgbox01 h3{
  font-size:15px;
  line-height: 1.2;
  font-weight:normal;
  margin:0;
  color: #424242;
  padding:13px 0 8px;
}
.imgbox01-con p {font-size: 13px;color: #666;}
.imgbox01 .imgbox01-con{
  padding:0;
}
.imgbox01-pad .col-sm-4{
  padding:0 35px;
}
.row.imgbox01-pad{
  margin-right: -35px;
  margin-left: -35px;
}
.imgbox02{
  background-color:#ececec;
  border-radius:3px;
  -moz-border-radius:3px;
  -webkit-border-radius:3px;
  text-align:center;
  padding:37px 10px 20px 10px;
  margin:0 0 20px 0;
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.imgbox02 img{
  max-width: 100%;
}
.imgbox02:hover{
	background-color:#20a3f0;
	color:#fff;
}
.imgbox02:hover .imgbox02-con h3{
	color:#fff;
}
.imgbox02 .imgbox02-con{
	padding: 0;
}
.imgbox02 .imgbox02-con h3{
	font-size:16px;
	line-height:1.2;
  font-weight: bold;
	text-transform:uppercase;
	margin:0;
  color: #424242;
	padding:20px 0 12px 0;
  margin-bottom: 6px;
  position: relative;
	  transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.imgbox02 .imgbox02-con h3:before {
  content: "";
  width: 22px;
  height: 2px;
  background: #B0B0B0;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -11px;
  transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.imgbox02:hover .imgbox02-con h3:before {background: #fff;}
.imgbox02 .imgbox02-con p {
  color: #252525;
  transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.imgbox02:hover .imgbox02-con p {color: #fff;}

.imgbox03-bg01{
    background: url("/Portals/_default/Skins/ForVend/images/imagebox03-bg01.jpg") no-repeat center center;
    background-size: cover;
}
.imgbox03{
	text-align:center;
	color:#fff;
	border:1px solid #fff;
	transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
	margin:0 0 12px 0;
	padding-bottom:30px;
}
.imgbox03:hover,
.imgbox03:hover .imgbox03-con .btn {
	 border-color:#20a3f0;	
}
.imgbox03 img{
	width:100%;
}
.imgbox03 h3{
	font-size:15px;
	font-weight:normal;
  line-height: 1.2;
	color:#fff;
	margin: 0;
    padding: 30px 0 15px 0;
}
.imgbox03 .line{
	border-bottom:1px solid #fff;
	border-color:rgba(255,255,255,0.5);
	margin: 20px 0 20px 0;
}
.imgbox03 .imgbox03-con{
	padding:0 32px;
}
.imgbox03 .imgbox03-con .btn{
   border: 1px solid #fff;
    margin: 0 0 22px 0;
    padding: 7px 38px;
    font-size: 13px;
    color: #fff;
	display:inline-block;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.imgbox04{
  text-align:center; 
  margin:10px 0;
}
.imgbox04 img{
  padding:10px;
  border:1px solid #20a3f0;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%; 
  	transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
	max-width:100%;
}
.imgbox04:hover img{
   border:1px solid transparent !important;
}
.imgbox04 .imgbox04-con h3{
  margin:0;
  font-size:15px;
  padding:26px 0 0 0;
  color: #424242;
  font-weight: bold;
  transition: all ease-in 200ms;
  -moz-transition: all ease-in 200ms;
  -webkit-transition: all ease-in 200ms;
	-o-transition: all ease-in 200ms;
	-ms-transition: all ease-in 200ms;
}
.imgbox04:hover .imgbox04-con h3 {color: #20a3f0;}

.imgbox05{
  text-align:center;
  background-color:#efefef;
   border-radius:10px 10px 0 0; 
  -moz-border-radius:10px 10px 0 0; 
  -webkit-border-radius:10px 10px 0 0; 
  margin:0 0 20px 0;   
}
.imgbox05 img{
  width:100%; 
  border-radius:10px 10px 0 0; 
  -moz-border-radius:10px 10px 0 0; 
  -webkit-border-radius:10px 10px 0 0;    
}
.imgbox05 .imgbox05-con a {margin: 0;display: block;font-weight: bold;}
.imgbox05 .imgbox05-con p{
  padding:0 22px;
}
.imgbox05 .imgbox05-con h3{
  margin:0;
  font-size:15px;
  line-height:1.2;
  font-weight: bold;
  color: #424242;
  text-transform:uppercase;
  padding:40px 0 15px 0;
  	transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.imgbox05 .imgbox05-con .btn{
  display:block;
  background-color:#333333;
  font-size:15px;
  text-transform:uppercase;
  font-weight:bold;
  color:#fff;
  line-height:1.2;
  padding:25px 0;
  margin:33px 0 0 0;
  	transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.imgbox05:hover .imgbox05-con h3 {color: #424242 !important;}
.imgbox05:hover .imgbox05-con a[class*="btn"]{
   background:#20a3f0;
   color: #fff;
}
.imgbox06{
  float:left;
  width:25%;
  text-align:center;
}
.imgbox06 img{
 width:100%;
 border-right:1px solid #fff;
}
.imgbox06:last-child img{
 border:0;
}
.imgbox06 .imgbox06-con{
  background-color:#f9f9f9;
  border:1px solid #fff;
  border-top:0;
  padding:0 25px 20px 25px;
    	transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.imgbox06:nth-child(2) .imgbox06-con{
  border-left:0;
  border-right:0;
}
.imgbox06:last-child .imgbox06-con{
  border-left:0;
}
.imgbox06 .imgbox06-con h3{
  margin:0;
  font-size:15px; 
  line-height: 1.2;
  font-weight: bold;
  padding:35px 0 20px 0;
  color:#424242;
}
.imgbox06:hover .imgbox06-con{
  background-color:#fff;
  border-color:#dadada;
}
.imgbox06 .imgbox06-con a.btn{
  font-size:13px;
  font-weight:normal;
  color:#333333;
  display:inline-block;
  padding:0 0 10px 0;
}
.imgbox06:hover .imgbox06-con a.btn {
  color: #20a3f0;
  text-decoration: underline;
}
.imgbox07 .imgbox07-icon{
  position:relative;
}
.imgbox07 .imgbox07-icon img{
  width:100%;
}
.imgbox07 .imgbox07-icon span{
  display:block;
  position:absolute;
  left:0;
  top:0;
  width:85px;
  background-color:#F27C99;
  height:100%;
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.imgbox07 .imgbox07-icon.color-1 span{
   background-color:#30E4D1;
}
.imgbox07 .imgbox07-icon.color-3 span{
   background-color:#6cd4fe;
}
.imgbox07-icon span em{
    display: block;
    position: absolute;
    font-size: 30px;
    color: #fff;
    top: 50%;
    left: 50%;
    margin: -15px 0 0 -13px;
}
.imgbox07 .imgbox07-con h3{
  font-size:15px;
  font-weight:normal;
  margin:0;
  line-height: 1.2;
  padding:25px 0 8px 0;
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.imgbox07:hover .imgbox07-icon span{
   background-color:#20a3f0;  
}
.imgbox07:hover .imgbox07-con h3{
  color:#20a3f0;
}
/**/
.imgbox08 img{
  width:100%;
}
.imgbox08 .imgbox08-con{
  border:1px solid #d7d7d7;
  border-top:0;
  padding:20px 28px 28px;
}
.imgbox08 .imgbox08-con h3{
      margin: 0;
    font-weight: normal;
    line-height: 1.2;
    color: #424242;
    font-size: 15px;
    padding: 0 0 20px 0;
}
.imgbox08 .imgbox08-con > a[class*="btn"] {color: #333;border-color: #d7d7d7;margin: 5px 0 0;text-transform: uppercase;}
.imgbox08 .imgbox08-con > a[class*="btn"]:hover {color: #fff;border-color: #20A3F0;}
.imgbox08 .imgbox08-con .btn{
  border:1px solid #d7d7d7;
  padding:8px 15px;
  color:#333;
  text-transform:uppercase;
  margin:34px 0 0 0;
  display:inline-block;
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.imgbox08 .imgbox08-con .btn:hover{
  background-color:#20a3f0;
  border-color:#20a3f0;
  color:#fff;
  text-decoration:none;  
}
.imgbox09-bg02{
    background: url("/Portals/_default/Skins/ForVend/images/imagebox09-bg02.jpg") no-repeat center center;
    background-size: cover;
}
.imgbox09{
  background-color:#fff;
  margin:0 0 38px 0;
}
.imgbox09 img{
  float:left;
  padding:0 28px 0 0;
}
.imgbox09 .imgbox09-con{
  padding:20px 15px 20px 15px;
}
.imgbox09 .imgbox09-con h3{
  font-weight:normal;
  font-size:15px;
  line-height: 1.2;
  margin: 0;
  padding: 12px 0 15px 0;  
}
.imgbox10 {
    position: relative;
    min-height: 280px;
    margin: 50px 0 50px 30px;
    border: 1px solid #cccccc;
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.imgbox10:hover {
    background: #20a3f0;
    color: #fff;
    border: 1px solid #20a3f0;
}
.imgbox10:hover .btn {
    background: #fff!important;
    color: #20a3f0
}
.imgbox10:hover h2 {
    color: #fff;
}
.imgbox10-left {
    float: left;
    position: absolute;
    left: -30px;
    top: -30px;
	min-width:260px;
}
.imgbox10-right {
    float: right;
    padding: 40px 20px 20px 290px;
}
.imgbox10-left img {
    padding: 14px;
    -moz-box-shadow: 0 0 5px 1px #999;
    -webkit-box-shadow: 0 0 5px 1px #999;
    box-shadow: 0 0 5px 1px #999;
    background: #fff;
	width:100%;
}
.imgbox10-right h2 {
    font-size: 15px;
    font-weight: normal;
    color: #333;
    margin: 0;
	  transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.imgbox10-right p {
    margin: 0;
    padding: 15px 0 20px;
}
.imgbox10:hover .imgbox10-right a[class*="btn"] {
    color: #666;
    background: #fff;
}

@media only screen and (min-width:1600px) {
  .imagebox-title01 p {padding:0 360px;}
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .imagebox-title01 p {padding:0 250px;}
  .imgbox09 img {padding: 0 12px 0 0;}
  .imgbox09 .imgbox09-con {padding: 12px;}
  .imgbox09 .imgbox09-con h3 {padding: 0 0 8px;}
  .imgbox09 .imgbox09-con p {margin: 0;}

}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .imagebox-title01 p {padding:0 150px;}
  .imgbox01 .imgbox01-con {padding: 0;}
  .imgbox10-left {max-width: 230px;min-width: 200px;}
  .imgbox10-right {padding: 40px 20px 20px 230px;}
  .imgbox09 .imgbox09-con {padding: 0;}
  .imgbox09 {padding: 12px;}
  .imgbox09 img {padding: 0 12px 0 0;max-width: 110px;}
  .imgbox09 .imgbox09-con h3 {padding: 8px 0 5px;}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.imgbox10-right {
    float: none;
    padding: 15px;
}
.imgbox10-left {
    float: left;
    position: relative;   
}
.imgbox09 img {
    float: left;
    padding: 0 15px 0 0;
}
.imgbox06 {  
    width:50%;   
}
.imagebox-title01 p {padding:0 40px;}
.imgbox01 .imgbox01-con {padding: 0;}
.imgbox02 .imgbox02-con {padding: 0 5px;}
.imgbox03 .imgbox03-con {padding: 0 15px;}
.imgbox06:nth-child(2n+1) {clear: both;}
.imgbox07 .imgbox07-icon span {width: 60px;}
.imgbox08 {margin-bottom: 20px;}
.imgbox08 .imgbox08-con {padding: 20px 12px;}
.imgbox09 img {float: none;padding: 0;}
.imgbox09 .imgbox09-con {padding: 0;}
.imgbox09 {padding: 15px;}
.imgbox09 .imgbox09-con h3 {padding: 15px 0 5px;}
.tablet_width .col-sm-3 {width: 50%;}

}

@media only screen and (max-width: 767px) {
.imgbox10-right {
    float: none;
    padding: 15px;
}
.imgbox10-left {
    float: left;
    position: relative;  
	padding:15px;
	left:0;
	right:0;
	top:0; 
}
.imgbox10{
   margin:0 0 20px 0;
}
.imgbox06 {  
    width:100%;   
}
.imgbox06 .imgbox06-con{
  padding:0 15px 20px 15px
}
.imgbox01 .imgbox01-con {
    padding: 0 0;
}
.imgbox08 {margin-bottom: 20px;}
.imgbox09 img {float: none;padding: 0;}
}



.imagebox-title01 {
    text-align: center;
	margin-bottom:30px;
}
.imagebox-title01 h2{
    font-size: 20px;
    color: #333333;
    font-weight: normal;
    line-height: 1.2;
    display: inline-block;
    position: relative;
    padding: 0 0 20px 0;
	position:relative;
	margin:0 0 15px 0;
}
.imagebox-title01 h2:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -20px;
    width: 40px;
	background-color: #20a3f0;
	height:2px;
}
.testimonials-title01 {
    text-align: center;
  margin-bottom:30px;
}
.testimonials-title01 h2{
    font-size: 20px;
    color: #333333;
    font-weight: normal;
    line-height: 1.2;
    display: inline-block;
    position: relative;
    padding: 0 0 20px 0;
  position:relative;
  margin:0 0 15px 0;
}
.testimonials-title01 h2:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -20px;
    width: 40px;
  background-color: #20a3f0;
  height:2px;
}

/*Testimonials01-tab*/
.Testimonials01-tab{ 
  text-align:center;
  padding:0;
}
.Testimonials01-tab .Testimonials01-con{
  position:relative;
  border:1px solid #d1d1d1;
  padding:15px 25px 7px 25px;
}
.Testimonials01-tab .Testimonials01-con:before{
  content:"";
  position:absolute;
  bottom:-6px;
  left:50%;
  border-bottom: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
  background-color: #fff;
      width: 10px;
    height: 10px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  margin:0 0 0 -5px;  
}
.Testimonials01-tab img{
  width:50px;
  height:50px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  margin:20px 0 0 0;
}
.Testimonials01-tab h2{
  color:#424242;
  margin:0;
  line-height:1.2;
  padding:14px 0 0 0;
  font-weight:bold;
  font-size:15px;
}
.Testimonials01-tab h3{
  color:#666;
  font-weight:normal;
  margin:0;
  font-size:13px;
  line-height:1.2;
  padding:5px 0 0 0;
}

/*Testimonials02-tab*/
.Testimonials02-tab .last_page,
.Testimonials02-tab .next_page {
  border: none;
  text-indent: -100px;
  overflow: hidden;
  border-left: 2px solid #666666;
  border-bottom: 2px solid #666666;
  width: 18px;
  height: 18px;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  right: auto;
  left:10px;
  top: 50%;
        transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms; 
    -webkit-transition: all ease-in 200ms; 
    -o-transition: all ease-in 200ms ;
    -ms-transition: all ease-in 200ms ;
}
.Testimonials02-tab .last_page:hover, 
.Testimonials02-tab .next_page:hover{ 
  border-left: 2px solid #20a3f0;
  border-bottom: 2px solid #20a3f0;
}
.Testimonials02-tab .next_page {
  left: auto;
  right:10px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.Testimonials02-tab{
  text-align:center;
}
.Testimonials02-tab blockquote{
  font-style:normal;
  padding:0 50px; 
}
.Testimonials02-tab blockquote p{
  text-indent:inherit;
  font-style: normal;
}
.Testimonials02-tab blockquote span.pic img{
  width:90px;
  height:90px;
  border-radius:50%;
}
.Testimonials02-tab blockquote h2 {
  font-weight:bold;
  margin:0;
  line-height: 1.5;
  font-size:15px;
  color:#424242;
}
.Testimonials02-tab blockquote p {
  padding:20px 0 8px 0;
  margin:0;
}
.Testimonials02-tab blockquote h2 span {
  text-transform:capitalize;
  font-size:13px;
  font-weight: normal;
  display:block;
  color: #666;
}

/*Testimonials03-tab*/
.Testimonials03-tab blockquote{
  border:1px solid #d1d1d1;
  position:relative;
  padding:20px 20px 30px 105px;
  font-style:inherit;
}
.Testimonials03-tab blockquote p{
  text-indent:inherit;
  font-weight:normal;
  font-style: normal;
  color:#666;
}
.Testimonials03-tab .pic{
  position:absolute;
  left:20px;
  top: 25px;
  width:60px;
  height:60px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  overflow:hidden;
}
.Testimonials03-tab blockquote h2{
  font-size:15px;
  color:#20a3f0;
  font-style:inherit;
  font-weight:normal;
  margin:0;
  line-height:1.2;
  padding:18px 0 0 0;
}
.Testimonials03-tab blockquote span{  
  font-size:13px;
  color: #393939;
}
.Testimonials03-tab .dot{
  width:100%; 
  bottom:30px;
  right:15px;
  text-align:right;
}
.Testimonials03-tab .dot a{
  width:10px;
  height:10px;
  border:0;
  background-color:#e3e3e3; 
}
.Testimonials03-tab .dot a.actived{
  background-color:#20a3f0;
}

/*Testimonials04-tab*/
.Testimonials04-tab blockquote{
  font-style:inherit;
  padding:0;
}
.Testimonials04-tab blockquote p{
    font-style: normal;
    text-indent: inherit;
    border: 1px solid #d1d1d1;
    padding: 20px 20px 25px;
    position: relative;
  margin:0 0 35px 0;
}
.Testimonials04-tab blockquote p:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left:35px;
    border-bottom: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
    background-color: #fff;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    margin: 0 0 0 0;
}
.Testimonials04-tab blockquote .pic img{
  float:left;
  margin:0 20px 0 18px;
  width:50px;
  height:50px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
}
.Testimonials04-tab blockquote .pic h2{
  margin:0;
  line-height: 1.2;
  padding: 9px 0 0 0;
  font-weight:normal;
  font-size:13px;
  color:#393939;
}
.Testimonials04-tab blockquote .pic span{
  font-size:13px;
}
.Testimonials04-tab .last_page, 
.Testimonials04-tab .next_page {
    width:30px;
    height: 30px;
    right:30px;    
    font-size: 0;
    overflow: hidden;
    text-indent: -999;
  border:0;
      border-radius:50%;
    -moz-border-radius: 50%;
    -webkit-border-radius:50%;
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms; 
    -webkit-transition: all ease-in 200ms; 
    -o-transition: all ease-in 200ms ;
    -ms-transition: all ease-in 200ms ; 
  bottom:30px;
}
.Testimonials04-tab .next_page {
    margin: 0 0 0 0;
    right: 0;
    left: auto;
}
.Testimonials04-tab .last_page:hover:before{
    border-top: 2px solid #20a3f0;
    border-left: 2px solid #20a3f0;
}
.Testimonials04-tab .next_page:hover:before{
    border-right: 2px solid #20a3f0;
    border-bottom: 2px solid #20a3f0;
}
.Testimonials04-tab .last_page:before,
.Testimonials04-tab .next_page:before {
    content: "";
    border-top: 2px solid #393939;
    border-left: 2px solid #393939;
    width:16px;
    height: 16px;
    left: 50%;
    top: 50%;
    position: absolute;
    margin:-7px 0 0 -4px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
        transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms; 
    -webkit-transition: all ease-in 200ms; 
    -o-transition: all ease-in 200ms ;
    -ms-transition: all ease-in 200ms ;
}
.Testimonials04-tab .next_page:before {   
    border-top:0;
    border-left:0;
    border-right: 2px solid #393939;
    border-bottom: 2px solid #393939;
    width: 16px;
    height: 16px;
    left: 50%; 
    margin:-7px 0 0 -12px;  
}

/*Testimonials05-tab*/
.Testimonials05-tab blockquote{
  font-style:inherit;
  padding:0;
}
.Testimonials05-tab blockquote p{
    font-style: normal;
    text-indent: inherit;
    border: 1px solid #d1d1d1;
  border-top:2px solid #20a3f0;
    padding: 19px 20px 25px;
    position: relative;
  margin:0 0 35px 0;
}
.Testimonials05-tab blockquote p:before {
    content: "";
    position: absolute;
    bottom: -6px;
    left:35px;
    border-bottom: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
    background-color: #fff;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    margin: 0 0 0 0;
}
.Testimonials05-tab blockquote .pic img{
  float:left;
  margin:0 20px 0 18px;
  width:50px;
  height:50px;
}
.Testimonials05-tab blockquote .pic h2{
  margin:0;
  font-weight:normal;
  font-size:13px;
  color:#393939;
  line-height: 1.2;
  padding: 9px 0 0 0;
}
.Testimonials05-tab blockquote .pic span{
  font-size:13px;
}
.Testimonials05-tab .dot{
  right:0;
  bottom: 40px;
}
.Testimonials05-tab .dot a{
  width:10px;
  height:10px;
  border:0;
  background-color:#e3e3e3; 
}
.Testimonials05-tab .dot a.actived{
  background-color:#20a3f0;
}

/*Testimonials06-tab*/
.Testimonials06-tab blockquote{
	font-style:inherit;
	padding:0;
}
.Testimonials06-tab blockquote p{
	font-style: normal;
	text-indent: inherit;
	border: 1px solid #d1d1d1;
	border-bottom:2px solid #20a3f0;
	padding: 20px 20px 24px;
	position: relative;
	margin:0 0 35px 0;
	background-color:#e8e8e8;
}
.Testimonials06-tab blockquote p:before {
    border: 8px solid transparent;
    border-top: 8px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    left: 32px;
    bottom: 0;
    width: 0;
    margin: 0 0 -16px 0;
}
.Testimonials06-tab blockquote .pic img{
  float:left;
  margin:0 20px 0 18px;
  width:50px;
  height:50px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
}
.Testimonials06-tab blockquote .pic h2{
  margin:0;
  line-height: 1.2;
  padding: 9px 0 0 0;
  font-weight:normal;
  font-size:13px;
  color:#393939;
}
.Testimonials06-tab blockquote .pic span{
  font-size:13px;
}
.Testimonials06-tab .last_page, 
.Testimonials06-tab .next_page {
    width:30px;
    height: 30px;
    right:30px;    
    font-size: 0;
    overflow: hidden;
    text-indent: -999;
  border:0;
      border-radius:50%;
    -moz-border-radius: 50%;
    -webkit-border-radius:50%;
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms; 
    -webkit-transition: all ease-in 200ms; 
    -o-transition: all ease-in 200ms ;
    -ms-transition: all ease-in 200ms ; 
  bottom:30px;
}
.Testimonials06-tab .next_page {
    margin: 0 0 0 0;
    right: 0;
    left: auto;
}
.Testimonials06-tab .last_page:hover:before{
    border-top: 2px solid #20a3f0;
    border-left: 2px solid #20a3f0;
}
.Testimonials06-tab .next_page:hover:before{
    border-right: 2px solid #20a3f0;
    border-bottom: 2px solid #20a3f0;
}
.Testimonials06-tab .last_page:before,
.Testimonials06-tab .next_page:before {
    content: "";
    border-top: 2px solid #393939;
    border-left: 2px solid #393939;
    width:16px;
    height: 16px;
    left: 50%;
    top: 50%;
    position: absolute;
    margin:-7px 0 0 -4px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
        transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms; 
    -webkit-transition: all ease-in 200ms; 
    -o-transition: all ease-in 200ms ;
    -ms-transition: all ease-in 200ms ;
}
.Testimonials06-tab .next_page:before {   
	border-top:0;
	border-left:0;
	border-right: 2px solid #393939;
	border-bottom: 2px solid #393939;
	width: 16px;
	height: 16px;
	left: 50%; 
	margin:-7px 0 0 -12px;  
}


/* Testimonials07-tab */
.testimonials-bg01 {
    background: url("/Portals/_default/Skins/ForVend/images/testimonials/dg-testimonials-bg01.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
.Testimonials07-tab {
   text-align:center;
   padding:0 0 60px 0;
}
.Testimonials07-tab blockquote{
  position:relative;
  padding:0;
  font-style:normal;  
}
.Testimonials07-tab blockquote p{
  color:#fff;
  font-weight:normal;
  font-style: normal;
  position:relative;
  padding:0 325px;
  text-indent:inherit; 
}
.Testimonials07-tab blockquote:before{
    content: "\f10d";
    font-family: "FontAwesome";
    font-size: 46px;
    left: 180px;
    position: absolute;
    color: #fff;
    top: 50%;
    margin-top: 30px;
}
.Testimonials07-tab blockquote:after{
    content: "\f10e";
    font-family: "FontAwesome";
    font-size: 46px;
    right:180px;
    position: absolute;
  color: #fff;
    top: 50%;
    margin-top: 30px;
}
.Testimonials07-tab blockquote h2{
  text-align:center;
  font-size:15px;
  line-height: 1.7;
  font-weight: bold;
  color:#fff;
  margin:0;
  padding:20px 0 0 0;
}
.Testimonials07-tab blockquote .pic{
  margin:0;
  width:105px;
  height:105px;
  overflow:hidden;
  display:block;
  margin:0  auto 35px auto;
  border-radius: 50%;
}
.Testimonials07-tab blockquote h2 span{
  display:block;
  font-size:13px;  
  font-weight: normal;
}
.Testimonials07-tab .last_page,
.Testimonials07-tab .next_page {
  width:43px;
  height:43px;
  border:1px solid #fff;
  background-color:transparent;
  top: 35px;
  bottom: 0;
  left: 50%;
  right:auto;
  font-size:0;
  overflow: hidden;
  text-indent:-999;
  transition: all ease-in 200ms;
  -moz-transition: all ease-in 200ms; 
  -webkit-transition: all ease-in 200ms; 
  -o-transition: all ease-in 200ms ;
  -ms-transition: all ease-in 200ms ;
}
.Testimonials07-tab .last_page:hover,
.Testimonials07-tab .next_page:hover{
    background-color:#20a3f0;
  border:1px solid #20a3f0;   
}
.Testimonials07-tab .last_page {
  margin: 0 0 0 -116px;
  }
.Testimonials07-tab .next_page{
  margin: 0 0 0 72px;
  }
.Testimonials07-tab .last_page:before{
  content: "";
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  width: 8px;
  height: 8px;
  left:50%;
  top: 50%;
  position: absolute;
  margin: -4px 0 0 -2px;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  }
.Testimonials07-tab .next_page:before{
  content: "";
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 8px;
  height: 8px;
  left:50%;
  top: 50%;
  position: absolute;
  margin: -4px 0 0 -6px;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  }
.Testimonials07-tab .dot{
  width:100%;
}
.Testimonials07-tab .dot a {
    border: 2px solid #fff;
    width: 14px;
    height: 14px;
}
.Testimonials07-tab .dot a.actived,
.Testimonials07-tab .dot a:hover {
  background-color: #fff;
}

/*Testimonials08-tab*/
.Testimonials08-tab {
  padding-bottom: 30px;
}
.Testimonials08-tab blockquote{
  
  padding:0 0 30px 0;
  font-style: normal;
  margin:0;
  position:relative;
}

.Testimonials08-tab .dot {  
    width: 100%;
    text-align: center;
    bottom: 20px;
}
.Testimonials08-tab .dot a{
  width:9px;
  height:9px;
  border:0;
  background:#e3e3e3; 
}
.Testimonials08-tab .dot a.actived{
  background-color:#20a3f0;
}
.Testimonials08-tab blockquote p {   
    text-indent: inherit;   
    font-style: normal;
}
.Testimonials08-tab .testimonials08-box{
  position:relative;
  padding:0 0 0 150px;
}
.Testimonials08-tab .testimonials08-box .pic img{
  position:absolute;
  left:20px;
  top:0px;
  width:96px;
  height:96px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  border:1px solid #666666;
  padding:3px;
}
.Testimonials08-tab .testimonials08-box h2{
  font-size:15px;
  color:#242424;
  line-height: 1.7;
  font-weight: bold;
  margin:0;  
}
.Testimonials08-tab .testimonials08-box h2 span{
  display:block;
  font-weight:normal;
  color:#353535;
  font-size: 13px;
}
.Testimonials08-tab .testimonials08-box .line{
  border-bottom:1px solid #d8d8d8;
  width:140px;
  margin:15px 0 15px 0
}
.Testimonials08-tab .col-sm-4{
  border-right:1px dashed #d3d3d3;
}
.Testimonials08-tab .col-sm-4:nth-child(3n) {
  border: 0;
}



/*Testimonials09-tab*/
.Testimonials09-tab{
  text-align:center;
  border:1px solid #d2d2d2;
  border-radius:5px;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
}

.Testimonials09-tab .last_page, 
.Testimonials09-tab .next_page {
    width: 44px;
    height: 44px;
    top:50%;
    margin-top: -22px;  
    left: 78px;
    border:1px solid #e4e4e4;
    font-size: 0;
    overflow: hidden;
    text-indent: -999;  
      border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
      transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms; 
    -webkit-transition: all ease-in 200ms; 
    -o-transition: all ease-in 200ms ;
    -ms-transition: all ease-in 200ms ;
}
.Testimonials09-tab .next_page{
    right: 78px;
    left: auto;
}
.Testimonials09-tab .last_page:hover, 
.Testimonials09-tab .next_page:hover{
   border:1px solid #999;
}
.Testimonials09-tab .last_page:before,
.Testimonials09-tab .next_page:before {
    content: "";
    border-top: 1px solid #e4e4e4;
    border-left: 1px solid #e4e4e4;
    width: 8px;
    height: 8px;
    left: 50%;
    top: 50%;
    position: absolute;
    margin: -4px 0 0 -2px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms; 
    -webkit-transition: all ease-in 200ms; 
    -o-transition: all ease-in 200ms ;
    -ms-transition: all ease-in 200ms ;
}
.Testimonials09-tab .next_page:before {   
    border-top:0;
    border-left:0;
    border-right: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    margin: -4px 0 0 -6px;
}
.Testimonials09-tab .last_page:hover:before{
    border-top: 1px solid #999;
    border-left: 1px solid #999;
}
.Testimonials09-tab .next_page:hover:before{
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
}
.Testimonials09-tab blockquote{
  padding:58px 30px 100px 30px;
  color:#666;
  margin: 0;
}
.Testimonials09-tab blockquote p{
  color:#666;
  font-style: normal;
}
.Testimonials09-tab blockquote .pic{
  display:block;
  padding:0 0 25px;
}
.Testimonials09-tab blockquote .pic img{
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  width:76px;
  height:76px;
}
.Testimonials09-tab blockquote h2{
  color:#353535;
  font-size:15px;
  font-weight: bold;
  font-style:normal;
  margin:0;
  padding:15px 0 0 0;
  line-height: 1.2;
}
.Testimonials09-tab blockquote h2 span{
  display:block;
  font-weight:normal;
  font-size:13px;
  padding-top: 10px;
}
.Testimonials09-tab .dot {width: 100%;text-align: center;bottom: 56px;}
.Testimonials09-tab .dot a {
  width: 9px;
  height: 9px;
  background: #e3e3e3;
  border: 0;
}
.Testimonials09-tab .dot a.actived {background: #20A3F0;}

/*Testimonials10-tab*/
.testimonials-bg02{
    background: url("/Portals/_default/Skins/ForVend/images/testimonials/dg-testimonials-bg02.jpg") no-repeat center center;
    background-size: cover;
  text-align:center;
  color:#fff;
  background-attachment: fixed;
}

.Testimonials10-tab {
  overflow: hidden;
}
.Testimonials10-tab blockquote {
  padding: 0px 0px 25px;
  margin: 0px;
}
.Testimonials10-tab blockquote p {
  color: #8a8a8a;
  font-size: 16px;
  line-height: 1.8;
  padding: 0px;
  margin: 0px;
  text-indent: 0px;
  font-style:normal;
}
.Testimonials10-tab blockquote small {
  font-size: 16px;
  color: #3b9cf7;
  position: static;
  text-align: center;
  padding-top: 12px;
  font-style:normal;
}
.Testimonials10-tab blockquote small:before {
  content: "";
}
.Testimonials10-tab .pic_name {
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  font-weight:normal;
  margin: 0;  
}
.Testimonials10-tab h2.testimonials-circle-title{
   margin:0 0; 
   padding:0;
}
.slider_wrapper.Testimonials10-tab .circle_slider_nav_right.circle_slider_no_border span {  
    background: url("/Portals/_default/Skins/ForVend/images/testimonials/testimonials-circle.png") no-repeat right 8px !important;

}
.slider_wrapper.Testimonials10-tab .circle_slider_nav_left.circle_slider_no_border span{
    background: url("/Portals/_default/Skins/ForVend/images/testimonials/testimonials-circle.png") no-repeat left 8px !important;
}
.slider_wrapper.Testimonials10-tab span.all_around_text_span_down {
    padding: 10px 0 0 0!important;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
}
h2.Testimonials10-tab-title {
    font-size: 15px;
    font-style: italic;
    font-weight: bold;
    color: #20A3F0;
    line-height: 1.5;
    margin: 0;
    padding: 0 0 8px 0;
}
.Testimonials10-tab .slider_item .slider_wrap > div {
  padding-left: 30px;
  padding-right: 30px;
}

/*Testimonials11-tab*/
.Testimonials11-tab .testimonials11-box{
  position:relative;
  padding:15px 15px 15px 135px;

}
.Testimonials11-tab .testimonials11-box .pic img{
  position:absolute;
  left:20px;
  top:20px;
  width:96px;
  height:96px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  padding:0px;
}
.Testimonials11-tab .testimonials11-box h2{
  font-size:15px;
  color:#242424;
  margin:20px 0 0 0;  
  line-height: 1.5;
  font-weight: bold;
}
.Testimonials11-tab .testimonials11-box h2 span{
  display:block;
  font-size: 13px;
  font-weight:normal;
  color:#353535;
}
.Testimonials11-tab .testimonials11-box p {min-height: 92px;}
.Testimonials11-tab .col-sm-4{
  border-right:1px dashed #d3d3d3;
}
.Testimonials11-tab .row .col-sm-4 {padding: 25px 15px;border-bottom: 1px dashed #d3d3d3; }
.Testimonials11-tab .row:first-child .col-sm-4 {padding: 0 15px 25px;}
.Testimonials11-tab .row:last-child .col-sm-4 {padding: 25px 15px 0;border-bottom: 0;}
.Testimonials11-tab .row .col-sm-4:nth-child(3n) {border-right: 0;}




@media only screen and (min-width:1600px) {
  .testimonials-title01 p {padding:0 360px;}
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .testimonials-title01 p {padding:0 250px;}
  .Testimonials11-tab .testimonials11-box p {min-height: 161px;}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonials-title01 p {padding:0 150px;}
  .Testimonials07-tab blockquote p {padding: 0 90px;}
  .Testimonials07-tab blockquote:before {left: 0;}
  .Testimonials07-tab blockquote:after {right: 0;}
  .Testimonials08-tab .testimonials08-box .pic img {left: 0;}
  .Testimonials08-tab .testimonials08-box {padding: 0 0 0 110px;}
  .Testimonials11-tab .testimonials11-box .pic img {left: 0;}
  .Testimonials11-tab .testimonials11-box {padding: 15px 15px 15px 110px;}
  .Testimonials11-tab .testimonials11-box p {min-height: 184px;}

}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonials-title01 p {padding:0 40px;}
  .Testimonials02-tab .last_page {left: 3px;}
  .Testimonials02-tab .next_page {right: 3px;}
  .Testimonials02-tab blockquote {padding: 0 15px;}
  .Testimonials03-tab blockquote {padding: 20px 20px 30px;}
  .Testimonials03-tab .pic {position: static;margin-bottom: 10px;}
  .Testimonials07-tab blockquote p {padding: 0 120px;}
  .Testimonials07-tab blockquote:before {left: 20px;}
  .Testimonials07-tab blockquote:after {right: 20px;}
  .Testimonials08-tab .testimonials08-box {padding: 0;}
  .Testimonials08-tab .testimonials08-box .pic img {position: static;margin-bottom: 10px;}
  .Testimonials11-tab .testimonials11-box {padding: 0;}
  .Testimonials11-tab .testimonials11-box .pic img {position: static;margin-bottom: 10px;}
  .Testimonials11-tab .testimonials11-box p {min-height: 138px;}
}

@media only screen and (max-width: 767px) {
  .Testimonials01-tab {padding-bottom: 20px;}
  .Testimonials02-tab blockquote {padding: 0 30px;}
  .Testimonials07-tab blockquote p {padding: 0;}
  .Testimonials07-tab blockquote:before {display: none;}
  .Testimonials07-tab blockquote:after {display: none;}
  .Testimonials08-tab .testimonials08-box {padding: 0 0 30px;}
  .Testimonials08-tab .testimonials08-box .pic img {position: static;margin-bottom: 10px;}
  .Testimonials08-tab .row .col-sm-4 {border: 0;}
  .Testimonials09-tab blockquote p {text-indent: 0;}
  .Testimonials09-tab .last_page, .Testimonials09-tab .next_page {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
  .Testimonials09-tab .last_page {left: 5px;}
  .Testimonials09-tab .next_page {right: 5px;}
  .Testimonials11-tab .testimonials11-box {padding: 0;}
  .Testimonials11-tab .testimonials11-box .pic img {position: static;margin-bottom: 10px;}
  .Testimonials11-tab .row .col-sm-4 {border: 0;}
  .Testimonials11-tab .testimonials11-box h2 {margin: 10px 0 0 0;}
  .Testimonials11-tab .testimonials11-box p {min-height: 0px;}
}
/*chart*/
.chart-list01 {
	text-align: center;
}
.chart-list01 .list-percentage1 {
	position: relative;
	margin: 0 auto 0 auto;
	width: 175px;
	height: 175px;
}
.chart-list01 .percentage_inner {
	width:110px;
	height:110px;
	line-height:110px;
	text-align:center;
	font-size:30px;
	color:#000000;
	margin:auto;
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
	background-color:#e9e9e9;
	position:absolute;
	left:50%;
	top:50%;
	margin:-55px 0 0 -55px;
}
.chart-list01 p{
	font-size:15px;
	margin:0;
	padding:10px 0 20px 0;
	color:#333333;
}
.chart-list01 .color-1 {
    color: #20a3f0;
}
.chart-list01 .color-2 {
    color: #7770cc;
}
.chart-list01 .color-3 {
    color: #b75ccd;
}
.chart-list01 .color-4 {
    color: #4680dd;
}
/*chart-list02*/
.chart-list02 .list-percentage2{
	text-align:center;
	color:#20a3f0;
	position:relative;
	}
.chart-list02 .list-percentage2 .percentage_inner{
    position: absolute;
    line-height: 172px!important;
    text-align: center;
    width: 172px;
    height: 172px;
    font-size: 24px;
    color: #20a3f0;
    margin: 0 auto;
    left: 50%;
    margin: 0 0 0 -86px;
	font-size:30px;
	font-weight:bold;
	}
.chart-list02 h6{
	font-size:15px;
	color:#333;
	text-align:center;
	font-weight:blod;
	margin:10px 0 20px 0;
	}
/*chart-list03*/
.chart-list03 .list-percentage3{
	text-align:center;
	color:#fff;
	position:relative;
	}
.chart-list03 .list-percentage3 .percentage_inner{
    position: absolute;
    line-height: 124px!important;
    text-align: center;
    width: 124px;
    height: 124px;
    font-size: 20px;
    color: #fff;
    margin: 0 auto;
    left: 50%;
    margin: 0 0 0 -62px;	
	font-weight:normal;
	}
.chart-list03 h6{
	font-size:15px;
	color:#fff;
	text-align:center;
	font-weight:normal;
	margin:20px 0 0 0;
	}
.chart-list03 .color-1{
  background-color:#fbc166;
}
.chart-list03 .color-2{
  background-color:#ef8494;
}
.chart-list03 .color-3{
  background-color:#1bbc9b;
}
.chart-list03 .color-4{
  background-color:#20a3f0;
}
.chart-list03 div[class^="color"]{
  padding:40px 0;
  border-radius:5px;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
  margin-bottom:20px;
}
/*chart-list04*/
.chart-bg01{
    background-image: url("/Portals/_default/Skins/ForVend/images/chart-bg01.jpg");
    background-attachment: fixed;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}
.chart-list04 .list-percentage4{
	text-align:center;
	color:#20a3f0;
	position:relative;
	}
.chart-list04 .list-percentage4 .percentage_inner{
    position: absolute;
    line-height: 86px!important;
    text-align: center;
    width: 86px;
    height: 86px;
    font-size: 20px;
    color: #20a3f0;
    margin: 0 auto;
    left: 50%;
    margin: 0 0 0 -43px;	
	font-weight:bold;
	}
.chart-list04 p{
    font-size: 15px;
    color: #fff;
    text-align: center;
    font-weight: blod;
    margin: 20px 0 20px 0;
    position: relative;
	}
.chart-list04 p:before{
    content: "";
    width: 30px;
    margin: 0 auto;
    border-top: 1px solid #fff;
    position: absolute;
    left: 50%;
    margin: 0 0 0 -15px;
    top: -8px;
}
/*chart-list05*/
.chart-list05 .list-percentage5{
	text-align:center;
	color:#20a3f0;
	position:relative;
	}
.chart-list05 .list-percentage5 .percentage_inner{
    position: absolute;
    line-height: 202px!important;
    text-align: center;
    width: 202px;
    height: 202px;
    font-size: 24px;
    color: #373737;
    margin: 0 auto;
    left: 50%;
    margin: 0 0 0 -101px;
	font-size:30px;
	}
.chart-list05 h6{
	font-size:15px;
	color:#373737;
	text-align:center;
	margin:20px 0 20px 0;
	font-weight:normal;
	}
/*chart-list06*/
.chart-list06 {
    margin: 0 auto 0;
    position: relative;
    color: #3cceda;
    text-align: center;
}
.chart-list06 .sector_info{
   font-size:30px;
   color:#323232;
}
.chart-list06 .sector_info b {
    display: none;
}
.chart-list06 p{
   font-size:13px;
   color:#323232;
   margin:0 0 20px 0;
}
.chart-list06 .color-1 {
    color: #20a3f0;
}
.chart-list06 .color-2 {
    color: #7770cc;
}
.chart-list06 .color-3 {
    color: #b75ccd;
}
.chart-list06 .color-4 {
    color: #4680dd;
}
/*chart-list07*/
.chart-list07 .list-percentage7{
	text-align:center;
	color:#20a3f0;
	position:relative;
	}
.chart-list07 .list-percentage7 .percentage_inner{
    position: absolute;
    line-height: 172px!important;
    text-align: center;
    width: 172px;
    height: 172px;
    font-size: 30;
    color: #20a3f0;
    margin: 0 auto;
    left: 50%;
    margin: 0 0 0 -86px;
	font-size:30px;
	font-weight:bold;
	}
.chart-list07 .list-percentage7 .percentage_inner:before{
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-box-shadow: 0 0px 5px 1px #eee;
    -webkit-box-shadow: 0 0px 5px 1px #eee;
    box-shadow: 0 0px 5px 1px #eee;
    height: 144px;
    width: 144px;
    position: absolute;
    content: "";
    left: 50%;
    margin: 15px 0 0 -72px;
	border: 1px solid #eee;
}
.chart-list07 .list-percentage7 .percentage_inner:after{
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-box-shadow: 0 0px 5px 1px #eee;
    -webkit-box-shadow: 0 0px 5px 1px #eee;
    box-shadow: 0 0px 5px 1px #eee;
    height: 180px;
    border: 1px solid #eee;
    width: 180px;
    position: absolute;
    content: "";
    left: 50%;
    margin: -3px 0 0 -90px;
}
.chart-list07 h6{
	font-size:15px;
	color:#333;
	text-align:center;
	font-weight:blod;
	margin:20px 0 10px 0;
	text-transform:uppercase;
	}
.chart-list07 p{
  text-align:center;
  margin:0 0 20px 0;
}
/*chart-list08*/
.chart-bg02{
    background-image: url("/Portals/_default/Skins/ForVend/images/chart-bg02.jpg");
    background-attachment: fixed;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;	
}
.chart-list08{
   text-align:center;
}
.chart-list08 .list-percentage8{
	text-align:center;
	color:#20a3f0;
	position:relative;
	}
.chart-list08 .list-percentage8 .percentage_inner{
    position: absolute;
    line-height: 172px!important;
    text-align: center;
    width: 172px;
    height: 172px;
    font-size: 24px;
    color: #20a3f0;
    margin: 0 auto;
    left: 50%;
    margin: 0 0 0 -86px;
	font-size:30px;
	font-weight:bold;
	}
.chart-list08 h6{
	font-size:15px;
	color:#fff;
	text-align:center;
	font-weight:normal;	
	margin:10px 0 25px 0;
	position:relative;
	}
.chart-list08 p{
   margin:0 0 20px 0;
 }
.chart-list08 h6:before{
  width:34px;
  border-bottom:1px solid #d0cfcd;
  content:"";
  position:absolute;
  left:50%;
  margin:0 0 0 -17px;
  bottom:-15px;
}
/*chart-list09*/
.chart-list09{
    text-align:center;
}
.chart-list09 .list-percentage9{
	text-align:center;
	color:#20a3f0;
	position:relative;
	margin:0 0 60px 0;
	}
.chart-list09 p{
   margin:0 0 20px 0;
 }
.chart-list09 .list-percentage9:before{
  background-color:rgba(255,255,255,0.2);
  content:"";
  position:absolute;
  width:202px;
  height:202px;
      border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.chart-list09 .list-percentage9 .percentage_inner{
    position: absolute;
    text-align: center;
    font-size: 24px;
    color: #fff;
    margin: 0 auto;
    font-size: 25px;
    font-weight: bold;
    bottom: -50px;
    width: 100%;
    line-height: 1.2;
	}
.chart-list09 h6{
    font-size: 15px;
    color: #333;
    text-align: center;
    font-weight:normal;
    margin: 10px 0 0 0;
    position: absolute;
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    text-align: center;   
    left: 50%;
    top: 50%;
    margin: -70px 0 0 -70px;
    padding: 55px 15px;
    line-height: 1.2;
}
/*chart-list10*/
.chart-list10 {
	text-align: center;
}
.chart-list10 .list-percentage10 {
	position: relative;	
	width: 202px;
	height: 202px;
	color:#20a3f0;
	margin:0 auto;
}
.chart-list10 .list-percentage10:before{
   width:174px;
   height:174px;
   content:"";
   position:absolute;
   border:10px solid #2b2b2b;
        border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	margin:-87px 0 0 -87px;
	left:50%;
	top:50%;
}
.chart-list10 .percentage_inner {
	width:62px;
	height:62px;
	line-height:62px;
	text-align:center;
	font-size:15px;
	color:#fff;
	margin:auto;
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
	background-color:#2b2b2b;
	position:absolute;
	left:50%;
	top:50%;
	margin:-31px 0 0 -31px;
}
.chart-list10 p{
	font-size:15px;
	padding:0 0 0 0;
	margin:0 0 20px 0;
}
.chart-list10 h6{
   text-transform:uppercase;
   font-size:15px;
   color:#2d2d2d; 
    padding: 30px 0 10px 0;
    margin: 0;  
}
/*loaded-list01*/
.loaded-list01 {
    text-align: center;
    padding: 0 25px;
}
.loaded-list01 .loaded-decorate01 {
    display: inline-block;
    position: relative;
}
.loaded-list01 .loaded-decorate01 .fa {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 40px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: -25px 0 0 -25px;
}
.loaded-list01 .number {
    font-size: 30px;
    color: #333333;
    line-height: 1.2;
	padding:20px 0 5px 0;
}
.loaded-list01 .title {
    margin-bottom: 20px;
    font-size: 13px;
}
.loaded-list01 .color-1 {
    color: #fbc166;
}
.loaded-list01 .color-2 {
    color: #ef8494;
}
.loaded-list01 .color-3 {
    color: #20a3f0;
}
.loaded-list01 .color-4 {
    color: #1bbc9b;
}
/*loaded-list02*/
.loaded-list02 p {
    color: #000;
}
.loaded-list02 .progress {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    height: 15px;
    position: relative;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    margin: 7px 0 33px;
    overflow: visible;
}

.loaded-list02 .progress:last-child {
    margin: 0;
}
.loaded-list02 .progress > span {
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: 10;
    font-size: 13px;
    color: #000;
}
.loaded-list02 .bar {
    height: 15px;
    margin-top: -1px;
    width: 0;
    transition: width ease-in 200ms;
    -moz-transition: width ease-in 200ms;
    /* Firefox 4 */
    -webkit-transition: width ease-in 200ms;
    /* Safari and Chrome */
    -o-transition: width ease-in 200ms;
    /* Opera */
    -ms-transition: width ease-in 200ms;
    /* IE9? */
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}
.loaded-list02 .bar span {
    position: absolute;
    right: 0;
    top: -31px;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
    display: none;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
.loaded-list02 .color-1{
    background-color: #b65ccd;
}
.loaded-list02 .color-2{
    background-color: #8d6cc3;
}
.loaded-list02 .color-3{
    background-color: #20a3f0;
}
.loaded-list02 .color-4{
    background-color: #1bbc9b;
}
/*loaded-list02*/
.loaded-list03 p {
    color: #000;
}
.loaded-list03 .progress {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    height: 15px;
    position: relative;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    margin: 7px 0 33px;
    overflow: visible;
}

.loaded-list03 .progress:last-child {
    margin: 0;
}
.loaded-list03 .progress > span {
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: 10;
    font-size: 13px;
    color: #000;
}
.loaded-list03 .bar {
    height: 15px;
    margin-top: -1px;
    width: 0;
    transition: width ease-in 200ms;
    -moz-transition: width ease-in 200ms;
    /* Firefox 4 */
    -webkit-transition: width ease-in 200ms;
    /* Safari and Chrome */
    -o-transition: width ease-in 200ms;
    /* Opera */
    -ms-transition: width ease-in 200ms;
    /* IE9? */
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}
.loaded-list03 .bar span {
    position: absolute;
    right: 0;
    top: -31px;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
    display: none;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
.loaded-list03 .color-1{
    background-color: #fbc166;
}
.loaded-list03 .color-2{
    background-color: #ef8494;
}
.loaded-list03 .color-3{
    background-color: #07fbc0;
}
.loaded-list03 .color-4{
    background-color: #2b2b2b;
}
/*chart-bg04*/
.chart-bg03{
    background-image: url("/Portals/_default/Skins/ForVend/images/chart-bg03.jpg");
    background-attachment: fixed;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}
.loaded-list04 p {
    color: #fff;
}
.loaded-list04 .progress {
    background-color: #e6e6e6;
    height: 29px;
    overflow: visible;
    margin: 14px 0px 26px 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
/*		border-bottom:1px solid rgba(0,0,0,0.5);
	border-top:1px solid rgba(0,0,0,0.5);*/
}
.loaded-list04 .bar {
    height: 29px;
	position:relative;
    line-height: 29px;
    background: #20a3f0;
    background-image:linear-gradient(-45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 75%, transparent 75%, transparent);
    background-size: 20px 20px;   
    width: 0;
    position: relative;
    transition: width ease-in 200ms;
    -moz-transition: width ease-in 200ms;
    /* Firefox 4 */
    -webkit-transition: width ease-in 200ms;
    /* Safari and Chrome */
    -o-transition: width ease-in 200ms;
    /* Opera */
    -ms-transition: width ease-in 200ms;
    /* IE9? */
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
.loaded-list04 .bar span {
    position: absolute;
    right: 5px;
    top: 0px;
    font-size: 12px;
    line-height: 1;
    height: 29px;
    line-height: 29px;
    color: #FFF;
    display: none;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
/*loaded-list05*/
.loaded-list05 p {
    color: #fff;
}
.loaded-list05 .progress {
    background-color: #e6e6e6;
    height: 29px;
    overflow: visible;
    margin: 14px 0px 26px 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.loaded-list05 .bar {
    height: 29px;
	position:relative;
    line-height: 29px;
    background: #20a3f0;
/*   background-image:linear-gradient(-45deg, rgba(0, 0, 0, 0.3) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.3) 75%, transparent 75%, transparent);*/
    background-size: 20px 20px;   
	    width: 0;
    position: relative;
    transition: width ease-in 200ms;
    -moz-transition: width ease-in 200ms;
    /* Firefox 4 */
    -webkit-transition: width ease-in 200ms;
    /* Safari and Chrome */
    -o-transition: width ease-in 200ms;
    /* Opera */
    -ms-transition: width ease-in 200ms;
    /* IE9? */
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
	background:url("/Portals/_default/Skins/ForVend/images/bar-bg.jpg") no-repeat left center #20a3f0;
}
.loaded-title{
    font-size: 25px;
    line-height: 1.2;  
    position: relative;
    padding: 0 0 30px 0;
    margin: 0 0 50px 0; 
}
.loaded-title:before{
  border-bottom:2px solid #20a3f0;
  position:absolute;
  bottom:0;
  left:0;
  width:66px;
  content:"";  
}
.loaded-list05 .bar span {
    position: absolute;
    right: 5px;
    top: 0px;
    font-size: 12px;
    line-height: 1;
    height: 29px;
    line-height: 29px;
    color: #FFF;
    display: none;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
/*loaded-list06*/
.loaded-list06 p{
  font-size:13px;
}
.loaded-list06 .progress-bar{
    position:relative;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	background:0 0;
	background-color:#00bfa7;
		    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.loaded-list06 .progress-bar.color-1{
    background-color: #f9cf79;
}
.loaded-list06 .progress-bar.color-2{
    background-color: #1bbc9b;
}
.loaded-list06 .progress-bar.color-3{
    background-color: #20a3f0;
}
.loaded-list06 .progress-bar.color-4{
    background-color: #8d6cc3;
}
.loaded-list06 .progress{
    overflow:visible;
	height:15px;line-height:15px;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	margin:0 0 35px 0;
}
.loaded-list06 .progress-bar span{
    position:absolute;
	right:0;
	bottom:100%;
	background:#2c3433;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding:2px 5px;
	line-height:normal;
	font-size:12px;
	text-indent:0;
	margin-bottom:8px;
	display:none
}
.loaded-list06 .progress-bar span:before{
    border:5px solid transparent;
	border-top:5px solid #2c3433;
	content:"";
	display:block;
	position:absolute;
	left:50%;
	top:100%;
	width:0;
	margin-left:-5px
}
/*loaded-list07*/
.loaded-list07 p{
  font-size:13px;
}
.loaded-list07 .progress-bar{
    position:relative;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	background:0 0;
	background-color:#00bfa7;
		    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.loaded-list07 .progress-bar.color-1{
    background-color: #f9cf79;
}
.loaded-list07 .progress-bar.color-2{
    background-color: #1bbc9b;
}
.loaded-list07 .progress-bar.color-3{
    background-color: #20a3f0;
}
.loaded-list07 .progress-bar.color-4{
    background-color: #8d6cc3;
}
.loaded-list07 .progress{
    overflow:visible;
	height:15px;line-height:15px;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	margin:0 0 35px 0;
}
.loaded-list07 .progress-bar span{
    position:absolute;
	right:0;
	bottom:100%;
	background:#2c3433;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding:2px 5px;
	line-height:normal;
	font-size:12px;
	text-indent:0;
	margin-bottom:8px;
	display:none
}
.loaded-list07 .progress-bar span:before{
    border: 5px solid transparent;
    border-left: 8px solid #2c3433;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    width: 0;
    margin-left: 0;
    margin: -5px 0 0 0;
}
/*loaded-list08*/
.loaded-list08 .progress {
    background-color: #e6e6e6;
    height: 29px;
    overflow: visible;
    margin: 14px 0px 26px 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
	    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}
.loaded-list08 .progress .progress-bar{
    position: relative;
    height: 29px;
    line-height: 29px;
    width: 0;
    background-color: #1e7ad8;
    background: #1e7ad8;
	background: linear-gradient(left , rgb(10, 235, 255) 36% , rgb(35, 167, 244) 64%);
	background: -o-linear-gradient(left , rgb(10, 235, 255) 36% , rgb(35, 167, 244) 64%);
	background: -ms-linear-gradient(left , rgb(10, 235, 255) 36% , rgb(35, 167, 244) 64%);
	background: -moz-linear-gradient(left , rgb(10, 235, 255) 36% , rgb(35, 167, 244) 64%);
	background: -webkit-linear-gradient(left , rgb(10, 235, 255) 36% , rgb(35, 167, 244) 64%);

}
.loaded-list08 .progress-bar span {
    position: absolute;
    right: 5px;
    top: 0px;
    font-size: 12px;
    line-height: 1;
    height: 29px;
    line-height: 29px;
    color: #FFF;
    display: none;
}
/*loaded-list09*/
.loaded-list09 .progress {
    background-color: #e9e9e9;
    height: 29px;
    overflow: visible;
    margin: 14px 0px 26px 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
	    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
	border:1px solid #d6d6d6;
}
.loaded-list09 .progress .progress-bar{
    position: relative;
    height: 19px;
    line-height: 19px;
    width: 0;
    background:#1fa2f0;
	margin:4px;
		    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
.loaded-list09 .progress-bar span {
    position: absolute;
    right: 5px;
    top: 0px;
    font-size: 12px;
    line-height: 1;
    height: 20px;
    line-height: 20px;
    color: #FFF;
    display: none;
}
/*loaded-list10*/
.chart-bg04 {
    background-image: url("/Portals/_default/Skins/ForVend/images/chart-bg04.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.loaded-list10{
  position:relative;
}
.loaded-list10 .progress{
    overflow:visible;
	    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
	height:30px;
	line-height:30px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	margin:0 0 35px 0;
	position:relative;
     background:#fff;
	 border-left:1px solid #07fcbf;
	 border-right:1px solid #20a3f0
}
.loaded-list10 .progress:before{
  content:"";
  left:0;
  width:100%;
  height:30px;
  background-color:#fff;
  z-index:2;
  position:absolute;
  	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.loaded-list10 .progress-bg{
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 32px;
    background-color: #1e7ad8;
    background: #1e7ad8;
    background: -moz-linear-gradient(30deg,#07fcbf 0,#20a3f0 100%);
    background: -webkit-gradient(linear,left bottom,right top,color-stop(0%,#07fcbf),color-stop(100%,#20a3f0));
    background: -webkit-linear-gradient(30deg,#07fcbf 0,#20a3f0 100%);
    background: -o-linear-gradient(30deg,#07fcbf 0,#20a3f0 100%);
    background: -ms-linear-gradient(30deg,#07fcbf 0,#20a3f0 100%);
    background: linear-gradient(30deg,#07fcbf 0,#20a3f0 100%);
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
    z-index: 0;
}
.loaded-list10 .progress-bar{
    position:relative;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background:0 0;
	background-color:#20a3f0;
		    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
	height:22px;
	margin:4px;
	z-index:4;
}
.loaded-list10 .progress-bar span{
    position:absolute;
	right:0;
	bottom:100%;
	border:1px solid #000000;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding:2px 5px;
	line-height:normal;
	font-size:12px;
	text-indent:0;
	margin-bottom:9px;
	display:none;
	color:#000;
	background-color:#eceded;
}
.loaded-list10 .progress-bar span:before{
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    border-bottom: 1px solid #000000;
    border-right: 1px solid #000000;
    background-color: #fff;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    margin: 0 0 0 -4px;
	background-color:#eceded;
}
/*loaded-list11*/
.loaded-list11 .progress{
	background-color: transparent;
	border-radius:100px;
	-moz-border-radius:100px;
	-webkit-border-radius:100px;
	box-shadow:none;
	position:relative;
	overflow:inherit;
	margin-bottom: 27px;
	height:42px;
	border:1px solid #e1e1e1;
	}
.loaded-list11 .progress p{
	position: absolute;
	left: 30px;
	height: 100%;
	margin: 0;
	z-index: 2;
	line-height: 42px;
	color:#fff;
	font-size:13px;
	}
.loaded-list11 .progress .bar {
	border-radius:100px;
	-moz-border-radius:100px;
	-webkit-border-radius:100px;
	position: relative;
	height: 41px;
	line-height: 40px;
	text-align: right;
	color:#FFF;
	width:0;
	background-color:transparent;
	transition: 		width ease-in 200ms;
	-moz-transition: 	width ease-in 200ms; /* Firefox 4 */
	-webkit-transition: width ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		width ease-in 200ms; /* Opera */
	-ms-transition: 	width ease-in 200ms; /* IE9? */
	}
.loaded-list11 .progress.color-1 .bar{
	background-color:#fbc166;
	}
.loaded-list11 .progress.color-1 .bar span{

}
.loaded-list11 .progress.color-2 .bar{
	background-color:#ef8494;
	}
.loaded-list11 .progress.color-2 .bar span{
   color:#ef8494
}
.loaded-list11 .progress.color-3 .bar{
	background-color:#56b0ee;
	}
.loaded-list11 .progress.color-3 .bar span{
   color:#56b0ee
}
.loaded-list11 .progress.color-4 .bar{
	background-color:#1bbc9b;
	}
.loaded-list11 .progress.color-4 .bar span{
   color:#1bbc9b
}
.loaded-list11 .progress .bar span {
	position: absolute;
	top:2px;
	right: 2px;
	background: #ffffff;
	color: #313131;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	width:36px;
	height:36px;
	text-align:center;
	line-height:36px;
	padding:0;
	font-size: 12px;
	text-indent: 0;
	}
/*loaded-list12*/
.loaded-list12 .progress{
	background-color: transparent;
	border-radius:100px;
	-moz-border-radius:100px;
	-webkit-border-radius:100px;
	box-shadow:none;
	position:relative;
	overflow:inherit;
	margin-bottom: 27px;
	height:42px;
	border:1px solid #e1e1e1;
	}
.loaded-list12 .progress p{
	position: absolute;
	left: 30px;
	height: 100%;
	margin: 0;
	z-index: 2;
	line-height: 42px;
	color:#fff;
	font-size:13px;
	}
.loaded-list12 .progress.the5{
	margin-bottom:0;
	}
.loaded-list12 .progress .bar {
    background: #afbdc7;
    background-image:linear-gradient(-45deg, rgba(161, 177, 189, 1) 25%, transparent 25%, transparent 50%, rgba(161, 177, 189, 1) 50%, rgba(161, 177, 189, 1) 75%, transparent 75%, transparent);
	background-size: 40px 40px;
	border-radius:100px;
	-moz-border-radius:100px;
	-webkit-border-radius:100px;
	position: relative;
	height: 41px;
	line-height: 40px;
	text-align: right;
	color:#FFF;
	width:0;	
	transition: 		width ease-in 200ms;
	-moz-transition: 	width ease-in 200ms; /* Firefox 4 */
	-webkit-transition: width ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		width ease-in 200ms; /* Opera */
	-ms-transition: 	width ease-in 200ms; /* IE9? */
	}
.loaded-list12 .progress .bar span {
	position: absolute;
	top:2px;
	right: 2px;
	background: #ffffff;
	color: #afbdc7;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	width:36px;
	height:36px;
	text-align:center;
	line-height:36px;
	padding:0;
	font-size: 12px;
	text-indent: 0;
	}
/*loaded-list13*/
.loaded-list13 .progress{
	background-color: #fff;
	border-radius:100px;
	-moz-border-radius:100px;
	-webkit-border-radius:100px;
	box-shadow:none;
	position:relative;
	overflow:inherit;
	margin-bottom: 27px;
	height:15px;
	border:1px solid #e1e1e1;
	}
.loaded-list13 .progress p{
	}
.loaded-list13 .progress.the5{
	margin-bottom:0;
	}
.loaded-list13 .progress .bar {
	background-color:#20a3f0;
	border-radius:100px;
	-moz-border-radius:100px;
	-webkit-border-radius:100px;
	position: relative;
	height: 14px;
	text-align: right;
	width:0;
	transition: 		width ease-in 200ms;
	-moz-transition: 	width ease-in 200ms; /* Firefox 4 */
	-webkit-transition: width ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		width ease-in 200ms; /* Opera */
	-ms-transition: 	width ease-in 200ms; /* IE9? */
	}
.loaded-list13 .progress .bar.color-1{
  background-color:#fbc166;
}
.loaded-list13 .progress .bar span{
  border-color:#fbc166;
  color:#fbc166;
}
.loaded-list13 .progress .bar.color-2{
  background-color:#ef8494;
}
.loaded-list13 .progress .bar.color-2 span{
  border-color:#ef8494;
  color:#ef8494;
}
.loaded-list13 .progress .bar.color-3{
  background-color:#20a3f0;
}
.loaded-list13 .progress .bar.color-3 span{
  border-color:#20a3f0;
  color:#20a3f0;
}
.loaded-list13 .progress .bar.color-4{
  background-color:#1bbc9b;
}
.loaded-list13 .progress .bar.color-4 span{
  border-color:#1bbc9b;
  color:#1bbc9b;
}
.loaded-list13 .progress .bar span {
	border:2px solid #f5c167;
	position: absolute;
	top: 50%;
	left: 100%;
	background: #ffffff;
	color: #f5c167;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	width:34px;
	height:34px;
	text-align:center;
	line-height:33px;
	padding:0;
	font-size: 12px;
	text-indent: 0;
	margin:-17px 0 0 -17px;
	}
/*loaded-list14*/
.loaded-list14 .progress{
	background-color: #fff;
	border-radius:100px;
	-moz-border-radius:100px;
	-webkit-border-radius:100px;
	box-shadow:none;
	position:relative;
	overflow:inherit;
	margin-bottom: 27px;
	height:15px;
	border:1px solid #e1e1e1;
	}
.loaded-list14 .progress p{
	}
.loaded-list14 .progress.the5{
	margin-bottom:0;
	}
.loaded-list14 .progress .bar {
	background-color:#20a3f0;
	border-radius:100px;
	-moz-border-radius:100px;
	-webkit-border-radius:100px;
	position: relative;
	height: 14px;
	text-align: right;
	width:0;
	transition: 		width ease-in 200ms;
	-moz-transition: 	width ease-in 200ms; /* Firefox 4 */
	-webkit-transition: width ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		width ease-in 200ms; /* Opera */
	-ms-transition: 	width ease-in 200ms; /* IE9? */
	}
.loaded-list14 .progress .bar.color-1{
  background-color:#8d6cc3;
  color:#8d6cc3
}
.loaded-list14 .progress .bar.color-1 span{
  border-color:#8d6cc3;
}
.loaded-list14 .progress .bar.color-2{
  background-color:#b65ccd;
  color:#b65ccd
}
.loaded-list14 .progress .bar.color-2 span{
  border-color:#b65ccd;
}
.loaded-list14 .progress .bar.color-3{
  background-color:#20a3f0;
  color:#20a3f0
}
.loaded-list14 .progress .bar.color-3 span{
  border-color:#56b0ee;
}
.loaded-list14 .progress .bar.color-4{
  background-color:#fbc166;
  color:#fbc166
}
.loaded-list14 .progress .bar.color-4 span{
  border-color:#fbc166;
}
.loaded-list14 .progress .bar span {
	border:2px solid #fbc166;
	position: absolute;
	top: 50%;
	left: 100%;
	background: #ffffff;	
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	width:34px;
	height:34px;
	text-align:center;
	line-height:33px;
	padding:0;
	font-size: 12px;
	text-indent: 0;
	margin:-17px 0 0 -17px;
	}
.promopage-title {
	font-size:20px;
	color:#424242;
	position:relative;
	margin:0px 0 60px;
	line-height:1.6;
}
.promopage-title:after{
	content:"";
	border-bottom:2px solid #20a3f0;
	width:40px;
	display:block;
	margin-top:15px;
}

.promo-bg01{
	background-color:#222e33;
}
.promo-bg02{
	background-color:#20a3f0;
}
  
.promo{
	position:relative;
	font-size:15px;
	padding:23px 0;
	margin-bottom:25px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.promo:after {
    clear: both;
    content: "";
    display: table;
}

.promo-content{
	float:left;
	width:70%;
	margin-left:4%;
}
.promo-button{
    width: 20%;
    text-align: center;
    position: absolute;
    top: 50%;
    margin: -26px 0 0;
    left: auto;
    right: 5px;
}
.promo-icon{
	float:left;
	width:8%;
	margin-left:4%;
	min-height:91px;
}
.promo-icon + .promo-content{
	width:60%;
	margin-left:0;
	min-height:91px;
}
.promo-icon > span{
	width:91px;
	height:91px;
	line-height:91px;
	text-align:center;
	color:#FFF;
	font-size:24px;
	display:inline-block;
	position:absolute;
	top:50%;
	margin-top:-46px;
	background-color:#2f2f2f;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}

.promo-border{
	border:1px solid #dfdfdf;
}
.promo-square{
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.promo-round{
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
}
.border-full {
	border-color:#8f8f8f
}

.promo .text-slide{
	font-weight:bold;
}
.promo-bg{
	background-color:#f2f2f2;
}
.promo[class*="bg-"] .promo-icon >span{
	background-color:#ffffff;
	color:#2f2f2f;
}

.content-center .promo-content{
	width:84%;
	margin:0px 8%;
	text-align:center;
}
.promo-content .line {
	border-bottom:2px solid #20a3f0;
	margin:20px auto 21px;
	width:36px;
}

.promo-border-top,
.promo-border-top.border-accent{
	border:1px solid #dfdfdf;
	border-top-width:3px;
	border-left-color:#dfdfdf!important;
	border-right-color:#dfdfdf!important;
	border-bottom-color:#dfdfdf!important;
}
.promo-border-left,
.promo-border-left.border-accent{
	border:1px solid #dfdfdf;
	border-left-width:5px;
	border-top-color:#dfdfdf!important;
	border-right-color:#dfdfdf!important;
	border-bottom-color:#dfdfdf!important;
}
.promo-border-right,
.promo-border-right.border-accent{
	border:1px solid #dfdfdf;
	border-right-width:5px;
	border-left-color:#dfdfdf!important;
	border-top-color:#dfdfdf!important;
	border-bottom-color:#dfdfdf!important;
}
.promo-border-bottom,
.promo-border-bottom.border-accent{
	border:1px solid #dfdfdf;
	border-bottom-width:3px;
	border-left-color:#dfdfdf!important;
	border-right-color:#dfdfdf!important;
	border-top-color:#dfdfdf!important;
}



.promo-small .promo-content,
.promo-large .promo-content{
	float:none;
	width:auto;
	margin:auto;
}
.promo-small .promo-button,
.promo-large .promo-button{
	position:static;
	width:auto;
    text-align:inherit;
    margin:auto;
}
.promo-small{
	padding:20px 40px 32px;
	font-size:13px;
}
.promo-small .promo-button{
	padding-top:27px;
}
.promo-small h3{
	margin-bottom:14px;
}
.promo-large{
	padding:65px 85px 73px;
	font-size:21px;
}
.promo-large h3{
	font-size:63px;
	line-height:1.3;
	font-weight:bold;
	margin-bottom:12px;
}
.promo-large .promo-button{
	padding-top:12px;
}

.promo-large .promo-button [class*="dg-btn"]{
	font-size:18px;
	letter-spacing:2px;
}

.promo-parallax{
	background:url("/Portals/_default/Skins/ForVend/images/promo-Parallax.jpg");
	background-size:cover;
	background-position:center;
	background-attachment:fixed;
	color:#FFF;
}

[class*="bg-"] .promo h1,
[class*="bg-"] .promo h2,
[class*="bg-"] .promo h3,
[class*="bg-"] .promo h4,
[class*="bg-"] .promo h5,
[class*="bg-"] .promo h6,
.promo[class*="bg-"] h1,
.promo[class*="bg-"] h2,
.promo[class*="bg-"] h3,
.promo[class*="bg-"] h4,
.promo[class*="bg-"] h5,
.promo[class*="bg-"] h6,
.promo-parallax h1,
.promo-parallax h2,
.promo-parallax h3,
.promo-parallax h4,
.promo-parallax h5,
.promo-parallax h6{
	color:#FFF;
}
.promo-bg .promo,
.promo-parallax .promo,
div[class*="bg-"] .promo{
	margin-bottom:0;
}


@media only screen and (min-width: 1200px) and (max-width: 1300px) {
	.promo-icon{
		width:10%;
	}
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.promo-content{
		width:66%;
	}
	.promo-button{
		width: 26%;
	}
	.promo-icon{
		width:12%;
	}
	.promo-icon + .promo-content{
		width:56%;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.promo-content{
		width:62%;
	}
	.promo-button{
		width: 30%;
	}
	.promo-icon{
		width:15%;
	}
	.promo-icon + .promo-content{
		width:50%;
	}
	.promo-small{
		padding:15px 25px 20px;
	}
	.promo-small .promo-button{
		padding-top:16px;
	}
	.promo-large{
		padding:32px 42px 36px;
	}
}
@media only screen and (max-width: 767px) {
	
	.promo-content{
		width:auto;
		margin:0 4%;
		float:none;
	}
	.promo-button{
		width: auto;
		position:static;
		margin:0 4%;
		text-align:inherit;
		float:none;
	}
	.promo-icon{
		width:auto;
		margin:0 4%;
		float:none;
	}
	.promo-icon > span{
		position:static;
		margin:0;
	}
	.promo-icon + .promo-content{
		width:auto;
		margin:0 4%;
	}
	.promo-small,
	.promo-large{
		font-size:13px;
		padding:15px 15px 15px;
	}
	.promo-large h3 {
		font-size: 30px;
	}	
	.promo-large .promo-button [class*="dg-btn"]{
		font-size:13px;
		letter-spacing:0px;
	}
}



/*text slide*/
.text-slide{
	display:inline-block;
	position:relative;
	overflow:hidden;
	vertical-align:top;
}
.text-slide span {
	display:none;
	position:absolute;
	left:0;
	top:0;
}
@-webkit-keyframes slide-text {
	0% {
	opacity:0;
	-webkit-transform:translateY(100%);
	}
	100% {
	opacity:1;
	-webkit-transform:translateY(0%);
	}
}
@-o-keyframes slide-text {
	0% {
	opacity:0;
	-o-transform:translateY(100%);
	}
	100% {
	opacity:1;
	-o-transform:translateY(0%);
	}
}
@keyframes slide-text {
	0% {
	opacity:0;
	transform:translateY(100%);
	}
	100% {
	opacity:1;
	transform:translateY(0%);
	}
}
@-webkit-keyframes slide-text-previous {
	0% {
	opacity:1;
	-webkit-transform:translateY(0%);
	}
	100% {
	opacity:0;
	-webkit-transform:translateY(-100%);
	}
}
@-o-keyframes slide-text-previous {
	0% {
	opacity:1;
	-o-transform:translateY(0%);
	}
	100% {
	opacity:0;
	-o-transform:translateY(-100%);
	}
}
@keyframes slide-text-previous {
	0% {
	opacity:1;
	transform:translateY(0%);
	}
	100% {
	opacity:0;
	transform:translateY(-100%);
	}
}
.text-slide span.active{
	display:inline-block;
	position:static;
   -webkit-animation-name: slide-text;
    -o-animation-name: slide-text;
    animation-name: slide-text;
    -webkit-animation-duration: 400ms;
    -o-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
	white-space:nowrap;
}
.text-slide span.previous{
	display:inline-block;
    -webkit-animation-name: slide-text-previous;
    -o-animation-name: slide-text-previous;
    animation-name: slide-text-previous;
    -webkit-animation-duration: 400ms;
    -o-animation-duration:400ms;
    animation-duration:400ms;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
	white-space:nowrap;
}
.flipbox-bg01 {
	background:url("/Portals/_default/Skins/ForVend/images/flipbox-bg01.jpg") no-repeat center center;
	background-size:cover;
}
.flipbox-bg02 {
	background:url("/Portals/_default/Skins/ForVend/images/flipbox-bg02.jpg") no-repeat center center;
	background-size:cover;
}

.flipbox-title01 {
	text-align:center;
	margin-bottom:30px;
}
.flipbox-title01 h3{
	color:#1e1e1e;
	font-size:25px;
	font-weight:normal;
	text-align:center;
}
.flipbox-title01 .number{
	font-size:30px;
	font-weight:bold;
	color:#333;
	position:relative;
	display:inline-block;
	padding:0px 10px;
}
.flipbox-title01 .number:after,
.flipbox-title01 .number:before{
	content:"";
	width:42px;
	height:4px;
	border-top:1px solid #333333;
	border-bottom:1px solid #333333;
	position:absolute;	
	top:50%;
	margin-top:-2px;
}
.flipbox-title01.white .number,
.flipbox-title01.white h3,
.flipbox-title01.white p{
	color:#fff;
}
.flipbox-title01.white .number:after,
.flipbox-title01.white .number:before{
	border-color:#fff;
}
.flipbox-title01 .number:after{
	left:100%;
}
.flipbox-title01 .number:before{
	right:100%;
}
.flipbox-title01 p{
	width:50%;
	margin:auto auto 8px;
}
@media only screen and (max-width: 767px) {
	.flipbox-title01 p{
		width:auto;
	}
}

.flip-box {
	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	perspective: 1000;
	overflow: visible;
	margin-bottom: 5px;
	position: relative;
}

.flip-box .front,
.flip-box .back {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 750ms ease 0s;
	-moz-transition: all 750ms ease 0s;
	-o-transition: all 750ms ease 0s;
	-ms-transition: all 750ms ease 0s;
	transition: all 750ms ease 0s;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.flip-box .front {
	position: relative;
	z-index: 0;
	color: #444;
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

.flip-box .back {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 100%;
	z-index: -2;
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.flip-box.flip-right .back {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.flip-box.flip-top .front {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.flip-box.flip-top .back {
	-webkit-transform: rotateX(180deg);
	-moz-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.flip-box.flip-bottom .front {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.flip-box.flip-bottom .back {
	-webkit-transform: rotateX(-180deg);
	-moz-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}

.flip-box:hover .front {
	background-color: #FFF;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.flip-box:hover .back {
	z-index: 3;
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

.flip-box.flip-right:hover .front {
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.flip-box.flip-top:hover .front {
	-webkit-transform: rotateX(-180deg);
	-moz-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}

.flip-box.flip-top:hover .back {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.flip-box.flip-bottom:hover .front {
	-webkit-transform: rotateX(180deg);
	-moz-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.flip-box.flip-bottom:hover .back {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	transform: rotateX(0deg);
}
.flip-box01{
	margin:0 -15px -1px -16px;
}
.flip-box01 .front {
	position:absolute;
	text-align:center;
	width:100%;
	height:100%;
	border:1px solid #dddddd;
	white-space:nowrap;
}
.flip-box01 .back {
	position:relative;
}
.flip-box01 .front:before {
	content:"";
	display:inline-block;
	vertical-align:middle;
	height:100%;
	width:0;
	overflow:hidden;
}
.flip-box01 .front .v-center {
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
}
.flip-box01 .front .fa{
	font-size:55px;
	margin-bottom:25px;
}
.flip-box01 .front h3{
	color:#333333;
	font-size:25px;
}
.flip-box01 .back {
	background-color:#353535;
	text-align:center;
	padding:45px;
	color:#FFF;
}
.flip-box01 .back h3{
	font-size:25px;
	color:#ffffff;
	margin:0 0 35px 0;
}
.flip-box01 .size-lg{
    padding: 8px 14px;
    font-size: 13px;
    line-height: 1.2;
    background-color:transparent;
    color: #fff;
	border:1px solid #fff;
}
.flip-box01 .back-con{
    margin: 0 0 35px 0;
}
.flip-box01 .back .hover-darkturquoise:hover {
    color: #fff;
    border-color: #20a3f0;
    background-color: #20a3f0;
}
.flip-box02 .front {
	position:absolute;
	text-align:center;
	width:100%;
	height:100%;
	background-color:#f9f9f9;
	white-space:nowrap;
}
.flip-box02 .back {
	position:relative;
}
.flip-box02 .front:after{
	content:"";
	display:inline-block;
	vertical-align:middle;
	height:100%;
	width:0;
	overflow:hidden;
}
.flip-box02 .front .v-center {
	display:inline-block;
	vertical-align:middle;
	margin:0px 10px;
	white-space:normal;
}
.flip-box02 .front img{
	max-width:100%;
	margin-bottom:30px;
}
.flip-box02 .front h3{
    color: #333;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.2;
    margin: 0 0 5px 0;
}
.flip-box02 .back {
	background-color:#20a3f0;
	text-align:center;
	padding:40px 25px;
	color:#FFF;
}
.flip-box02 .back h3{
	font-size:15px;
	color:#ffffff;
	margin-bottom:20px;
	line-height:1.2;
}
.flip-box02 .back .btn {
	padding:12px 20px;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	color:#FFF;
	margin-top:20px;
	min-width:165px;
	font-size:13px;
	background-color:#353535;
}
.flip-box02 .back .btn:hover{
	background-color:#555;
}
.flip-box02 .back-con{
  margin:0 0 30px 0;
}
.flip-box02 .size-lg{
    padding: 10px 20px;
    font-size: 13px;
    line-height: 1.3333333;
    background-color: #fff;
    color: #20a3f0;
}
.flip-box03 .front {
	position:absolute;
	text-align:center;
	width:100%;
	height:100%;
	white-space:nowrap;
}
.flip-box03 .back {
	position:relative;
}
.flip-box03 .front:before{
	content:"";
	display:inline-block;
	vertical-align:middle;
	height:100%;
	width:0;
	overflow:hidden;
}
.flip-box03 .front:after {
	content:"";
	top:0;
	left:0;
	right:0;
	bottom:0;
	position:absolute;
	background-color:#20a3f0;
	z-index:-1;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
.flip-box03 .front .v-center {
	display:inline-block;
	vertical-align:middle;
	margin:0px 25px ;
	white-space:normal;
	color:#FFF;
}
.flip-box03 .front .fa{
	font-size:28px;
	margin-bottom:25px;
	width:64px;
	height:64px;
	line-height:64px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#fff;
	color:#20a3f0;
	margin-bottom:14px;
}
.flip-box03 .front h3{
	color:#FFF;
	font-size:15px;
	margin-bottom:25px;
	font-weight:normal;
	line-height:1.2;
	margin:0 0 20px 0;
}
.flip-box03 .back {
	border:1px solid #20a3f0;
	text-align:center;
	padding:42px 18px;
	color:#FFF;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
.flip-box03 .back h3{
	color:#fff;
	font-size:15px;
	font-weight:normal;
	margin:0 0 20px 0;
}
.flip-box03 .back-con {
    margin: 0 0 20px 0;
}
.flip-box03 .back .btn {
	padding:12px 20px;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	color:#000000;
	margin-top:20px;
	font-size:13px;
	background-color:#05e2ff;
	display:block;
}
.flip-box03 .back .btn:hover{
	background-color:#555;
	color:#FFF;
}
.flip-box03 .size-xl{
  padding:13px 18px;
  letter-spacing:1px;
}
.flip-box04.flip-small{
   min-height:428px;
}
.flip-box04 .front {
	position:absolute;
	text-align:center;
	width:100%;
	height:100%;
	white-space:nowrap;
	background-color:#f1f1f1;
}
.flip-box04 .back {
	position:relative;
}
.flip-box04 .front:before {
	content:"";
	display:inline-block;
	vertical-align:middle;
	height:100%;
	width:0;
	overflow:hidden;
}
.flip-box04 .front .v-center {
	display:inline-block;
	vertical-align:middle;
	margin:0px 25px;
	white-space:normal;
	color:#393939;
}
.flip-box04 .front .fa{
	font-size:28px;
	margin-bottom:25px;
	width:64px;
	height:64px;
	line-height:64px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#fff;
	color:#001835;
	margin-bottom:14px;
}
.flip-box04 .front h3{
    color: #393939;
    font-size: 15px;
    margin: 0 0 25px 0;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: bold;
}
.flip-box04 .front .pic{
	width:128px;
	height:128px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	overflow:hidden;
	display:block;
	margin:auto auto 40px;
}
.flip-box04 .back {
	text-align:center;
	padding:80px 18px;
	color:#FFF;
	background-color:#20a3f0;
}
.flip-box04 .back h3{
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    /* margin-bottom: 25px; */
    line-height: 1.2;
    margin: 0 0 0 0;
	text-transform:uppercase;
}
.flip-small.flip-box04 .back{
  padding:105px 20;
}
.flip-box04 .back-con {
    margin: 0 55px 35px 55px;
}
.flip-box04 .back h3:after{
	content:"";
	border-bottom:2px solid rgba(255,255,255,0.6);
	width:30px;
	display:block;
	margin:15px auto 30px;
}
.flip-box04 .btn-danger:before {
    background-color: #fff;
}
.flip-box04 .btn-danger {  
    border-color: #fff;
	color:#02b0f3;
}
.dg-btn-4{
  color:#20a3f0;
}
.flip-box04 .back .btn {
	padding:6px 20px;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	color:#02b0f3;
	margin-top:20px;
	font-size:15px;
	background-color:#ffffff;
	position:relative;
	display:inline-block;
}
.flip-box04 .back .size-lg{
   background-color:#fff;
   color:#20a3f0;
   padding:14px 18px;
}
.flip-box04 .back .btn:before {
	content:"";
	position:absolute;
	top:-3px;
	left:-3px;
	right:-3px;
	bottom:-3px;
	border:1px solid #ffffff;
	transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.flip-box04 .back .btn:hover{
	background-color:#555;
	color:#FFF;
}
.flip-box04 .back .btn:hover:before {
	border-color:#555;
}
.flip-box05 .front {
	position:absolute;
	text-align:center;
	width:100%;
	height:100%;
	white-space:nowrap;
	border:1px solid #dedede;
}
.flip-box05 .back {
	position:relative;
}
.flip-box05 .front:after{
	content:"";
	display:inline-block;
	vertical-align:middle;
	height:100%;
	width:0;
	overflow:hidden;
}
.flip-box05 .front .v-center {
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
	margin:0 10px;
}
.flip-box05 .front img{
	max-width:100%;
	margin-bottom:25px;
}
.flip-box05 .front h3{
    color: #424242	;
    font-size: 15px;	
    font-weight: normal;
    margin: 0 0 8px 0;
    line-height: 1.2;
	letter-spacing:1px;
}
.flip-box05 .front h3:before{
	content:"";
	width:23px;
	border-bottom:1px solid #929292;
	display:block;
	margin:auto auto 12px;
}

.flip-box05 .back {
	background-color:#313131;
	text-align:center;
	padding:50px 20px 20px 20px;
	color:#FFF;
}
.flip-box05 .back h3{
    font-size: 15px;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-transform: uppercase;
	font-weight:bold;
	letter-spacing:1px;
}
.flip-box05 .back .btn {
	padding:12px 20px;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	color:#FFF;
	margin-top:20px;
	min-width:165px;
	font-size:13px;
	background-color:#353535;
}
.flip-box05 .back .btn:hover{
	background-color:#555;
}
.flip-box05 .front {
	position:absolute;
	text-align:center;
	width:100%;
	height:100%;
	white-space:nowrap;
	border:1px solid #dedede;
}
.flip-box06 {
	width:258px;
	margin:auto auto 15px;
}
.flip-box06 .front {
	width:258px;
	height:258px;
	background-color:#fefefe;
	border:1px solid #aaaaaa;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	text-align:center;
	white-space:nowrap;
}
.flip-box06 .front:before {
	content:"";
	display:inline-block;
	vertical-align:middle;
	height:100%;
	width:0;
	overflow:hidden;
}
.flip-box06 .front .v-center {
	display:inline-block;
	vertical-align:middle;
	margin:0px 45px;
	white-space:normal;
}
.flip-box06 .front .v-center > .fa{
	color:#666		;
	font-size:58px;
	margin-bottom:30px;
}
.flip-box06 .front .v-center > h3{
    color: #20a3f0;
    line-height: 1.2;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: bold;
    margin:0 0 10px 0;
}
.flip-box06 .front .v-center a{
	color:#2f2f2f;
}
.flip-box06 .back {
	width:258px;
	height:258px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#06abea;
	text-align:center;
	display:table;
	color:#fff;
}
.flip-box06 .back .back-ver{
  display:table-cell;
  vertical-align:middle;
  padding:0 25px;
}
.flip-box06 .back h3{
    color: #ffffff;
    padding:0;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
	margin:0 0 20px 0;
	line-height:1.2;
}
.flip-box06 .back p{
	color:#ffffff;
}

.flip-box07 .front {
	position:absolute;
	text-align:center;
	width:100%;
	height:100%;
	white-space:nowrap;
	background-color:#f3f3f3;
	border-radius:7px;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	border:1px solid #dfdfdf;

}
.flip-box07 .back {
	position:relative;
}
.flip-box07 .front:before {
	content:"";
	display:inline-block;
	vertical-align:middle;
	height:100%;
	width:0;
	overflow:hidden;
}
.flip-box07 .front .v-center {
	display:inline-block;
	vertical-align:middle;
	margin:0px 25px;
	white-space:normal;
	color:#2a2a2a;
}
.flip-box07 .front .fa{
	font-size:35px;
	margin-bottom:25px;
	color:#333333;
	margin-bottom:14px;
}
.flip-box07 .front h3{
    color: #333;
    font-size: 15px;
    font-weight: normal;
    margin: 0 0 20px 0;
    font-weight: bold;
    line-height: 1.2;
	letter-spacing:1px;	
}
.flip-box07 .back {
	background-color:#2a2a2a;
	text-align:center;
	padding:42px 18px;
	color:#f1f1f1;
	border-radius:7px;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
}
.flip-box07 .back h3{
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 25px;
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-weight: bold;
    letter-spacing: 1px;
}
.flip-box07 .back .btn {
	color:#f1f1f1;
}
.flip-box07 .back .btn:hover{
	color:#06abea;
}
.flip-box07 .back .more{
    color: #fff;
    font-weight: bold;
    margin: 15px 0 0 0;
    display: block;
}
.flip-box08 .front {
	position:absolute;
	text-align:center;
	width:100%;
	height:100%;
	white-space:nowrap;

}
.flip-box08 .back {
	position:relative;
}
.flip-box08 .front:before {
	content:"";
	display:inline-block;
	vertical-align:middle;
	height:100%;
	width:0;
	overflow:hidden;
}
.flip-box08 .front .v-center {
	display:inline-block;
	vertical-align:middle;
	margin:0px 25px;
	white-space:normal;
	color:#2a2a2a;
}
.flip-box08 .front .v-center:after {
	content:"";
	width:23px;
	border-bottom:2px solid #7f7f7f;
	margin:auto;
	display:block;
	margin:10px auto 0 auto;
}

.flip-box08 .front .fa{
	font-size:24px;
	margin-bottom:25px;
	color:#20a3f0;
	margin-bottom:20px;
	width:60px;
	height:60px;
	line-height:60px;
	border:1px solid #20a3f0;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.flip-box08 .front h3{
    color: #333;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 20px 0;
}
.flip-box08 .back {
    background-color: #20a3f0;
    text-align: center;
    padding: 50px 30px 40px 30px;
    color: #fff;
}
.flip-box08 .back h3{
    color: #f1f1f1;
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 25px 0;
	letter-spacing:1px;
}
.flip-box08 .back .btn {
	color:#f1f1f1;
}
.flip-box08 .back .btn:hover{
	color:#06abea;
}
@media only screen and (max-width:1200px) {
.flip-box03 .size-xl {
    padding: 13px 5px;
    letter-spacing: 1px;
    width: 100%;
    font-size: 12px;
}
}
@media only screen and (max-width: 991px) {
.flip-box01 .back,
.flip-box08 .back{
  padding:15px;
}
/*.flip-box01 .back h3,
.flip-box08 .back h3 {
    margin: 0 0 10px;
}
.flip-box01 .back-con {
    margin: 0 0 10px;
}
.flip-box08 .front .v-center{
  margin:0;
}*/
.flip-box02,.flip-box05{
  min-height:300px;
}
.flip-box04.flip-small {
    min-height: auto;
}
.flip-box04 .back-con {
    margin: 0 0 15px 0;
}
.flip-box04 .back {
    padding: 40px 20px;
}

}
.dividers-01 {
    border-top: 1px solid #dadada;
	 margin: 5px 0;
}
.dividers-02 {
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    height: 3px;
    width: 100%;
    clear: both;
    display: block;
    overflow: hidden;
    margin: 5px 0;
}
.dividers-03 {
    border: none;
    border-bottom: 1px solid #e4e4e4;
    text-align: center;
    height: 0;
    width: 100%;
    clear: both;
    display: inline-block;
    margin: 25px 0;
}

.dividers-03 span {
    font-size: 17px;
    display: inline-block;
    width: 40px;
    height: 40px ;
    top: -20px;
    line-height: 40px;
    border: 1px solid #e4e4e4;
    margin: 0 auto;
    background-color: #FFF;
    padding: 0;
    color: #e4e4e4;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	position:relative;
}
/*dividers-04*/
.dividers-04 {
    font-size: 36px;
    text-align: center;
    color: #c7c7c7;
    overflow: hidden;
    position: relative;
}
.dividers-04 span{
   display:inline-block;
   width:40px;
   height:40px;
   border:2px solid #8e8e8e;
   color:8e8e8e;
   font-size:20px;
   line-height:40px;
   text-align:center;
     -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	position:relative;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.dividers-04:before,.dividers-04:after {
    content: "";
    position: absolute;
    width: 50%;
    top: 50%;
    border-top: 1px solid #dddddd;  
	border-bottom: 1px solid #dddddd;  
    height: 4px;
    right: -30px;
}
.dividers-04:before {
    left: -30px;
}
/*dividers-05*/
.dividers-05 {
    border-top: 1px solid #dadada;
	 margin: 5px 0 15px 0;
	 display:inline-block;
	 width:100%;
	 position:relative;
}
.dividers-05 em{
    position: absolute;
    transform: rotate(319deg);
    -ms-transform: rotate(319deg);
    -moz-transform: rotate(319deg);
    -webkit-transform: rotate(457deg);
    -o-transform: rotate(319deg);
    color: #8d8d8d;
    font-size: 15px;
    left: -8px;
    top: -3px;
}
/*dividers-06*/
.dividers-06 {
    border: none;
    border-bottom: 1px solid #dadada;
    height: 2px;
    width: 100%;
    clear: both;
    display: block;
    margin: 5px 0;
    text-align: center;
    line-height: 0;
}
.dividers-06:before {
    content: " ";
    width: 34px;
    display: block;
    float: left;
    height: 0;
    border-top: 2px solid #20a3f0;
    margin-bottom: -1px;
}
.dividers-06:after {
    content: " ";
    width: 34px;
    display: block;
    float: right;
    height: 0;
    border-top: 2px solid #20a3f0;
}
.dividers-06 span {
    width: 34px;
    display: inline-block;
    height: 0;
    border-top: 2px solid #20a3f0;
    vertical-align: middle;
    margin-bottom: 1px;
}
/*.dividers-07*/
.dividers-07{
  height:5px;
  background-color:#20a3f0;
  background: linear-gradient(left , rgb(38, 223, 231) 34% , rgb(36, 69, 255) 61% , rgb(15, 110, 7) 86%);
	background: -o-linear-gradient(left , rgb(38, 223, 231) 34% , rgb(36, 69, 255) 61% , rgb(15, 110, 7) 86%);
	background: -ms-linear-gradient(left , rgb(38, 223, 231) 34% , rgb(36, 69, 255) 61% , rgb(15, 110, 7) 86%);
	background: -moz-linear-gradient(left , rgb(38, 223, 231) 34% , rgb(36, 69, 255) 61% , rgb(15, 110, 7) 86%);
	background: -webkit-linear-gradient(left , rgb(38, 223, 231) 34% , rgb(36, 69, 255) 61% , rgb(15, 110, 7) 86%);
	width:100%;
	margin:5px 0;
}
/*dividers-08*/
.dividers-08{
    border-top: 1px solid #20a3f0;
	margin: 5px 0;
}
/*dividers-09*/
.dividers-09{
    border: none;
    background: url("/Portals/_default/Skins/ForVend/images/dividers-01.png") left top;
    height: 5px;
    width: 100%;
    clear: both;
    display: block;
    overflow: hidden;
}
/*dividers-10*/
.dividers-10{
    border: none;
    background: url("/Portals/_default/Skins/ForVend/images/dividers-02.png") left top;
    height: 5px;
    width: 100%;
    clear: both;
    display: block;
    overflow: hidden;
}
/*dividers-11*/
.dividers-11{
    border: none;
    height: 3px;
    width: 100%;
    clear: both;
    display: block;
    overflow: hidden;
    background: #ebebeb;
    background: -ms-linear-gradient(#ebebeb,#dfdfdf 30%,#FFF 72%);
    background: -o-linear-gradient(#ebebeb,#dfdfdf 30%,#FFF 72%);
    background: -moz-radial-gradient(#ebebeb,#dfdfdf 30%,#FFF 72%);
    background: -webkit-radial-gradient(#ebebeb,#dfdfdf 30%,#FFF 72%);
    margin: 5px 0;
}
/*dividers-12*/
.dividers-12{
    -moz-box-shadow: 5px 5px 5px #999;
    -webkit-box-shadow: 5px 5px 5px #999;
    box-shadow: 0 7px 7px 0px #ececec;
    height: 7px;
}

.dividers-13{
    border: none;
    border-bottom: 1px dashed #DDDDDD;
    height: 0px;
    margin: 0;
    width: 100%;
    clear: both;
    display: block;
    overflow: hidden;
}
/*dividers-14*/
.dividers-14{
    border: none;
    background: url("/Portals/_default/Skins/ForVend/images/dividers-03.png") left top;
    height: 5px;
    width: 100%;
    clear: both;
    display: block;
    overflow: hidden;
}
[class*="ourteam-short"] h2,
[class*="ourteam-short"] h3{
  letter-spacing:1px;
}
[class*="ourteam-short"] .teamshort-img img{
  max-width:100%;
}
[class*="ourteam-short"]{
  margin-top:10px;
  margin-bottom:10px;
  text-align:center;
}
[class*="ourteam-short"] .social em{
		transition: all ease-in 300ms;
		-moz-transition: all ease-in 300ms;/* Firefox 4 */
		-webkit-transition:all ease-in 300ms;/* Safari and Chrome */
		-o-transition:all ease-in 300ms;/* Opera */
		-ms-transition:all ease-in 300ms;/* IE9? */
}
.ourteam-short{
  padding:0 70px;
}
.ourteam-short .teamshort-img img{
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    padding: 10px;
    border: 1px solid transparent;
}
.ourteam-short .teamshort-img {
    padding: 0 0 20px 0;
}
.ourteam-short .teamshort-img img{
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
 filter: url("/Portals/_default/Skins/ForVend/images/gray.svg#grayscale");
	filter: grayscale(100%);
	filter: gray;
		transition: border ease-in 200ms;
		-moz-transition: border ease-in 200ms;/* Firefox 4 */
		-webkit-transition:border ease-in 200ms;/* Safari and Chrome */
		-o-transition:border ease-in 200ms;/* Opera */
		-ms-transition:border ease-in 200ms;/* IE9? */
}
.ourteam-short .owl-item:hover .teamshort-img img{
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-ms-filter: grayscale(0);
	-o-filter: grayscale(0);
  filter: url("/Portals/_default/Skins/ForVend/images/gray.svg#normal");  
	filter: grayscale(0);
	filter: none;
	}
.ourteam-short .owl-item:hover .teamshort-img img{
  border:1px solid #20a3f0
}
.ourteam-short .owl-buttons .owl-prev {
    left: 0;
}
.ourteam-short .owl-buttons .owl-next {
    right: 0;
}
.ourteam-short .owl-buttons .owl-prev, 
.ourteam-short .owl-buttons .owl-next {
    background-color: transparent;
	border:1px solid #2e2e2e
}
.ourteam-short .owl-buttons .owl-prev:before, 
.ourteam-short .owl-buttons .owl-next:before {
    border-left:1px solid #2e2e2e;
    border-bottom: 1px solid #2e2e2e;
}
.ourteam-short .owl-buttons .owl-next:before {
    border-left: none;
    border-right: 1px solid #2e2e2e;
}
.ourteam-short h3{
   line-height:1.2;
   font-weight:bold;
   color:#121212;
   margin:0;
   font-size:15px;
}
/*hover*/
.ourteam-short.carousel .owl-buttons .owl-prev:hover, 
.ourteam-short.carousel .owl-buttons .owl-next:hover {
	border:1px solid #20a3f0;
	background-color: transparent;
}
.ourteam-short .owl-buttons .owl-prev:hover:before, 
.ourteam-short .owl-buttons .owl-next:hover:before {
    border-left:1px solid #20a3f0;
    border-bottom: 1px solid #20a3f0;
}
.ourteam-short .owl-buttons .owl-next:hover:before {
    border-left: none;
    border-right: 1px solid #20a3f0;
}
.ourteam-short02 .photo_box{
  width:202px;
  height:202px;
      border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50%;
	margin:0 auto 20px auto;  
}
.ourteam-short02 .photo_box img{
      border-radius:50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	border:8px solid #e8e8e8;
    transition: all ease-in 300ms;
    -moz-transition: all ease-in 300ms;
    -webkit-transition: all ease-in 300ms;
    -o-transition: all ease-in 300ms;
    -ms-transition: all ease-in 300ms;
	background-color:#e8e8e8;
}
.ourteam-short02 .photo_box .ico i:before {
    content: "+";
    font-family: initial;
    text-align: center; 
    position: absolute;
    color: #FFF;  ;
    font-size: 48px;
    background-color: transparent;
	font-style:normal;
	width: 50px;
    left: 50%;
    margin: 0 0 0 -25px;

}
/*.ourteam-short02 .photo_box .ico i:before {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    border-bottom: 5px solid #fff;
    left: 50%;
    top: 50%;
    margin: -16px 0 0 -7px;
}
.ourteam-short02 .photo_box .ico i:after {
    content: "";
    position: absolute;
    height: 32px;
    width: 32px;
    border-left: 5px solid #fff;
    left: 50%;
    top: 50%;
    margin: -9px 0 0 0;
}*/
.ourteam-short02 .photo_box .shade {
    background-color: #20a3f0; 
	      border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	    width: 166px;
    height: 166px;
	top:18px;
	left:18px;
}
.ourteam-short02 .photo_box .ico span, 
.ourteam-short02 .photo_box .ico em, 
.ourteam-short02 .photo_box .ico i, 
.ourteam-short02 .photo_box .ico .fa{
   background-color:transparent;
}
.ourteam-short02 .photo_box:hover img{
   border:18px solid #2d2d2d;
   webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
	background-color:#2d2d2d;
}
.ourteam-short02 h2{
   line-height:1.2;
   font-weight:bold;
   color:#121212;
   margin:0;
   font-size:15px;
}
.ourteam-short02 .social{
  margin:10px 0 0 0
}
.ourteam-short02 .social em{
    display: inline-block;
    padding: 5px 10px;
    color: #bababa;
    font-size: 18px;
}
.ourteam-short02 .social em:hover{
  color:#20a3f0;
}
.ourteam-short03 .pic_box{
  margin:0 0 30px 0;
}
.ourteam-short03 .pic_box:before {
    content: "";
    border-width: 45px;
    border-style: solid;
    border-top-color: #fff;
    border-left-color: #fff;
    border-right-color: #fff;
    border-bottom-color: #fff;
    position: absolute;
    right: -70px;
    bottom: -37px;
    tr: rotate(45deg);
    transform: rotate(219deg);
    z-index: 3;
    transition: border-width ease-in 200ms;
    -moz-transition: border-width ease-in 200ms;
    -webkit-transition: border-width ease-in 200ms;
    -o-transition: border-width ease-in 200ms;
    -ms-transition: border-width ease-in 200ms;
	
}
.ourteam-short03 .photo_box .ico i:before {	
	content: "+";
    font-family: initial;
    text-align: center;
    font-style: normal;
    position: absolute;
    font-size: 22px;
    color: #20a3f0;
    right: 3px;
    bottom: -10px;
}
.ourteam-short03 .photo_box .ico i{
   background-color:transparent;
}
.ourteam-short03 .photo_box .ico {  
    top: auto;
    left: auto;
    margin-top:0;
    text-align: right;  
    opacity:1;
    bottom: 0;
    z-index: 100;
    right: 0;
}
.ourteam-short03 h2{
   line-height:1.2;
   color:#424242;
   margin:0;
   font-size:15px;
}
.ourteam-short04 .photo_box .content >.fa{
    font-size: 20px;
    height: auto;
    position: relative;
    display: inline-block;
    width: 39px;
    height: 39px;
    background:rgba(255,255,255,0.8);
    line-height: 39px;
    text-align: center;
	color:#464545;
	margin:1px 3px;
			transition: all ease-in 200ms;
		-moz-transition: all ease-in 200ms;/* Firefox 4 */
		-webkit-transition:all ease-in 200ms;/* Safari and Chrome */
		-o-transition:all ease-in 200ms;/* Opera */
		-ms-transition:all ease-in 200ms;/* IE9? */
}
.ourteam-short04 .photo_box .content > .fa:before {
    position: inherit;
    top: auto;
    left: auto;
}
.ourteam-short04 .photo_box.content_push_in .content {
    opacity: 1;
    top: auto;
    height: auto;
    bottom: 0;
    height: auto;
    background-color: transparent;
}
.ourteam-short04 .photo_box:hover.content_push_in .pic_box img {
    margin-top: auto;
    margin-bottom: auto;
}
.ourteam-short04 .photo_box .content >.fa:hover{
  background-color:#20a3f0;
  color:#fff;  
}
.ourteam-short04 .pic_box{
  margin:0 0 30px 0;
}
.ourteam-short04 h2{
   line-height:1.2;
   color:#424242;
   margin:0;
   font-size:15px;
}
/*ourteam-short05*/
.ourteam-short05 .owl-buttons .owl-prev {
    left:13px;
}
.ourteam-short05 .owl-buttons .owl-next {
    right:13px;
}
.ourteam-short05 .photo_box .content > .fa:before {
    position: inherit;
    top: auto;
    left: auto;
}
.ourteam-short05 .photo_box .content {
    height: auto;
    bottom: 0;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	width:40px;
}
.ourteam-short05 .photo_box:hover .pic_box img {
    margin-top: auto;
    margin-bottom: auto;
}
.ourteam-short05 .photo_box .content >.fa:hover{ 
  color:#20a3f0;  
}
.ourteam-short05 .pic_box{
  margin:0 0 20px 0;
}
.ourteam-short05 .photo_box .content >.fa {
    font-size: 20px;
    height: auto;
    position: relative;
    display: block;
	margin:16px 0;
}
.ourteam-short05 .ourteam-img {
    margin: 0 13px;
    border: 1px solid #e1e1e1;
	border-bottom:13px solid #e1e1e1;
				transition: border ease-in 200ms;
		-moz-transition: border ease-in 200ms;/* Firefox 4 */
		-webkit-transition:border ease-in 200ms;/* Safari and Chrome */
		-o-transition:border ease-in 200ms;/* Opera */
		-ms-transition:border ease-in 200ms;/* IE9? */
}
.ourteam-short05 h2{
   line-height:1.2;
   color:#424242;
   margin:0;
   font-size:15px;
}
.ourteam-short05 .text-style {
    text-align: left;
    padding: 0 55px 15px 55px;
}
.ourteam-short05 .ourteam-img:hover{
	border-bottom:13px solid #20a3f0;
}
.ourteam-short05.carousel .owl-buttons .owl-prev, 
.ourteam-short05.carousel .owl-buttons .owl-next{
    top: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 0px;
    text-align: center;
    margin: -25px 0 0 0;
    background-color: #4d4e4d;
    border-radius:0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}
.ourteam-short05.carousel .owl-buttons .owl-prev:before, 
.ourteam-short05.carousel .owl-buttons .owl-next:before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);  
    transition: all ease-in 300ms;
    -moz-transition: all ease-in 300ms;
    -webkit-transition: all ease-in 300ms;
    -o-transition: all ease-in 300ms;
    font-size: 0;
    -ms-transition: all ease-in 300ms;
    margin: -5px 0 0 -10px;
    border-bottom: 0;
}
.ourteam-short05.carousel .owl-buttons .owl-next:before{
    border-right: 0;
	margin:-5px -10px 0 -0;
    right: 50%;
    left: auto;
	    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
} 
.ourteam-short05.carousel .owl-buttons .owl-prev:after, 
.ourteam-short05.carousel .owl-buttons .owl-next:after{
    content: "";
    width: 20px;
    height: 1px;
    border-bottom: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    /* opacity: 0.8; */
    transition: all ease-in 300ms;
    -moz-transition: all ease-in 300ms;
    -webkit-transition: all ease-in 300ms;
    -o-transition: all ease-in 300ms;
    -ms-transition: all ease-in 300ms;
    margin: 0 0 0 -10px;
}
/*ourteam-short06*/
.ourteam-short06 h2{	
   color:#fff;
   margin:0;
   font-size:15px;
   background-color:#20a3f0;
   position:relative;
   line-height:31px;
   height:31px;
   display:block;
   margin:0 40px;
}
.ourteam-short06 .teamshort-img{
  margin:0 0 -15px 0;
}
.ourteam-short06 .teamshort-img img{
  width:100%;
}
.ourteam-short06 span{
 display:block;
 margin:10px 0 5px 0;
}
.ourteam-short06 .social em {
    display: inline-block;
    padding: 5px 10px;
    color: #7f7f7f;
    font-size: 16px;
}
.ourteam-short06 .social em:hover{
   color:#20a3f0;
}
.ourteam-short06 .photo_box{
  position:relative;
}

.ourteam-short06 h2:before {
    border: 16px solid transparent;
    border-right: 8px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    left: -24px;
    top: -1px;
    width: 0;
}
.ourteam-short06 h2:after{
    border: 16px solid transparent;
    border-left: 8px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    right: -24px;
    top: -1px;
    width: 0;
}
/*ourteam-short07*/
.ourteam-short07{
    background: #eeeeee;
    border: 1px solid #e5e5e5;
    padding: 70px 40px 30px 40px;
}
.ourteam-short07,
.ourteam-short07 h2{
	transition: all  ease-in 300ms;
	-moz-transition: all  ease-in 300ms;/* Firefox 4 */
	-webkit-transition:all  ease-in 300ms;/* Safari and Chrome */
	-o-transition:all  ease-in 300ms;/* Opera */
	-ms-transition:all  ease-in 300ms;/* IE9? */
}
.ourteam-short07:hover{
   background-color:#20a3f0;
   color:#fff;
}
.ourteam-short07:hover h2,
.ourteam-short07:hover .social em{
   color:#fff;
}
.ourteam-short07 h2{
   line-height:1.2;
   color:#343434;
   margin:0;
   font-size:15px;
   font-weight:bold;
}
.ourteam-short07 .teamshort-img {
    position: absolute;
    left: 50%;
    top: -35px;
    margin: 0 0 0 -45px;
}
.ourteam-short07 .teamshort-img img{
      border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50%;
	width:90px;
	height:90px;
	border:1px solid #e5e5e5;
}
.ourteam-short07 span{
  display:block;
  margin:5px 0 25px 0;
}
.ourteam-short07 .social{
  margin:20px 0 0 0;
}
.ourteam-short07 .social em{
  font-size:18px;
  color:#393939;
  display:inline-block;
  margin:5px 6px;	
}
/*ourteam-short08*/
.ourteam-short08{
  float:left;
  width:25%;
  position:relative;
}
.ourteam-short08:after{
  position:absolute;
  right:0;
  content:"";
  border:1px solid #fff;
  height:100%;
  top:0;
}
.ourteam-short08 .photo_box .ico i:before {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    border-bottom: 5px solid #fff;
    left: 50%;
    top: 50%;
    margin: -16px 0 0 -7px;
}
.ourteam-short08 .photo_box .ico i:after {
    content: "";
    position: absolute;
    height: 32px;
    width: 32px;
    border-left: 5px solid #fff;
    left: 50%;
    top: 50%;
    margin: -9px 0 0 0;
}
.ourteam-short08 .photo_box .shade {
    background-color: #20a3f0;
}
.ourteam-short08 .photo_box:hover .shade {
    filter: alpha(opacity=100);
    opacity: 1;
}
.ourteam-short08 .photo_box .ico span, 
.ourteam-short08 .photo_box .ico em, 
.ourteam-short08 .photo_box .ico i, 
.ourteam-short08 .photo_box .ico .fa{
   background-color:transparent;
}
.ourteam-short08 .photo_box:hover .text-style{
  background-color:#393939;
}
.ourteam-short08 .photo_box:hover,
.ourteam-short08 .photo_box:hover .text-style h2{
  color:#fff;
}
.ourteam-short08 .photo_box:hover .text-style:before{
  display:none;
}
.ourteam-short08 .photo_box .ico i:before {
    content: "";
    position: absolute;
    width: 68px;
    height: 68px;
    border-bottom: 2px solid #fff;
    left: 50%;
    top: 50%;
    margin: -68px 0 0 -34px;
}
.ourteam-short08 .photo_box .ico i:after {
    content: "";
    position: absolute;
    height: 68px;
    width: 68px;
    border-left: 2px solid #fff;
    left: 50%;
    top: 50%;
    margin: -34px 0 0 -2px;
}
.ourteam-short08 .photo_box .ico span, 
.ourteam-short08 .photo_box .ico em, 
.ourteam-short08 .photo_box .ico i, 
.ourteam-short08 .photo_box .ico .fa{
   background-color:transparent;
}
.ourteam-short08 .text-style{
  background-color:#e9e9e9;
  position:relative;
  padding:40px 20px 20px 20px;
  line-height: 1.4;
      transition: all ease-in 300ms;
    -moz-transition: all ease-in 300ms;
    -webkit-transition: all ease-in 300ms;
    -o-transition: all ease-in 300ms;
    -ms-transition: all ease-in 300ms;
}
.ourteam-short08 .text-style:before {
    border: 10px solid transparent;
    border-bottom: 10px solid #e9e9e9;
    content: "";
    display: block;
    position: absolute;
    left: 48px;
    top: -20px;
    width: 0;
}

.ourteam-short08 .text-style h2{
   line-height:1.2;
   color:#424242;
   margin:15px 0 6px 0;
   font-size:15px;
   font-weight:bold;
   font-size:13px;
         transition: all ease-in 300ms;
    -moz-transition: all ease-in 300ms;
    -webkit-transition: all ease-in 300ms;
    -o-transition: all ease-in 300ms;
    -ms-transition: all ease-in 300ms;
}
.ourteam-short08 .text-style span{

}
/*ourteam-short09*/
.ourteam-short09{
  margin:0;
}
.ourteam-short09 .photo_box{
  float:left;
  width:25%;
  position:relative;
}
.ourteam-short09 .photo_box .shade{
  background-color:#20a3f0;
}
.ourteam-short09 .photo_box:hover .shade{
    filter: alpha(opacity=95);
    opacity: 0.95;
}
.ourteam-short09 .social em{
  width:56px;
  height:56px;
  border:1px solid #fff;
  text-align:center;
  line-height:56px;
  color:#fff;
  margin:3px 4px;
  display:inline-block;
        border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50%;
	font-size:16px;

}
.ourteam-short09 .content h2{
    font-size: 13px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    position: relative;
    margin: 40px 0 20px 0;
}
.ourteam-short09 .content h2:before{
  content:"";
  border:1px solid rgba(255,255,255,0.5);
  position:absolute;
  width:36px;
  margin:-8px 0 0 -18px;
  left:50%;
}
/*ourteam-short10*/
.ourteam-short10 {
    padding: 0 24px;
}
.ourteam-short10 h2{
   line-height:1.2;
   font-weight:bold;
   color:#424242;
   margin:0;
   font-size:15px;
}
.ourteam-short10 span{
  display:block;
  color:#20a3f0;
  font-size:15px;
  margin:5px 0 20px 0;
}
.ourteam-short10 .teamshort-img {
    padding: 0 0 30px 0;
}
.ourteam-short10 .teamshort-img img{
      -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: url("/Portals/_default/Skins/ForVend/images/gray.svg#grayscale");
    filter: grayscale(100%);
    filter: gray;
}
.ourteam-short10 .teamshort-img:hover img {
    filter: url("/Portals/_default/Skins/ForVend/images/gray.svg#normal");
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
    filter: none;
}

.ourteam-short10 [class*=dg-btn]{
  margin-top:20px;
}
/*ourteam-short11*/
.ourteam-short11 .text-style {
    position: absolute;
    bottom: 0;
    z-index: 1;
    background: #fff;
    width: 94%;
    margin: 3px 3%;
}
.ourteam-short11 .text-style h2{
   line-height:1.2;
   font-weight:normal;
   color:#000;
   margin:15px 0;
   font-size:15px;
}
.ourteam-short11 .text-style h2 span{
  color:#666666;
}
.ourteam-short11 .text-style .social{
  background-color:#20a3f0;
}
.ourteam-short11 .text-style .social em{
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    text-align: center;
    line-height: 32px;
    color: #fff;
    margin: 9px 3px;
    display: inline-block;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50%;
    font-size: 16px;
			transition: all ease-in 200ms;
		-moz-transition: all ease-in 200ms;/* Firefox 4 */
		-webkit-transition:all ease-in 200ms;/* Safari and Chrome */
		-o-transition:all ease-in 200ms;/* Opera */
		-ms-transition:all ease-in 200ms;/* IE9? */
}
.ourteam-short11 .text-style .social em:hover{
  background-color:#333;
  border:1px solid #333;

}
/*ourteam-short12*/
.ourteam-short12 .text-style {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 94%;
    margin: 3px 3%;
}
.ourteam-short12 .text-style h2{
   line-height:1.2;
   font-weight:normal;
   color:#202020;
   padding:15px 0;
   font-size:15px;
   background-color:#20a3f0;
   position:relative;
   margin:0;
}
.ourteam-short12 .text-style h2:before {
    border: 8px solid transparent;
    border-top: 42px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    left: 18px;
    width: 0;
    bottom: -37px;
    transform: rotate(45deg);
    -webkit-transform: rotate(30deg);
}
.ourteam-short12 .text-style h2 span{
  color:#fff;
}
.ourteam-short12 .text-style .social em{
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    color: #fff;
	background-color:#20a3f0;
    margin: 9px 3px;
    display: inline-block;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50%;
    font-size: 16px;
			transition: all ease-in 200ms;
		-moz-transition: all ease-in 200ms;/* Firefox 4 */
		-webkit-transition:all ease-in 200ms;/* Safari and Chrome */
		-o-transition:all ease-in 200ms;/* Opera */
		-ms-transition:all ease-in 200ms;/* IE9? */
}
.ourteam-short12 .text-style .social em:hover{
  background-color:#333;
}
/*ourteam-short13*/
.ourteam-short13 {
    border: 1px solid #dedddd;
    border-radius: 5px;
    padding: 0 18px 30px 18px;
}
.ourteam-short13:hover h2{
  color:#20a3f0;
}
.ourteam-short13 h2,
.ourteam-short13 span,
.ourteam-short13 p{
   text-align:left;
}
.ourteam-short13 h2{
   line-height:1.2;
   font-weight:bold;
   color:#424242;
   margin:20px 0 5px 0;
   font-size:15px;
}
.ourteam-short13 span{
  display:block;
  border-bottom:1px solid #dedddd;
  margin:0 0 15px 0;
  padding:0 0 15px 0;
}
.ourteam-short13 .dg-btn-2{
    margin: 15px 0 0 0;
    border: 1px solid #dedddd;
    color: #666666;
}
/*ourteam-short14*/
.ourteam-short14 {
    width: 20%;
    float: left;
}
.ourteam-short14 .photo_box{
  padding:0 12px;
}
.ourteam-short14 .photo_box .ico span, 
.ourteam-short14 .photo_box .ico em, 
.ourteam-short14 .photo_box .ico i, 
.ourteam-short14 .photo_box .ico .fa{
    width: 40px!important;
    height: 40px!important;
    line-height: 40px!important;
	    border-radius: 5px;
    -moz-border-radius:5px;
    -webkit-border-radius: 5px;
	background-color:rgba(255,255,255,0.8);
	color:#424242;
}
.ourteam-short14 .photo_box .shade:before{
  content:"";
  position:absolute;
  width:94%;
  height:94%;
  border:1px solid #fff;
  left:3%;
  top:3%;

}
.ourteam-short14  .text_sytle_3{
   padding:18px 0 0 0;
   text-align:center;   
}
.ourteam-short14  .text_sytle_3 h3{
   line-height:1.2;
   font-weight:normal;
   color:#424242;
   padding:0 0;
   font-size:15px;
   margin:0;
   font-weight:bold;
}
.ourteam-short14  .text_sytle_3 h3 span{
  font-size:13px;
  color:#666;
  font-weight:normal;
}
/*.ourteam-short14:first-child .photo_box {
    margin-left: -12px;
    padding-right: 24px;
}
.ourteam-short14:last-child .photo_box {
    margin-right: -12px;
    padding-left: 24px;
}*/
/*ourteam-short15*/
.ourteam-short15 {
    width: 20%;
    float: left;
}
.ourteam-short15 .photo_box{
  padding:0 12px;
}
.ourteam-short15 .photo_box .ico span, 
.ourteam-short15 .photo_box .ico em, 
.ourteam-short15 .photo_box .ico i, 
.ourteam-short15 .photo_box .ico .fa{
    width: 40px!important;
    height: 40px!important;
    line-height: 40px!important;
	    border-radius: 5px;
    -moz-border-radius:5px;
    -webkit-border-radius: 5px;
	background-color:#fff;
	color:#424242;
	    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
		margin:0 14px;
}
.ourteam-short15 .photo_box .ico span:before, 
.ourteam-short15 .photo_box .ico em:before, 
.ourteam-short15 .photo_box .ico i:before, 
.ourteam-short15 .photo_box .ico .fa:before{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0;
    top: 0;
}
.ourteam-short15  .text_sytle_3{
   padding:30px 15px 0 15px;
   text-align:center;   
}
.ourteam-short15  .text_sytle_3 h3{
   line-height:1.2;
   font-weight:normal;
   color:#424242;
   padding:0 0;
   font-size:15px;
   margin:0;
   font-weight:bold;
}
.ourteam-short15  .text_sytle_3 span{
    line-height: 1.2;
    display: block;
    margin: 0 0 20px 0;
}
/*ourteam-short16*/
.ourteam-short16{
  border:1px solid #dedddd;
      transition: border ease-in 200ms;
    -moz-transition: border ease-in 200ms;
    -webkit-transition: border ease-in 200ms;
    -o-transition: border ease-in 200ms;
    -ms-transition: border ease-in 200ms;
}
.ourteam-short16:hover{
  border:1px solid #20a3f0;
}
.ourteam-short16 .teamshort-img img{
  max-width:100%;
  width:100%;
}
.ourteam-short16 .text-style {
    padding: 25px 30px 25px 30px;
}
.ourteam-short16 h2{
   line-height:1.2;
   font-weight:normal;
   color:#333333;
   margin:0 0 20px 0;
   font-size:15px;
}
.ourteam-short16 .social{
    border-top: 1px solid #d3d3d3;
    padding: 20px 0 0 0;
	margin:20px 0 0 0;
}
.ourteam-short16 .social em{
    font-size:18px;
    height: auto;
    position: relative;
    display: inline-block;
    width: 38px;
    height: 38px;
    border:1px solid #dfdede;
    line-height: 39px;
    text-align: center;
    color: #666666;
    margin: 1px 3px;
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
		    border-radius: 50%;
    -moz-border-radius:50%;
    -webkit-border-radius: 50%;
}
.ourteam-short16 .social em:hover{
  background-color:#20a3f0;
  color:#fff;
}
/*ourteam-short17*/
.ourteam-short17 {
    background-color: #ededed;
}
.ourteam-short17 .social{
    background-color: #666666;
	padding:8px 0;
	    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}
.ourteam-short17:hover .social{
   background-color:#20a3f0;
}
.ourteam-short17 .social em{
    font-size: 18px;
    color: #fff;
	display:inline-block;
	margin:3px 10px;
}
.ourteam-short17 .text-style{
    padding:30px 50px 20px 50px;
}
.ourteam-short17 .text-style h2{
   line-height:1.2;
   font-weight:bold;
   color:#333333;
   margin:0 0 0 0;
   font-size:15px;
}
.ourteam-short17 .text-style span{
    padding: 3px 0 20px 0;
    display: block;
    line-height: 1.2;
}
/*ourteam-short18*/
.ourteam-short18{
  border:1px solid #d3d3d3;
}
.ourteam-short18 .teamshort-img img{
  width:100%;
}

.ourteam-short18 .text-style,
.ourteam-short18 .text-style h2,
.ourteam-short18 p{
  	    transition: all ease-in 300ms;
    -moz-transition: all ease-in 300ms;
    -webkit-transition: all ease-in 300ms;
    -o-transition: all ease-in 300ms;
    -ms-transition: all ease-in 300ms;
}
.ourteam-short18:hover .text-style,
.ourteam-short18:hover p{
  background-color:#20a3f0;
  color:#fff;
}
.ourteam-short18:hover .text-style h2,
.ourteam-short18:hover .text-style .social em{
  color:#fff;
}
.ourteam-short18 .text-style h2{
   line-height:1.2;
   font-weight:bold;
   color:#333333;
   margin:0 0 0 0;
   font-size:15px;
}
.ourteam-short18 .text-style .text-left{
  display:inline-block;
  width:60%;
}
.ourteam-short18 .text-style .social{
  display:inline-block;
  vertical-align:top;
  padding:6px 0;
}
.ourteam-short18 .text-style .social em{
   font-size:18px;
   color:#353535;
   padding: 3px 0 3px 20px;
   display: inline-block;
}
.ourteam-short18 .text-style{
    text-align: left;
    padding: 20px 20px 15px 20px;
}
.ourteam-short18 .line {
    height: 1px;
    background-color: #d3d3d3;
}
.ourteam-short18 p{
   padding:15px 20px 23px 20px;
   text-align:left;
   margin:0;
}
/*ourteam-short19*/
.ourteam-short19:after{
  position:absolute;
  right:0;
  content:"";
  border:1px solid #fff;
  height:100%;
  top:0;
}
.ourteam-short19 .photo_box .shade {
    background-color: #000;
}
.ourteam-short19 .photo_box:hover .shade {
    filter: alpha(opacity=80);
    opacity:0.8;
}
.ourteam-short19 .photo_box .ico span, 
.ourteam-short19 .photo_box .ico em, 
.ourteam-short19 .photo_box .ico i, 
.ourteam-short19 .photo_box .ico .fa{
   background-color:transparent;
}
.ourteam-short19 .photo_box:hover,
.ourteam-short19 .photo_box:hover .text-style h2,
.ourteam-short19 .photo_box:hover .text-style span{
  color:#fff;
}
.ourteam-short19 .photo_box .ico i:before {
    content: "";
    position: absolute;
    width: 76px;
    height: 76px;
    border-bottom: 1px solid #fff;
    left: 50%;
    top: 50%;
    margin: -76px 0 0 -38px;
}
.ourteam-short19 .photo_box .ico i:after {
    content: "";
    position: absolute;
    height: 76px;
    width: 76px;
    border-left: 1px solid #fff;
    left: 50%;
    top: 50%;
    margin: -38px 0 0 -2px;
}
.ourteam-short19 .photo_box .ico span, 
.ourteam-short19 .photo_box .ico em, 
.ourteam-short19 .photo_box .ico i, 
.ourteam-short19 .photo_box .ico .fa{
   background-color:transparent;
}
.ourteam-short19 .text-style{
  background-color:#2d2d2d;
  position:relative;
  padding:25px 20px 15px 20px;
  line-height: 1.4;
      transition: all ease-in 300ms;
    -moz-transition: all ease-in 300ms;
    -webkit-transition: all ease-in 300ms;
    -o-transition: all ease-in 300ms;
    -ms-transition: all ease-in 300ms;
	color:#fff;
}
.ourteam-short19 .photo_box:hover .text-style{
   background-color:#20a3f0;
}
.ourteam-short19 .text-style h2{
   line-height:1.2;
   color:#fff;
   margin:20px 0 0 0;
   font-size:15px;
   font-weight:bold;
         transition: all ease-in 300ms;
    -moz-transition: all ease-in 300ms;
    -webkit-transition: all ease-in 300ms;
    -o-transition: all ease-in 300ms;
    -ms-transition: all ease-in 300ms;
}
.ourteam-short19 .social em {
    font-size: 16px;
    height: auto;
    position: relative;
    display: inline-block;
    width: 28px;
    height: 26px;
    border: 1px solid #fff;
    line-height: 26px;
    text-align: center;
    color: #fff;
    margin: 1px 3px; 
    border-radius: 5px;
    -moz-border-radius:5px;
    -webkit-border-radius: 5px;
}
.ourteam-short19 .text-style span{
  color:#20a3f0;
  line-height:1.2;
  padding: 0 0 15px 0;
  display: block;
        transition: all ease-in 300ms;
    -moz-transition: all ease-in 300ms;
    -webkit-transition: all ease-in 300ms;
    -o-transition: all ease-in 300ms;
    -ms-transition: all ease-in 300ms;
}
.ourteam-bg{
  background:url("/Portals/_default/Skins/ForVend/images/shortteam-bg.jpg") no-repeat left center;
  position:relative;
  background-size:cover;
}
.ourteam-short20{
  position:relative;
  padding:50px 65px 50px 175px;
  color:#fff;
  text-align:left;
  margin:0;
  min-height:320px;
}
.ourteam-short20 .teamshort-img{
  position:absolute;
  left:0;
}
.ourteam-short20 .teamshort-img img{
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius:  50%;
	width:130px;
	height:130px;
    margin:0 0 35px 0;
}
.ourteam-bg .col-sm-6:nth-child(2) .teamshort-img,
.ourteam-bg .col-sm-6:last-child .teamshort-img{
  left:65px;
}
.ourteam-bg .col-sm-6:nth-child(2) .ourteam-short20,
.ourteam-bg .col-sm-6:last-child .ourteam-short20{ 
  padding-left:240px;
  padding-right:0;
}
.ourteam-short20 .social em {
    font-size: 16px;
    height: auto;
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    margin: 1px 3px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	background-color:#31aae2;
}
.ourteam-short20 .teamshort-r h2{
   line-height:1.2;
   color:#fff;
   margin:15px 0 0 0;
   font-size:15px;
   font-weight:normal;
   letter-spacing:1px; 
}
.ourteam-short20 .teamshort-r span{
   color:#20a3f0;
   padding:3px 0 20px 0;
   display:block;
   line-height:1.2;
}
.ourteam19-line {
    width: 98%;
    height: 1px;
    background-color: #138daa;
    margin-left: 1%;
}
.ourteam-bg:before{
    position: absolute;
    left: 50%;
    border-left: 1px solid #138daa;
    content: "";
    height: 80%;
    top: 10%;
}
/*ourteam-short21*/
.ourteam-short21 {
    text-align: left;
	min-height:194px;
}
.ourteam-short21  .teamshort-img {
    float: left;
    overflow: hidden;
	margin:0 30px 0 0;
}
.ourteam-short21  .teamshort-r {
    overflow: hidden;
}
.ourteam-short21 .social{
  margin:15px 0 30px 0;
}
.ourteam-short21 .social em {
    font-size: 16px;
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #666666;
    margin:3px 2px;
	border:1px solid #dedddd
}
.ourteam-short21 .social em:hover{
   background-color:#20a3f0;
   color:#fff;
}
.ourteam-short21 .social a:first-child em{
  margin-left:0;
}
.ourteam-short21 .social a:last-child em{
  margin-right:0;
}
.ourteam-short21 .teamshort-r h2{
    line-height:1;
    font-weight:normal;
    color: #424242;
    margin:25px 0 0 0;
    font-size: 15px;
}
.ourteam-short21 .teamshort-r span{
   color:#20a3f0;
   padding:0 0 20px 0;
   display:block;
}
/*ourteam-short22*/
.ourteam-short22 {
    text-align: left;
	background-color:#e6e6e6;
	min-height: 252px;
    padding:8px 22px 8px 8px;
	        transition: all ease-in 300ms;
    -moz-transition: all ease-in 300ms;
    -webkit-transition: all ease-in 300ms;
    -o-transition: all ease-in 300ms;
    -ms-transition: all ease-in 300ms;
}
.ourteam-short22  .teamshort-img {
    float: left;
    overflow: hidden;
	margin:0 30px 0 0;
}
.ourteam-short22  .teamshort-r {
    overflow: hidden;
}
.ourteam-short22 .social em {
    font-size: 16px;
    position: relative;
    display: inline-block; 
    text-align: center;
    color: #666666;
    padding:12px;
}
.ourteam-short22:hover .social em,
.ourteam-short22:hover .teamshort-r h2,
.ourteam-short22:hover .teamshort-r span{
   color:#fff;
}
.ourteam-short22:hover{
   background-color:#20a3f0;
   color:#fff;
}
.ourteam-short22 .social {
    margin-left: -12px;
    border-top: 1px solid #dadada;
    padding: 10px 0 0 0;
    margin-top: 30px;
}
.ourteam-short22 .teamshort-r h2{
    line-height:1;
    font-weight:normal;
    color: #424242;
    margin:25px 0 0 0;
    font-size: 15px;
		        transition: all ease-in 300ms;
    -moz-transition: all ease-in 300ms;
    -webkit-transition: all ease-in 300ms;
    -o-transition: all ease-in 300ms;
    -ms-transition: all ease-in 300ms;
}
.ourteam-short22 .teamshort-r span{
   color:#20a3f0;
   padding:0 0 20px 0;
   display:block;
   		        transition: all ease-in 300ms;
    -moz-transition: all ease-in 300ms;
    -webkit-transition: all ease-in 300ms;
    -o-transition: all ease-in 300ms;
    -ms-transition: all ease-in 300ms;
}
/*ourteam-short23*/
.ourteam-short23 {
    text-align: left;
}
.ourteam-short23  .teamshort-img {
    float: left;
    overflow: hidden;
	margin:0 30px 0 0;
	width:105px;
	height:105px;
	    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	border:1px solid #717171;
	
}
.ourteam-short23  .teamshort-img img{
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	width:97px;
	height:97px;
	margin:3px;
}
.ourteam-short23  .teamshort-r {
    overflow: hidden;
	padding:0 0 20px 0;
}
.ourteam-short23 .teamshort-r h2{
    line-height:1.2;
    font-weight:bold;
    color: #424242;
    margin:0 0 0 0;
    font-size: 15px;
		        transition: all ease-in 300ms;
    -moz-transition: all ease-in 300ms;
    -webkit-transition: all ease-in 300ms;
    -o-transition: all ease-in 300ms;
    -ms-transition: all ease-in 300ms;
}
.ourteam-short23 .teamshort-r span{
    color: #20a3f0;
    padding: 2px 0 15px 0;
    display: block;
    position: relative;
    margin: 0 0 15px 0;
}
.ourteam-short23 .teamshort-r span:after{
  content:"";
  position:absolute;
  left:0;
  height:1px;
  background-color:#d8d8d8;
  width:140px;
  bottom:0;  
}
@media only screen and (min-width:1500px) {

}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.ourteam-short09 .photo_box {
    float: left;
    position: relative;
    width: 50%;
}
.ourteam-short14 .photo_box,
.ourteam-short15 .photo_box{
    padding: 0 0;
}
/*.ourteam-short14:first-child .photo_box {
    margin-left: 0;
    padding-right: 0;
}
.ourteam-short14:last-child .photo_box {
    margin-right: 0;
    padding-left: 0;
}*/
.ourteam-short20 {  
    padding: 50px 0 50px 150px;
}
.ourteam-bg .col-sm-6:nth-child(2) .ourteam-short20, .ourteam-bg .col-sm-6:last-child .ourteam-short20 {
    padding-left: 150px;
    padding-right: 0;
}
.ourteam-bg .col-sm-6:nth-child(2) .teamshort-img, .ourteam-bg .col-sm-6:last-child .teamshort-img {
    left: 0;
}
.ourteam-short22 .teamshort-img{
   float:none;
}
}
@media only screen and (max-width:991px) {
.ourteam-short07 span {
    margin:0 0 5px;
}
.ourteam-short07 {
    padding: 60px 15px 15px;
}
.ourteam-short08 .text-style,
.ourteam-short16 .text-style,
.ourteam-short17 .text-style{
  padding:15px;
}
.ourteam-short23 .teamshort-img {  
    height: 66px;
    margin: 0 15px 0 0;
    width: 66px;
}
.ourteam-short23 .teamshort-img img {
    height: 60px;
    margin: 2px;
    width: 60px;
}
.ourteam-short21 .teamshort-img,
.ourteam-short23 .teamshort-img{
  margin:0 15px 0 0 ;
}
.ourteam-short15 .text_sytle_3 span {
    margin: 0 0 5px 0;
}
.ourteam-short15 .text_sytle_3 {
    padding: 10px 15px 0 15px;
}
.ourteam-short14 .text_sytle_3 {
    padding: 10px 0 0 0;
}
}
@media only screen and (max-width:767px) {
.ourteam-short07{
  margin-top:50px;
}
.ourteam-short08,
.ourteam-short09 .photo_box,
.ourteam-short14,
.ourteam-short15{
    float: none;
    width: 100%;
}
.ourteam-short10 {
    padding: 0;
}
.ourteam-bg:before,
.ourteam19-line{
  display:none;
}
.ourteam-short20 .teamshort-img {
    left: 0;
    position: relative;
}
.ourteam-short20 {  
    margin: 0;
    padding: 0;
    text-align: left;
}
.ourteam-bg .col-sm-6:nth-child(2) .teamshort-img, .ourteam-bg .col-sm-6:last-child .teamshort-img {
    left: 0;
}
.ourteam-bg .col-sm-6:nth-child(2) .ourteam-short20, .ourteam-bg .col-sm-6:last-child .ourteam-short20 {
    padding-left: 0;
    padding-right: 0;
}
.ourteam-short20 .teamshort-img img {
    margin: 0 0 10px;
}
.ourteam-short20 .teamshort-r h2 {
    margin: 10px 0 0;
}
.ourteam-short20 .teamshort-r span {
    padding: 3px 0 0;
}
.ourteam-short20 {
    margin: 10px 0;
}
.ourteam-short21 .teamshort-r h2{
   margin:0;
}
.ourteam-short21 .teamshort-r span{
  padding:0 0 5px 0;
}
.ourteam-short21 .social {
    margin: 15px 0 0;
}
.ourteam-short21 .teamshort-r {
    overflow: inherit;
}
.ourteam-short22 .teamshort-img {
    float: none;
}
/*.ourteam-short14:first-child .photo_box {
    margin-left: 0;
    padding-right: 12px;
}
.ourteam-short14:last-child .photo_box {
    margin-right: -0;
    padding-left: 12px;
}*/
}
/**/ /*Localized and optimizer Pages.css load page by Dnnplus.ir*/










/* CSS Document */
html, body { margin: 0px; padding: 0px; font: normal 13px/1.5 'IRANSans', sans-serif; color: #8a8989; height: 100%; }
p { margin: 0px 0px 8px 0px; }
header, nav, section, footer { display: block; }
A, A:link { text-decoration: none; -moz-transition: color ease 300ms; /* Firefox 4 */ -webkit-transition: color ease 300ms; /* Safari and Chrome */ -o-transition: color ease 300ms; /* Opera */ -ms-transition: color ease 300ms; transition: color ease 300ms; /* IE9? */ }
    A:active { text-decoration: none; }
    A:visited { text-decoration: none; }
    A:hover { text-decoration: underline; }
    A:focus { outline: none; -moz-outline: none; }
h1, h2, h3, h4, h5 { letter-spacing: normal; margin: 5px 0 10px 0; }
form#Form { height: 100%; }
.ModuleTitle_SubMenu { z-index: 9999 !important; }
.clearfix:after { clear: both; content: "."; height: 0px; font-size: 0px; visibility: hidden; display: block; }
.clearfix { display: block; }
#dnn_ControlPanel #dnnCPWrap { filter: none !important; }
ul.dnnActionMenuBody li ul li a, ul.dnnActionMenuBody li ul li a img { color: #328DDE !important; }
.clear { clear: both; }
.opacity { opacity: 0; }
.center { text-align: center; }


/**************** Login page******************/
@media only screen and (max-width:767px) {
    .loginContent .LoginPanel { width: 100% !important; }
    .loginContent .dnnFormItem .dnnLoginRememberMe { white-space: nowrap; }
    .loginContent .dnnFormLabel { display: block !important; text-align: left !important; }
}

/**************** register page******************/
@media only screen and (max-width:767px) {
    .dnnRegistrationForm { min-width: inherit !important; }
        .dnnRegistrationForm .dnnForm { width: 100%; }
        .dnnRegistrationForm .dnnFormLabel { display: block !important; text-align: left !important; }
        .dnnRegistrationForm .dnnForm .dnnFormItem .dnnLabel { display: block !important; float: none !important; text-align: left !important; width: 100%; }
        .dnnRegistrationForm .dnnForm .dnnFormItem a.dnnFormHelp { right: auto !important; position: static !important; margin-left: 5px !important; }
        .dnnRegistrationForm .dnnForm .dnnFormItem { padding: 0px !important; margin: 0px !important; }
        .dnnRegistrationForm .dnnFormItem input[type="text"], .dnnRegistrationForm .dnnFormItem input[type="password"], .dnnRegistrationForm .dnnFormItem input[type="email"], .dnnRegistrationForm .dnnFormItem input[type="tel"], .dnnRegistrationForm .dnnFormItem select, .dnnRegistrationForm .dnnFormItem textarea { width: 100%; margin-bottom: 10px !important; }
}

/**************** Password page******************/
@media only screen and (max-width:767px) {
    .dnnSendPasswordContent { width: auto !important; }
        .dnnSendPasswordContent .dnnLabel { display: block !important; width: 100% !important; text-align: left; }
        .dnnSendPasswordContent a.dnnFormHelp, .dnnSendPasswordContent .dnnForm .dnnFormItem a.dnnFormHelp, .dnnSendPasswordContent .dnnTooltip label a.dnnFormHelp { position: static; }
        .dnnSendPasswordContent input[type="text"], .dnnSendPasswordContent input[type="password"], .dnnSendPasswordContent input[type="email"], .dnnSendPasswordContent input[type="tel"], .dnnSendPasswordContent select, .dnnSendPasswordContent textarea { width: 90%; margin-bottom: 10px !important; }
        .dnnSendPasswordContent ul.dnnActions { padding: 0 !important; }
}
/* ********** Control Panel Style ************** */
.CommandButton, A.CommandButton:link, A.CommandButton:visited, A.CommandButton:active { font-size: 12px; color: #973939; text-decoration: none; font-weight: normal; }
A.CommandButton:hover { color: #973939; text-decoration: underline; font-size: 12px; font-weight: normal; }
.FileManager A, .FileManager A:link, .FileManager A:visited, .FileManager A:active { color: #000; text-decoration: underline; }
    .FileManager A:hover { color: #000; text-decoration: none; }
/* ********** Pane Style ************** */
.DNNEmptyPane { display: none; }
[class*="Pane"] { margin-bottom: 40px; }
.BannerPane { background-color: #FFF; position: relative; z-index: 4; }
    .BannerPane.DNNEmptyPane { width: 100%; display: block; min-height: inherit !important; }
.footer_box .FooterBottomPaneD { margin: 0 !important; }
#dnn_content { padding-top: 40px; }
.LeftFixedPane { position: fixed; left: 0; top: 50%; }
.RightFixedPane { position: fixed; right: 0; top: 50%; }
.BottomFixedPane { bottom: 0; left: 50%; }
.TopOutPane { margin-top: -40px; }

@media only screen and (min-width: 1600px) {
    [class*="Pane"] { margin-bottom: 60px; }
    #dnn_content { padding-top: 60px; }
    .TopOutPane { margin-top: -60px; }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
}

@media only screen and (max-width: 767px) {
    [class*="Pane"] { margin-bottom: 20px; }
    #dnn_content { padding-top: 20px; }
    .TopOutPane { margin-top: -20px; }
}

.CoverPane, .BannerPane, .BottomOutPane { margin-bottom: 0px; }

.LogoPane, .mobileLogoPane, .dnn_logo .Logobox { margin: 0; display: inline-block; max-width: 100%; vertical-align: top; height: 100%; }
    .LogoPane div { display: inline-block; height: 100%; max-width: 100%; }
    .LogoPane.dnnSortable { min-height: inherit !important; }
.BannerBoxPane { margin: 0; }
.FixedLogoPane { display: none; }
.roll_menu.roll_activated .FixedLogoPane { margin: 0; display: inline-block; max-width: 100%; vertical-align: top; height: 100%; }
.FixedLogoPane div { display: inline-block; height: 100%; max-width: 100%; }
.FixedLogoPane a { display: block; height: 100%; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); position: relative; font-size: 0; }
.FixedLogoPane img { margin: 0; padding: 0; border: none; max-width: 100%; max-height: 100%; }
.roll_menu.roll_activated .dnn_logo .Logobox, .roll_menu.roll_activated .dnn_logo .LogoPane { display: none; }
.roll_menu.roll_activated .header-left, .roll_menu.roll_activated .header-right { vertical-align: middle; }
/* ********** Container Style ************** */
a[class*="banner-more"] { transition: background-color ease-in 200ms,border-color ease-in 200ms,color ease-in 200ms; -moz-transition: background-color ease-in 200ms,border-color ease-in 200ms,color ease-in 200ms; /* Firefox 4 */ -webkit-transition: background-color ease-in 200ms,border-color ease-in 200ms,color ease-in 200ms; /* Safari and Chrome */ -o-transition: background-color ease-in 200ms,border-color ease-in 200ms,color ease-in 200ms; /* Opera */ -ms-transition: background-color ease-in 200ms,border-color ease-in 200ms,color ease-in 200ms; /* IE9? */ }


/* ********** Breadcrumb Style ************** 
.breadcrumb, a.breadcrumb:link, a.breadcrumb:active, a.breadcrumb:visited {
	text-decoration: none;
	font-weight: normal;
	font-size: 14px;
	text-transform: uppercase;
	color: #2e2e2e;
}
a.breadcrumb:hover {
	font-weight: normal;
	text-decoration: underline;
}
.Breadcrumb_bg {
}

 @media only screen and (max-width: 767px) {
.breadcrumbBox .breadcrumbRight {
	display: none;
}
}
*/
/* ********** Other Style ************** */
.dnn_layout { margin: 0px auto; }
#dnn_wrapper { position: relative; }
/*language*/
.languageBox { white-space: nowrap; padding: 0px; text-align: center; }
    .languageBox img { width: 27px; height: 18px; }
    .languageBox span img { margin-right: 7px; filter: alpha(opacity=50); opacity: 0.5; vertical-align: middle; }
    .languageBox span.selected img { filter: alpha(opacity=100); opacity: 1; box-shadow: 0 0 2px rgba(255,255,255,0.4); -moz-box-shadow: 0 0 2px rgba(255,255,255,0.4); -webkit-box-shadow: 0 0 2px rgba(255,255,255,0.4); }
/*Login*/
.Login { text-align: center; }
    .Login .loginGroup, .Login .registerGroup, .Login .sep { display: inline-block; padding: 0px; margin: 0px; height: 30px; line-height: 30px; }
    .Login .sep { padding: 0 5px; }
    .Login .registerGroup ul { margin: 0; padding: 0; display: block; list-style: none; }
    .Login .registerGroup .buttonGroup > li, .Login .loginGroup > a { list-style: none; margin: 0; padding: 0; display: inline-block; line-height: 1; }
    .Login img { margin: 0 0 2px 8px; padding: 0; max-height: 26px; }
    .Login .fa { display: inline-block; vertical-align: middle; }
    .Login .registerGroup li.userMessages strong, .Login .registerGroup li.userNotifications strong { display: none; }
    .Login .registerGroup li.userMessages a, .Login .registerGroup li.userNotifications a { font-family: 'FontAwesome'; position: relative; padding: 0px 11px; text-decoration: none; }
        .Login .registerGroup li.userMessages a:before { content: "\f0e0"; position: absolute; left: 2px; top: 50%; margin-top: -12px; height: 20px; line-height: 24px; -moz-transform: scale(1.15); -ms-transform: scale(1.15); -o-transform: scale(1.15); transform: scale(1.15); -webkit-transform: scale(1.15); }
        .Login .registerGroup li.userNotifications a:before { content: "\f05a"; position: absolute; left: 2px; top: 50%; margin-top: -12px; height: 20px; line-height: 24px; -moz-transform: scale(1.15); -ms-transform: scale(1.15); -o-transform: scale(1.15); transform: scale(1.15); -webkit-transform: scale(1.15); font-size: 15px; }
        .Login .registerGroup li.userMessages a span, .Login .registerGroup li.userNotifications a span { position: absolute; bottom: 100%; right: 0px; margin: 0 -6px -7px 0; background-color: #20a3f0; padding: 1px 3px 1px; color: #FFF; font-size: 12px; font-family: Arial, Helvetica, sans-serif; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; z-index: 2; }
/* Search Style  */
.searchBox { background: transparent; display: block; }
    .searchBox > span { background: none; border: none; float: none; position: relative; white-space: nowrap; width: 100%; display: block; text-align: left; }
.search, a.search:link, a.search:active, a.search:visited { text-decoration: none; display: block; position: absolute; left: 0px; top: 0px; width: 30px; height: 30px; line-height: 30px; overflow: hidden; padding: 0px; color: #a1a0a0; text-align: center; font-family: 'FontAwesome'; font-style: normal; font-weight: normal; -webkit-font-smoothing: antialiased; font-size: 16px; }
a.search:before { content: "\f002"; }
.searchBox input.NormalTextBox { width: 80%; text-align: left; height: 18px; line-height: 18px; overflow: hidden; padding: 0px 3px 0px 3px; background: none; border: none; display: block; position: absolute; left: 25px; top: 6px; outline: 0; border-radius: 0px 0px 0px 0px; -webkit-appearance: none; color: inherit; vertical-align: middle; font-family: inherit; }
.searchBox input::-webkit-input-placeholder { color: inherit; }
.searchBox input:-moz-placeholder { color: inherit; }
.searchBox input::-moz-placeholder { color: inherit; }
.searchBox input:-ms-input-placeholder { color: inherit; }
.searchBox .searchInputContainer { position: static !important; vertical-align: middle; }
    .searchBox .searchInputContainer a.dnnSearchBoxClearText.dnnShow { top: 8px !important; left: auto; right: 44px !important; }
.searchBox .searchSkinObjectPreview { right: 0 !important; }
.searchBox ul.searchSkinObjectPreview > li > span { line-height: 1.2; display: inline-block; white-space: normal; }
.dnnSearchBoxPanel, .dnnSearchResultPanel { width: 100%; max-width: none; padding: 10px 0px !important; }
.dnnSearchResultPanel { padding: 10px 0px 7px 0px !important; }
ul.searchSkinObjectPreview { z-index: 1000 !important; }
ul.searchSkinObjectPreview { font-size: 13px; }
/*source_code*/
.source_code { margin: 5px 0px; }
    .source_code pre { display: none; }
    .source_code .source_box pre { display: block; }
    .source_code .source_box { display: none; }
/* ********** HEADER ************** */
#body, body { position: relative; }
.roll_logo { display: none; }
.dnn_logo { float: left; padding: 0; }
    .dnn_logo img { max-width: 100%; max-height: 100%; display: inline-block; vertical-align: middle; }
.header-top, .header-bottom { display: table; width: 100%; }
.header-left, .header-center, .header-right { display: table-cell; vertical-align: middle; }
.header-left { text-align: left; }
.header-right { text-align: right; }
.header-center { text-align: center; }
.header_bg { width: 100%; z-index: 100; }
.justify_fix { display: inline-block; width: 100%; height: 0; line-height: 0; overflow: hidden; }
.headerBox { position: relative; }
.menuRightBox { display: inline-block; vertical-align: middle; }
.roll_menu.roll_activated { position: fixed; width: 100%; z-index: 1000; }
.nav_box { position: relative; }
/*main menu*/
.dnn_menu { position: relative; margin: 0px; }
/*dnngo_megamenu */
#dnngo_megamenu { margin: 0px; padding: 0px; clear: both; }
    #dnngo_megamenu .primary_structure { position: relative; clear: both; margin: 0; padding: 0; }
        #dnngo_megamenu .primary_structure > li { float: left; list-style: none; position: relative; margin: 0; }
            #dnngo_megamenu .primary_structure > li > a { display: inline-block; padding: 0; word-spacing: normal; }
            * + html #dnngo_megamenu .primary_structure > li > a { display: inline; }
    #dnngo_megamenu > div > ul > li > a > span { display: inline-block; }
    #dnngo_megamenu .primary_structure > li > a:hover, #dnngo_megamenu .primary_structure > li.menu_hover > a, #dnngo_megamenu .primary_structure > li.current > a { text-decoration: none; }
    #dnngo_megamenu .primary_structure span img, #dnngo_megamenu .primary_structure span i, .multi_menu ul li i, .multi_menu ul li img { margin-right: 8px; width: 1.1em; text-align: center; }
    /*sub*/
    #dnngo_megamenu .dnngo_menuslide { display: none; position: absolute; top: 100%; left: 0px; z-index: 907; margin: 0; padding: 0; }
    #dnngo_megamenu .rtl .dnngo_menuslide.slide { left: auto !important; right: 0; }
    #dnngo_megamenu .dnngo_menuslide > .dnngo_boxslide { padding: 18px 40px 18px 0px; }
    #dnngo_megamenu .dnngo_slide_menu, #dnngo_megamenu .dnngo_boxslide { box-shadow: 0 0 4px rgba(0,0,0,0.2); -moz-box-shadow: 0 0 4px rgba(0,0,0,0.2); -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.2); -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden; }
        #dnngo_megamenu .dnngo_slide_menu .dnngo_submenu { box-shadow: 0 0 4px rgba(0,0,0,0.2); -moz-box-shadow: 0 0 4px rgba(0,0,0,0.2); -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.2); }
    #dnngo_megamenu .dnngo_masonrymenu { width: 100%; }
        #dnngo_megamenu .dnngo_masonrymenu > ul { float: left; }
            #dnngo_megamenu .dnngo_masonrymenu > ul > li { margin: 0px 38px; }
    /*dnngo_slide_menu*/
    #dnngo_megamenu .dnngo_slide_menu { margin: 0; padding: 0; white-space: nowrap; }
        #dnngo_megamenu .dnngo_slide_menu ul, #dnngo_megamenu .dnngo_slide_menu ul li { margin: 0; padding: 0; }
        #dnngo_megamenu .dnngo_slide_menu .dnngo_submenu { margin: 0; padding: 0; display: none; position: absolute; left: 100%; top: 0px; z-index: 904; }
        #dnngo_megamenu .dnngo_slide_menu li { position: relative; list-style: none; }
            #dnngo_megamenu .dnngo_slide_menu li a { text-decoration: none; text-align: left; padding: 8px 60px 8px 20px; font-size: 13px; display: block; transition: all ease-in 200ms; -moz-transition: all ease-in 200ms; /* Firefox 4 */ -webkit-transition: all ease-in 200ms; /* Safari and Chrome */ -o-transition: all ease-in 200ms; /* Opera */ -ms-transition: all ease-in 200ms; /* IE9? */ }
    #dnngo_megamenu .rtl .dnngo_slide_menu li a { padding: 8px 20px 8px 60px; text-align: right; }
    #dnngo_megamenu .dnngo_slide_menu li a > span { display: inline-block; transition: transform ease-in 200ms,color ease-in 0ms; -moz-transition: transform ease-in 200ms,color ease-in 0ms; /* Firefox 4 */ -webkit-transition: transform ease-in 200ms,color ease-in 0ms; /* Safari and Chrome */ -o-transition: transform ease-in 200ms,color ease-in 0ms; /* Opera */ -ms-transition: transform ease-in 200ms,color ease-in 0ms; /* IE9? */ }

    #dnngo_megamenu .dnngo_slide_menu li a:hover > span,
    #dnngo_megamenu .dnngo_slide_menu li.menu_hover > a > span { -moz-transform: translate(4px,0); -ms-transform: translate(4px,0); -o-transform: translate(4px,0); transform: translate(4px,0); -webkit-transform: translate(4px,0); }
    #dnngo_megamenu .rtl .dnngo_slide_menu li a:hover > span,
    #dnngo_megamenu .rtl .dnngo_slide_menu li.menu_hover > a > span { -moz-transform: translate(-4px,0); -ms-transform: translate(-4px,0); -o-transform: translate(-4px,0); transform: translate(-4px,0); -webkit-transform: translate(-4px,0); }

    #dnngo_megamenu .dnngo_slide_menu li.dir:before { content: ""; right: 15px; top: 50%; position: absolute; margin-top: -2px; width: 5px; height: 5px; border-right: 1px solid #9c9c9c; border-bottom: 1px solid #9c9c9c; transform: rotate(-45deg); -ms-transform: rotate(-45deg); /* IE 9 */ -moz-transform: rotate(-45deg); /* Firefox */ -webkit-transform: rotate(-45deg); /* Safari and Chrome */ -o-transform: rotate(-45deg); /* Opera */ transition: color ease-in 200ms; -moz-transition: color ease-in 200ms; /* Firefox 4 */ -webkit-transition: color ease-in 200ms; /* Safari and Chrome */ -o-transition: color ease-in 200ms; /* Opera */ -ms-transition: color ease-in 200ms; /* IE9? */ }
    #dnngo_megamenu .rtl .dnngo_slide_menu li.dir:before { left: 15px; right: auto; -ms-transform: rotate(135deg); /* IE 9 */ -moz-transform: rotate(135deg); /* Firefox */ -webkit-transform: rotate(135deg); /* Safari and Chrome */ -o-transform: rotate(135deg); transform: rotate(135deg); /* Opera */ }
    #dnngo_megamenu .rtl .dnngo_boxslide,
    #dnngo_megamenu .rtl .dnngo_boxslide .menu_centerbox ul { text-align: right; }
    /*dnngo_boxslide*/

    #dnngo_megamenu .dnngo_boxslide { clear: both; overflow: hidden; width: 100%; margin: auto; text-align: left; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-shadow: 0 0 4px rgba(0,0,0,0.4); -moz-box-shadow: 0 0 4px rgba(0,0,0,0.4); -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.4); }
        #dnngo_megamenu .dnngo_boxslide .clear { clear: both; overflow: hidden; width: 100%; height: 0px; }
        #dnngo_megamenu .dnngo_boxslide .menu_centerbox { float: left; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
        #dnngo_megamenu .dnngo_boxslide .menu_leftbox { float: left; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
        #dnngo_megamenu .dnngo_boxslide .menu_rightbox { float: left; padding: 0px 15px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
        #dnngo_megamenu .dnngo_boxslide .menu_centerbox ul { margin: 0; padding: 0; text-align: left; }
            #dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li { list-style: none; padding: 3px 0px; font-size: 12px; }
                #dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li li { padding: 5px 10px; }
        #dnngo_megamenu .dnngo_boxslide .dnngo_masonrymenu { }
            #dnngo_megamenu .dnngo_boxslide .dnngo_masonrymenu > ul { position: relative; }
                #dnngo_megamenu .dnngo_boxslide .dnngo_masonrymenu > ul:before { content: ""; position: absolute; right: 0; top: -100px; height: 1000%; border-left: 1px solid #e0e0e0; }
                #dnngo_megamenu .dnngo_boxslide .dnngo_masonrymenu > ul > li { box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
                * + html #dnngo_megamenu .dnngo_boxslide .dnngo_masonrymenu > ul > li { display: inline; }
                    #dnngo_megamenu .dnngo_boxslide .dnngo_masonrymenu > ul > li > a > span { font-size: 14px; padding-bottom: 20px; }
                    #dnngo_megamenu .dnngo_boxslide .dnngo_masonrymenu > ul > li > a:hover { text-decoration: none; }
        #dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li { width: 100% !important; }
            #dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li a { display: block; width: 100%; }
                #dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li a:hover { text-decoration: none; }
                #dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li a span { display: block; }
                    #dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li a span:before { content: ""; width: 5px; height: 5px; border-right: 1px solid #9c9c9c; border-bottom: 1px solid #9c9c9c; transform: rotate(-45deg); -ms-transform: rotate(-45deg); /* IE 9 */ -moz-transform: rotate(-45deg); /* Firefox */ -webkit-transform: rotate(-45deg); /* Safari and Chrome */ -o-transform: rotate(-45deg); /* Opera */ vertical-align: middle; display: inline-block; margin: 0px 8px 2px 0; }
                #dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li a:hover span:before { border-left-color: #20a3f0; }
        #dnngo_megamenu .dnngo_boxslide .menu_topbox { width: 100%; }
        #dnngo_megamenu .dnngo_boxslide .menu_bottombox { width: 100%; }
        #dnngo_megamenu .mega_title, #dnngo_megamenu .dnngo_boxslide .dnngo_masonrymenu > ul > li > a > span { font-size: 14px !important; text-transform: capitalize; border-bottom: 1px solid #c2c2c2; font-weight: normal; padding: 5px 0 15px; line-height: 1.2; color: #20a3f0; letter-spacing: 0; position: relative; display: block; margin-bottom: 8px; }
        #dnngo_megamenu .dnngo_boxslide .menu_leftbox, #dnngo_megamenu .dnngo_boxslide .menu_rightbox, #dnngo_megamenu .dnngo_boxslide .menu_topbox, #dnngo_megamenu .dnngo_boxslide .menu_bottombox, #dnngo_megamenu .dnngo_boxslide .dnngo_masonrymenu > ul > li { overflow: hidden; }
    #dnngo_megamenu .rtl li span > img, #dnngo_megamenu .rtl li span > i { margin-left: 4px; margin-right: 0px; }
    #dnngo_megamenu li p { line-height: 1.8; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #dnngo_megamenu.IHide-md li span > img, #dnngo_megamenu.IHide-md li span > i, #dnngo_menu.IHide-md li span > img, #dnngo_menu.IHide-md li span > i { display: none; }
    #dnngo_megamenu .dnngo_masonrymenu > ul > li { margin: 0px 10px; white-space: normal; }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    #dnngo_megamenu.IHide-sm li span > img, #dnngo_megamenu.IHide-sm li span > i, #dnngo_menu.IHide-sm li span > img, #dnngo_menu.IHide-sm li span > i { display: none; }
}

@media only screen and (min-width: 1200px) {
    #dnngo_megamenu.IHide-lg li span > img, #dnngo_megamenu.IHide-lg li span > i, #dnngo_menu.IHide-lg li span > img, #dnngo_menu.IHide-lg li span > i { display: none; }
}

.roller-up { position: fixed; top: 0; background-color: #000; background-color: rgba(0,0,0,0.15); height: 18px; cursor: pointer; z-index: 950; text-align: center; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
.roller-down { position: fixed; bottom: 0; background-color: #000; background-color: rgba(0,0,0,0.15); height: 18px; cursor: pointer; z-index: 950; text-align: center; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
    .roller-up:before,
    .roller-down:before { content: ""; width: 8px; height: 8px; border-top: 2px solid #FFF; border-left: 2px solid #FFF; display: inline-block; }
.roller-up:before { -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); -webkit-transform: rotate(45deg); margin: -3px 0 0px -3px; }
.roller-down:before { -moz-transform: rotate(-135deg); -ms-transform: rotate(-135deg); -o-transform: rotate(-135deg); transform: rotate(-135deg); -webkit-transform: rotate(-135deg); margin: 0px 0 3px -3px; }
.roller-up:hover,
.roller-down:hover { background-color: rgba(0,0,0,0.3); }

/*dnngo_custommenu*/

#dnngo_megamenu .dnngo_menuslide > .dnngo_boxslide { padding: 0; }
#dnngo_megamenu .dnngo_custommenu > .menupane { float: left; background-color: #FFF; padding-bottom: 10000px; margin-bottom: -10000px; position: relative; }
    #dnngo_megamenu .dnngo_custommenu > .menupane.topline .pane_space { border-top: 1px solid #dcdcdc; }
    #dnngo_megamenu .dnngo_custommenu > .menupane.bottomline .pane_space { border-bottom: 1px solid #dcdcdc; }
    #dnngo_megamenu .dnngo_custommenu > .menupane.leftline { border-left: 1px solid #dcdcdc; }
    #dnngo_megamenu .dnngo_custommenu > .menupane.rightline { border-right: 1px solid #dcdcdc; }

#dnngo_megamenu .dnngo_custommenu .pane_space { }
#dnngo_megamenu .dnngo_custommenu .submenu { margin: 0; padding: 0; }
#dnngo_megamenu .dnngo_custommenu .submenu_title { color: #424242; line-height: 1.4; font-weight: bold; margin: 0 0 7px; }
#dnngo_megamenu .dnngo_custommenu .submenulist_1 .submenu_title a:hover { text-decoration: none; }
#dnngo_megamenu .dnngo_custommenu .submenulist_1 .submenu_title span { color: #424242; transition: color ease-in 200ms; -moz-transition: color ease-in 200ms; /* Firefox 4 */ -webkit-transition: color ease-in 200ms; /* Safari and Chrome */ -o-transition: color ease-in 200ms; /* Opera */ -ms-transition: color ease-in 200ms; /* IE9? */ }

#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_1 li a { display: block; padding: 6px 4px; color: #666666; transition: background ease-in 200ms; -moz-transition: background ease-in 200ms; /* Firefox 4 */ -webkit-transition: background ease-in 200ms; /* Safari and Chrome */ -o-transition: background ease-in 200ms; /* Opera */ -ms-transition: background ease-in 200ms; /* IE9? */ }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_1 li a:hover { color: #FFF; background-color: #20a3f0; }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_1 li a span { display: inline-block; transition: transform ease-in 200ms,color ease-in 0ms; -moz-transition: transform ease-in 200ms,color ease-in 0ms; /* Firefox 4 */ -webkit-transition: transform ease-in 200ms,color ease-in 0ms; /* Safari and Chrome */ -o-transition: transform ease-in 200ms,color ease-in 0ms; /* Opera */ -ms-transition: transform ease-in 200ms,color ease-in 0ms; /* IE9? */ }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_1 li a:hover span { -moz-transform: translate(4px,0); -ms-transform: translate(4px,0); -o-transform: translate(4px,0); transform: translate(4px,0); -webkit-transform: translate(4px,0); }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_1 ul { margin: 0 0 15px; padding: 0px; list-style: none; }
#dnngo_megamenu .dnngo_custommenu .menupane .submenu.submenulist_1:last-child ul { margin: 0; }

#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_1 li li a { padding-left: 24px; }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_1 li li li a { padding-left: 44px; }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_1 li li li li a { padding-left: 64px; }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_1 li li li li li a { padding-left: 84px; }


#dnngo_megamenu .dnngo_custommenu .submenulist_2 .submenu_title a:hover { text-decoration: none; }
#dnngo_megamenu .dnngo_custommenu .submenulist_2 .submenu_title span { color: #20a3f0; font-weight: normal; transition: color ease-in 200ms; -moz-transition: color ease-in 200ms; /* Firefox 4 */ -webkit-transition: color ease-in 200ms; /* Safari and Chrome */ -o-transition: color ease-in 200ms; /* Opera */ -ms-transition: color ease-in 200ms; /* IE9? */ }
#dnngo_megamenu .dnngo_custommenu .submenulist_2 .submenu_title:after { content: ""; width: 65%; border-bottom: 1px solid #bebebe; display: block; margin-top: 12px; }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 { }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul { margin: 0 0 15px; padding: 0px; list-style: none; }
#dnngo_megamenu .dnngo_custommenu .menupane .submenu.submenulist_2:last-child ul { margin: 0; }

#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li { margin: 0; }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li span { display: inline-block; padding: 4px 0; }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li a:before { content: ""; margin: 0 12px 2px 0; width: 5px; height: 5px; line-height: 5px; display: inline-block; border-right: 1px solid #666666; border-bottom: 1px solid #666666; -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); -webkit-transform: rotate(-45deg); }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li a:hover:before { border-right-color: #20a3f0; border-bottom-color: #20a3f0; }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li li { padding-left: 20px; }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li a { color: #666666; }
        #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li a:hover { color: #20a3f0; }
/**/

#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 { }
#dnngo_megamenu .dnngo_custommenu .submenulist_3 .submenu_title { padding: 0 0 10px; margin: 0; }
    #dnngo_megamenu .dnngo_custommenu .submenulist_3 .submenu_title span { color: #20a3f0; text-decoration: none; }
    #dnngo_megamenu .dnngo_custommenu .submenulist_3 .submenu_title a:hover { text-decoration: none; }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul { margin: 0 0 15px; padding: 0px; list-style: none; }
#dnngo_megamenu .dnngo_custommenu .menupane .submenu.submenulist_3:last-child ul { margin: 0; }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li { margin: 0; position: relative; }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 > ul > li > a { border-bottom: 1px solid #dcdcdc; position: relative; }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 > ul > li > a + ul { margin-top: 5px; }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li span { display: inline-block; padding: 11px 0; }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li li span { padding: 4px 0; }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li a:before { content: ""; top: 50%; margin: -2px 7px 3px 0; width: 6px; height: 6px; line-height: 6px; display: inline-block; border-right: 1px solid #666666; border-bottom: 1px solid #666666; -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); -webkit-transform: rotate(-45deg); position: absolute; right: 0; transition: all ease-in 200ms; -moz-transition: all ease-in 200ms; /* Firefox 4 */ -webkit-transition: all ease-in 200ms; /* Safari and Chrome */ -o-transition: all ease-in 200ms; /* Opera */ -ms-transition: all ease-in 200ms; /* IE9? */ }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li li a { padding-left: 20px; }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li li li a { padding-left: 40px; }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li li li li a { padding-left: 60px; }
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li a { color: #666666; display: block; }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li a:hover { color: #20a3f0; }
        #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li a:hover:before { border-right-color: #20a3f0; border-bottom-color: #20a3f0; }

#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_4 { }
#dnngo_megamenu .dnngo_custommenu .submenulist_4 .submenu_title { border-bottom: 1px solid #dcdcdc; padding: 0 0 10px; margin: 0 0 10px; }
    #dnngo_megamenu .dnngo_custommenu .submenulist_4 .submenu_title span { color: #424242; text-decoration: none; transition: color ease-in 200ms; -moz-transition: color ease-in 200ms; /* Firefox 4 */ -webkit-transition: color ease-in 200ms; /* Safari and Chrome */ -o-transition: color ease-in 200ms; /* Opera */ -ms-transition: color ease-in 200ms; /* IE9? */ }
    #dnngo_megamenu .dnngo_custommenu .submenulist_4 .submenu_title a:hover span { color: #20a3f0; }
    #dnngo_megamenu .dnngo_custommenu .submenulist_4 .submenu_title a:hover { text-decoration: none; }

#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_4 ul { margin: 0 0 15px; padding: 0px; list-style: none; }
#dnngo_megamenu .dnngo_custommenu .menupane .submenu.submenulist_4:last-child ul { margin: 0; }

#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_4 ul li { margin: 0; }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_4 ul li span { display: inline-block; padding: 4px 0; }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_4 ul li li { padding-left: 20px; }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_4 ul li a { color: #666666; }
        #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_4 ul li a:hover { color: #20a3f0; }
#dnngo_megamenu .dnngo_custommenu .submenulist_5 .submenu_title { margin: 0 0 7px; }
    #dnngo_megamenu .dnngo_custommenu .submenulist_5 .submenu_title a:hover { text-decoration: none; }
    #dnngo_megamenu .dnngo_custommenu .submenulist_5 .submenu_title span { color: #424242; font-weight: normal; transition: color ease-in 200ms; -moz-transition: color ease-in 200ms; /* Firefox 4 */ -webkit-transition: color ease-in 200ms; /* Safari and Chrome */ -o-transition: color ease-in 200ms; /* Opera */ -ms-transition: color ease-in 200ms; /* IE9? */ }
    #dnngo_megamenu .dnngo_custommenu .submenulist_5 .submenu_title a:hover span { color: #20a3f0; }

#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 { }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul { margin: 0 0 15px; padding: 0px; list-style: none; }
#dnngo_megamenu .dnngo_custommenu .menupane .submenu.submenulist_5:last-child ul { margin: 0; }

#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li { margin: 0; }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li span { display: inline-block; padding: 4px 0; }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li a:before { content: ""; margin: 0 10px 2px 0; width: 5px; height: 5px; line-height: 5px; display: inline-block; border-right: 1px solid #666666; border-bottom: 1px solid #666666; -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); -webkit-transform: rotate(-45deg); }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li a:hover:before { border-right-color: #20a3f0; border-bottom-color: #20a3f0; }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li li { padding-left: 20px; }
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li a { color: #666; }
        #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li a:hover { color: #20a3f0; }
            #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li a:hover:before { }

.menu-cont01 .list { margin: 0; padding: 0 0 10px; list-style: none; }
    .menu-cont01 .list li { padding: 5px 0px; }
        .menu-cont01 .list li .fa { font-size: 1.3em; width: 25px; text-align: center; display: inline-block; vertical-align: middle; margin-bottom: 2px; }
.menu-cont01 .line { border-bottom: 1px solid #dcdcdc; margin-top: 10px; margin-bottom: 30px; }
.menu-ibox { margin-bottom: 20px; }
    .menu-ibox h3 { color: #424242; font-size: 15px; font-weight: normal; margin-bottom: 10px; }
.menu-cont01 .more,
.menu-cont01 .more:link,
.menu-cont01 .more:active,
.menu-cont01 .more:visited { background-color: transparent; color: #20a3f0; font-style: italic; text-decoration: underline; }
    .menu-cont01 .more:hover { text-decoration: none; }

.menu-ibox .btn { margin-top: 10px; margin-bottom: 20px; color: #20a3f0; border: 1px solid #20a3f0; }
    .menu-ibox .btn,
    .menu-ibox .btn:link,
    .menu-ibox .btn:active,
    .menu-ibox .btn:visited { background: transparent; color: #20a3f0; box-shadow: none; -webkit-box-shadow: none; }
        .menu-ibox .btn:hover { background-color: #20a3f0; color: #FFF; }
.menu-ibox-last .menu-ibox { margin-bottom: 0; }
    .menu-ibox-last .menu-ibox .btn { margin-bottom: 0px; }



.menu-blog { }
    .menu-blog .pic { margin-bottom: 10px; }

.menu-bloglist { margin: 0; padding: 0; list-style: none; }
    .menu-bloglist li { overflow: hidden; border-bottom: 1px solid #dcdcdc; padding-bottom: 25px; margin-bottom: 25px; }
        .menu-bloglist li:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
    .menu-bloglist .pic { float: left; margin-right: 18px; padding-top: 5px; }
    .menu-bloglist .pic-right { overflow: hidden; }
.menu-carousel { text-align: center; }


/* ********** CONTENT ************** */
#dnn_content { min-height: 400px; position: relative; }
.Breadcrumb_bg:before, .BannerPane:before { content: ""; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; z-index: -1; }
.pane-bg01 { position: relative; z-index: 1; }
    .pane-bg01:before { content: ""; width: 100%; height: 100%; background: #20a3f0; position: absolute; top: 0; left: 0; z-index: -1; -moz-transform: skew(0deg, -4deg); -ms-transform: skew(0deg, -4deg); -o-transform: skew(0deg, -4deg); -webkit-transform: skew(0deg, -4deg); transform: skew(0deg, -4deg); -moz-transform-origin: left bottom; -ms-transform-origin: left bottom; -o-transform-origin: left bottom; transform-origin: left bottom; -webkit-transform-origin: left bottom; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden; }
    .pane-bg01:before { background: #b75ccd; }
/*page Spacing*/
.mt-5 { margin-top: 5px; }
.mb-5 { margin-bottom: 5px; }
.pt-5 { padding-top: 5px; }
.pb-5 { padding-bottom: 5px; }
.mt-10 { margin-top: 10px; }
.mb-10 { margin-bottom: 10px; }
.pt-10 { padding-top: 10px; }
.pb-10 { padding-bottom: 10px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.pt-30 { padding-top: 30px; }
.pb-30 { padding-bottom: 30px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.pt-40 { padding-top: 40px; }
.pb-40 { padding-bottom: 40px; }
.mt-50 { margin-top: 50px; }
.mb-50 { margin-bottom: 50px; }
.pt-50 { padding-top: 50px; }
.pb-50 { padding-bottom: 50px; }
.mt-60 { margin-top: 60px; }
.mb-60 { margin-bottom: 60px; }
.pt-60 { padding-top: 60px; }
.pb-60 { padding-bottom: 60px; }

@media only screen and (min-width: 1600px) {
    .mt-10 { margin-top: 13px; }
    .mb-10 { margin-bottom: 13px; }
    .pt-10 { padding-top: 13px; }
    .pb-10 { padding-bottom: 13px; }
    .mt-20 { margin-top: 26px; }
    .mb-20 { margin-bottom: 26px; }
    .pt-20 { padding-top: 26px; }
    .pb-20 { padding-bottom: 26px; }
    .mt-30 { margin-top: 39px; }
    .mb-30 { margin-bottom: 39px; }
    .pt-30 { padding-top: 39px; }
    .pb-30 { padding-bottom: 39px; }
    .mt-40 { margin-top: 52px; }
    .mb-40 { margin-bottom: 52px; }
    .pt-40 { padding-top: 52px; }
    .pb-40 { padding-bottom: 52px; }
    .mt-50 { margin-top: 65px; }
    .mb-50 { margin-bottom: 65px; }
    .pt-50 { padding-top: 65px; }
    .pb-50 { padding-bottom: 65px; }
    .mt-60 { margin-top: 78px; }
    .mb-60 { margin-bottom: 78px; }
    .pt-60 { padding-top: 78px; }
    .pb-60 { padding-bottom: 78px; }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mt-10 { margin-top: 7px; }
    .mb-10 { margin-bottom: 7px; }
    .pt-10 { padding-top: 7px; }
    .pb-10 { padding-bottom: 7px; }
    .mt-20 { margin-top: 14px; }
    .mb-20 { margin-bottom: 14px; }
    .pt-20 { padding-top: 14px; }
    .pb-20 { padding-bottom: 14px; }
    .mt-30 { margin-top: 21px; }
    .mb-30 { margin-bottom: 21px; }
    .pt-30 { padding-top: 21px; }
    .pb-30 { padding-bottom: 21px; }
    .mt-40 { margin-top: 28px; }
    .mb-40 { margin-bottom: 28px; }
    .pt-40 { padding-top: 28px; }
    .pb-40 { padding-bottom: 28px; }
    .mt-50 { margin-top: 35px; }
    .mb-50 { margin-bottom: 35px; }
    .pt-50 { padding-top: 35px; }
    .pb-50 { padding-bottom: 35px; }
    .mt-60 { margin-top: 42px; }
    .mb-60 { margin-bottom: 42px; }
    .pt-60 { padding-top: 42px; }
    .pb-60 { padding-bottom: 42px; }
}

@media only screen and (max-width: 767px) {
    .mt-10 { margin-top: 5px; }
    .mb-10 { margin-bottom: 5px; }
    .pt-10 { padding-top: 5px; }
    .pb-10 { padding-bottom: 5px; }
    .mt-20 { margin-top: 10px; }
    .mb-20 { margin-bottom: 10px; }
    .pt-20 { padding-top: 10px; }
    .pb-20 { padding-bottom: 10px; }
    .mt-30 { margin-top: 15px; }
    .mb-30 { margin-bottom: 15px; }
    .pt-30 { padding-top: 15px; }
    .pb-30 { padding-bottom: 15px; }
    .mt-40 { margin-top: 20px; }
    .mb-40 { margin-bottom: 20px; }
    .pt-40 { padding-top: 20px; }
    .pb-40 { padding-bottom: 20px; }
    .mt-50 { margin-top: 25px; }
    .mb-50 { margin-bottom: 25px; }
    .pt-50 { padding-top: 25px; }
    .pb-50 { padding-bottom: 25px; }
    .mt-60 { margin-top: 30px; }
    .mb-60 { margin-bottom: 30px; }
    .pt-60 { padding-top: 30px; }
    .pb-60 { padding-bottom: 30px; }
}
/*page Spacing*/
.ml-5 { margin-left: 5px; }
.mr-5 { margin-right: 5px; }
.pl-5 { padding-left: 5px; }
.pr-5 { padding-right: 5px; }
.ml-10 { margin-left: 10px; }
.mr-10 { margin-right: 10px; }
.pl-10 { padding-left: 10px; }
.pr-10 { padding-right: 10px; }
.ml-20 { margin-left: 20px; }
.mr-20 { margin-right: 20px; }
.pl-20 { padding-left: 20px; }
.pr-20 { padding-right: 20px; }
.ml-30 { margin-left: 30px; }
.mr-30 { margin-right: 30px; }
.pl-30 { padding-left: 30px; }
.pr-30 { padding-right: 30px; }
.ml-40 { margin-left: 40px; }
.mr-40 { margin-right: 40px; }
.pl-40 { padding-left: 40px; }
.pr-40 { padding-right: 40px; }
.ml-50 { margin-left: 50px; }
.mr-50 { margin-right: 50px; }
.pl-50 { padding-left: 50px; }
.pr-50 { padding-right: 50px; }
.ml-60 { margin-left: 60px; }
.mr-60 { margin-right: 60px; }
.pl-60 { padding-left: 60px; }
.pr-60 { padding-right: 60px; }

@media only screen and (min-width: 1600px) {
    .ml-10 { margin-left: 13px; }
    .mr-10 { margin-right: 13px; }
    .pl-10 { padding-left: 13px; }
    .pr-10 { padding-right: 13px; }
    .ml-20 { margin-left: 26px; }
    .mr-20 { margin-right: 26px; }
    .pl-20 { padding-left: 26px; }
    .pr-20 { padding-right: 26px; }
    .ml-30 { margin-left: 39px; }
    .mr-30 { margin-right: 39px; }
    .pl-30 { padding-left: 39px; }
    .pr-30 { padding-right: 39px; }
    .ml-40 { margin-left: 52px; }
    .mr-40 { margin-right: 52px; }
    .pl-40 { padding-left: 52px; }
    .pr-40 { padding-right: 52px; }
    .ml-50 { margin-left: 65px; }
    .mr-50 { margin-right: 65px; }
    .pl-50 { padding-left: 65px; }
    .pr-50 { padding-right: 65px; }
    .ml-60 { margin-left: 78px; }
    .mr-60 { margin-right: 78px; }
    .pl-60 { padding-left: 78px; }
    .pr-60 { padding-right: 78px; }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ml-10 { margin-left: 7px; }
    .mr-10 { margin-right: 7px; }
    .pl-10 { padding-left: 7px; }
    .pr-10 { padding-right: 7px; }
    .ml-20 { margin-left: 14px; }
    .mr-20 { margin-right: 14px; }
    .pl-20 { padding-left: 14px; }
    .pr-20 { padding-right: 14px; }
    .ml-30 { margin-left: 21px; }
    .mr-30 { margin-right: 21px; }
    .pl-30 { padding-left: 21px; }
    .pr-30 { padding-right: 21px; }
    .ml-40 { margin-left: 28px; }
    .mr-40 { margin-right: 28px; }
    .pl-40 { padding-left: 28px; }
    .pr-40 { padding-right: 28px; }
    .ml-50 { margin-left: 35px; }
    .mr-50 { margin-right: 35px; }
    .pl-50 { padding-left: 35px; }
    .pr-50 { padding-right: 35px; }
    .ml-60 { margin-left: 42px; }
    .mr-60 { margin-right: 42px; }
    .pl-60 { padding-left: 42px; }
    .pr-60 { padding-right: 42px; }
}

@media only screen and (max-width: 767px) {
    .ml-10 { margin-left: 5px; }
    .mr-10 { margin-right: 5px; }
    .pl-10 { padding-left: 5px; }
    .pr-10 { padding-right: 5px; }
    .ml-20 { margin-left: 10px; }
    .mr-20 { margin-right: 10px; }
    .pl-20 { padding-left: 10px; }
    .pr-20 { padding-right: 10px; }
    .ml-30 { margin-left: 15px; }
    .mr-30 { margin-right: 15px; }
    .pl-30 { padding-left: 15px; }
    .pr-30 { padding-right: 15px; }
    .ml-40 { margin-left: 20px; }
    .mr-40 { margin-right: 20px; }
    .pl-40 { padding-left: 20px; }
    .pr-40 { padding-right: 20px; }
    .ml-50 { margin-left: 25px; }
    .mr-50 { margin-right: 25px; }
    .pl-50 { padding-left: 25px; }
    .pr-50 { padding-right: 25px; }
    .ml-60 { margin-left: 30px; }
    .mr-60 { margin-right: 30px; }
    .pl-60 { padding-left: 30px; }
    .pr-60 { padding-right: 30px; }
}
/*width*/
.width-95 { margin: auto; width: 95%; }
.width-90 { margin: auto; width: 90%; }
.width-85 { margin: auto; width: 85%; }
.width-80 { margin: auto; width: 80%; }
.width-75 { margin: auto; width: 75%; }
.width-70 { margin: auto; width: 70%; }
.width-65 { margin: auto; width: 65%; }
.width-60 { margin: auto; width: 60%; }
.width-55 { margin: auto; width: 55%; }
.width-50 { margin: auto; width: 50%; }
.width-45 { margin: auto; width: 45%; }
.width-40 { margin: auto; width: 40%; }
.width-35 { margin: auto; width: 35%; }
.width-30 { margin: auto; width: 30%; }
.width-25 { margin: auto; width: 25%; }
.width-20 { margin: auto; width: 20%; }
.width-15 { margin: auto; width: 15%; }
.width-10 { margin: auto; width: 10%; }





/*bold*/
.font-bold { font-weight: bold; }
/**/
.align-bottom { float: none; vertical-align: bottom; display: inline-block; }
.align-middle { vertical-align: middle; display: inline-block; float: none; }

/*color*/
.color-white, .color-white .Normal, .color-white a, .color-white a:link, .color-white a:active, .color-white a:visited, .color-white a:hover, .color-white h1, .color-white h2, .color-white h3, .color-white h4, .color-white h5, .color-white h6 { color: #FFF; }
.color_gray, .color_gray .Normal, .color_gray a, .color_gray a:link, .color_gray a:active, .color_gray a:visited, .color_gray a:hover, .color_gray h1, .color_gray h2, .color_gray h3, .color_gray h4, .color_gray h5, .color_gray h6 { color: #999999; }
.text_left { text-align: left; }
.text_center { text-align: center; }
.text_right { text-align: right; }



@media only screen and (max-width: 767px) {
    .phone-center { text-align: center; }
}
/* ********** Buttons Style ************** */
.btn, .btn:hover { -moz-transition: all ease-in 200ms; -o-transition: all ease-in 200ms; transition: all ease-in 200ms; -webkit-transition: all ease-in 200ms; /* Safari and Chrome */ }
/* ********** FOOTER ************** */
.foot_bg, .footer_bottom { position: relative; z-index: 3; }
.foot_bgs, .footer_bottom_bg { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background-color: #FFF; z-index: -1; }
.footer_bottom { padding: 10px 0; }
.footer_box [class*=Pane] { margin: 50px 0 40px; }
.footer_box .Full_Screen_FootPaneA, .footer_box .Full_Screen_FootPaneB { margin: 0px !important; }
.footer_box, .footer_box .Normal, .footer_box a { font-size: 13px; color: #8f8f8f; }
.copyright_style { float: left; padding: 10px 8px; }
.FooterPane { float: right; padding: 9px 8px 0; margin: 0 !important; }
.copyright_style .sep { padding: 0px 5px; }
.copyright_style, .copyright_style a, .copyright_style a:link, .copyright_style a:active, .copyright_style a:visited { text-decoration: none; font-size: 13px; }
    .copyright_style a:hover { text-decoration: none; color: #20a3f0; }
.FooterPane .social-icons { display: inline-block; vertical-align: middle; font-size: 22px; }
    .FooterPane .social-icons a { color: #585858; }
* + html .FooterPane .social-icons { display: inline; }
#to_top { width: 65px; height: 65px; line-height: 65px; right: 90px; bottom: 120px; float: right; margin-top: 10px; text-align: center; font-size: 24px; z-index: 1000; cursor: pointer; position: fixed; display: none; transition: all ease-in 300ms; -moz-transition: all ease-in 300ms; /* Firefox 4 */ -webkit-transition: all ease-in 300ms; /* Safari and Chrome */ -o-transition: all ease-in 300ms; /* Opera */ -ms-transition: all ease-in 300ms; /* IE9? */ }
.backtop01 { border: 1px solid #333; border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; text-align: center; }
    .backtop01 span { display: inline-block; vertical-align: middle; position: relative; }
        .backtop01 span:before { content: ""; width: 17px; height: 17px; border-top: 1px solid #333; border-left: 1px solid #333; position: absolute; top: -13px; left: -8px; -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); -webkit-transform: rotate(45deg); opacity: 0.8; transition: all ease-in 300ms; -moz-transition: all ease-in 300ms; /* Firefox 4 */ -webkit-transition: all ease-in 300ms; /* Safari and Chrome */ -o-transition: all ease-in 300ms; /* Opera */ -ms-transition: all ease-in 300ms; /* IE9? */ }
        .backtop01 span:after { content: ""; width: 0; height: 27px; border-left: 1px solid #333; position: absolute; top: -15px; left: 0px; opacity: 0.8; transition: all ease-in 300ms; -moz-transition: all ease-in 300ms; /* Firefox 4 */ -webkit-transition: all ease-in 300ms; /* Safari and Chrome */ -o-transition: all ease-in 300ms; /* Opera */ -ms-transition: all ease-in 300ms; /* IE9? */ }
    .backtop01:hover { background-color: #ed474a; border: 2px solid #ed474a; }
        .backtop01:hover span:before { border-color: #FFF; }
        .backtop01:hover span:after { border-color: #FFF; }
.backtop02 { background-color: #61b632; text-align: center; }
    .backtop02 span { display: inline-block; vertical-align: bottom; position: relative; }
        .backtop02 span:before { content: "\f062"; display: inline-block; vertical-align: middle; position: relative; font-family: "FontAwesome"; vertical-align: bottom; color: #FFF; font-size: 24px; }
    .backtop02:hover { background-color: #ed474a; }
.backtop03 { border: 2px solid #cd3637; text-align: center; }
    .backtop03 span { display: inline-block; vertical-align: middle; position: relative; margin-top: -12px; }
        .backtop03 span:before { content: "\f077"; display: inline-block; position: relative; font-family: "FontAwesome"; vertical-align: middle; font-size: 24px; }
    .backtop03:hover { border-color: #ed474a; background-color: #ed474a; color: #FFF; }
.backtop04 { background-color: #50bdad; text-align: center; border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; }
    .backtop04 span { display: inline-block; vertical-align: bottom; position: relative; }
        .backtop04 span:before { content: "\f062"; display: inline-block; vertical-align: middle; position: relative; font-family: "FontAwesome"; vertical-align: bottom; color: #FFF; font-size: 24px; }
    .backtop04:hover { background-color: #ed474a; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #to_top { right: 30px !important; bottom: 40px !important; }
}

@media only screen and (max-width: 767px) {
    #to_top { right: 20px !important; bottom: 40px !important; }
}

.FooterPane .Normal, .copyright_style, .copyright_style a, .copyright_style a:link, .copyright_style a:active, .copyright_style a:visited, .FooterPane a, .FooterPane a:link, .FooterPane a:active, .FooterPane a:visited, .FooterPane .social-icons a { color: #666666; }
/* ********** Typography ************** */

/*Custom Buttons style*/
a.Button_style1 { padding: 10px 16px; margin: 0px 5px 5px 0; position: relative; font-size: 12px; display: inline-block; vertical-align: middle; white-space: nowrap; color: #FFFFFF !important; text-decoration: none; background: url("/Portals/_default/Skins/ForVend/images/but_bg.png") repeat-x left bottom; background-size: contain; border-radius: 3px 3px 4px 4px; -moz-border-radius: 3px 3px 4px 4px; -webkit-border-radius: 3px 3px 4px 4px; -moz-box-shadow: 0 -3px rgba(0, 0, 0, 0.2) inset; /* For Firefox3.6+ */ -webkit-box-shadow: 0 -3px rgba(0, 0, 0, 0.2) inset; /* For Chrome5+, Safari5+ */ box-shadow: 0 -3px rgba(0, 0, 0, 0.2) inset; transition: background-color ease-in 200ms; -moz-transition: background-color ease-in 200ms; /* Firefox 4 */ -webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */ -o-transition: background-color ease-in 200ms; /* Opera */ -ms-transition: background-color ease-in 200ms; /* IE9? */ }
a.Button_style2 { padding: 10px 16px; margin: 0px 5px 5px 0; position: relative; font-size: 12px; display: inline-block; vertical-align: middle; white-space: nowrap; color: #FFFFFF !important; text-decoration: none; background: url("/Portals/_default/Skins/ForVend/images/but_bg.png") repeat-x left bottom; background-size: contain; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; transition: background-color ease-in 200ms; -moz-transition: background-color ease-in 200ms; /* Firefox 4 */ -webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */ -o-transition: background-color ease-in 200ms; /* Opera */ -ms-transition: background-color ease-in 200ms; /* IE9? */ }
a.Button_style3 { padding: 10px 16px; margin: 0px 5px 5px 0; position: relative; font-size: 12px; display: inline-block; vertical-align: middle; white-space: nowrap; color: #FFFFFF !important; text-decoration: none; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; transition: background-color ease-in 200ms; -moz-transition: background-color ease-in 200ms; /* Firefox 4 */ -webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */ -o-transition: background-color ease-in 200ms; /* Opera */ -ms-transition: background-color ease-in 200ms; /* IE9? */ }
a[class*="Button"].Red { background-color: #df0c00; }
a[class*="Button"].Teal { background-color: #20b2aa; }
a[class*="Button"].Violet { background-color: #6f0080; }
a[class*="Button"].MidnightBlue { background-color: #191970; }
a[class*="Button"].gold { background-color: #ffd700; }
a[class*="Button"].OliveDrab { background-color: #76a732; }
a[class*="Button"].SteelBlue { background-color: #4682b4; }
a[class*="Button"].GoldenOrange { background-color: #f88616; }
a[class*="Button"].silver { background-color: #c0c0c0; }
a[class*="Button"].dark { background-color: #4a4949; }
a[class*="Button"].small { font-size: 12px; letter-spacing: 1px; padding: 10px 16px; line-height: 18px; }
a[class*="Button"].large { font-size: 13px; letter-spacing: 1.2px; line-height: 20px; padding: 15px 22px; }
a[class*="Button"].jumbo { font-size: 14px; letter-spacing: 1.5px; line-height: 24px; padding: 18px 26px; }
a.Button_style1:hover, a.Button_style2:hover, a.Button_style3:hover { color: #FFF !important; background-color: #2e2e2e; text-decoration: none; }
* + html a.Button_style1, * + html a.Button_style2, * + html a.Button_style3 { display: inline; }
/*-- Loading animation --*/
.pace_bg, .pace-running .pace_bg { position: fixed; width: 100%; height: 100%; background-color: #FFF; z-index: 10100; }
.pace-running .dnngo-main { visibility: hidden; }
.animations { visibility: visible; }
.showControlBar .pace_bg { margin-top: -53px !important; }
.pace-running .pace { z-index: 10101; }
.pace, .pace *, .pace *:before, .pace *:after, .pace:before, .pace:after { box-sizing: content-box; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; }
.pace-done .pace, .pace-done .pace_bg { opacity: 0; z-index: -1; visibility: hidden; transition: all ease-in 500ms; -moz-transition: all ease-in 500ms; /* Firefox 4 */ -webkit-transition: all ease-in 500ms; /* Safari and Chrome */ -o-transition: all ease-in 500ms; /* Opera */ -ms-transition: all ease-in 500ms; /* IE9? */ }
/*box container*/
/* Effect 1: Slide in on top */
.box-effect-1 .left-menu { visibility: visible; z-index: 940; -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); -ms-transform: translate3d(-100%, 0, 0); -o-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); }
.box-effect-1.active .left-menu { visibility: visible; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
.box-effect-1.active #header_slide { left: 302px; }
/* Effect 2: Reveal */
.box-effect-2.active, .box-effect-2.delay { overflow: hidden; height: auto !important; }
    .box-effect-2.active .rightmain, .box-effect-2.delay .rightmain { box-shadow: 0 0 9px rgba(0,0,0,0.3); -moz-box-shadow: 0 0 9px rgba(0,0,0,0.3); -webkit-box-shadow: 0 0 9px rgba(0,0,0,0.3); }
    .box-effect-2.active .rightmain { -webkit-transform: translate3d(300px, 0, 0); -moz-transform: translate3d(300px, 0, 0); -ms-transform: translate3d(300px, 0, 0); -o-transform: translate3d(300px, 0, 0); transform: translate3d(300px, 0, 0); }
.box-effect-2 .left-menu { z-index: 1; }
.box-effect-2.active .left-menu { visibility: visible; -webkit-transition: -webkit-transform 0.5s; -moz-transition: transform 0.5s; -o-transition: transform 0.5s; transition: transform 0.5s; }
.box-effect-2.active #header_slide { left: 302px; }
/* Effect 3: Push*/
.box-effect-3.active, .box-effect-3.delay { overflow: hidden; height: auto !important; }
    .box-effect-3.active .rightmain, .box-effect-3.delay .rightmain { }
    .box-effect-3.active .rightmain { -webkit-transform: translate3d(300px, 0, 0); -moz-transform: translate3d(300px, 0, 0); -ms-transform: translate3d(300px, 0, 0); -o-transform: translate3d(300px, 0, 0); transform: translate3d(300px, 0, 0); }
    .box-effect-3.active .left-menu { -webkit-transform: translate3d(0px, 0, 0); -moz-transform: translate3d(0px, 0, 0); -ms-transform: translate3d(0px, 0, 0); -o-transform: translate3d(0px, 0, 0); transform: translate3d(0px, 0, 0); }
.box-effect-3 .left-menu { -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); -ms-transform: translate3d(-100%, 0, 0); -o-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); z-index: 50; }
.box-effect-3.active .left-menu { visibility: visible; -webkit-transition: -webkit-transform 0.5s; -moz-transition: transform 0.5s; -o-transition: transform 0.5s; transition: transform 0.5s; }
.box-effect-3.active #header_slide { left: 302px; }
/* Effect 4: Slide along */
.box-effect-4.active, .box-effect-4.delay { overflow: hidden; height: auto !important; }
    .box-effect-4.active .rightmain, .box-effect-4.delay .rightmain { box-shadow: 0 0 9px rgba(0,0,0,0.3); -moz-box-shadow: 0 0 9px rgba(0,0,0,0.3); -webkit-box-shadow: 0 0 9px rgba(0,0,0,0.3); }
    .box-effect-4.active .rightmain { -webkit-transform: translate3d(300px, 0, 0); -moz-transform: translate3d(300px, 0, 0); -ms-transform: translate3d(300px, 0, 0); -o-transform: translate3d(300px, 0, 0); transform: translate3d(300px, 0, 0); }
.box-effect-4 .left-menu { z-index: 1; -webkit-transform: translate3d(-50%, 0, 0); -moz-transform: translate3d(-50%, 0, 0); -ms-transform: translate3d(-50%, 0, 0); -o-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
.box-effect-4.active .left-menu { visibility: visible; -webkit-transition: -webkit-transform 0.5s; -moz-transition: transform 0.5s; -o-transition: transform 0.5s; transition: transform 0.5s; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
.box-effect-4.active #header_slide { left: 302px; }
/* Effect 5: Reverse slide out */
.box-effect-5.active, .box-effect-5.delay { overflow: hidden; height: auto !important; }
    .box-effect-5.active .rightmain, .box-effect-5.delay .rightmain { box-shadow: 0 0 9px rgba(0,0,0,0.3); -moz-box-shadow: 0 0 9px rgba(0,0,0,0.3); -webkit-box-shadow: 0 0 9px rgba(0,0,0,0.3); }
    .box-effect-5.active .rightmain { -webkit-transform: translate3d(300px, 0, 0); -moz-transform: translate3d(300px, 0, 0); -ms-transform: translate3d(300px, 0, 0); -o-transform: translate3d(300px, 0, 0); transform: translate3d(300px, 0, 0); }
.box-effect-5 .left-menu { z-index: 1; -webkit-transform: translate3d(50%, 0, 0); -moz-transform: translate3d(50%, 0, 0); -ms-transform: translate3d(50%, 0, 0); -o-transform: translate3d(50%, 0, 0); transform: translate3d(50%, 0, 0); }
.box-effect-5.active .left-menu { visibility: visible; -webkit-transition: -webkit-transform 0.5s; -moz-transition: transform 0.5s; -o-transition: transform 0.5s; transition: transform 0.5s; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
.box-effect-5.active #header_slide { left: 302px; }
/* Effect 6: Rotate pusher */
.box-effect-6.active, .box-effect-6.delay { -webkit-perspective: 1500px; -moz-perspective: 1500px; -ms-perspective: 1500px; perspective: 1500px; overflow: hidden; }
    .box-effect-6.active .rightmain, .box-effect-6.delay .rightmain { height: 100%; overflow: hidden; overflow-y: auto; box-shadow: 0 0 9px rgba(0,0,0,0.3); -moz-box-shadow: 0 0 9px rgba(0,0,0,0.3); -webkit-box-shadow: 0 0 9px rgba(0,0,0,0.3); }
.box-effect-6 .rightmain { -webkit-transform-origin: 0% 50%; -moz-transform-origin: 0% 50%; -ms-transform-origin: 0% 50%; -o-transform-origin: 0% 50%; transform-origin: 0% 50%; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; }
.box-effect-6.active .rightmain { -webkit-transform: translate3d(300px, 0, 0) rotateY(-15deg); -moz-transform: translate3d(300px, 0, 0) rotateY(-15deg); -ms-transform: translate3d(300px, 0, 0) rotateY(-15deg); -o-transform: translate3d(300px, 0, 0) rotateY(-15deg); transform: translate3d(300px, 0, 0) rotateY(-15deg); }
.box-effect-6 .left-menu { -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); -ms-transform: translate3d(-100%, 0, 0); -o-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); -webkit-transform-origin: 100% 50%; -moz-transform-origin: 100% 50%; -ms-transform-origin: 100% 50%; -o-transform-origin: 100% 50%; transform-origin: 100% 50%; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; z-index: 50; }
.box-effect-6.active .left-menu { visibility: visible; -webkit-transition: -webkit-transform 0.5s; -moz-transition: transform 0.5s; -o-transition: transform 0.5s; transition: transform 0.5s; -webkit-transform: translate3d(0%, 0, 0) rotateY(0deg); -moz-transform: translate3d(0%, 0, 0) rotateY(0deg); -ms-transform: translate3d(0%, 0, 0) rotateY(0deg); -o-transform: translate3d(0%, 0, 0) rotateY(0deg); transform: translate3d(0%, 0, 0) rotateY(0deg); }
/* Effect 7: 3D rotate in */
.box-effect-7.active, .box-effect-7.delay { -webkit-perspective: 1500px; -moz-perspective: 1500px; -ms-perspective: 1500px; perspective: 1500px; overflow: hidden; -webkit-perspective-origin: 0% 50%; -moz-perspective-origin: 0% 50%; -ms-perspective-origin: 0% 50%; perspective-origin: 0% 50%; }
    .box-effect-7.active .rightmain, .box-effect-7.delay .rightmain { height: 100%; overflow: hidden; overflow-y: auto; }
.box-effect-7 .rightmain { -webkit-transform-style: preserve-3d; transform-style: preserve-3d; }
.box-effect-7.active .rightmain { -webkit-transform: translate3d(300px, 0, 0); -moz-transform: translate3d(300px, 0, 0); -ms-transform: translate3d(300px, 0, 0); -o-transform: translate3d(300px, 0, 0); transform: translate3d(300px, 0, 0); }
.box-effect-7 .left-menu { -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg); -moz-transform: translate3d(-100%, 0, 0) rotateY(-90deg); -ms-transform: translate3d(-100%, 0, 0) rotateY(-90deg); -o-transform: translate3d(-100%, 0, 0) rotateY(-90deg); transform: translate3d(-100%, 0, 0) rotateY(-90deg); -webkit-transform-origin: 100% 50%; -moz-transform-origin: 100% 50%; -ms-transform-origin: 100% 50%; -o-transform-origin: 100% 50%; transform-origin: 100% 50%; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; z-index: 50; }
.box-effect-7.active .left-menu { visibility: visible; -webkit-transition: -webkit-transform 0.5s; -moz-transition: transform 0.5s; -o-transition: transform 0.5s; transition: transform 0.5s; -webkit-transform: translate3d(0%, 0, 0) rotateY(0deg); -moz-transform: translate3d(0%, 0, 0) rotateY(0deg); -ms-transform: translate3d(0%, 0, 0) rotateY(0deg); -o-transform: translate3d(0%, 0, 0) rotateY(0deg); transform: translate3d(0%, 0, 0) rotateY(0deg); }
/* Effect 8: 3D rotate out */
.box-effect-8.active, .box-effect-8.delay { -webkit-perspective: 1500px; -moz-perspective: 1500px; -ms-perspective: 1500px; perspective: 1500px; overflow: hidden; -webkit-perspective-origin: 0% 50%; -moz-perspective-origin: 0% 50%; -ms-perspective-origin: 0% 50%; perspective-origin: 0% 50%; }
    .box-effect-8.active .rightmain, .box-effect-8.delay .rightmain { height: 100%; overflow: hidden; overflow-y: auto; }
.box-effect-8 .rightmain { -webkit-transform-style: preserve-3d; transform-style: preserve-3d; }
.box-effect-8.active .rightmain { -webkit-transform: translate3d(300px, 0, 0); -moz-transform: translate3d(300px, 0, 0); -ms-transform: translate3d(300px, 0, 0); -o-transform: translate3d(300px, 0, 0); transform: translate3d(300px, 0, 0); }
.box-effect-8 .left-menu { -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg); -moz-transform: translate3d(-100%, 0, 0) rotateY(90deg); -ms-transform: translate3d(-100%, 0, 0) rotateY(90deg); -o-transform: translate3d(-100%, 0, 0) rotateY(90deg); transform: translate3d(-100%, 0, 0) rotateY(90deg); -webkit-transform-origin: 100% 50%; -moz-transform-origin: 100% 50%; -ms-transform-origin: 100% 50%; -o-transform-origin: 100% 50%; transform-origin: 100% 50%; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; z-index: 50; }
.box-effect-8.active .left-menu { visibility: visible; -webkit-transition: -webkit-transform 0.5s; -moz-transition: transform 0.5s; -o-transition: transform 0.5s; transition: transform 0.5s; -webkit-transform: translate3d(0%, 0, 0) rotateY(0deg); -moz-transform: translate3d(0%, 0, 0) rotateY(0deg); -ms-transform: translate3d(0%, 0, 0) rotateY(0deg); -o-transform: translate3d(0%, 0, 0) rotateY(0deg); transform: translate3d(0%, 0, 0) rotateY(0deg); }
/* Effect 9: Scale down pusher */
.box-effect-9.active, .box-effect-9.delay { -webkit-perspective: 1500px; -moz-perspective: 1500px; -ms-perspective: 1500px; perspective: 1500px; overflow: hidden; }
    .box-effect-9.active .rightmain, .box-effect-9.delay .rightmain { height: 100%; overflow: hidden; overflow-y: auto; }
.box-effect-9 .rightmain { -webkit-transform-style: preserve-3d; transform-style: preserve-3d; }
.box-effect-9.active .rightmain { -webkit-transform: translate3d(0, 0, -300px); -moz-transform: translate3d(0, 0, -300px); -ms-transform: translate3d(0, 0, -300px); -o-transform: translate3d(0, 0, -300px); transform: translate3d(0, 0, -300px); }
.box-effect-9 .left-menu { opacity: 1; z-index: 50; -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); -ms-transform: translate3d(-100%, 0, 0); -o-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); }
.box-effect-9.active .left-menu { visibility: visible; -webkit-transition: -webkit-transform 0.5s; -moz-transition: transform 0.5s; -o-transition: transform 0.5s; transition: transform 0.5s; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
/* Effect 10: Scale up */
.box-effect-10.active, .box-effect-10.delay { -webkit-perspective: 1500px; -moz-perspective: 1500px; -ms-perspective: 1500px; perspective: 1500px; overflow: hidden; -webkit-perspective-origin: 0% 50%; -moz-perspective-origin: 0% 50%; -ms-perspective-origin: 0% 50%; perspective-origin: 0% 50%; }
    .box-effect-10.active .rightmain, .box-effect-10.delay .rightmain { height: 100%; overflow: hidden; overflow-y: auto; box-shadow: 0 0 9px rgba(0,0,0,0.3); -moz-box-shadow: 0 0 9px rgba(0,0,0,0.3); -webkit-box-shadow: 0 0 9px rgba(0,0,0,0.3); }
    .box-effect-10.active .rightmain { -webkit-transform: translate3d(300px, 0, 0); -moz-transform: translate3d(300px, 0, 0); -ms-transform: translate3d(300px, 0, 0); -o-transform: translate3d(300px, 0, 0); transform: translate3d(300px, 0, 0); }
.box-effect-10 .left-menu { z-index: 1; opacity: 1; -webkit-transform: translate3d(0, 0, -300px); -moz-transform: translate3d(0, 0, -300px); -ms-transform: translate3d(0, 0, -300px); -o-transform: translate3d(0, 0, -300px); transform: translate3d(0, 0, -300px); }
.box-effect-10.active .left-menu { visibility: visible; -webkit-transition: -webkit-transform 0.5s; -moz-transition: transform 0.5s; -o-transition: transform 0.5s; transition: transform 0.5s; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
/* Effect 11: Scale and rotate pusher */
.box-effect-11.active, .box-effect-11.delay { -webkit-perspective: 1500px; -moz-perspective: 1500px; -ms-perspective: 1500px; perspective: 1500px; overflow: hidden; }
    .box-effect-11.active .rightmain, .box-effect-11.delay .rightmain { height: 100%; overflow: hidden; overflow-y: auto; box-shadow: 0 0 9px rgba(0,0,0,0.3); -moz-box-shadow: 0 0 9px rgba(0,0,0,0.3); -webkit-box-shadow: 0 0 9px rgba(0,0,0,0.3); }
.box-effect-11 .rightmain { -webkit-transform-style: preserve-3d; transform-style: preserve-3d; }
.box-effect-11.active .rightmain { -webkit-transform: translate3d(100px, 0, -600px) rotateY(-20deg); -moz-transform: translate3d(100px, 0, -600px) rotateY(-20deg); -ms-transform: translate3d(100px, 0, -600px) rotateY(-20deg); -o-transform: translate3d(100px, 0, -600px) rotateY(-20deg); transform: translate3d(100px, 0, -600px) rotateY(-20deg); }
.box-effect-11 .left-menu { opacity: 1; -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); -ms-transform: translate3d(-100%, 0, 0); -o-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); }
.box-effect-11.active .left-menu { visibility: visible; -webkit-transition: -webkit-transform 0.5s; -moz-transition: transform 0.5s; -o-transition: transform 0.5s; transition: transform 0.5s; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
/* Effect 12: Open door */
.box-effect-12.active, .box-effect-12.delay { -webkit-perspective: 1500px; -moz-perspective: 1500px; -ms-perspective: 1500px; perspective: 1500px; overflow: hidden; }
    .box-effect-12.active .rightmain, .box-effect-12.delay .rightmain { height: 100%; overflow: hidden; overflow-y: auto; }
.box-effect-12 .rightmain { -webkit-transform-origin: 100% 50%; -moz-transform-origin: 100% 50%; -ms-transform-origin: 100% 50%; -o-transform-origin: 100% 50%; transform-origin: 100% 50%; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; }
.box-effect-12.active .rightmain { -webkit-transform: rotateY(-10deg); -moz-transform: rotateY(-10deg); -ms-transform: rotateY(-10deg); -o-transform: rotateY(-10deg); transform: rotateY(-10deg); }
.box-effect-12 .left-menu { opacity: 1; z-index: 50; -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); -ms-transform: translate3d(-100%, 0, 0); -o-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); }
.box-effect-12.active .left-menu { visibility: visible; -webkit-transition: -webkit-transform 0.5s; -moz-transition: transform 0.5s; -o-transition: transform 0.5s; transition: transform 0.5s; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
/* Effect 13: Fall down */
.box-effect-13.active, .box-effect-13.delay { -webkit-perspective: 1500px; -moz-perspective: 1500px; -ms-perspective: 1500px; perspective: 1500px; -webkit-perspective-origin: 0% 50%; -moz-perspective-origin: 0% 50%; -ms-perspective-origin: 0% 50%; perspective-origin: 0% 50%; overflow: hidden; }
    .box-effect-13.active .rightmain, .box-effect-13.delay .rightmain { height: 100%; overflow: hidden; overflow-y: auto; box-shadow: 0 0 9px rgba(0,0,0,0.3); -moz-box-shadow: 0 0 9px rgba(0,0,0,0.3); -webkit-box-shadow: 0 0 9px rgba(0,0,0,0.3); }
    .box-effect-13.active .rightmain { -webkit-transform: translate3d(300px, 0, 0); -moz-transform: translate3d(300px, 0, 0); -ms-transform: translate3d(300px, 0, 0); -o-transform: translate3d(300px, 0, 0); transform: translate3d(300px, 0, 0); }
.box-effect-13 .left-menu { z-index: 1; opacity: 1; -webkit-transform: translate3d(0, -100%, 0); -moz-transform: translate3d(0, -100%, 0); -ms-transform: translate3d(0, -100%, 0); -o-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); }
.box-effect-13.active .left-menu { visibility: visible; -webkit-transition-timing-function: ease-in-out; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; -webkit-transition-property: -webkit-transform; -moz-transition-property: transform; -o-transition-property: transform; transition-property: transform; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); -webkit-transition-speed: 0.2s; transition-speed: 0.2s; }
/* Effect 14: Delayed 3D rotate */

.box-effect-14.active, .box-effect-14.delay { -webkit-perspective: 1500px; -moz-perspective: 1500px; -ms-perspective: 1500px; perspective: 1500px; -webkit-perspective-origin: 0% 50%; -moz-perspective-origin: 0% 50%; -ms-perspective-origin: 0% 50%; perspective-origin: 0% 50%; overflow: hidden; }
    .box-effect-14.active .rightmain, .box-effect-14.delay .rightmain { height: 100%; overflow: hidden; overflow-y: auto; box-shadow: 0 0 9px rgba(0,0,0,0.3); -moz-box-shadow: 0 0 9px rgba(0,0,0,0.3); -webkit-box-shadow: 0 0 9px rgba(0,0,0,0.3); }
.box-effect-14 .rightmain { -webkit-transform-style: preserve-3d; transform-style: preserve-3d; }
.box-effect-14.active .rightmain { -webkit-transform: translate3d(300px, 0, 0); -moz-transform: translate3d(300px, 0, 0); -ms-transform: translate3d(300px, 0, 0); -o-transform: translate3d(300px, 0, 0); transform: translate3d(300px, 0, 0); }
.box-effect-14 .left-menu { -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg); -moz-transform: translate3d(-100%, 0, 0) rotateY(90deg); -ms-transform: translate3d(-100%, 0, 0) rotateY(90deg); -o-transform: translate3d(-100%, 0, 0) rotateY(90deg); transform: translate3d(-100%, 0, 0) rotateY(90deg); -webkit-transform-origin: 0% 50%; -moz-transform-origin: 0% 50%; -ms-transform-origin: 0% 50%; -o-transform-origin: 0% 50%; transform-origin: 0% 50%; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; }
.box-effect-14.active .left-menu { visibility: visible; -webkit-transition-delay: 0.1s; -moz-transition-delay: 0.1s; -o-transition-delay: 0.1s; transition-delay: 0.1s; -webkit-transition-timing-function: ease-in-out; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; -webkit-transition-property: -webkit-transform; -moz-transition-property: transform; -o-transition-property: transform; transition-property: transform; -webkit-transform: translate3d(0%, 0, 0) rotateY(0deg); -moz-transform: translate3d(0%, 0, 0) rotateY(0deg); -ms-transform: translate3d(0%, 0, 0) rotateY(0deg); -o-transform: translate3d(0%, 0, 0) rotateY(0deg); transform: translate3d(0%, 0, 0) rotateY(0deg); }
/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
.no-csstransforms3d .rightmain, .no-js .rightmain { padding-left: 300px; }
/*anchor Nav*/
#anchorNav { position: fixed; right: 20px; top: 35%; margin: 0; padding: 0; z-index: 10000; }
    #anchorNav li { list-style: none; cursor: pointer; position: relative; margin-bottom: 10px; }
        #anchorNav li i { display: block; width: 24px; height: 22px; background-color: #7f7f7f; border: 1px solid rgba(0,0,0,0.3); text-indent: -200px; overflow: hidden; -moz-transition: all ease-out 300ms; -o-transition: all ease-out 300ms; transition: all ease-out 300ms; -webkit-transition: all ease-out 300ms; /* Safari and Chrome */ }
        #anchorNav li:hover i, #anchorNav li.active i { background-color: #a5a5a5; }
        #anchorNav li span { background-color: #fcc012; color: #FFF; position: absolute; top: 50%; right: 100%; margin: -14px 10px 0 0; white-space: nowrap; padding: 1px 5px; opacity: 0; visibility: hidden; transition: all ease-in 200ms; -moz-transition: all ease-in 200ms; /* Firefox 4 */ -webkit-transition: all ease-in 200ms; /* Safari and Chrome */ -o-transition: all ease-in 200ms; /* Opera */ -ms-transition: all ease-in 200ms; /* IE9? */ }
        #anchorNav li:hover span { opacity: 1; visibility: visible; }

@media only screen and (min-width: 1200px) {
    #anchorNav { right: 80px; }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #anchorNav { right: 20px; }
}

@media only screen and (max-width: 767px) {
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    [class*="backgroundImage"] { background-attachment: scroll !important; }
}
/*gmap*/
#gmap01, #gmap02, #gmap03, #gmap04, #gmap05 { background-color: #e5e3df; }
.map-shadow { position: relative; overflow: hidden; }
    .map-shadow:after { content: ""; position: absolute; width: 100%; height: 7px; top: -7px; left: 0; box-shadow: 0 0 7px rgba(0,0,0,0.5); -webkit-box-shadow: 0 0 7px rgba(0,0,0,0.5); z-index: 900; }
    .map-shadow:before { content: ""; position: absolute; width: 100%; height: 7px; bottom: -7px; left: 0; box-shadow: 0 0 7px rgba(0,0,0,0.5); -webkit-box-shadow: 0 0 7px rgba(0,0,0,0.5); z-index: 900; }


@media only screen and (min-width: 1600px) {
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .copyright_style .sep { padding: 0px 7px; }
    .footer_box [class*=Pane] { margin: 20px 0; }
}

@media only screen and (max-width: 767px) {
    .LogoPane, .mobileLogoPane, .dnn_logo .Logobox { display: block; }
}

@media only screen and (max-width: 991px) {
    /*--------- Mobile Menu style ----------*/
    .mobile_nav { padding: 0; position: relative; z-index: 940; transition: all ease-in 300ms; -moz-transition: all ease-in 300ms; /* Firefox 4 */ -webkit-transition: all ease-in 300ms; /* Safari and Chrome */ -o-transition: all ease-in 300ms; /* Opera */ -ms-transition: all ease-in 300ms; /* IE9? */ }
        .mobile_nav > .shade { width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: -1; background-color: #000000; filter: alpha(opacity= 0 ); opacity: 0; }
    .mobile_navbox { position: relative; }
    .mobile_dnn_logo { position: relative; padding: 0px; margin: 0 60px 0 0; text-align: left; }
        .mobile_dnn_logo img { max-width: 100%; max-height: 100%; }
    .mobile_left_icon, .mobile_right_icon { cursor: pointer; line-height: 1; text-align: center; margin-bottom: 10px; position: absolute; top: 50%; left: auto; right: 0; margin-top: -8px; }
    .mobile_left_icon { right: 30px; }
        .mobile_left_icon .fa, .mobile_right_icon a { text-align: center; font-size: 14px; color: #FFF; margin: 0 3px; display: inline-block; margin: 0; }
    .mobile_right_icon a { font-size: 0; text-decoration: none; }
        .mobile_right_icon a:before { content: "\f039"; font-family: "FontAwesome"; font-size: 16px; color: inherit; }
    .mobile_left_icon .fa.active:before, html.mm-opening.mm-opened .mobile_right_icon a:before { content: "\f00d"; font-size: 18px; }
    .mobile_left_icon .fa.active, html.mm-opening.mm-opened .mobile_right_icon a { color: #20a3f0; }
    #mobile_search { position: absolute; top: 100%; left: 0; background-color: #FFF; width: 100%; height: 62px; padding: 11px; display: none; box-shadow: 0 0 10px rgba(0,0,0,0.2); -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2); -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2); }
        #mobile_search:before { content: ""; position: absolute; top: -14px; right: 41px; border: 7px solid transparent; border-bottom-color: #FFF; }
        #mobile_search input.NormalTextBox { background-color: #e1e1e1; width: 100% !important; height: 40px; line-height: 40px; left: 0; top: 0; padding: 5px 60px 5px 5px; }
        #mobile_search .search, #mobile_search a.search:link, #mobile_search a.search:active, #mobile_search a.search:visited { width: 40px; height: 40px; line-height: 40px; color: #FFF; background-color: #20a3f0; left: auto; right: 0; }
        #mobile_search .searchSkinObjectPreview { left: 0 !important; top: 40px; }
        #mobile_search .searchInputContainer a.dnnSearchBoxClearText.dnnShow { top: 7px !important; }
    #mobile_user { width: 100%; min-height: 62px; padding: 11px; text-align: center; margin-top: 15px; border-top: 1px solid #666; }
        #mobile_user * { display: inline-block; }
        #mobile_user .userProfileImg a { width: 32px; }
        #mobile_user .userProfileImg img { max-width: 100%; }
        #mobile_user .registerGroup .buttonGroup, #mobile_user .loginGroup { line-height: 40px; margin-bottom: 0; }
        #mobile_user .registerGroup li.userMessages strong, #mobile_user .registerGroup li.userNotifications strong { display: none; }
        #mobile_user .registerGroup li.userMessages a, #mobile_user .registerGroup li.userNotifications a { font-family: 'FontAwesome'; position: relative; padding: 0px 10px; text-decoration: none; }
            #mobile_user .registerGroup li.userMessages a:before { content: "\f0e0"; }
            #mobile_user .registerGroup li.userNotifications a:before { content: "\f05a"; }
            #mobile_user .registerGroup li.userMessages a:before, #mobile_user .registerGroup li.userNotifications a:before { position: absolute; left: 2px; top: 50%; margin-top: -15px; height: 20px; font-size: 14px; line-height: 24px; }
            #mobile_user .registerGroup li.userMessages a span, #mobile_user .registerGroup li.userNotifications a span { position: absolute; bottom: 100%; right: 0px; line-height: 1.2; margin: 0 -6px 5px 0; background-color: #20a3f0; padding: 1px 3px 1px; color: #FFF; font-size: 12px; font-family: Arial, Helvetica, sans-serif; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; }
        #mobile_user, #mobile_user a, #mobile_user a:link, #mobile_user a:active, #mobile_user a:visited { color: #333333; }
            #mobile_user a:hover { color: #20a3f0; }
            #mobile_user .language-object { line-height: 40px; }
                #mobile_user .language-object .Language { margin: 0px 4px; }
                #mobile_user .language-object img { border: 1px solid #d9d9d9; }
            #mobile_user .sep { padding: 0px 10px; }
    .mobile_nav #mobile_nav { position: absolute; top: 100%; left: 0; right: 0; margin: 15px -20px 0; padding: 40px 0; background-color: #000; display: none; z-index: 1000; }
    .mobile_nav .menu_main { padding: 0 15px; }
    .HeaderPane_mobile .Normal { margin-bottom: 20px; }
    .HeaderPane_mobile { margin-bottom: 0px; }
    .HeaderBottom * { text-align: center; }
    .SkinPlugin_icon { display: none !important; }
    #dnn_wrapper { width: 100%; }
    .HeaderPaneB_mobile { padding: 0 !important; margin: 0 !important; }
    .mobile_menu .mm-navbar.mm-navbar-top.mm-navbar-top-1 { border-bottom: 1px solid #666; }
    .mobile_menu .social_list_6 { padding-bottom: 15px; }
    .mobile_menu .social_list_7 { margin: 10px 0; }
        .mobile_menu .social_list_7 span { width: 30px; height: 30px; line-height: 30px; font-size: 14px; }
    .header_email { line-height: 40px; }
    /*foot*/

    .copyright_style { float: none; text-align: center; }
    .footer_box [class*=Pane] { margin: 20px 0; }
    .FooterPane { float: none; text-align: center; padding: 0px 8px 20px; }
    #to_top { -moz-transform: scale(0.7); -ms-transform: scale(0.7); -o-transform: scale(0.7); transform: scale(0.7); -webkit-transform: scale(0.7); right: 15px; bottom: 15px; /*	display: none!important;*/ }
}

.mm-menu .mm-navbar.mm-navbar-top-2, .mm-menu .mm-navbar.mm-navbar-top-2 a { color: #666; }
.mm-menu .mm-navbar.mm-navbar-bottom.mm-navbar-bottom-1 { top: auto; bottom: 0; }
html.mm-opening.mm-opened .mm-slideout { -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -webkit-transform: translate(-80%, 0); -moz-transform: translate(-80%, 0); -ms-transform: translate(-80%, 0); -o-transform: translate(-80%, 0); transform: translate(-80%, 0); }
.mm-slideout { box-shadow: 0 0 6px rgba(0,0,0,0.2); -moz-box-shadow: 0 0 6px rgba(0,0,0,0.2); -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.2); }
.mobile_menu .mm-close.mm-btn:before { content: "\f00d"; font-family: "FontAwesome"; font-size: 20px; }
.mobile_menu .mm-prev:before, .mobile_menu .mm-arrow:after { display: none; }
.mobile_menu .mm-prev:after, .mobile_menu .mm-next:after, .mobile_menu .mm-arrow:before { content: "\f053"; font-family: "FontAwesome"; font-size: 15px; display: inline-block; vertical-align: middle; }
.mobile_menu .mm-next:after { border: none; -moz-transform: none; -ms-transform: none; -o-transform: none; transform: none; -webkit-transform: none; content: "\f105"; font-family: "FontAwesome"; font-size: 16px; display: inline-block; top: -12px; }
.mobile_menu .mm-navbar .mm-btn { line-height: 40px; }

@media all and (max-width: 175px) {
    html.mm-opening.mm-opened .mm-slideout { -webkit-transform: translate(-140px, 0); -moz-transform: translate(-140px, 0); -ms-transform: translate(-140px, 0); -o-transform: translate(-140px, 0); transform: translate(-140px, 0); }
}

@media all and (min-width: 550px) {
    html.mm-opening.mm-opened .mm-slideout { -webkit-transform: translate(-440px, 0); -moz-transform: translate(-440px, 0); -ms-transform: translate(-440px, 0); -o-transform: translate(-440px, 0); transform: translate(-440px, 0); }
}
/*pagepiling*/
#pagepiling { width: 100%; height: 100%; overflow: hidden; position: relative; }
    #pagepiling .section { top: auto; bottom: 0; width: 100%; height: 100%; text-align: center; position: absolute; }
.pp-section { height: 100%; position: absolute; width: 100%; }
.pp-easing { -webkit-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990); -moz-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990); -o-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990); transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990); /* custom */ -webkit-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990); -moz-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990); -o-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990); transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990); /* custom */ }
#pp-nav { position: fixed; z-index: 100; margin-top: -32px; top: 50%; opacity: 1; }
    #pp-nav.right { right: 17px; }
    #pp-nav.left { left: 17px; }
.pp-section.pp-table { display: table; width: 100%; table-layout: fixed; }
.pp-tableCell { display: table-cell; vertical-align: middle; width: 100%; height: 100%; }
.pp-slidesNav { position: absolute; z-index: 4; left: 50%; opacity: 1; }
    .pp-slidesNav.bottom { bottom: 17px; }
    .pp-slidesNav.top { top: 17px; }
    #pp-nav ul, .pp-slidesNav ul { margin: 0; padding: 0; }
    #pp-nav li, .pp-slidesNav li { display: block; width: 14px; height: 13px; margin: 12px 7px; position: relative; }
    .pp-slidesNav li { display: inline-block; }
        #pp-nav li a, .pp-slidesNav li a { display: block; position: relative; z-index: 1; width: 100%; height: 100%; cursor: pointer; text-decoration: none; }
    #pp-nav li .active span, .pp-slidesNav .active span { background: transparent !important; border: 5px solid #ffffff !important; }
    #pp-nav span, .pp-slidesNav span { top: 2px; left: 2px; width: 16px; height: 16px; border: none !important; background: #FFF !important; border-radius: 50%; position: absolute; z-index: 1; }
.pp-tooltip { position: absolute; top: -2px; color: #fff; font-size: 14px; font-family: arial, helvetica, sans-serif; white-space: nowrap; max-width: 220px; }
    .pp-tooltip.right { right: 20px; }
    .pp-tooltip.left { left: 20px; }
#pagepiling .gohome { width: 70px; height: 70px; border: 2px solid #FFF; border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; position: absolute; left: 50%; bottom: 0; margin: 0 0 80px -45px; cursor: pointer; z-index: 1; background: url("/Portals/_default/Skins/ForVend/images/gohome_ico.png") no-repeat center center; -webkit-animation: arrows 1s infinite; -webkit-animation-delay: 1s; -moz-animation: arrows 1s infinite; -o-animation: arrows 1s infinite; animation: arrows 1s infinite; -moz-animation-delay: 1s; -o-animation-delay: 1s; animation-delay: 1s; }
.animationUp { opacity: 0; transform: translateY(-200px); -ms-transform: translateY(-200px); /* IE 9 */ -moz-transform: translateY(-200px); /* Firefox */ -webkit-transform: translateY(-200px); /* Safari and Chrome */ -o-transform: translateY(-200px); /* Opera */ transition: all ease 800ms; -moz-transition: all ease 800ms; /* Firefox 4 */ -webkit-transition: all ease 800ms; /* Safari and Chrome */ -o-transition: all ease 800ms; /* Opera */ -ms-transition: all ease 800ms; /* IE9? */ }
.animationDown { opacity: 0; transform: translateY(200px); -ms-transform: translateY(200px); /* IE 9 */ -moz-transform: translateY(200px); /* Firefox */ -webkit-transform: translateY(200px); /* Safari and Chrome */ -o-transform: translateY(200px); /* Opera */ transition: all ease 800ms; -moz-transition: all ease 800ms; /* Firefox 4 */ -webkit-transition: all ease 800ms; /* Safari and Chrome */ -o-transition: all ease 800ms; /* Opera */ -ms-transition: all ease 800ms; /* IE9? */ }
#pagepiling .active .animationUp, #pagepiling .active .animationDown { transform: translateY(0px); -ms-transform: translateY(0px); /* IE 9 */ -moz-transform: translateY(0px); /* Firefox */ -webkit-transform: translateY(0px); /* Safari and Chrome */ -o-transform: translateY(0px); /* Opera */ opacity: 1; }

@media only screen and (min-width: 768px) {
    .dnngo-main.boxed #pagepiling { margin-top: -25px; margin-bottom: 25px; }
}


/*welcome*/
.welcome_box { width: 100%; position: relative; z-index: 1; }
    .welcome_box .welcome_title { font-size: 70px; line-height: 1.2; color: #ffffff; padding: 0px 15px; font-weight: bold; letter-spacing: 4px; }
    .welcome_box .welcome_content { font-size: 20px; color: #ffffff; padding: 0px 15px; position: relative; z-index: 1; }
    .welcome_box .welcome_pic { padding: 50px 15px; }
        .welcome_box .welcome_pic img { max-width: 100%; }
#pagepiling .animation_element { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; }
    #pagepiling .animation_element .element_bg { position: absolute; height: 100%; width: 100%; background-position: center bottom; background-repeat: no-repeat; background-size: contain; bottom: -50%; left: 0; transition: all 1s ease-in 0s; -moz-transition: all 1s ease-in 0s; /* Firefox 4 */ -webkit-transition: all 1s ease-in 0s; /* Safari and Chrome */ -o-transition: all 1s ease-in 0s; /* Opera */ -ms-transition: all 1s ease-in 0s; /* IE9? */ }
#pagepiling .active .animation_element .element_bg { bottom: 0; transition: all 1s ease-out 0.4s; -moz-transition: all 1s ease-out 0.4s; /* Firefox 4 */ -webkit-transition: all 1s ease-out 0.4s; /* Safari and Chrome */ -o-transition: all 1s ease-out 0.4s; /* Opera */ -ms-transition: all 1s ease-out 0.4s; /* IE9? */ }
#pagepiling .animation_element .element_bg img { max-width: 100%; }
#pagepiling .star { position: absolute; animation: star infinite 2s; -moz-animation: star infinite 2s; -webkit-animation: star infinite 2s; -o-animation: star infinite 2s; }
#pagepiling .animation_star .star_1 { top: 20px; left: 10%; -moz-animation-duration: 4.5s; -o-animation-duration: 4.5s; animation-duration: 4.5s; -webkit-animation-duration: 4.5s; }
#pagepiling .animation_star .star_2 { top: 123px; left: 20%; -moz-animation-duration: 5s; -o-animation-duration: 5s; animation-duration: 5s; -webkit-animation-duration: 5s; }
#pagepiling .animation_star .star_3 { top: 43px; left: 60%; -moz-animation-duration: 6s; -o-animation-duration: 6s; animation-duration: 6s; -webkit-animation-duration: 6s; }
#pagepiling .animation_star .star_4 { top: 440px; left: 90%; -moz-animation-duration: 10s; -o-animation-duration: 10s; animation-duration: 10s; -webkit-animation-duration: 10s; }
#pagepiling .animation_star .star_5 { top: 234px; left: 14%; -moz-animation-duration: 5.5s; -o-animation-duration: 5.5s; animation-duration: 5.5s; -webkit-animation-duration: 5.5s; }
#pagepiling .animation_star .star_6 { top: 100px; left: 50%; -moz-animation-duration: 15s; -o-animation-duration: 15s; animation-duration: 15s; -webkit-animation-duration: 15s; }
#pagepiling .animation_star .star_7 { top: 34px; left: 82%; -moz-animation-duration: 20s; -o-animation-duration: 20s; animation-duration: 20s; -webkit-animation-duration: 20s; }
#pagepiling .animation_star .star_8 { top: 120px; left: 34%; -moz-animation-duration: 10s; -o-animation-duration: 10s; animation-duration: 10s; -webkit-animation-duration: 10s; }
#pagepiling .cloud { position: absolute; left: -100px; animation: cloud infinite 10s linear; -moz-animation: cloud infinite 10s linear; -webkit-animation: cloud infinite 10s linear; -o-animation: cloud infinite 10s linear; }
#pagepiling .animation_cloud .cloud_1 { top: 20px; -moz-animation-duration: 15s; -o-animation-duration: 15s; animation-duration: 15s; -webkit-animation-duration: 15s; -moz-animation-delay: 0s; -o-animation-delay: 0s; animation-delay: 0s; -webkit-animation-delay: 0s; }
#pagepiling .animation_cloud .cloud_2 { top: 123px; -moz-animation-duration: 20s; -o-animation-duration: 20s; animation-duration: 20s; -webkit-animation-duration: 20s; -moz-animation-delay: 1s; -o-animation-delay: 1s; animation-delay: 1s; -webkit-animation-delay: 1s; -moz-transform: scale(0.5); -ms-transform: scale(0.5); -o-transform: scale(0.5); transform: scale(0.5); -webkit-transform: scale(0.5); }
#pagepiling .animation_cloud .cloud_3 { top: 63px; -moz-animation-duration: 22s; -o-animation-duration: 22s; animation-duration: 22s; -webkit-animation-duration: 22s; -moz-animation-delay: 5s; -o-animation-delay: 5s; animation-delay: 5s; -webkit-animation-delay: 5s; -moz-transform: scale(0.9); -ms-transform: scale(0.9); -o-transform: scale(0.9); transform: scale(0.9); -webkit-transform: scale(0.9); }
#pagepiling .animation_cloud .cloud_4 { top: 240px; -moz-animation-duration: 18s; -o-animation-duration: 18s; animation-duration: 18s; -webkit-animation-duration: 18s; -moz-animation-delay: 2s; -o-animation-delay: 2s; animation-delay: 2s; -webkit-animation-delay: 2s; -moz-transform: scale(0.8); -ms-transform: scale(0.8); -o-transform: scale(0.8); transform: scale(0.8); -webkit-transform: scale(0.8); }
#pagepiling .snowflake { position: absolute; top: -100px; animation: snowflake infinite 10s linear; -moz-animation: snowflake infinite 10s linear; -webkit-animation: snowflake infinite 10s linear; -o-animation: snowflake infinite 10s linear; }
#pagepiling .animation_snowflake .snowflake_1 { left: 20%; -moz-animation-duration: 15s; -o-animation-duration: 15s; animation-duration: 15s; -webkit-animation-duration: 15s; -moz-animation-delay: 0s; -o-animation-delay: 0s; animation-delay: 0s; -webkit-animation-delay: 0s; }
#pagepiling .animation_snowflake .snowflake_2 { left: 8%; -moz-animation-duration: 20s; -o-animation-duration: 20s; animation-duration: 20s; -webkit-animation-duration: 20s; -moz-animation-delay: 5.1s; -o-animation-delay: 5.1s; animation-delay: 5.1s; -webkit-animation-delay: 5.1s; -moz-transform: scale(0.5); -ms-transform: scale(0.5); -o-transform: scale(0.5); transform: scale(0.5); -webkit-transform: scale(0.5); }
#pagepiling .animation_snowflake .snowflake_3 { left: 63%; -moz-animation-duration: 22s; -o-animation-duration: 22s; animation-duration: 22s; -webkit-animation-duration: 22s; -moz-animation-delay: 6s; -o-animation-delay: 6s; animation-delay: 6s; -webkit-animation-delay: 6s; -moz-transform: scale(0.9); -ms-transform: scale(0.9); -o-transform: scale(0.9); transform: scale(0.9); -webkit-transform: scale(0.9); }
#pagepiling .animation_snowflake .snowflake_4 { left: 82%; -moz-animation-duration: 18s; -o-animation-duration: 18s; animation-duration: 18s; -webkit-animation-duration: 18s; -moz-animation-delay: 4s; -o-animation-delay: 4s; animation-delay: 4s; -webkit-animation-delay: 4s; -moz-transform: scale(0.8); -ms-transform: scale(0.8); -o-transform: scale(0.8); transform: scale(0.8); -webkit-transform: scale(0.8); }
#pagepiling .animation_snowflake .snowflake_5 { left: 75%; -moz-animation-duration: 16.5s; -o-animation-duration: 16.5s; animation-duration: 16.5s; -webkit-animation-duration: 16.5s; -moz-animation-delay: 1s; -o-animation-delay: 1s; animation-delay: 1s; -webkit-animation-delay: 1s; }
#pagepiling .animation_snowflake .snowflake_6 { left: 18%; -moz-animation-duration: 18.5s; -o-animation-duration: 18.5s; animation-duration: 18.5s; -webkit-animation-duration: 18.5s; -moz-animation-delay: 3s; -o-animation-delay: 3s; animation-delay: 3s; -webkit-animation-delay: 3s; -moz-transform: scale(0.5); -ms-transform: scale(0.5); -o-transform: scale(0.5); transform: scale(0.5); -webkit-transform: scale(0.5); }
#pagepiling .animation_snowflake .snowflake_7 { left: 70%; -moz-animation-duration: 24.5s; -o-animation-duration: 24.5s; animation-duration: 24.5s; -webkit-animation-duration: 24.5s; -moz-animation-delay: 7s; -o-animation-delay: 7s; animation-delay: 7s; -webkit-animation-delay: 7s; -moz-transform: scale(0.9); -ms-transform: scale(0.9); -o-transform: scale(0.9); transform: scale(0.9); -webkit-transform: scale(0.9); }
#pagepiling .animation_snowflake .snowflake_8 { left: 92%; -moz-animation-duration: 23.5s; -o-animation-duration: 23.5s; animation-duration: 23.5s; -webkit-animation-duration: 23.5s; -moz-animation-delay: 5s; -o-animation-delay: 5s; animation-delay: 5s; -webkit-animation-delay: 5s; -moz-transform: scale(0.8); -ms-transform: scale(0.8); -o-transform: scale(0.8); transform: scale(0.8); -webkit-transform: scale(0.8); }
#pagepiling .dandelion { opacity: 0; }
#pagepiling .dandelion { position: absolute; opacity: 0; bottom: 20%; left: 80%; z-index: -1; animation: dandelion infinite 10s linear; -moz-animation: dandelion infinite 10s linear; -webkit-animation: dandelion infinite 10s linear; -o-animation: dandelion infinite 10s linear; }
#pagepiling .animation_dandelion .dandelion_1 { left: 66%; -moz-animation-duration: 16s; -o-animation-duration: 16s; animation-duration: 16s; -webkit-animation-duration: 16s; -moz-animation-delay: 3s; -o-animation-delay: 3s; animation-delay: 3s; -webkit-animation-delay: 2s; }
#pagepiling .animation_dandelion .dandelion_2 { left: 40%; -moz-animation-duration: 12s; -o-animation-duration: 12s; animation-duration: 12s; -webkit-animation-duration: 12s; -moz-animation-delay: 2.4s; -o-animation-delay: 2.4s; animation-delay: 2.4s; -webkit-animation-delay: 2.4s; -moz-transform: scale(0.95); -ms-transform: scale(0.95); -o-transform: scale(0.95); transform: scale(0.95); -webkit-transform: scale(0.95); }
#pagepiling .animation_dandelion .dandelion_3 { left: 45%; -moz-animation-duration: 15s; -o-animation-duration: 15s; animation-duration: 15s; -webkit-animation-duration: 15s; -moz-animation-delay: 4s; -o-animation-delay: 4s; animation-delay: 4s; -webkit-animation-delay: 4s; -moz-transform: scale(0.8); -ms-transform: scale(0.8); -o-transform: scale(0.8); transform: scale(0.8); -webkit-transform: scale(0.8); }
#pagepiling .animation_dandelion .dandelion_4 { left: 110%; -moz-animation-duration: 16s; -o-animation-duration: 16s; animation-duration: 16s; -webkit-animation-duration: 16s; -moz-animation-delay: 8s; -o-animation-delay: 8s; animation-delay: 8s; -webkit-animation-delay: 8s; -moz-transform: scale(0.75); -ms-transform: scale(0.75); -o-transform: scale(0.75); transform: scale(0.75); -webkit-transform: scale(0.75); }
#pagepiling .animation_dandelion .dandelion_5 { left: 67%; -moz-animation-duration: 18s; -o-animation-duration: 18s; animation-duration: 18s; -webkit-animation-duration: 18s; -moz-animation-delay: 6s; -o-animation-delay: 6s; animation-delay: 6s; -webkit-animation-delay: 6s; -moz-transform: scale(0.7); -ms-transform: scale(0.7); -o-transform: scale(0.7); transform: scale(0.7); -webkit-transform: scale(0.7); }
#pagepiling .animation_dandelion .dandelion_6 { left: 74%; -moz-animation-duration: 20s; -o-animation-duration: 20s; animation-duration: 20s; -webkit-animation-duration: 20s; -moz-animation-delay: 4s; -o-animation-delay: 4s; animation-delay: 4s; -webkit-animation-delay: 4s; -moz-transform: scale(0.65); -ms-transform: scale(0.65); -o-transform: scale(0.65); transform: scale(0.65); -webkit-transform: scale(0.65); }
#pagepiling .animation_dandelion .dandelion_7 { left: 123%; -moz-animation-duration: 19s; -o-animation-duration: 19s; animation-duration: 19s; -webkit-animation-duration: 19s; -moz-animation-delay: 5s; -o-animation-delay: 5s; animation-delay: 5s; -webkit-animation-delay: 5s; -moz-transform: scale(0.68); -ms-transform: scale(0.68); -o-transform: scale(0.68); transform: scale(0.68); -webkit-transform: scale(0.68); }
#pagepiling .animation_dandelion .dandelion_8 { left: 99%; -moz-animation-duration: 17s; -o-animation-duration: 17s; animation-duration: 17s; -webkit-animation-duration: 17s; -moz-animation-delay: 9.5s; -o-animation-delay: 9.5s; animation-delay: 9.5s; -webkit-animation-delay: 9.5s; -moz-transform: scale(0.78); -ms-transform: scale(0.78); -o-transform: scale(0.78); transform: scale(0.78); -webkit-transform: scale(0.78); }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .welcome_box .welcome_title { font-size: 40px; }
    .welcome_box .welcome_content { font-size: 16px; }
    .welcome_box .welcome_pic { padding: 25px 0; }
}

@media only screen and (max-width: 767px) {
    .welcome_box .welcome_title { font-size: 30px; }
    .welcome_box .welcome_content { font-size: 14px; }
    .welcome_box .welcome_pic { padding: 15px 0; }
}

div.main_slider_wrapper { overflow: hidden; margin: 0 auto; max-width: 1000px; }
.slider_wrapper * { box-sizing: content-box; -moz-box-sizing: content-box; -ms-box-sizing: content-box; -webkit-box-sizing: content-box; }
.slider_wrapper { text-align: left; margin: 0; padding: 0; border: none; clear: both; display: block; position: relative; }
    .slider_wrapper .circle_slider { position: relative; width: 970px; height: 260px; margin: 0; padding: 0; border: none; overflow: hidden; }
.circle_slider_thumb { border: #ecebeb solid 1px !important; padding: 4px !important; position: absolute; top: 97px; width: 84px; height: 84px; float: left; -moz-box-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; margin: 0; padding: 0; cursor: pointer; }
    .circle_slider_thumb img { max-width: 100% !important; width: 84px; margin: 0 !important; padding: 0 !important; border: none; border-radius: 84px; }
.circle_slider_big { overflow: hidden; border: #282828 solid 8px; border-radius: 231px; position: absolute; top: 24px; width: 231px; height: 231px; float: left; -moz-box-shadow: 5px 5px 5px #888; -webkit-box-shadow: 5px 5px 5px #888; box-shadow: 5px 5px 5px #888; margin: 0; padding: 0; }
    .circle_slider_big img { width: 231px; margin: 0; padding: 0; border: none; }
.slider_wrapper .circle_slider_nav_left { position: absolute; top: 334px; left: 95px; height: 57px; width: 28px; display: block; margin: 0; padding: 0; border: none; overflow: hidden; cursor: pointer; }
.slider_wrapper .circle_slider_no_border2_left { width: 24px; }
.slider_wrapper .circle_slider_nav_left span { border-radius: 50px 0px 0px 50px; left: 0px; position: absolute; display: inline-block; background: url("/Portals/_default/Skins/ForVend/images/slider_ico.png") no-repeat left top; box-shadow: none !important; }
.slider_wrapper .circle_slider_nav_right { position: absolute; top: 597px; left: 95px; height: 57px; width: 28px; display: block; margin: 0; padding: 0; border: none; overflow: hidden; cursor: pointer; }
    .slider_wrapper .circle_slider_nav_right span { margin-left: -26px; left: 0px; position: absolute; display: inline-block; box-shadow: none !important; background: url("/Portals/_default/Skins/ForVend/images/slider_ico.png") no-repeat left top; }
.slider_wrapper .circle_slider_nav_left.circle_slider_no_border span { padding: 0; margin-left: 8px; border-radius: 0; background: url("/Portals/_default/Skins/ForVend/images/slider_ico.png") no-repeat left 8px !important; box-shadow: none !important; overflow: hidden; text-indent: -999px; display: block; width: 100%; height: 30px; }
.slider_wrapper .circle_slider_nav_right.circle_slider_no_border span { padding: 0; left: 4px; border-radius: 0; background: url("/Portals/_default/Skins/ForVend/images/slider_ico.png") no-repeat right 8px !important; box-shadow: none !important; overflow: hidden; text-indent: -999px; display: block; width: 100%; margin-left: -4px; height: 30px; }
/*	Circle Slider text	*/

.slider_wrapper .slider_item { width: 100%; left: 0px; top: 10px; position: relative; display: inline-block; }
    .slider_wrapper .slider_item .circle_slider_text { width: 460px; padding: 0 20px 20px 0px; border-right: 1px solid #7e7e7e; float: left; margin: 0; border-left: none; border-bottom: none; border-top: none; }
        .slider_wrapper .slider_item .circle_slider_text.right { border-left: 1px solid #7e7e7e; border-right: none; width: 459px; padding: 0 0px 20px 20px; margin: 0 0 0 -1px; border-bottom: none; border-top: none; }
        .slider_wrapper .slider_item .circle_slider_text span { text-align: right; display: inline-block; width: 100%; margin: 0; padding: 0; border: none; }
        .slider_wrapper .slider_item .circle_slider_text h4 { float: right; }
        .slider_wrapper .slider_item .circle_slider_text.right span { text-align: left; }
        .slider_wrapper .slider_item .circle_slider_text.right h4 { float: left; }
.image_more_info { width: 42px; height: 42px; overflow: hidden; position: absolute; left: 0px; top: 0px; z-index: 10; }
    .image_more_info a { position: relative; }
    .image_more_info span { border-radius: 50%; display: block; padding: 0px; overflow: hidden; border: 0; width: 0px; height: 0px; background: url("/Portals/_default/Skins/ForVend/images/slider_ico.png") no-repeat 12px -28px #3b9cf7 !important; box-shadow: none !important; font-size: 0px; }
.circle_item_border { box-sizing: border-box !important; -moz-box-sizing: border-box !important; -ms-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; position: absolute; width: 100%; height: 100%; top: -1px; left: -1px; border: 5px solid #000000; border-radius: 40px 40px 40px 40px; z-index: 5; }
/* additional content */

.slider_wrapper .slider_wrap { text-align: center; }
.slider_wrapper div.all_around_text_up { position: absolute; margin: 0; padding: 0; }
.slider_wrapper div.all_around_text_down { position: absolute; margin: 0; padding: 0; }
.slider_wrapper span.all_around_text_span_up { margin: 0; padding: 0; text-align: center; position: absolute; bottom: 0; }
.slider_wrapper span.all_around_text_span_down { margin: 0; padding: 0; text-align: center; position: absolute; padding: 5px !important; font-size: 15px; color: #555859; }
.slider_wrapper .slider_item { display: none; }
.main_content_slider_box { margin: auto; overflow: hidden; width: 100% !important; }


/*dnnsoftware*/
.proInfoImage.dnnLeft .proInfoImageImage { width: 450px; }

/*simpleanchor */
#simpleanchor { margin: 0; padding: 0; list-style: none; }
    #simpleanchor li { list-style: none; }
    #simpleanchor a { display: block; padding: 4px 20px; font-size: 13px; font-weight: 500; color: inherit; border-left: 2px solid transparent; transition: all ease-in 200ms; -moz-transition: all ease-in 200ms; /* Firefox 4 */ -webkit-transition: all ease-in 200ms; /* Safari and Chrome */ -o-transition: all ease-in 200ms; /* Opera */ -ms-transition: all ease-in 200ms; /* IE9? */ }
        #simpleanchor a:hover { color: #20a3f0; text-decoration: none; border-left-color: #20a3f0; }
    #simpleanchor .active a { color: #20a3f0; font-weight: bold; border-left-color: #20a3f0; }

body[style*="margin-left: 80px"] .mfp-arrow-left.mfp-prevent-close { margin-left: 80px; }
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNnews/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
@charset "UTF-8";

/* cyrillic-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/JX7MlXqjSJNjQvI4heMMGvY6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/vtwNVMP8y9C17vLvIBNZI_Y6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/9kaD4V2pNPMMeUVBHayd7vY6323mHUZFJMgTvxaG2iE.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/ATKpv8nLYAKUYexo8iqqrg.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/kTYfCWJhlldPf5LnG4ZnHCEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/g46X4VH_KHOWAAa-HpnGPiEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7iEAvth_LlrfE80CYdSH47w.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/0XxGQsSc1g4rdRdjJKZrNPk_vArhqVIZ0nv9q090hN8.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nE8xhg-WlD4iG4AP-V7QxYA.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nN_eC2PfU-cUGGN7U-FIfKc.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nLvM2QJLsjx6Keu1D2MYodo.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nNd5cRMOq5PeG3VabknWPxo.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nLpX8dGXLalyu5OokvgDQcs.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPVFL0ofnRu5Y2lP-UpEUGU.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nBBQ_Gf4FfI8J4SYljBAylk.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsDrvev4WAjW489CRDHIkJ90.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsCGXDOnx9ptx3UTSPTrfsgk.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsAZ98xO_Wnt-JIem4AuLGfs.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsE1G989qbVg6RT5ly5jB8V8.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsJ84zb0nVte6liF9gGtpo1Y.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsD86pq2NkPzVgw_9lpT6RGI.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsDAdhzWOYhqHvOZMRGaEyPo.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nDW5FUgIgejJvrHuLWqrSMw.woff2") format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nA30BZHTGu2N_DqssQcMQNQ.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPDoBG10JtAX-GAwn6iwU1Y.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nGhQuge17febRYSUkWKdLWA.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nBBtmDLrZTTOm3p1EhiGCXc.woff2") format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nEV356qNqHCUb41pS3zqMSE.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nHm2hrkyco9jQ3NKMXpgOBg.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/7nBxcqTeiPvFX1XVBk6VGw.woff2") format("woff2");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7vk_vArhqVIZ0nv9q090hN8.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nFBvb3f1rSHBccuxwv45BuQ.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsL0XspSvAl7ZHo2ORvFbbnU.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nPJ02wFZLBBkWNCvnE5Eqks.woff2") format("woff2");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("https://fonts.gstatic.com/s/ptsans/v8/GdZvpAq9shJukTEvSQbePw.woff") format("woff");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("https://fonts.gstatic.com/s/ptsans/v8/hpORcvLZtemlH8gI-1S-7hsxEYwM7FgeyaSgU71cLG0.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Condensed Light"), local("RobotoCondensed-Light"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nCj3Mi2hOMP9GNHlaDA9WRI.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("https://fonts.gstatic.com/s/robotocondensed/v14/Zd2E9abXLFGSr9G3YK2MsK8NE7_Gi-Xz52ZQ_AwfA78.woff") format("woff");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("https://fonts.gstatic.com/s/robotocondensed/v14/b9QBgL0iMZfDSpmcXcE8nJT5GEmoOtNsejy4tIPLwv0.woff") format("woff");
}
.eds_news_Ozone {
  margin-bottom: 30px;
}
.eds_news_Ozone * {
  box-sizing: border-box;
}
.eds_news_Ozone h1,
.eds_news_Ozone h2,
.eds_news_Ozone h3,
.eds_news_Ozone h4,
.eds_news_Ozone h5,
.eds_news_Ozone h6,
.eds_news_Ozone th,
.eds_news_Ozone .in_article_image .image_title {
  font-family: inherit;
}
.eds_news_Ozone h1, .eds_news_Ozone h2, .eds_news_Ozone h3, .eds_news_Ozone h4, .eds_news_Ozone h5, .eds_news_Ozone h6 {
  margin: 0 0 15px;
  padding: 0;
  color: #c81704;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 1.1;
}
.eds_news_Ozone h1 {
  font-size: 16px;
}
.eds_news_Ozone h2 {
  font-size: 15px;
}
.eds_news_Ozone h3 {
  font-size: 14px;
}
.eds_news_Ozone h4 {
  font-size: 13px;
}
.eds_news_Ozone h5 {
  font-size: 12px;
}
.eds_news_Ozone h6 {
  font-size: 12px;
}
.eds_news_Ozone p {
  margin: 0 0 15px;
  padding: 0;
}
.eds_news_Ozone ul, .eds_news_Ozone ol {
  margin-left: 15px;
}
.eds_news_Ozone ul {
  list-style-type: disc;
}
.eds_news_Ozone ul ul {
  list-style-type: circle;
}
.eds_news_Ozone ul ul ul {
  list-style-type: square;
}
.eds_news_Ozone ol {
  list-style-type: decimal;
}
.eds_news_Ozone ol ol {
  list-style-type: upper-roman;
}
.eds_news_Ozone ol ol ol {
  list-style-type: lower-roman;
}
.eds_news_Ozone .eds_openModal {
  cursor: pointer;
}
.eds_news_Ozone .edn_clearFix:after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone .edn_isotopeLayout > div {
  margin: 0 auto;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news {
  font-family: inherit;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news:after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_news_Ozone.eds_subCollection_news span, .eds_news_Ozone.eds_subCollection_news a, .eds_news_Ozone.eds_subCollection_news li, .eds_news_Ozone.eds_subCollection_news td, .eds_news_Ozone.eds_subCollection_news table {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_news a {
  text-decoration: none;
  color: #c81704;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_news a > img {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_articleSummary {
  font-size: 15px;
  line-height: 1.3;
  text-align: justify;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleTitle {
  margin-bottom: 5px;
  text-align: justify;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleSubTitle {
  color: #424242;
  font-size: 12px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer {
  max-width: 100%;
  float: left;
  margin: 5px 15px 10px 0;
  position: relative;
  border: solid 1px #c81704;
  padding: 3px;
  position: relative;
  overflow: hidden;
  line-height: 0;
  -webkit-transition: all 250ms linear;
  -khtml-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  transition: all 250ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer:hover {
  border-color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  text-indent: -99999px;
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer > img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink {
  position: absolute;
  display: inline-block;
  bottom: 3px;
  right: 3px;
  left: auto;
  top: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 100px 0 0 0;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  font-size: 0;
  text-indent: 0;
  width: 100px;
  height: 100px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink:before {
  line-height: 1;
  font-family: inherit;
  content: "";
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  position: absolute;
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -7px;
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink > span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 5px;
  right: 5px;
  font-family: inherit, sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer .edn_galleryLink:hover:before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime {
  display: table;
  margin-top: 3px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime {
    display: block;
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time {
  background-color: #c81704;
  display: table-cell;
  vertical-align: middle;
  padding: 8px;
  text-align: center;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span {
  display: block;
  color: #fff;
  line-height: 1.2;
  font-family: inherit, sans-serif;
  font-size: 22px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span {
    display: inline;
    padding: 0 5px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:first-child {
  font-size: 26px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > time > span:last-child {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a {
  position: relative;
  display: table-cell;
  overflow: hidden;
  text-indent: 0;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a:after {
  position: absolute;
  content: "";
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.2s linear;
  -khtml-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a > img {
  -webkit-transition: all 0.2s linear;
  -khtml-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a > img {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a .edn_mediaLink {
  position: absolute;
  right: 5%;
  bottom: 5%;
  color: #fff;
  opacity: 0;
  border: solid 1px #fff;
  border-radius: 3px;
  padding: 5px;
  line-height: 1;
  font-size: 12px;
  z-index: 2;
  -webkit-transition: opacity 0.3s linear;
  -khtml-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -ms-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a:hover:after,
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a:hover .edn_mediaLink {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_mediaContainer.edn_withTime > a:hover > img {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.eds_news_Ozone.eds_subCollection_news .edn_galleryImagesContainer {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_galleryImagesContainer img {
  max-width: 100%;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_news .edn_galleryImagesContainer:before {
  content: "";
  display: inline-block;
  font-family: inherit;
  line-height: 0;
  font-size: 40px;
  font-style: normal;
  font-weight: normal;
  opacity: 0.7;
  color: #B0B0B0;
  top: 50%;
  left: 50%;
  margin: 0 0 0 -18px;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions {
  line-height: 1;
  font-size: 13px;
  position: relative;
  z-index: 999;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a,
.eds_news_Ozone.eds_subCollection_news .admin_action {
  display: inline-block;
  margin: 10px 5px 10px 0;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
  padding: 5px;
  text-decoration: none;
  line-height: 1;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a:hover,
.eds_news_Ozone.eds_subCollection_news .admin_action:hover {
  text-decoration: underline;
  box-shadow: 0 0 2px 0 #fff inset;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a:hover:before,
.eds_news_Ozone.eds_subCollection_news .admin_action:hover:before {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a:before,
.eds_news_Ozone.eds_subCollection_news .admin_action:before {
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 5px;
  font-size: 15px;
  opacity: 0.8;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.edit,
.eds_news_Ozone.eds_subCollection_news .admin_action.edit {
  color: #f89e00;
  border-color: #e78d00;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.edit:before,
.eds_news_Ozone.eds_subCollection_news .admin_action.edit:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.publish_article,
.eds_news_Ozone.eds_subCollection_news .admin_action.publish_article {
  color: #619c1c;
  border-color: #4c771d;
}
.eds_news_Ozone.eds_subCollection_news .edn_adminActions > a.publish_article:before,
.eds_news_Ozone.eds_subCollection_news .admin_action.publish_article:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails {
  font-size: 12px;
  line-height: 1.2;
  color: #6e6e6e;
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberComments,
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberComments:before,
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs:before {
  font-family: "FontAwesome";
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -10%;
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberComments:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_metaDetails .edn_numberOfVievs:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_readMoreButtonWrapper {
  margin: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_readMore.edn_readMoreButton,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment .add_article_box .submit {
  display: inline-block;
  border: 1px solid #c81704;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_readMore.edn_readMoreButton:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment .add_article_box .submit:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_news .fb-comments, .eds_news_Ozone.eds_subCollection_news .fb-comments iframe[style], .eds_news_Ozone.eds_subCollection_news .fb-comments > span {
  width: 100% !important;
}
.eds_news_Ozone.eds_subCollection_news .fb_comments_count {
  margin: 0 !important;
  display: inline !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article_map {
  margin: 15px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper {
  padding: 10px 0 0;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox {
  clear: none !important;
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton {
  margin-left: 20px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton {
    margin-left: 17px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_socialPrintWrapper .addthis_inline_share_toolbox ~ .edn_printButton::after {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton {
  background-color: #B9B9B9;
  cursor: pointer;
  padding: 6px 15px 5px 10px;
  border-radius: 2px;
  font-size: 0;
  line-height: 0;
  margin: 5px 2px;
  position: relative;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_printButton {
    padding: 6px 8px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton::after {
  content: "";
  border-left: dotted 1px #ddd;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -13px;
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton::before {
  font: 14px/1 "FontAwesome";
  color: #fff;
  content: "";
  vertical-align: middle;
  padding-right: 10px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_printButton::before {
    padding-right: 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton > span {
  color: #fff;
  line-height: 1.4;
  font-family: helvetica neue, helvetica, arial, sans-serif;
  font-size: 11px;
  font-weight: normal;
  vertical-align: middle;
  display: inline-block;
  padding-top: 1px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_printButton > span {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_printButton:hover {
  background-color: #a5a5a5;
}
.eds_news_Ozone.eds_subCollection_news .addthis_inline_share_toolbox,
.eds_news_Ozone.eds_subCollection_news .edNews_fbLike,
.eds_news_Ozone.eds_subCollection_news .edn_printButton {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: 0 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share .edn_socialShareButton {
  font-size: 18px;
  color: #6e6e6e;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share > div {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  padding: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_Share:hover > div {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails {
  padding: 10px;
  margin: 10px 0;
  border-top: 1px solid #cac7c7;
  border-bottom: 1px solid #cac7c7;
  box-shadow: 0 2px 0 0 #fff inset, 0 -2px 0 0 #fff inset;
  background-color: #f8f8f8;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventRegistrationModalTrigger {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventLocation {
  padding: 5px 0 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventLocation:before {
  content: "";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  display: inline-block;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails > ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails > ul li {
  list-style-type: disc;
  margin: 2px 0 2px 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage {
  display: block;
  padding: 5px;
  font-style: italic;
  color: #3b3b3b;
  background-color: #c0dcfe;
  border: solid 1px #95c1f1;
  border-radius: 4px;
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage hr {
  margin: 6px 0;
  border-bottom: dashed 1px #95c1f1;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo {
  font-style: normal;
  padding: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo hr {
  margin: 7px 0;
  padding: 0;
  height: 1px;
  border: none;
  border-bottom: dashed 1px #79a8cd;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor1 {
  color: #0076b5;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_infoColor2 {
  color: #db0000;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment {
  display: inline-block;
  border: solid 1px #659ad9;
  border-radius: 4px;
  color: #0093de;
  padding: 5px;
  line-height: 1;
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventInfoMessage .eds_paymentInfo .edn_eventPayPalPayment:hover {
  text-decoration: none;
  color: #0b65ac;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventDetails .edn_eventPrice {
  float: right;
  clear: right;
  margin: 7px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails {
  color: #969696;
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span:before {
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span.edn_eventLocation:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_listEventDetails > span.edn_eventDate:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox {
  border: solid 2px #e5e5e5;
  border-radius: 4px;
  background-color: #fff;
  margin: 15px 0;
  padding: 15px 15px 10px;
  box-shadow: 0 0 0 1px #fff inset, 0 0 0 2px #e5e5e5 inset;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 {
  font-size: 20px;
  line-height: 1;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e5e5e5;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 span {
  position: relative;
  padding: 0 0 6px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox h2 span:after {
  border-bottom: 3px solid #cd1301;
  bottom: -2px;
  left: 0;
  position: absolute;
  right: 0;
  content: "";
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul {
  margin: 20px 0 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li {
  list-style-type: none;
  margin: 0;
  padding: 0 0 5px 20px;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li:before {
  color: #c81704;
  content: "";
  font: 13px/1.3 FontAwesome;
  left: 0;
  position: absolute;
  top: 0;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li a {
  margin-right: 7px;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox ul li span {
  font-style: italic;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul {
  margin-left: -9px;
  margin-right: -9px;
  line-height: 0;
  font-size: 0;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul {
    margin-left: 0;
    margin-right: 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li {
  padding: 0 9px;
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  line-height: 0;
  height: 175px;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li {
    display: block;
    border: none;
    padding: 0 0 6px;
    overflow: hidden;
    width: auto !important;
    height: auto !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li + li {
  border-left: dashed 1px #acacac;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a {
  max-width: 100%;
  display: block;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a img {
  width: 100%;
  margin-bottom: 5px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a img {
    float: left;
    margin: 2px 10px 5px 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li a span {
  display: block;
  font-size: 13px;
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
  line-height: 1.1;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_aditionalBoxImage ul li:before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles {
  border: 1px dashed #bfbfbf;
  background-color: #EDEDED;
  box-shadow: 0 0 0 5px #fff inset;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a {
  color: #424344;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_relatedArticles ul li a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li {
  padding-bottom: 4px;
  margin-bottom: 4px;
  border-bottom: solid 1px #F7F5F5;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li:before {
  content: "";
  font-size: 16px;
  color: #504e4e;
  line-height: 1.1;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_doc:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_docx:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_odt:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xls:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xlsx:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ods:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_zip:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_rar:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_7z:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wav:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wma:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ogg:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_flac:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mp3:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_png:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_gif:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_jpg:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_jpeg:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mpg:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mpeg:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mp4:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_xvid:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_wmv:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ogv:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mov:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_avi:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_mkv:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_pdf:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_ppt:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_pptx:before, .eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_odp:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li.edn_docType_txt:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails {
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_docDetails .edn_docFileSize {
  color: #000;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_aditionalBox.edn_articleDocuments ul li .edn_documentDescription {
  color: #999;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container {
  margin: 15px 0;
  border: solid 1px #E5E5E5;
  border-radius: 4px;
  padding: 5px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td {
  padding: 5px 30px;
  border-bottom: solid 1px #eee;
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td.EDN_cf_all_fields_table_label {
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkbox .EDN_cf_checkbox_icon:before {
  content: "";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkbox.EDN_cf_checkbox_checked .EDN_cf_checkbox_icon:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkboxList {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr td .EDN_cf_checkboxList li {
  list-style-type: none;
  padding: 0 0 3px;
  margin: 0;
  line-height: 1.5;
}
.eds_news_Ozone.eds_subCollection_news .EDN_cf_all_fields_container > table tr:last-child td {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventRegistrationModalTrigger {
  display: inline-block;
  border: 1px solid #e78a04;
  background-color: #f9ab3c;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_eventRegistrationModalTrigger:hover {
  background-color: #e78a04;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBarWrapper {
  margin-top: 15px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBarWrapper > h4 {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar {
  display: inline-block;
  margin-left: 30px;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span {
  line-height: 0;
  font-size: 0;
  display: inline-block;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio] {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio]:checked + label {
  padding: 5px 15px 5px 40px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > input[type=radio]:checked + label:before {
  width: 25px;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > label {
  position: relative;
  line-height: 1;
  font-size: 15px;
  font-weight: normal;
  vertical-align: middle;
  margin: 0;
  display: inline-block;
  padding: 5px 15px;
  border: solid 1px #c81704;
  border-radius: 5px;
  background-color: #fff;
  color: #c81704;
  overflow: hidden;
  cursor: pointer;
  min-width: 80px;
  text-align: center;
  -webkit-transition: padding 200ms linear;
  -khtml-transition: padding 200ms linear;
  -moz-transition: padding 200ms linear;
  -ms-transition: padding 200ms linear;
  -o-transition: padding 200ms linear;
  transition: padding 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span > label:before {
  background-color: #dbdbdb;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  color: #fff;
  font-family: "FontAwesome";
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  -webkit-transition: width 200ms linear;
  -khtml-transition: width 200ms linear;
  -moz-transition: width 200ms linear;
  -ms-transition: width 200ms linear;
  -o-transition: width 200ms linear;
  transition: width 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > label:hover {
  color: #619c1c;
  border-color: #619c1c;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > label:hover {
  color: #d61603;
  border-color: #d61603;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > label:hover {
  color: #f89e00;
  border-color: #f89e00;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label {
  color: #619c1c;
  border-color: #619c1c;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue1 > input[type=radio]:checked + label:before {
  background-color: #619c1c;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label {
  color: #d61603;
  border-color: #d61603;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue2 > input[type=radio]:checked + label:before {
  background-color: #d61603;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label {
  color: #f89e00;
  border-color: #f89e00;
}
.eds_news_Ozone.eds_subCollection_news .eds_signUpActionBar > div > span.eds_optionValue3 > input[type=radio]:checked + label:before {
  background-color: #f89e00;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper {
  margin: 20px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a {
  text-align: right;
  border-top: solid 1px #eee;
  border-bottom: solid 1px #eee;
  background-color: #f8f8f8;
  padding: 3px 10px;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a span {
  display: inline-block;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a span:before {
  content: "";
  font-family: "FontAwesome";
  color: #c81704;
  margin-right: 5px;
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a:hover {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_articlesRssWrapper a:hover span {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip .edn_toolTipContent {
  position: absolute;
  bottom: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity linear 400ms;
  -khtml-transition: opacity linear 400ms;
  -moz-transition: opacity linear 400ms;
  -ms-transition: opacity linear 400ms;
  -o-transition: opacity linear 400ms;
  transition: opacity linear 400ms;
  line-height: 0;
  font-size: 0;
  z-index: 9999;
  margin-bottom: 3px;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip:hover .edn_toolTipContent {
  visibility: visible;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.8);
  border: solid 1px transparent;
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-block;
  max-width: 400px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip.edn_tooltipLeft .edn_toolTipContent {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_toolTip.edn_tooltipRight .edn_toolTipContent {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_calendarExport:after {
  content: "";
  font-family: "FontAwesome";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  margin-left: 5px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_calendarExport:hover:after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_calendarExport.edn_toolTip .edn_toolTipContent {
  white-space: nowrap;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails {
  background-color: #e5e5e5;
  border: solid 1px #cac7c7;
  border-radius: 4px;
  box-shadow: 0 0 0 4px #fff inset;
  padding: 15px;
  margin: 15px 0 0;
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails:after {
  content: "";
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > img {
  float: left;
  margin: 0 15px 5px 0;
  background-color: #f8f8f8;
  padding: 7px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.24) inset, 1px 1px 0 0 rgba(255, 255, 255, 0.5);
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 {
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button {
  margin: 0 0 0 7px;
  vertical-align: baseline;
  min-width: auto;
  min-height: auto;
  line-height: 1;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button:before {
  content: "";
  color: #504e4e;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button:hover:before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails > h4 .button > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .edn_connectWith {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button {
  display: inline-block;
  margin: 10px 0 0 5px;
  border-radius: 4px;
  text-align: center;
  min-width: 28px;
  min-height: 28px;
  padding-left: 7px;
  padding-right: 7px;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button:before {
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 14px;
  vertical-align: middle;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio {
  border: 1px solid #c81704;
  background: none #fff;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #c81704;
  line-height: 26px;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact:hover, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact:before, .eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio:before {
  margin: -2px 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.contact:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.full_bio:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social {
  border: solid 1px #8d8989;
  color: #8d8989;
  line-height: 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.facebook:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.twitter:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.linked_in:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social.google_plus:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails .button.social:hover {
  border-color: #c81704;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_authorGroupDetails + [class*="article_list_wrapper"] {
  margin-top: 25px;
}
.eds_news_Ozone .edn_module_title {
  margin: 0 0 15px;
  padding: 0;
  color: #c81704;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  letter-spacing: normal;
  font-size: 24px;
  line-height: 1.1;
}
.eds_news_Ozone .fa {
  font-family: "FontAwesome" !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.eds_news_Ozone.eds_subCollection_calendar {
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar span, .eds_news_Ozone.eds_subCollection_calendar a, .eds_news_Ozone.eds_subCollection_calendar li, .eds_news_Ozone.eds_subCollection_calendar td, .eds_news_Ozone.eds_subCollection_calendar table {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_calendar a {
  text-decoration: none;
  color: #c81704;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_calendar a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect {
  text-align: center;
  margin-bottom: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  width: 50%;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  width: 35px;
  z-index: 1;
  font-family: "FontAwesome";
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select {
  border: none;
  background: none transparent;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
  width: 125%;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  color: #848484;
  font-size: 13px;
  font-family: "PT sans";
  margin: 0 35px 0 0;
  height: 28px;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select:focus {
  outline: none;
}
.eds_news_Ozone.eds_subCollection_calendar .edn_styledSelect > span select:disabled {
  color: #ccc !important;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table,
.eds_news_Ozone.eds_subCollection_calendar .fc {
  border: solid 1px #c81704 !important;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection,
.eds_news_Ozone.eds_subCollection_calendar .fc-header-toolbar {
  background-color: #fff;
  border: solid 1px #c81704;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_subCollection_calendar .fc-header-toolbar {
  padding: 12px;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td,
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar h2 {
  font: normal normal 22px/1 "Roboto Condensed", sans-serif;
  color: #c81704;
  text-transform: uppercase;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar h2 {
  margin: 7px 0 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions {
  margin-bottom: 5px;
  text-align: right;
  font-size: 0;
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  height: auto;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-toolbar.fc-header-toolbar {
  margin-bottom: 0;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  margin: 3px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-right {
  margin-top: 6px;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button {
  display: inline-block;
  border: solid 1px #ddd;
  color: #c81704;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 4px;
  background-color: #fff;
  text-decoration: none;
  transition: all 200ms linear;
  background: none #fff;
  padding: 3px 5px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-today-button {
  margin: 0 0 0 25px;
  padding: 11px 15px;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-down,
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-active {
  color: #504e4e;
  border-color: #c81704;
  box-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a:before {
  font-family: "FontAwesome";
  margin-right: 5px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.articles_by_month:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.icalendar_export:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.articles_rss:before, .eds_news_Ozone.eds_subCollection_calendar .top_calendar_actions > a.events_rss:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button.fc-state-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button {
  text-decoration: none !important;
  display: inline-block;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0;
  line-height: 1;
  border: solid 1px #c81704;
  background: none transparent;
  box-shadow: none;
  text-shadow: none;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button::before {
  display: inline-block;
  color: #c81704;
  content: "";
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months a:hover::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button:hover::before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-next-button:hover::before {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .month_selection td.next_prev_months:first-child a:before,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group .fc-prev-button:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-prev-button,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-next-button {
  margin: 0 3px;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-prev-button > span,
.eds_news_Ozone.eds_subCollection_calendar .fc-button-group button.fc-next-button > span {
  font-size: 0;
  line-height: 0;
  text-shadow: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-row.fc-widget-header > table {
  border: solid 0 transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-week-number span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-week-number a {
  font: normal normal 12px/1 "PT Sans", sans-serif;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header span,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number span,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a {
  text-decoration: none;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header a:hover {
  text-decoration: underline;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number a:hover {
  text-decoration: underline;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-day-header,
.eds_news_Ozone.eds_subCollection_calendar .fc th.fc-week-number {
  padding: 8px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-axis {
  padding: 0 8px;
  border-right: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.week_days,
.eds_news_Ozone.eds_subCollection_calendar .fc-widget-header {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc th.fc-week-number {
  border-right: solid 1px #fff;
  text-align: center;
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-week-number {
  border-right: solid 1px #c81704;
  padding: 14px 8px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc,
.eds_news_Ozone.eds_subCollection_calendar .fc th,
.eds_news_Ozone.eds_subCollection_calendar .fc td {
  border: none;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  font-size: 13px;
  line-height: 1;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > span,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  display: block;
  padding: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a {
  text-decoration: none !important;
  position: relative;
  z-index: 1;
  -webkit-transition: all 150ms linear;
  -khtml-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a:hover {
  color: #fff !important;
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top a:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-divider {
  background: none transparent;
  border: solid 1px #ddd;
  border-left: none;
  border-right: none;
  margin: 3px 0;
  padding: 0;
  height: 1px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-time-grid .fc-slats .fc-minor td {
  border-top: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-slats .fc-widget-content {
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day,
.eds_news_Ozone.eds_subCollection_calendar .fc td.fc-day-top {
  vertical-align: top;
  padding: 10px;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.other_month > a,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.other_month > span,
.eds_news_Ozone.eds_subCollection_calendar .fc-day-top.fc-other-month {
  opacity: 0.4;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed td.fc-today {
  background: none transparent;
  border-style: none;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.today,
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.today::after,
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after {
  border: solid 1px #ddd;
  border-radius: 0 0 2px 2px;
  border-top-width: 3px;
  content: "";
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 1px;
  position: absolute;
  z-index: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-unthemed .fc-bg td.fc-today::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-event {
  border-radius: 3px;
  padding: 3px;
  border-style: solid;
  border-width: 1px;
  border-color: #c81704;
  font-size: 11px;
  color: #504e4e;
  background: none transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.has_events {
  border-color: #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-red,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-red {
  border-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-red:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-red:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-red:hover {
  color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-blue,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue {
  border-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-blue:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-blue:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-blue:hover {
  color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-black,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-black {
  border-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-black:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-black:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-black:hover {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-green,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-green {
  border-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-green:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-green:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-green:hover {
  color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-yellow,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow {
  border-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-yellow:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-yellow:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-yellow:hover {
  color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-pink,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink {
  border-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-pink:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-pink:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-pink:hover {
  color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-gray,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray {
  border-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-gray:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-gray:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-gray:hover {
  color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-orange,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange {
  border-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-orange:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-orange:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-orange:hover {
  color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-brown,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown {
  border-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a.EDNcategorycolor-brown:hover,
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li.event > a.EDNcategorycolor-brown:hover,
.eds_news_Ozone.eds_subCollection_calendar .fc-event.EDNcategorycolor-brown:hover {
  color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-view {
  border: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header {
  background: none transparent;
  border-bottom: solid 1px #ddd;
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header > a {
  color: #504e4e;
  font-weight: bold;
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-heading .fc-widget-header > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td {
  border-bottom: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td a {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item td a:hover {
  color: #c81704;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item:hover td {
  background: none transparent;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.has_posts .fc-event-dot {
  background: none #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.has_events .fc-event-dot {
  background: none #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-red .fc-event-dot {
  background: none #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-blue .fc-event-dot {
  background: none #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-black .fc-event-dot {
  background: none #000;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-green .fc-event-dot {
  background: none #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-yellow .fc-event-dot {
  background: none #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-pink .fc-event-dot {
  background: none #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-gray .fc-event-dot {
  background: none #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-orange .fc-event-dot {
  background: none #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .fc-list-item.EDNcategorycolor-brown .fc-event-dot {
  background: none #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .fc {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_calendar .fc::before {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  color: #B0B0B0;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms;
}
.eds_news_Ozone.eds_subCollection_calendar .fc .fc-view-container {
  transition: opacity 400ms;
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .fc.eds_calendarLoading .fc-view-container {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .fc.eds_calendarLoading::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table {
  width: 100%;
  line-height: 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day {
  padding: 4px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > span,
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day > a {
  display: block;
  padding: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts > a {
  color: #c81704;
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts > a:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a {
  color: #db313c;
  border: solid 1px #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-red > a:hover {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a {
  color: #37cbcb;
  border: solid 1px #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-blue > a:hover {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a {
  color: #000;
  border: solid 1px #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-black > a:hover {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a {
  color: #8de171;
  border: solid 1px #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-green > a:hover {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a {
  color: #f6c606;
  border: solid 1px #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-yellow > a:hover {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a {
  color: #ffc0cb;
  border: solid 1px #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-pink > a:hover {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a {
  color: #808080;
  border: solid 1px #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-gray > a:hover {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a {
  color: #ff6a00;
  border: solid 1px #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-orange > a:hover {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a {
  color: #e49908;
  border: solid 1px #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_posts.EDNcategorycolor-brown > a:hover {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events > a {
  color: #FFA100;
  border: solid 1px #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events > a:hover {
  background-color: #FFA100;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a {
  color: #db313c;
  border: solid 1px #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-red > a:hover {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a {
  color: #37cbcb;
  border: solid 1px #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-blue > a:hover {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a {
  color: #000;
  border: solid 1px #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-black > a:hover {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a {
  color: #8de171;
  border: solid 1px #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-green > a:hover {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a {
  color: #f6c606;
  border: solid 1px #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-yellow > a:hover {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a {
  color: #ffc0cb;
  border: solid 1px #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-pink > a:hover {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a {
  color: #808080;
  border: solid 1px #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-gray > a:hover {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a {
  color: #ff6a00;
  border: solid 1px #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-orange > a:hover {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a {
  color: #e49908;
  border: solid 1px #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.has_events.EDNcategorycolor-brown > a:hover {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_calendar .calendar_table td.day.selected > a {
  font-weight: bold;
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.week_days {
    display: none;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day {
    display: none;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.selected > a,
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > a:hover {
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li {
  list-style-type: none;
  margin: 3px 0;
  padding: 0;
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day > ul > li > a {
  display: block;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.has_posts, .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.has_events {
    display: block;
    height: auto !important;
    width: 100% !important;
    text-align: left;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.other_month {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_calendar .advanced .calendar_table td.day.today:after {
  top: 5px;
  right: 6px;
  bottom: 6px;
  left: 6px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list {
  margin-top: 25px;
  border-top: solid 1px #dcdcdc;
  padding-top: 25px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div {
  border-bottom: solid 1px #ddd;
  padding: 3px;
  cursor: pointer;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div:hover .expand_collapse:before {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li > div.edn_archiveByYear a.edn_archiveLink {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink {
  color: #504e4e;
  text-decoration: none;
  display: block;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink:hover {
  color: #c81704;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li a.edn_archiveLink > span {
  float: right;
  font-size: 11px;
  background-color: #c81704;
  min-width: 20px;
  border-radius: 10px;
  padding: 4px;
  line-height: 1;
  color: #fff;
  text-align: center;
  font-weight: normal;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li.opened > div .edn_archiveLink {
  font-weight: bold;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul li.active > div .edn_archiveLink {
  font-weight: bold;
  color: #000;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse {
  cursor: pointer;
  display: inline-block !important;
  visibility: visible !important;
  height: auto !important;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse:before {
  content: "";
  display: inline-block;
  margin-right: 7px;
  font-family: "FontAwesome";
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li .expand_collapse.collapse:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list ul > li ul li > div {
  padding-left: 30px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list > ul > li:last-child > div {
  border: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events {
  margin-top: 30px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title > a {
  float: right;
  margin-left: 7px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title > a > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title > a:before {
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 20px;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title .rss:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events .edn_module_title .export:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li {
  margin: 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li:before {
  content: "";
  display: inline-block;
  margin-right: 7px;
  font-size: 14px;
  color: #c81704;
  font-family: "FontAwesome";
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a {
  color: #504e4e;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a:hover {
  text-decoration: none;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a > span {
  color: #c81704;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
}

.eds_news_Ozone.eds_subCollection_news .child_categories {
  margin-bottom: 40px;
}
.eds_news_Ozone.eds_subCollection_news .edn_categoryInfo {
  margin: 20px 0 30px;
  padding: 20px 0;
  border-bottom: solid 1px #ddd;
  border-top: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory {
  margin: 7px;
  padding: 5px;
  box-shadow: 0 0 0 1px #ddd inset;
  border-radius: 4px;
  background-color: #e5e5e5;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > img {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > figcaption {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 10px;
  right: 10px;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory > figcaption > span {
  display: inline-block;
  padding: 5px;
  min-width: 100px;
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  color: #504e4e;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.6);
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_catalogCategory:hover > img {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #747474;
  text-decoration: none;
  display: inline-block;
  border-bottom: solid 0 transparent;
  margin-bottom: 2px;
  -webkit-transition: border-color 200ms linear;
  -khtml-transition: border-color 200ms linear;
  -moz-transition: border-color 200ms linear;
  -ms-transition: border-color 200ms linear;
  -o-transition: border-color 200ms linear;
  transition: border-color 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a:hover {
  border-bottom-color: #c81704;
  border-bottom-width: 2px;
  margin-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > a:last-child {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > i {
  display: none;
  margin: 0 7px;
  font-family: "FontAwesome";
  font-size: 17px;
}
.eds_news_Ozone.eds_subCollection_news .bread_crumbs > i + a + i {
  display: inline-block;
}

.eds_news_Ozone.eds_subCollection_categoryMenu {
  font-family: inherit;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_categoryMenu div, .eds_news_Ozone.eds_subCollection_categoryMenu span, .eds_news_Ozone.eds_subCollection_categoryMenu a, .eds_news_Ozone.eds_subCollection_categoryMenu li {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_categoryMenu a {
  text-decoration: none;
  color: #c81704;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_categoryMenu a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_categoryMenu ul {
  margin: 0 !important;
  padding: 0 !important;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li {
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li:last-child > div {
  border: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div {
  clear: both;
  overflow: hidden;
  padding: 3px 0 3px 90px;
  border-bottom: solid 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a {
  display: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_category, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_articlecount, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_rss, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_image, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.edn_category, .eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div a.expand_collapse {
  display: inline-block;
  vertical-align: top;
  outline: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li > div:hover .expand_collapse {
  -ms-transform: scale(1.8);
  -webkit-transform: scale(1.8);
  transform: scale(1.8);
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse {
  cursor: pointer;
  height: auto !important;
  visibility: visible !important;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse:before {
  content: "";
  font-family: "FontAwesome";
  font-weight: bold;
  font-size: 14px;
  margin: 0 5px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .expand_collapse.collapse:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_articlecount {
  float: right;
  font-size: 11px;
  background-color: #c81704;
  min-width: 20px;
  border-radius: 10px;
  padding: 4px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss:before {
  content: "";
  font-family: "FontAwesome";
  font-size: 14px;
  margin-right: 5px;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category {
  color: #504e4e;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_category:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_rss > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image > img {
  border: solid 1px #c81704;
  padding: 2px;
  -webkit-transition: border 200ms linear;
  -khtml-transition: border 200ms linear;
  -moz-transition: border 200ms linear;
  -ms-transition: border 200ms linear;
  -o-transition: border 200ms linear;
  transition: border 200ms linear;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li .edn_image:hover > img {
  border-color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_0 > div {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_1 > div {
  padding-left: 15px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_2 > div {
  padding-left: 30px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_3 > div {
  padding-left: 45px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_4 > div {
  padding-left: 60px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.level_5 > div {
  padding-left: 75px;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.opened > div > .edn_category {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_category_menu_wrapper li.active > div > .edn_category {
  color: #000;
  font-weight: bold;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper {
  height: 50px;
  overflow: auto;
  padding: 20px 0;
  white-space: nowrap;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div {
  padding: 5px 7px 5px 0;
  margin-right: 7px;
  border-bottom: none;
  border-right: solid 1px #ddd;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div .expand_collapse:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li > div:hover .expand_collapse {
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li.hasChild ul .edn_category {
  opacity: 0.7;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li.hasChild ul .hasChild ul .edn_category {
  opacity: 0.5;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper li ul {
  display: inline-block !important;
  height: auto !important;
  overflow: visible !important;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_category_menu_wrapper > li:last-child > div {
  border: none;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span {
  display: inline-block;
  position: absolute;
  top: 0;
  line-height: 0;
  font-size: 0;
  text-align: center;
  border: solid 1px #eee;
  background-color: #F7F7F7;
  width: 20px;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  -khtml-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span::before {
  font-family: "FontAwesome";
  color: #A9A6A6;
  font-size: 16px;
  line-height: 27px;
  -webkit-transition: color 200ms ease;
  -khtml-transition: color 200ms ease;
  -moz-transition: color 200ms ease;
  -ms-transition: color 200ms ease;
  -o-transition: color 200ms ease;
  transition: color 200ms ease;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span:hover::before {
  color: #333;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollLeft {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollLeft::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollRight {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper > span.edn_scrollRight::before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper.edn_leftOffset .edn_scrollLeft {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_categoryMenu .edn_horizontalMenu .edn_scrollWrapper.edn_rightOffset .edn_scrollRight {
  opacity: 1;
  visibility: visible;
}

.eds_news_Ozone.eds_subCollection_news .article_comments {
  margin: 15px 0 20px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .num_of_comment {
  border: solid 1px #c81704;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 14px;
  color: #000;
  margin: 0 0 10px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .num_of_comment + .comment_list {
  padding-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list {
  margin-bottom: 30px;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment {
  margin-top: 15px;
  padding-bottom: 10px;
  border-bottom: solid 1px #ddd;
  padding-left: 50px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > div {
  float: left;
  margin: 0 20px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > div img {
  border: 1px solid #504e4e;
  border-radius: 50%;
  padding: 3px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section > div {
  color: #424242;
  margin: 15px 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment article > section > time {
  color: #999;
  font-size: 12px;
  display: block;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions {
  text-align: right;
  clear: both;
  margin: 5px 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a {
  display: inline-block;
  border: 1px solid #909090;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  padding: 3px 5px;
  border-radius: 4px;
  box-shadow: none;
  color: #fff;
  text-decoration: none;
  background-color: #bdbdbd;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a:hover {
  background-color: #909090;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete {
  background-color: #d94e49;
  border-color: #9d241e;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .actions > a.delete:hover {
  background-color: #9d241e;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .edit_comment textarea:focus {
  border: solid 1px #c81704;
  border-radius: 6px;
  color: #666;
  padding: 5px 7px;
  width: 100%;
  box-shadow: none;
  background: none #fff;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment.level {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .right_side {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes {
  float: left;
  width: 40px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div {
  display: inline-block;
  text-align: center;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div > input,
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list .comment .votes > div > span {
  display: block;
  margin: 0 auto;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .comment_list + .add_comment {
  margin-top: 25px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div {
  border: solid 1px #c81704;
  border-radius: 4px;
  padding: 20px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td {
  padding: 10px;
  vertical-align: top;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td {
    display: block !important;
    width: 100% !important;
    padding: 0 0 10px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td.left {
  font-family: "Roboto Condensed", sans-serif;
  width: 15%;
  color: #424242;
  font-size: 15px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td.right {
  width: 85%;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type="text"],
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type="text"]:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type="text"]:focus,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea:hover,
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea:focus {
  border: solid 1px #c81704;
  border-radius: 6px;
  color: #666;
  padding: 5px 7px;
  width: 100%;
  box-shadow: none;
  background: none #fff;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td input[type="text"] {
  max-width: 300px;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .article_comments .add_comment > div table td textarea {
  max-width: 370px;
  font-size: 13px;
  min-height: 110px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper {
  border-top: 1px solid #d7d7d7;
  padding-top: 25px;
  clear: both;
  margin-top: 40px;
  width: 90%;
  margin: 40px auto 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_numberOfComments {
  color: #504e4e;
  font-family: "PT Sans", sans-serif;
  font-size: 12px;
  line-height: 1;
  padding: 20px 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer {
  font-size: 0;
  line-height: 0;
  margin-bottom: 30px;
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer:first-child, .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer:nth-child(2) {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer::after {
  content: "";
  width: 100%;
  display: table;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_userAvatar {
  float: left;
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails > span {
  font-family: "PT Sans", sans-serif;
  color: #000;
  line-height: 24px;
  font-size: 18px;
  font-weight: 400;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails > div {
  margin: 10px 0;
  color: #8b8b8b;
  font-size: 13px;
  line-height: 1;
  font-family: "PT Sans", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentDetails .edNews_commentText {
  color: #333;
  font-size: 14px;
  line-height: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions {
  text-align: right;
  margin: 20px 0;
  font-size: 12px;
  line-height: 1;
  font-family: "PT Sans", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span {
  cursor: pointer;
  color: #8b8b8b;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > div .edNews_commentActions > span:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer > .edNews__childCommentsContainer {
  margin: 0 0 0 50px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer {
  display: none;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage {
  margin: 0;
  border: 0;
  padding: 5px;
  text-align: right;
  padding: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span {
  background: #F0F0F0;
  border: 1px solid #CCCCCC;
  padding: 4px 14px 3px;
  text-decoration: none;
  margin-left: 5px;
  border-radius: 3px;
  font-size: 11px;
  cursor: pointer;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span > span {
  text-shadow: 0 1px #FFFFFF;
  color: #5F5F5F;
  font-weight: bold;
  white-space: nowrap;
  font-size: 11px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span:hover {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer .edNews__editCommentContainer .edNews_errorMessage > span:hover > span {
  color: #5F5F5F;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews__commentContent {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews__editCommentContainer {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__editingComment > .edNews__commentContentWrapper .edNews_comment .edNews_commentActions.main {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deleted > .edNews__commentContentWrapper .edNews_comment {
  opacity: 0.5;
  margin: 0 0 0 9%;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deleted > .edNews__commentContentWrapper .edNews_votes {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer {
  margin: 30px 0 30px;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer.noComments {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsListContainer.noComments + .edNews__showCommentsTrigger {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_errorMessage {
  box-sizing: border-box;
  top: 10px;
  display: none;
  border-top: solid 1px #e2252d;
  padding: 6px;
  margin-bottom: -4px;
  font-size: 11px;
  font-weight: normal;
  font-family: "PT Sans", sans-serif;
  color: #ac171e;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews_errorMessage.show {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_clear {
  clear: both;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_leaveaComment {
  color: #8E8E8E;
  font-size: 16px;
  line-height: 53px;
  font-weight: bold;
  margin: 0;
  padding: 0 20px 0 53px;
  font-family: Arial;
  letter-spacing: normal;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/comments/comment.png") no-repeat 13px center rgba(0, 0, 0, 0.08);
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__replyingToMessage,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval {
  display: none;
  margin: 20px 0;
  text-align: left;
  font-family: "PT Sans", sans-serif;
  color: #504e4e;
  border-top: solid 1px #eee;
  border-bottom: solid 1px #c81704;
  background-color: #fcfcfc;
  padding: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__replyingToMessage > a,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval > a {
  text-decoration: underline;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval {
  background: #FFFCE3;
  color: #444;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews__commentPendingApproval.show {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper {
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper::after {
  display: table;
  width: 100%;
  clear: both;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper label {
  float: left;
  width: 23%;
  padding: 7px 2% 0 0;
  box-sizing: border-box;
  vertical-align: top;
  font-size: 14px;
  font-weight: normal;
  color: #7b7b7b;
  font-family: "PT Sans", sans-serif;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper label {
    float: none;
    width: auto;
    display: block;
    text-align: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"] {
  font-family: "PT Sans", sans-serif;
  box-sizing: border-box;
  background: none #fdfdfd;
  border: 1px solid #e8e8e8 !important;
  border-radius: 0;
  color: #C6C6C6;
  outline: medium none;
  padding: 8px;
  width: 75%;
  box-shadow: none !important;
  margin: 0;
  resize: vertical;
  font-size: 12px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea,
  .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"] {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:focus, .eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:hover,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"]:focus,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"]:hover {
  color: #9fa0a2;
  background: none #fdfdfd;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper textarea:focus,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_inputWrapper input[type="text"]:focus {
  background-color: #fff;
  color: #9fa0a2;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_button {
  padding: 20px 0 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment .edNews_button > span {
  font-family: "PT Sans", sans-serif;
  background-color: #c81704;
  background-image: none;
  border: 0 none;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  height: 24px;
  line-height: 16px;
  overflow: hidden;
  padding: 5px 16px;
  text-align: center;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper > label {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage {
  width: 65px;
  height: 65px;
  background-color: #ccc;
  text-align: center;
  float: left;
  position: relative;
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage::before {
  font-family: "FontAwesome";
  color: #fff;
  position: relative;
  z-index: 1;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  font-size: 50px;
  content: "";
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage > div {
  position: relative;
  z-index: 2;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper .edNews_commenterImage > div img {
  width: 65px;
  height: 65px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper .edNews_addComment.edNews_registeredUser .edNews_inputWrapper textarea {
  float: left;
  height: 65px;
  margin-top: -65px;
  padding-left: 75px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper.edNews__replyingToComment .edNews_addComment .edNews__replyingToMessage {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper.edNews__addingComment,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__savingChanges > .edNews__commentContentWrapper .edNews_comment,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deletingComment > .edNews__commentContentWrapper .edNews_comment {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__commentsCommentFormWrapper.edNews__addingComment:after,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__savingChanges > .edNews__commentContentWrapper .edNews_comment:after,
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper .edNews__itemCommentContainer.edNews__deletingComment > .edNews__commentContentWrapper .edNews_comment:after {
  position: absolute;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/comments/loadingBigger.gif") center center no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper.edNews__showComments .edNews__itemCommentContainer {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edNews__itemCommentsWrapper.edNews__showComments .edNews__showCommentsTrigger {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__showCommentsTrigger {
  margin: 30px auto;
  text-align: center;
  border: solid 1px #d7d7d7;
  border-left: none;
  border-right: none;
  color: #8b8b8b;
  font-family: "PT Sans", sans-serif;
  line-height: 1;
  font-size: 12px;
  display: block;
  padding: 10px 30px;
  cursor: pointer;
  -webkit-transition: all 200ms ease;
  -khtml-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.eds_news_Ozone.eds_subCollection_news .edNews__showCommentsTrigger:hover {
  border-color: #c81704;
  color: #c81704;
}
.eds_news_Ozone .edn_recentCommentsHeader {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 20px;
}
.eds_news_Ozone .edn_recentCommentsHeader > h4 {
  font-size: 15px;
  line-height: 1.3;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  background: #c81704;
  padding: 5px 25px;
  border: 0;
  margin: 0 0 -1px 0;
  text-transform: uppercase;
  display: inline-block;
}
.eds_news_Ozone .edn__recentCommentsListContainer {
  position: relative;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
  -webkit-transition: opacity 400ms;
  -khtml-transition: opacity 400ms;
  -moz-transition: opacity 400ms;
  -ms-transition: opacity 400ms;
  -o-transition: opacity 400ms;
  transition: opacity 400ms;
}
.eds_news_Ozone .edn__recentCommentsListContainer::before, .eds_news_Ozone .edn__recentCommentsListContainer::after {
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 400ms;
  -khtml-transition: opacity 400ms;
  -moz-transition: opacity 400ms;
  -ms-transition: opacity 400ms;
  -o-transition: opacity 400ms;
  transition: opacity 400ms;
}
.eds_news_Ozone .edn__recentCommentsListContainer::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  z-index: 1;
}
.eds_news_Ozone .edn__recentCommentsListContainer::after {
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  z-index: 2;
  color: #c81704;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone .edn_recentCommentContainer {
  padding: 0 0 15px;
  margin-bottom: 15px;
  border-bottom: dashed 1px #bfbfbf;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -khtml-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -ms-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}
.eds_news_Ozone .edn_recentCommentContainer:last-child {
  border-bottom: none;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentRight {
  overflow: hidden;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar {
  float: left;
  margin-right: 15px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  overflow: hidden;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar > a {
  display: block;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews_userAvatar img {
  max-width: 100%;
  height: auto;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentAuthor {
  font: 14px/1.2 "Roboto Condensed", sans-serif;
  color: #424242;
  text-decoration: none;
  float: left;
  margin-right: 7px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentAuthor:hover {
  color: #c81704;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_commentDate {
  color: #999;
  font-size: 12px;
  display: block;
  margin-top: 5px;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent {
  color: #424242;
  font-style: italic;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent p {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone .edn_recentCommentContainer .edNews__commentContent p + p {
  margin-top: 7px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink {
  margin-top: 5px;
  display: inline-block;
  font-size: 14px;
  color: #c81704;
  text-decoration: none;
  font-style: normal;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink::before {
  font: 14px/1 "FontAwesome";
  color: #2c2c2c;
  content: "";
  margin-right: 5px;
}
.eds_news_Ozone .edn_recentCommentContainer .edn_articleLink:hover {
  color: #2c2c2c;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disablePreviousPage .edn__recentComments_previousPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disableNextPage .edn__recentComments_nextPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_disableNextPage.edn__recentComments_disablePreviousPage .edn_pagination, .eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_contentError .edn_pagination, .eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_noContent .edn_pagination {
  display: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer {
  opacity: 0.5;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer::after {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_loading .edn__recentCommentsListContainer .edn_recentCommentContainer {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_ready .edn__recentCommentsListContainer {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_pageReady .edn__recentCommentsListContainer .edn_recentCommentContainer {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_triggeredNextPage.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_triggeredPreviousPage.edn__recentComments_pageReady .edn__recentCommentsListContainer {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_noContent .edn__recentCommentsListContainer .edn_recentCommentContainer {
  display: none;
}
.eds_news_Ozone.eds_subCollection_recentComments.edn__recentComments_contentError .edn__recentCommentsListContainer .edn_recentCommentContainer {
  display: none;
}

.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_title {
  font-size: 15px;
  line-height: 1.3;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  background: #c81704;
  padding: 5px 25px;
  border: 0;
  margin: -1px 20px -1px -1px;
  text-transform: uppercase;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  visibility: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_itemsHidden {
  margin-right: 30px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li {
  font-size: 13px;
  line-height: 1.3;
  font-family: "PT Sans", sans-serif;
  color: #888;
  cursor: pointer;
  list-style: none;
  display: inline-block;
  padding: 5px 10px;
  margin: 0;
  border: 0;
  -webkit-transition: color 0.1s;
  -khtml-transition: color 0.1s;
  -moz-transition: color 0.1s;
  -ms-transition: color 0.1s;
  -o-transition: color 0.1s;
  transition: color 0.1s;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_hide {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-red {
  color: #db313c;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-blue {
  color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-black {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-green {
  color: #8de171;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-yellow {
  color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-pink {
  color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-gray {
  color: #808080;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-orange {
  color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.EDNcategorycolor-brown {
  color: #e49908;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li:hover, .eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList > li.edn__contentBlock_active {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  display: table;
  white-space: nowrap;
  float: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
  display: table-cell;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList {
  margin: 0;
  padding: 0;
  border: 1px solid #e4e4e4;
  display: none;
  position: absolute;
  top: 100%;
  bottom: auto;
  left: auto;
  right: -1px;
  background: #fff;
  z-index: 10000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemList > li {
  display: block;
  margin: 0;
  padding: 4px 10px 3px;
  border: 0;
  list-style: none;
  white-space: nowrap;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper {
  position: absolute;
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid #e4e4e4;
  top: 0;
  bottom: auto;
  left: auto;
  right: 0;
  width: 30px;
  height: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper > .edn_contentBlock_trigger:after {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  display: block;
  font-family: "FontAwesome";
  font-size: 15px;
  line-height: 1;
  content: "";
  color: #242424;
  display: block;
  text-align: center;
  position: absolute;
  top: 7px;
  transition: color 0.1s ease;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList > li.edn__contentBlock_hide {
  display: block !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_hiddenItemWrapper:hover > .edn_contentBlock_trigger:after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_header {
  background: transparent;
  border: 1px solid #e4e4e4;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn__contentBlock_header::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper {
  position: relative;
  padding-top: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
  opacity: 0;
  -webkit-transition: opacity 500ms ease 300ms;
  -khtml-transition: opacity 500ms ease 300ms;
  -moz-transition: opacity 500ms ease 300ms;
  -ms-transition: opacity 500ms ease 300ms;
  -o-transition: opacity 500ms ease 300ms;
  transition: opacity 500ms ease 300ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::before, .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::after {
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 400ms;
  -khtml-transition: opacity 400ms;
  -moz-transition: opacity 400ms;
  -ms-transition: opacity 400ms;
  -o-transition: opacity 400ms;
  transition: opacity 400ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper::after {
  left: 50%;
  top: 50%;
  margin-left: -50px;
  width: 100px;
  height: 0;
  text-align: center;
  content: "";
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  z-index: 2;
  color: #c81704;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide {
  float: left;
  width: 48%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide {
    width: auto;
    float: none;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_leftSide article {
  width: auto !important;
  float: none !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide {
  float: right;
  width: 48%;
  margin-left: 4%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide {
    float: none;
    margin-left: 0;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide article {
  width: auto !important;
  float: none !important;
  margin-left: 0 !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_rightSide.edn_specialFirstArticle article:first-child {
  border-top: none !important;
  padding-top: 0 !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper > div {
  font-size: 0;
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn__articleListWrapper > div::after {
  display: table;
  content: "";
  clear: both;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails {
  font: 10px/1.3 "Roboto Condensed", sans-serif;
  color: #808080;
  text-transform: uppercase;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_metaDetails > a {
  color: #1b1b1b;
  display: inline-block;
  margin-right: 5px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 {
  padding: 0;
  border: 0;
  margin: 10px 0;
  font: 18px/1.3 "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a {
  font: 18px/1.3 "Roboto Condensed", sans-serif;
  color: #222;
  text-decoration: none;
  transition: color ease-in 0.1s;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article h2 > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article .edn_articleSummary {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  font: 13px/1.3 "PT Sans", sans-serif;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure > a {
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure > a img {
  margin: 0;
  border: 0;
  padding: 0;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: 0;
  font: 10px/1.3 "PT Sans", sans-serif, sans-serif;
  opacity: 0.9;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category {
  margin: 0 0 0 7px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a {
  display: inline-block;
  background-color: #c81704;
  color: #fff;
  text-transform: uppercase;
  padding: 4px 20px 3px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-red {
  background-color: #db313c;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-blue {
  background-color: #37cbcb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-black {
  background-color: #000;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-green {
  background-color: #8de171;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-yellow {
  background-color: #f6c606;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-pink {
  background-color: #ffc0cb;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-gray {
  background-color: #808080;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-orange {
  background-color: #ff6a00;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_category > a.EDNcategorycolor-brown {
  background-color: #e49908;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_numberOfComments > a {
  display: inline-block;
  color: #fff;
  background: #828282;
  padding: 4px 15px 3px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper article figure .edn_bottomRightCorner > span.edn_numberOfComments > a::before {
  content: "";
  color: #fff;
  font-family: "FontAwesome";
  font-size: inherit;
  line-height: inherit;
  padding-right: 0.2em;
  vertical-align: top;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article {
  width: 48%;
  margin: 0 0 15px 4%;
  float: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article {
    float: none;
    margin: 0 0 35px;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article .edn_metaDetails {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 {
  margin: 5px 0 7px;
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article h2 > a {
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_prominentArticles article:nth-child(2n+1) {
  margin-left: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article {
  width: 48%;
  padding: 13px 0;
  float: left;
  margin-left: 4%;
  border-top: 1px solid #dfdfdf;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article {
    float: none;
    margin-left: 0;
    width: auto;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article::after {
  content: "";
  display: table;
  width: 100%;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article:nth-child(2n+1) {
  margin-left: 0;
  clear: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 {
  margin: 2px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article h2 > a > span {
  margin-right: 14px;
  float: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article > a {
  float: left;
  margin: 0 14px 0 0;
  border: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList article .edn_metaDetails {
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_smallList.edn_biggerPadding article {
  padding: 20px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article {
  padding: 13px 0;
  border-top: 1px solid #dfdfdf;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article:first-child {
  border-top: none;
  padding-top: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article::after {
  content: "";
  display: table;
  width: 100%;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 {
  margin: 2px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 > a {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article h2 > a > span {
  margin-right: 14px;
  float: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .edn_simpleList article .edn_metaDetails {
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper.edn_isotopeLayout > .edn__articleListWrapper {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper.edn_isotopeLayout > .edn__articleListWrapper > article {
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .eds_noContent,
.eds_news_Ozone.eds_subCollection_contentBlock .edn_mainWrapper .eds_contentError {
  font: 16px/1.3 "PT Sans", sans-serif, sans-serif;
  display: none;
  border: 0;
  padding: 30px 0;
  margin: 0;
  color: #888;
  text-align: center;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_leadingArticle {
  margin-bottom: 30px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_leadingArticle figure > a img {
  width: 100%;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper {
  border: solid 1px #e4e4e4;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper .edn_verticalListRight {
  float: right;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_verticalListWrapper .edn_verticalListRight {
    width: auto !important;
    float: none;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title {
  background: none transparent;
  display: block;
  border-bottom: solid 1px #c81704;
  padding: 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title > span {
  display: inline-block;
  background-color: #c81704;
  padding: 5px 25px 4px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_title + .edn_verticalListWrapper {
  margin-top: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_header {
  float: left;
  width: auto;
  border: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_header {
    float: none;
    width: auto !important;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li {
  display: block;
  border: solid 1px #e4e4e4;
  border-left-style: none;
  border-top-style: none;
  padding: 8px 25px;
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li {
    display: inline-block;
    padding: 5px 10px;
    border-bottom: none;
    margin-bottom: 3px;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li.edn__contentBlock_hide {
  display: none;
  position: absolute;
  visibility: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li.edn__contentBlock_active {
  border-right-style: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList > li:first-child {
  border-top-style: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  display: block;
  white-space: normal;
  float: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
  display: block;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_itemList.edn__contentBlock_visibleItemList > li {
    display: inline-block;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  border-right: solid 1px #e4e4e4;
  border-left: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger {
  position: static;
  padding: 9px 25px;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger::after {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper .edn_contentBlock_trigger::before {
  font-family: "FontAwesome";
  font-size: 15px;
  line-height: 1;
  content: "";
  color: #242424;
  transition: color 0.1s ease;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden .edn__contentBlock_itemList {
  border-right: none;
  border-bottom: none;
  position: absolute;
  top: auto;
  right: auto;
  bottom: -1px;
  left: 100%;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper.edn__contentBlock_itemsHidden .edn__contentBlock_itemList > li {
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover > .edn__contentBlock_hiddenItemList > li.edn__contentBlock_hide {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn__contentBlock_hiddenItemWrapper:hover .edn_contentBlock_trigger::before {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper {
  overflow: hidden;
  padding: 20px 20px 20px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper article {
  float: left;
  box-sizing: content-box;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_mainWrapper article {
    float: none;
    width: 100% !important;
    padding: 0 10px !important;
    margin-bottom: 30px;
  }
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_articleTitle {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_metaDetails {
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper {
  padding: 20px;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper .edn_pagination {
  text-align: left;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_verticalList .edn_paginationWrapper .edn_pagination > span {
  margin: 1px 1px 1px 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock article {
  opacity: 0;
  max-width: 100%;
  -webkit-transition: opacity 500ms;
  -khtml-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -ms-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article figure,
.eds_news_Ozone.eds_subCollection_contentBlock article h2 > a > span {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_contentBlock article figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article h2 > a {
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 650ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:first-child figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:first-child h2 > a {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(2) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(2) h2 > a {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 200ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(3) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(3) h2 > a {
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 300ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(4) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(4) h2 > a {
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 400ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(5) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(5) h2 > a {
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 500ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(6) figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock article:nth-child(6) h2 > a {
  -webkit-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  -khtml-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  -moz-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  -ms-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  -o-transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
  transition: opacity 0.3s cubic-bezier(0.05, 0.3, 0.9, 0.5) 600ms;
}
.eds_news_Ozone.eds_subCollection_contentBlock .edn_articleImage {
  -webkit-transition: all 400ms ease-in-out;
  -khtml-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_contentBlock figure > a:hover .edn_articleImage,
.eds_news_Ozone.eds_subCollection_contentBlock h2 > a:hover .edn_articleImage {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_disablePreviousPage .edn__contentBlock_previousPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_disableNextPage .edn__contentBlock_nextPage {
  opacity: 0.6;
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_disablePreviousPage.edn__contentBlock_disableNextPage .edn_pagination, .eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_pagination, .eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_pagination {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper::before {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper::after {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_loading .edn_mainWrapper .article {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_ready .edn__contentBlock_itemList {
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_ready .edn__articleListWrapper {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper article {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper article figure > a,
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady .edn_mainWrapper article h2 > a {
  opacity: 1 !important;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_pageReady.edn__contentBlock_loading .article {
  opacity: 0;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_triggeredNextPage .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_triggeredPreviousPage .edn_mainWrapper .edn__articleListWrapper {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_mainWrapper .edn__articleListWrapper {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_noContent .edn_mainWrapper .eds_noContent {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_mainWrapper .edn__articleListWrapper {
  display: none;
}
.eds_news_Ozone.eds_subCollection_contentBlock.edn__contentBlock_contentError .edn_mainWrapper .eds_contentError {
  display: block;
}
.eds_news_Ozone.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn__contentBlock_header .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  float: none;
  margin: 0 auto;
  padding: 0 50px;
}
.eds_news_Ozone.eds_subCollection_contentBlock.eds_templateGroup_contentBlockBoxes .edn__contentBlock_header .edn__contentBlock_title + .edn__contentBlock_itemList.edn__contentBlock_visibleItemList {
  float: right;
  padding: 0;
  margin-right: 30px;
}

.eds_news_Ozone.eds_subCollection_news .user_dashboard {
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  padding: 4px 6px 1px;
  margin: 0 0 20px;
  overflow: hidden;
  background-color: #ebebeb;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard:hover {
  background-color: #f2f2f2;
  border-color: #000;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a {
  display: block;
  float: left;
  font-size: 11px;
  font-family: Arial;
  font-weight: bold;
  padding: 0 0 0 35px;
  height: 25px;
  line-height: 24px;
  margin: 0 10px 0 0;
  color: #5C5C5C !important;
  text-decoration: none !important;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.add_article {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/green_plus.png") no-repeat;
  padding-left: 25px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.article_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/papers.png") no-repeat 0 0;
  padding-left: 28px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.event_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/event_manager.png") no-repeat 0 1px;
  padding-left: 35px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.approve_articles {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/approve_articles.png") no-repeat 0 1px;
  padding-left: 22px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.approve_comments {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/approve_comments.png") no-repeat 0 2px;
  padding-left: 22px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.category_manager {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/categories.png") no-repeat 0 2px;
  padding-left: 22px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.dashboard {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/monitor.png") no-repeat 0 3px;
  padding-left: 24px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.settings {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/settings.png") no-repeat 0 1px;
  padding-left: 24px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a.author_profile {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/user_dashboard/profile.png") no-repeat 0 1px;
  padding-left: 18px;
}
.eds_news_Ozone.eds_subCollection_news .user_dashboard a:hover {
  color: #000 !important;
  text-decoration: none !important;
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTitle {
  margin-bottom: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTitle + .edn_articleSubTitle {
  margin-top: -15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleSubTitle {
  margin-bottom: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails {
  margin-bottom: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails > a:before {
  content: "";
  font-family: "FontAwesome";
  color: #6e6e6e;
  font-size: 18px;
  padding-right: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .edn_articleCategories {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .article_rating {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_metaDetails .article_rating .rateit-range {
  top: 3px;
  margin-left: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags {
  border-top: dashed 1px #a8a4a4;
  border-bottom: dashed 1px #a8a4a4;
  padding: 9px 0;
  margin: 15px 0 25px;
  overflow: hidden;
  width: 100%;
  color: #c81704;
  font-size: 12px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  padding: 5px;
  border-radius: 3px;
  background-color: #c81704;
  border: solid 1px #c81704;
  text-decoration: none;
  margin: 2px 3px;
  -webkit-transition: all linear 200ms;
  -khtml-transition: all linear 200ms;
  -moz-transition: all linear 200ms;
  -ms-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_articleTags > a:hover {
  background-color: #fff;
  text-decoration: none;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery {
  margin: 20px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery > ul {
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleDetails .edn_article_gallery > ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin: 0 5px 5px 0;
  list-style-type: none;
}
.eds_news_Ozone.eds_subCollection_news .at-resp-share-element .at-share-btn {
  transition: all 0.2s ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image {
  background-color: #e5e5e5;
  border: solid 1px #d1d2d3;
  border-radius: 4px;
  padding: 5px;
  margin-bottom: 5px;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image img {
  max-width: 100%;
  height: auto;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a {
  position: relative;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a:before {
  position: absolute;
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
  content: "";
  border: solid 2px transparent;
  background-color: transparent;
  -webkit-transition: all 150ms linear;
  -khtml-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_wrapper > a:hover:before {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_title {
  margin: 5px 0 0;
  padding: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image .image_description {
  color: #666161;
  font-size: 12px;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image.left {
  float: left;
  margin-right: 10px;
}
.eds_news_Ozone.eds_subCollection_news .in_article_image.right {
  float: right;
  margin-left: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  clear: both;
  margin: 15px 0;
  padding: 1px;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table {
  border: none;
  outline: none;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:first-child.edn_listOfAttendantsHeader {
  border-bottom: solid 1px #c81704;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(even) {
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:nth-child(odd) {
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:hover {
  background-color: #EAEAEA;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr:hover td {
  color: #000;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th {
  text-align: left;
  font-weight: normal;
  font-size: 15px;
  padding: 7px 10px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventUserName {
  width: 80%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr th.edn_eventNumberOfTickets {
  text-align: center;
  width: 20%;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td {
  padding: 3px 10px;
  border: none;
  font-size: 12px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventUserName {
  padding-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_listOfAttendants > table tr td.edn_eventNumberOfTickets {
  text-align: center;
}

.eds_news_Ozone.eds_subCollection_news .edn_article {
  margin-bottom: 35px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_metaDetails {
  margin: 10px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleSummary {
  padding: 10px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_readMoreButtonWrapper {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_listArticle2 .edn_articleTitle {
  font-size: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle {
  margin-bottom: 0;
  padding: 8px 0;
  border-bottom: dashed 1px #bfbfbf;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle:first-child {
  border-top: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-indent: -99999px;
  z-index: 1;
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle > div .admin_action {
  position: relative;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_mediaContainer {
  margin: 0 15px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_mediaContainer > img {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_articleSubTitle {
  font-size: 11px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle h2.edn_articleTitle {
  font-size: 14px;
  color: #504e4e;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle:hover h2.edn_articleTitle {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 {
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 > div .admin_action {
  position: relative;
  z-index: 3;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-indent: -99999px;
  z-index: 2;
  outline: none;
  -moz-outline-style: none;
  outline-style: none;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 h2.edn_articleTitle {
  font-size: 14px;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer {
  overflow: hidden;
  position: relative;
  margin: 0 15px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  background-color: rgba(200, 24, 5, 0.2);
  -webkit-transition: opacity 300ms linear;
  -khtml-transition: opacity 300ms linear;
  -moz-transition: opacity 300ms linear;
  -ms-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_mediaContainer > img {
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2 .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2:hover h2.edn_articleTitle {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2:hover .edn_mediaContainer:after {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle2:hover .edn_mediaContainer > img {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 {
  margin-bottom: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 h2.edn_articleTitle {
  margin-bottom: 3px;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle4 .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 {
  margin-bottom: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle {
  margin-bottom: 0;
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle a {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 h2.edn_articleTitle a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle5 .edn_metaDetails {
  margin: 3px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 {
  margin: 3px 0;
  overflow: hidden;
  padding-bottom: 2px;
  border-bottom: dotted 1px #ddd;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6:last-child {
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle {
  font-size: 13px;
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle a {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 h2.edn_articleTitle a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails {
  margin: 0;
  display: inline;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails .edn_numberComments:before {
  font-size: 14px;
  margin-top: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails > time {
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_metaDetails > time:before {
  font-family: "FontAwesome";
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_simpleArticle6 .edn_adminActions > a {
  margin-top: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_simpleArticle6Bullet {
  float: left;
  padding: 0 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_simpleArticle6Bullet:before {
  font-family: "FontAwesome";
  color: #c81704;
  font-size: 10px;
  line-height: 0;
  content: "";
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox {
  display: inline-block;
  vertical-align: top;
  box-sizing: content-box;
  padding: 1.5%;
  line-height: 0;
  font-size: 0;
  max-width: 97%;
  margin-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure {
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  min-height: 100px;
  background-color: #ddd;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > img {
  max-width: 100%;
  height: auto;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > a > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleTitle,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle {
  font-size: 14px;
  position: relative;
  margin: 0 0 5px;
  padding: 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption h2.edn_articleTitle:after {
  content: "";
  position: absolute;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  -webkit-transition: all 400ms linear;
  -khtml-transition: all 400ms linear;
  -moz-transition: all 400ms linear;
  -ms-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleSubTitle {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure > figcaption .edn_articleSummary {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure .edn_metaDetails {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  margin: 0;
  color: #fff;
  padding: 5px;
  border-radius: 0 0 0 5px;
  opacity: 0.7;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > figcaption .edn_articleSummary {
  max-height: 150px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > figcaption h2.edn_articleTitle:after {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox > figure:hover > figcaption .edn_articleSubTitle {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a {
  overflow: hidden;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 0 rgba(255, 255, 255, 0.4);
  -webkit-transition: all 150ms ease-in-out;
  -khtml-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a > img {
  border: none;
  padding: 0;
  max-width: 100%;
  height: auto;
  -webkit-transition: all 200ms ease-in-out;
  -khtml-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a:hover:after {
  border-width: 3px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_mediaContainer a:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox h2.edn_articleTitle {
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_metaDetails {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_metaDetails > span {
  float: right;
  margin: 0 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox .edn_articleSummary {
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section {
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer {
  margin: 0;
  float: none;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a > img {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_mediaContainer > a:hover:after {
  border: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent {
  padding: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_articleTitle {
  margin: 0 0 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_articleSummary {
  margin-top: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent > time {
  line-height: 1;
  font-size: 13px;
  color: #969696;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent .edn_eventBoxLocation:before {
  content: "";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_articleInBox.edn_articleInBox3 > section .edn_boxContent > time:before {
  content: "";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple {
  margin-bottom: 0;
  padding: 20px 0;
  border-bottom: dashed 1px #bfbfbf;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple:first-child {
  border-top: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section {
  position: relative;
  display: table;
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:after, .eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  content: "";
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:before {
  border-style: solid;
  border-width: 15px;
  border-left-color: #c81704;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:after {
  border-left-style: dashed;
  border-left-width: 1px;
  border-left-color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time {
  border-right: solid 1px #bfbfbf;
  padding: 8px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 10%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span {
  display: block;
  color: #666161;
  line-height: 1.2;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:first-child {
  font-size: 26px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > time > span:last-child {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div {
  overflow: hidden;
  padding: 8px 8px 8px 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_articleTitle {
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation {
  margin-right: 20px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_eventBoxLocation:before {
  content: "";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMoreButtonWrapper {
  text-align: left;
  margin: 5px 0 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div .edn_readMore.edn_readMoreButton:hover {
  background-color: #7d0f03;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section > div > time:before {
  content: "";
  color: #c81704;
  display: inline-block;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover:after, .eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover:before {
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time {
  background-color: #7d0f03;
  border-color: #7d0f03;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > time > span {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_articleTitle a {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div > time:before,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_eventsSimple > section:hover > div .edn_eventBoxLocation:before {
  color: #fff;
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure {
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > img {
  width: 100%;
  height: auto;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > img {
    width: 100%;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure .edn_sss > img {
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: transparent url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/blank.png");
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > a > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption .edn_articleTitle,
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption .edn_articleSummary {
  color: #fff;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure > figcaption .edn_articleSummary {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  -khtml-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure .edn_metaDetails {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  margin: 0;
  color: #fff;
  padding: 5px;
  border-radius: 0 0 0 5px;
  opacity: 0.7;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure:hover > figcaption .edn_articleSummary {
  max-height: 150px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle > figure:hover .edn_sss > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain {
  float: left;
  margin-top: 20px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain {
    width: 100% !important;
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_multiArticleMain.edn_multiArticleMain2 > figure > figcaption h2.edn_articleTitle {
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox {
  float: left;
  width: 31.3%;
  padding-left: 3%;
  box-sizing: content-box;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox {
    width: 100%;
    padding: 0;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox h2.edn_articleTitle {
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a {
  overflow: hidden;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 0 rgba(255, 255, 255, 0.4);
  -webkit-transition: all 150ms ease-in-out;
  -khtml-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a > img {
  border: none;
  padding: 0;
  width: 100%;
  height: auto;
  -webkit-transition: all 200ms ease-in-out;
  -khtml-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a:hover:after {
  border-width: 3px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox .edn_mediaContainer a:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox:first-child {
  padding-left: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 {
  width: 23.5%;
  padding-left: 2%;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 {
    width: 48%;
    padding: 0 1% !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption {
  padding: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure figcaption h2.edn_articleTitle {
  font-size: 13px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 > figure > img {
  width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 h2.edn_articleTitle {
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2 .edn_metaDetails {
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleMultiBox.edn_articleMultiBox2:nth-child(3) {
    clear: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox {
  box-sizing: content-box;
  width: 32%;
  padding: 0 0 20px 2%;
  float: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox {
    width: 100%;
    max-width: none;
    float: none;
    padding: 0 0 20px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticle.edn_articleInBox:first-child {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList {
  margin-bottom: 0;
  padding: 5px 0;
  border-bottom: dashed 1px #bfbfbf;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList h2.edn_articleTitle {
  font-size: 14px;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_mediaContainer {
  margin-bottom: 5px;
  margin-top: 4px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_metaDetails {
  margin: 0 0 4px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_multiArticleList .edn_articleSummary {
  padding: 0;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper {
    margin: 0 -1% !important;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper {
    margin: 0 !important;
  }
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper .edn_article.edn_multiArticle.edn_articleInBox {
    float: left;
    width: 48% !important;
    padding-right: 1% !important;
    padding-left: 1% !important;
  }
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_smallerBoxArticlesWrapper .edn_article.edn_multiArticle.edn_articleInBox {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    float: none;
  }
}

.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline {
  display: table;
  margin: 0;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline {
    display: block;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation {
  display: table-cell;
  vertical-align: top;
  width: 140px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation {
    display: inline-block;
    vertical-align: top;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineDate {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation > time.edn_timelineClock {
  color: #666161;
  font-size: 40px;
  margin: 5px 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timelineTimeLocation .edn_eventPrice {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  display: inline-block;
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage {
  display: table-cell;
  position: relative;
  vertical-align: top;
  text-align: center;
  max-width: 100%;
  font-size: 0;
  line-height: 0;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/timeLineImage/guideline/predefined/timelineLine.png") center top repeat-y;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage {
    background: none;
    display: inline-block;
    margin-top: 10px;
    vertical-align: top;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage {
  box-sizing: content-box;
  -moz-box-sizing: border-box;
  padding: 0 8px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage > a {
  width: 29px;
  height: 29px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage.edn_noImage > a {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a {
  display: inline-block;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  border: solid 8px #e2e2e2;
  overflow: hidden;
  margin-top: -5px;
  max-width: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineImage > a > img {
  width: 100%;
  border-radius: 50%;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent {
  margin-left: 30px;
  background-color: #dadada;
  border: solid 1px #bcbcbc;
  border-radius: 6px;
  margin-bottom: 35px;
  margin-top: -5px;
  position: relative;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent {
    margin-left: 0;
    margin-top: 10px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent:before {
  position: absolute;
  content: "";
  top: 15px;
  left: -11px;
  width: 20px;
  height: 20px;
  background-color: #dadada;
  border: solid 1px #bcbcbc;
  border-right: none !important;
  border-top: none !important;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent:before {
    display: none;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header {
  border-bottom: solid 1px #bcbcbc;
  box-shadow: 0 1px 0 0 #eee;
  padding: 10px 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header > time:before {
  content: "";
  color: #c81704;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport {
  margin-right: 20px;
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:after {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_calendarExport:hover:after {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle {
  font-size: 14px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle > a {
  color: #666161;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6);
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > header .edn_articleTitle > a:hover {
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent > div {
  padding: 5px 25px;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline .edn_timeLineContent .edn_articleSummary {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #8a8a8a;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:last-child .edn_timeLineImage {
  background: none !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent {
  background-color: #ececec;
}
.eds_news_Ozone.eds_subCollection_news .edn_article.edn_timeline:nth-child(even) .edn_timeLineContent:before {
  background-color: #ececec;
}

.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList {
  width: 250px;
  margin: 0;
  padding: 0;
  float: left;
  position: fixed;
  height: 600px;
  overflow: auto;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  z-index: 1;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track {
  background: transparent;
  position: relative;
  height: 100%;
  width: 10px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb {
  height: 20px;
  width: 10px;
  cursor: default;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background ease 0.2s;
  border-radius: 5px;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb > .end {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.scrollbar > .track > .thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul {
  list-style: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li {
  margin: 0;
  padding: 0;
  border-bottom: dashed 1px #ddd;
  list-style-type: none;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li > a {
  display: block;
  padding: 5px 10px;
  font-size: 13px;
  text-decoration: none;
  color: #646262;
  -webkit-transition: all 300ms ease;
  -khtml-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li > a:hover {
  color: #c81704;
  text-decoration: none;
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList > div.viewport > ul > li.edNews__active > a {
  color: #000;
  background-color: #eee;
}
.eds_news_Ozone.eds_subCollection_news .edNews__secondaryArticleList + div {
  margin-left: 280px;
}

.eds_news_Ozone.eds_subCollection_news .article_pager,
.eds_news_Ozone.eds_subCollection_news .article_pagination table,
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger {
  border: solid 1px #c81704;
  border-radius: 4px;
  margin: 20px 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_subCollection_news .article_pager > span,
.eds_news_Ozone.eds_subCollection_news .article_pagination a,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  display: inline-block;
  font-size: 13px;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  padding: 7px 10px;
  border-left: solid 1px #c81704;
  border-right: none !important;
  border-bottom: none !important;
  border-top: none !important;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a,
.eds_news_Ozone.eds_subCollection_news .article_pagination a {
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a:hover,
.eds_news_Ozone.eds_subCollection_news .article_pagination a:hover {
  color: #fff;
  background-color: #FF9387;
}
.eds_news_Ozone.eds_subCollection_news .article_pagination {
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_pagination a,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  margin-left: -1px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager {
  float: right;
  clear: both;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a:first-child {
  border-left: none;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.next:after, .eds_news_Ozone.eds_subCollection_news .article_pager a.next:before, .eds_news_Ozone.eds_subCollection_news .article_pager a.last:after, .eds_news_Ozone.eds_subCollection_news .article_pager a.last:before, .eds_news_Ozone.eds_subCollection_news .article_pager a.first:after, .eds_news_Ozone.eds_subCollection_news .article_pager a.first:before, .eds_news_Ozone.eds_subCollection_news .article_pager a.prev:after, .eds_news_Ozone.eds_subCollection_news .article_pager a.prev:before, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_previusArticle:after, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_previusArticle:before, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_nextArticle:after, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_nextArticle:before {
  font-family: "FontAwesome";
  line-height: 0;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.next:after, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_nextArticle:after {
  content: "";
  margin-left: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.last:after {
  content: "";
  margin-left: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.first:before {
  content: "";
  margin-right: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.prev:before, .eds_news_Ozone.eds_subCollection_news .article_pager a.edn_previusArticle:before {
  content: "";
  margin-right: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling {
  float: none;
  border: none;
  margin: 0 -10px;
  padding: 20px 10px;
  overflow: visible;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a {
  border: solid 1px #c81704 !important;
  border-radius: 4px;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_previusArticle {
  float: left;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_nextArticle {
  float: right;
}
.eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_previusArticle:hover, .eds_news_Ozone.eds_subCollection_news .article_pager.edn_articleScrolling a.edn_nextArticle:hover {
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .article_pager a.active,
.eds_news_Ozone.eds_subCollection_news .article_pagination > span {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper {
  text-align: center;
  line-height: 0;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger {
  position: relative;
  padding: 0;
  background: none transparent;
  box-shadow: none;
  -webkit-appearance: none;
  overflow: hidden;
  width: 75%;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger > span {
  color: #c81704;
  font-family: inherit;
  line-height: 1;
  font-size: 15px;
  display: block;
  padding: 7px 10px;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .actionTextContainer {
  background-color: #fff;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .loadingOverlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 100%;
  opacity: 0;
  -webkit-transition: opacity 200ms linear;
  -khtml-transition: opacity 200ms linear;
  -moz-transition: opacity 200ms linear;
  -ms-transition: opacity 200ms linear;
  -o-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger .loadingOverlay:before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  font-family: "FontAwesome";
  line-height: 0;
  font-size: 21px;
  font-style: normal;
  font-weight: normal;
  opacity: 0.7;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper .trigger:hover .actionTextContainer {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper.loading .trigger .loadingOverlay {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.8);
  top: 0;
}
.eds_news_Ozone.eds_subCollection_news .ednMoreArticlesTriggerWrapper.hide {
  display: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation {
    margin: 25px 0;
    overflow: hidden;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
  font-size: 0;
  line-height: 0;
  position: fixed;
  display: inline-block;
  width: 250px;
  top: 50%;
  margin-top: -70px;
  z-index: 9999;
  -webkit-transition: all 500ms ease;
  -khtml-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a {
    position: relative;
    top: auto;
    width: 130px;
    margin-top: 0;
    z-index: auto;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
  display: inline-block;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage {
    height: 70px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
  position: relative;
  z-index: 2;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage > img {
    height: 70px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after {
  background-color: rgba(0, 0, 0, 0.4);
  font-family: "FontAwesome";
  line-height: 140px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 25px;
  color: #fff;
  z-index: 1;
  position: absolute;
  border-radius: 4px;
  -webkit-transition: padding 600ms ease;
  -khtml-transition: padding 600ms ease;
  -moz-transition: padding 600ms ease;
  -ms-transition: padding 600ms ease;
  -o-transition: padding 600ms ease;
  transition: padding 600ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage:after {
    line-height: 70px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
  top: 0 !important;
  bottom: 0 !important;
  overflow: hidden;
  border-style: none;
  z-index: 2;
  text-align: left;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavImage .edn_fixedNavTitle {
    border-style: solid;
    width: 220px !important;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
  font-size: 16px;
  line-height: 1.1;
  color: #504e4e;
  font-family: "Roboto Condensed", sans-serif;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top-style: none;
  width: 240px;
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a .edn_fixedNavTitle {
    top: 0;
    bottom: 0;
    border-top-style: solid;
    z-index: 2;
    overflow: hidden;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavTitle {
  opacity: 1;
  visibility: visible;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a:hover .edn_fixedNavImage:after {
  background-color: rgba(0, 0, 0, 0.8);
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
  left: -190px;
  border-left: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle {
    left: auto !important;
    float: left;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavImage:after {
  content: "";
  text-align: right;
  padding-right: 20px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle .edn_fixedNavTitle {
  left: -100%;
  border-left: none !important;
  border-top-left-radius: 0 !important;
  -webkit-transition: left 500ms ease, opacity 800ms;
  -khtml-transition: left 500ms ease, opacity 800ms;
  -moz-transition: left 500ms ease, opacity 800ms;
  -ms-transition: left 500ms ease, opacity 800ms;
  -o-transition: left 500ms ease, opacity 800ms;
  transition: left 500ms ease, opacity 800ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavTitle {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage:after {
  padding-right: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_previusArticle:hover .edn_fixedNavImage:after {
    padding-right: 25px;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
  right: -190px;
  border-right: none !important;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle {
    right: auto !important;
    float: right;
  }
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage {
  text-align: right;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavImage:after {
  content: "";
  text-align: left;
  padding-left: 20px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle .edn_fixedNavTitle {
  right: -100%;
  border-right: none !important;
  border-top-right-radius: 0 !important;
  -webkit-transition: right 500ms ease, opacity 800ms;
  -khtml-transition: right 500ms ease, opacity 800ms;
  -moz-transition: right 500ms ease, opacity 800ms;
  -ms-transition: right 500ms ease, opacity 800ms;
  -o-transition: right 500ms ease, opacity 800ms;
  transition: right 500ms ease, opacity 800ms;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavTitle {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage:after {
  padding-left: 45px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone.eds_subCollection_news .edn_fixedPrevNextArticleNavigation > a.edn_nextArticle:hover .edn_fixedNavImage:after {
    padding-left: 25px;
  }
}
.eds_news_Ozone .edn_pagination {
  padding: 0;
  margin: 0;
  border: 0;
  border-top: 4px solid #c81704;
  text-align: right;
  font-size: 0;
  line-height: 0;
  clear: both;
  overflow: hidden;
}
.eds_news_Ozone .edn_pagination > span {
  padding: 0;
  margin: 1px 0 0 1px;
  border: 0;
  background: #c81704;
  position: relative;
  display: inline-block;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.eds_news_Ozone .edn_pagination > span:after {
  font: 18px/1.3 "FontAwesome";
  color: #fff;
  display: block;
  text-align: center;
  display: block;
  padding: 0 11px 1px;
}
.eds_news_Ozone .edn_pagination > span.edn__contentBlock_previousPage:after, .eds_news_Ozone .edn_pagination > span.edn__recentComments_previousPage:after {
  content: "";
}
.eds_news_Ozone .edn_pagination > span.edn__contentBlock_nextPage:after, .eds_news_Ozone .edn_pagination > span.edn__recentComments_nextPage:after {
  content: "";
}

.qtip.edn_calendarbox_Ozone {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  min-width: 50px;
  font-size: 10px;
  line-height: 12px;
  direction: ltr;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: 1px solid #c81704;
  width: 500px;
  max-width: 95%;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  line-height: 1.1;
  color: #504e4e;
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone * {
  box-sizing: border-box;
}
.qtip.edn_calendarbox_Ozone p, .qtip.edn_calendarbox_Ozone span, .qtip.edn_calendarbox_Ozone li, .qtip.edn_calendarbox_Ozone a {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.qtip.edn_calendarbox_Ozone .qtip-content {
  padding: 10px 20px;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #c81704;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title a {
  color: #c81704;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content div.title a:hover {
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper {
  margin: 0;
  width: auto;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article {
  overflow: hidden;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > img {
  float: left;
  margin: 3px 10px 7px 0;
  padding: 3px;
  border: solid 1px #c81704;
  background: #fff;
  max-width: 100px;
  max-height: 100px;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title {
  margin: 0 0 5px 0;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title a {
  font-size: 18px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.title a:hover {
  color: #c81704;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.location {
  margin-top: 5px;
  padding: 0;
  font-weight: bold;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > p.location:before {
  content: "";
  display: inline-block;
  margin-right: 2px;
  font-size: 15px;
  font-family: "FontAwesome";
  color: #c81704;
  font-style: normal;
  font-weight: normal;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > .content p {
  margin: 0;
  padding: 0;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > .content p + p {
  margin-top: 5px;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > a {
  float: right;
  clear: both;
  border: 1px solid #c81704;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper > .article > a:hover {
  color: #fff;
  background-color: #c81704;
  text-decoration: none;
  box-shadow: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list {
  margin: 0 0 0 15px;
  padding: 0;
  list-style-type: circle;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li {
  margin: 5px 0 0;
  padding: 0;
  list-style-type: circle;
  color: #504e4e;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > a {
  color: #504e4e;
  text-decoration: none;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > a:hover {
  color: #c81704;
}
.qtip.edn_calendarbox_Ozone .qtip-content .wrapper .article_list li > p {
  color: #999;
  margin: 0;
  padding: 0;
  font-size: 11px;
}

.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit.rateit div.rateit-selected {
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-range {
  position: relative;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/rate_stars.png");
  height: 16px;
  left: 2px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-hover {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/rate_stars.png") left -32px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-hover-rtl {
  background-position: right -32px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-selected {
  background: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/rate_stars.png") left -16px;
}
.eds_news_Ozone.eds_subCollection_news div.EDN_article_rateit div.rateit-selected-rtl {
  background-position: right -16px;
}

.eds_news_Ozone.eds_subCollection_search {
  float: none;
  height: auto;
  min-width: 0;
  width: auto;
  overflow: visible;
  -webkit-transition: none 0 none;
  -khtml-transition: none 0 none;
  -moz-transition: none 0 none;
  -ms-transition: none 0 none;
  -o-transition: none 0 none;
  transition: none 0 none;
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  color: #504e4e;
}
.eds_news_Ozone.eds_subCollection_search div, .eds_news_Ozone.eds_subCollection_search span, .eds_news_Ozone.eds_subCollection_search a, .eds_news_Ozone.eds_subCollection_search label, .eds_news_Ozone.eds_subCollection_search input {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_search a {
  text-decoration: none;
  color: #c81704;
  -webkit-transition: color 0.3s linear;
  -khtml-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.eds_news_Ozone.eds_subCollection_search a:hover {
  color: #504e4e;
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .fa {
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/indicator.gif") !important;
  background-repeat: no-repeat !important;
  background-position: 95% 50% !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_search .search_input:after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input .input {
  float: left;
  padding: 0 10px;
  line-height: 0;
  font-size: 0;
  width: 85%;
}
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type="text"],
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type="text"]:hover,
.eds_news_Ozone.eds_subCollection_search .search_input .input input[type="text"]:focus {
  border: none;
  background: none #fff;
  box-shadow: none;
  -webkit-appearance: none;
  color: #848484;
  line-height: 28px;
  height: 30px;
  font-size: 13px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search {
  padding: 0 5px;
  line-height: 29px;
  float: right;
  min-width: 35px;
  width: 10%;
  text-align: center;
  text-decoration: none;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search:hover {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search > span {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .search_input .do_search:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  font-family: "FontAwesome";
  font-size: 21px;
  font-style: normal;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside {
  border: none !important;
  border-radius: 0 !important;
  background: none transparent !important;
  box-shadow: none !important;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input {
  float: none;
  width: auto;
  padding: 0;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type="text"],
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type="text"]:hover,
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .input input[type="text"]:focus {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  padding: 0 10px;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search {
  width: auto;
  clear: both;
  border: 1px solid #c81704 !important;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 18px;
  border-radius: 4px;
  box-shadow: none;
  margin-top: 10px;
  color: #c81704;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search > span {
  display: inline-block;
  padding-left: 10px;
}
.eds_news_Ozone.eds_subCollection_search .search_input.button_outside .do_search:hover {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .search_input .acInput.acLoading {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/indicator.gif");
  background-repeat: none;
  background-position: 90% 10%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container {
  position: relative;
  padding: 5px 0 20px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > span {
  display: block;
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container > div {
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container label {
  font-weight: normal;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  padding-right: 35px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  width: 35px;
  z-index: 1;
  font-family: "FontAwesome";
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select {
  border: none;
  background: none transparent;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
  width: 125%;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  color: #848484;
  font-size: 13px;
  font-family: "PT sans";
  margin: 0;
  height: 28px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:focus {
  outline: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_DropDownList > span select:disabled {
  color: #ccc !important;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 100% !important;
  display: block;
  position: relative;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  display: block;
  width: 100%;
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  line-height: 28px;
  text-align: left;
  padding: 0 45px 0 10px;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 28px;
  color: #848484;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 35px;
  z-index: 1;
  text-align: center;
  border: solid 1px #d4d4d4;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div:before {
  content: "";
  color: #c81704;
  font-size: 20px;
  font-weight: bold;
  font-family: "FontAwesome";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice > div.open:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice.disabled {
  cursor: default;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop {
  display: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 1000;
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  margin-top: 1px;
  background-color: #fff;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul {
  margin: 0;
  padding: 10px;
  overflow: auto;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li {
  background-image: none;
  display: list-item;
  list-style: outside none none;
  position: static;
  padding: 0;
  margin: 0 0 3px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label {
  display: block;
  white-space: nowrap;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > input {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li label > span:before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 0 0;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 11px;
  color: #8e1003;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/advancedSearch/checkBoxes/background/predefined/checkBoxBg.png");
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop ul > li.selected label > span:before {
  background-position: 0 bottom;
  content: "";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.bottom {
  top: 100%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-drop.top {
  bottom: 100%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text .edncf_TextInput input {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  padding: 0 10px;
  line-height: 28px;
  height: 30px;
  color: #848484;
  font-size: 13px;
  width: 100%;
  background: none #fff;
  font-family: "PT sans";
  margin: 0;
  padding: 0 10px;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_Text label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField label {
  display: block;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput > span > label {
  display: block;
  margin-bottom: 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs {
  height: 45px;
  position: relative;
  display: block;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line {
  display: block;
  position: relative;
  padding: 2px;
  background-color: #d6d6d6;
  height: 13px;
  border-style: solid;
  border-width: 1px;
  border-color: #c7c7c7 #c7c7c7 #d3d3d3;
  border-radius: 6px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-left,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-right {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-line .irs-line-mid {
  display: block;
  height: 7px;
  border-radius: 4px;
  background-color: #c3c3c3;
  border: solid 1px #bcbcbc;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.35), 0 1px 3px 0 rgba(0, 0, 0, 0.24) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-diapason {
  top: 3px;
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: #c81704;
  border-style: solid;
  border-width: 1px;
  border-color: #931103 #931103 #bf1604;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.24) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider {
  border: solid 1px #eeeff0;
  border: solid 1px rgba(0, 0, 0, 0.2);
  background-color: #d4d8de;
  height: 20px;
  width: 20px;
  cursor: default;
  display: block;
  position: absolute;
  z-index: 1;
  top: -3px;
  border-radius: 50%;
  box-shadow: 0 6px 6px 0px rgba(255, 255, 255, 0.8) inset;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-slider:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c71704;
  box-shadow: 0 1px 1px 0 rgba(255, 255, 255, 0.35), 0 1px 2px 0 rgba(0, 0, 0, 0.5) inset;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-from,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-to,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-single {
  color: #c81704;
  position: absolute;
  white-space: nowrap;
  top: 25px;
  font-size: 12px;
  line-height: 1;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  top: 25px;
  font-size: 12px;
  line-height: 1;
  color: #a8a8a8;
  position: absolute;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-min {
  left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RangeSliderInput .irs .irs-max {
  right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE input[type="checkbox"],
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox input[type="checkbox"] {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox .edncf_ltIE label:before,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList .edncf_CheckBoxListGroup .edncf_ltIE .edncf_CheckBox label:before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton input[type="radio"] {
  display: inline;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label {
  padding-left: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList .edncf_RadioButtonGroup .edncf_ltIE .edncf_RadioButton label:before {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton {
  display: block;
  margin: 4px 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox > input,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton > input {
  display: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox > label,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton > label {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox > label:before,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton > label:before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 0 0;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 11px;
  color: #8e1003;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox > label:before {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/advancedSearch/checkBoxes/background/predefined/checkBoxBg.png");
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBox input[type="checkbox"]:checked + label:before {
  background-position: 0 bottom;
  content: "";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton > label:before {
  background-image: url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/advancedSearch/radioButtons/background/predefined/radioButtonBg.png");
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButton input[type="radio"]:checked + label:before {
  background-position: 0 bottom;
  content: "";
  font-size: 8px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group {
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group + .input-group {
  margin-top: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .glyphicon {
  font-family: "Glyphicons Halflings";
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .form-control {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
  color: #848484;
  font-size: 13px;
  font-family: "PT sans";
  height: 30px;
  line-height: 28px;
  margin: 0;
  background-color: #fff;
  padding: 0 6px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_dateSearchField .input-group-addon {
  border: solid 1px #d4d4d4;
  border-radius: 4px;
  border-left: none;
  background-color: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 30px;
  padding: 0 11px;
  color: #c81704;
  line-height: 26px;
  vertical-align: top;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_RadioButtonList > span {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer {
  text-align: right;
  padding-top: 20px;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a {
  display: inline-block;
  background: none #fff;
  text-shadow: none;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  line-height: 29px;
  text-transform: uppercase;
  padding: 0 18px;
  border-radius: 4px;
  box-shadow: none;
  color: #c81704;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a:hover {
  text-decoration: none;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit {
  border: 1px solid #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:hover {
  color: #fff;
  background-color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_submit:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  font-family: "FontAwesome";
  font-size: 21px;
  margin-right: 10px;
  font-style: normal;
  font-weight: normal;
  line-height: 26px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset {
  border: solid 1px #ddd;
  color: #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a.edncf_reset:hover {
  color: #504e4e;
  border: solid 1px #c81704;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_submitContainer > a + a {
  margin-left: 5px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch .edncf_container .edncf_searchInProgressOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff url("/DesktopModules/EasyDNNnews/Templates/_default/Ozone/assets/images/common/searchInProgress.gif") center center no-repeat;
  opacity: 0.7;
  z-index: 999;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container {
  padding-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container > span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 15px 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span {
  min-width: 145px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_DropDownList > span select {
  width: 160%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-parent {
  width: 180px !important;
  display: inline-block;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Multiselect .edncf_MultiselectGroup .ms-choice {
  min-width: 145px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RangeSliderInput {
  display: block;
  margin-right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList > span,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList > span {
  display: inline-block;
  margin-bottom: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList {
  display: inline-block;
  margin-right: 15px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_CheckBoxList .edncf_RadioButton,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_CheckBox,
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_RadioButtonList .edncf_RadioButton {
  display: inline-block;
  margin: 4px 10px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField {
  display: block;
  margin-right: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group {
  float: left;
  width: 49%;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField > .input-group + .input-group {
  float: right;
  margin: 0;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_dateSearchField:after {
  content: "";
  display: table;
  width: 100%;
  height: 0;
  overflow: hidden;
  clear: both;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span {
  display: inline-block;
  vertical-align: middle;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_Text > span + span {
  margin-left: 15px;
}
.eds_news_Ozone.eds_subCollection_search .edncf_AdvancedSearch.edncf_horizontalOrientation .edncf_container .edncf_submitContainer {
  display: inline-block;
  vertical-align: top;
  padding: 0;
}
.eds_news_Ozone .edn_searchInfoResults {
  margin: 30px 0 !important;
  padding: 10px 15px !important;
  background-color: #efefef;
  border: solid 1px #e8e8e8;
  color: #4A4A4A !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.eds_news_Ozone .edn_searchInfoResults > span {
  font-weight: bold;
  color: #333;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.EDN_search.theme_Ozone {
  padding: 0px;
  border: 1px solid #c81704;
  background-color: #fff;
  overflow: hidden;
  z-index: 9999999;
  margin: 0 20px;
}
.EDN_search.theme_Ozone ul {
  margin: 0px;
  padding: 0px;
}
.EDN_search.theme_Ozone ul li {
  list-style-type: none;
  margin: 0px;
  padding: 0;
}
.EDN_search.theme_Ozone ul li span a {
  padding: 2px 10px;
  display: block;
  font-size: 12px;
  color: #504e4e;
  text-decoration: none;
  border: solid 1px transparent;
  -webkit-transition: all 300ms linear;
  -khtml-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.EDN_search.theme_Ozone ul li span a:hover {
  text-decoration: none;
}
.EDN_search.theme_Ozone ul li.acSelect a {
  background-color: #f8f8f8;
  border-color: #d4d4d4 transparent;
  color: #c81704;
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.eds_news_Ozone.eds_subCollection_tagCloud div, .eds_news_Ozone.eds_subCollection_tagCloud a, .eds_news_Ozone.eds_subCollection_tagCloud span {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a {
  border: solid 1px #c81704;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  margin: 0 5px 5px 0;
  display: inline-block;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a span {
  display: inline-block;
  color: #c81704;
  padding: 5px 10px;
  background-color: #fff;
  font-weight: bold;
  -webkit-transition: all linear 200ms;
  -khtml-transition: all linear 200ms;
  -moz-transition: all linear 200ms;
  -ms-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a span:first-child {
  background-color: #c81704;
  color: #fff;
  font-weight: normal;
}
.eds_news_Ozone.eds_subCollection_tagCloud > div a:hover span:first-child {
  background-color: #fff;
  color: #c81704;
}

.eds_news_Ozone [class*="edn_accordionWrapper"] .edsAccordion_section .edsAccordion_title {
  cursor: pointer;
}
.eds_news_Ozone [class*="edn_accordionWrapper"] .edsAccordion_section .edsAccordion_contentWrapper {
  position: relative;
  height: 0;
  overflow: hidden;
}
.eds_news_Ozone [class*="edn_accordionWrapper"] .edsAccordion_section.edsAccordion_active .edsAccordion_contentWrapper {
  height: auto;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion {
    height: auto !important;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section {
  margin: 0 0 5px;
  padding: 0;
  border: none;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title {
  position: relative;
  border-bottom: solid 1px #ddd;
  cursor: pointer;
  margin: 0;
  padding: 5px 2px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  color: #504e4e;
  -webkit-transition: color 300ms linear;
  -khtml-transition: color 300ms linear;
  -moz-transition: color 300ms linear;
  -ms-transition: color 300ms linear;
  -o-transition: color 300ms linear;
  transition: color 300ms linear;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title:hover:after {
  -ms-transform: scale(1.8);
  -webkit-transform: scale(1.8);
  transform: scale(1.8);
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_title:after {
  position: absolute;
  content: "";
  right: 1%;
  bottom: 5px;
  font-family: FontAwesome;
  font-size: 20px;
  line-height: 1;
  color: #c81704;
  font-weight: normal;
  font-style: normal;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 10px 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section .edsAccordion_contentWrapper .edn_articleSummary {
  padding-top: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edsAccordion_active .edsAccordion_title:after {
  content: "";
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle2 .edsAccordion_title {
  padding-right: 30px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header {
  margin: 0;
  padding: 0;
  border: none;
  padding: 10px 30px 10px 0;
  border-bottom: dashed 1px #bfbfbf;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header:after {
  top: auto;
  bottom: 50%;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header > h3 {
  font-size: 18px;
  color: #504e4e;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header:hover > h3 {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 > header .edn_metaDetails {
  margin: 5px 0 10px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer {
  margin: 0 10px 5px 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a {
  overflow: hidden;
  display: inline-block;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 0 rgba(255, 255, 255, 0.4);
  -webkit-transition: all 150ms ease-in-out;
  -khtml-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a > img {
  border: none;
  padding: 0;
  max-width: 100%;
  height: auto;
  -webkit-transition: all 200ms ease-in-out;
  -khtml-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a:hover:after {
  border-width: 3px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_mediaContainer a:hover > img {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content h2.edn_articleTitle {
  font-size: 18px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3 .edsAccordion_contentWrapper .edsAccordion_content .edn_metaDetails {
  margin: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edsAccordion_active > header {
  display: none;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3:last-child > header {
  border: none !important;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion {
  border: none;
  position: relative;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header {
  float: right;
  clear: right;
  display: block;
  padding: 10px 0;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header {
    float: none;
    width: auto !important;
    clear: both;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header:after {
  display: none;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header > h3 {
  color: #7c7c7c;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails {
  margin: 0 0 5px;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header .edn_metaDetails > time {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion > header:hover > h3 {
  color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion .edsAccordion_contentWrapper {
  padding-right: 35px;
  opacity: 0;
  position: absolute;
  left: 0;
  visibility: hidden;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion .edsAccordion_contentWrapper {
    padding: 0;
    position: static;
    width: auto !important;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header {
  position: relative;
  background-color: #c81704;
  padding-left: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header {
    display: none;
  }
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header > h3 {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header .edn_metaDetails > time {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active > header::before {
  position: absolute;
  content: "";
  width: 0;
  left: -14px;
  right: auto;
  border-width: 14px 7px;
  border-style: solid;
  border-right-color: #c81704;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  border-left-color: transparent !important;
  top: 50%;
  margin-top: -14px;
  bottom: auto;
  display: block;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.edsAccordion_active .edsAccordion_contentWrapper {
  visibility: visible;
  opacity: 1;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft > header {
  float: left;
  clear: left;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft .edsAccordion_contentWrapper {
  padding-right: 0;
  padding-left: 35px;
  left: auto;
  right: 0;
}
.eds_news_Ozone .edn_articleAccordion .edsAccordion_section.edn_listArticle3.edn_verticalAccordion.eds_accordionTabLeft.edsAccordion_active > header:before {
  left: auto;
  right: -14px;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 10px 0;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content .edn_articleSummary {
  padding-top: 0;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title {
  background-color: #c81704;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title:after, .eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title:before {
  display: block;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time {
  background-color: #7d0f03;
  border-color: #7d0f03;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > time > span {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_articleTitle a {
  color: #fff;
}
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div > time:before,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation,
.eds_news_Ozone .edn_articleAccordion.edn_eventsSimple.edsAccordion_section.edsAccordion_active .edsAccordion_title > div .edn_eventBoxLocation:before {
  color: #fff;
}

.eds_news_Ozone .edsTabulator .eds_tabsNav {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border-radius: 5px 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li {
  display: inline-block;
  list-style-type: none;
  cursor: pointer;
  color: #b4b4b4;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  border: solid 1px #c81704;
  border-bottom: none !important;
  padding: 7px 10px;
  margin: 0;
  line-height: 1;
  -webkit-transition: color 300ms linear;
  -khtml-transition: color 300ms linear;
  -moz-transition: color 300ms linear;
  -ms-transition: color 300ms linear;
  -o-transition: color 300ms linear;
  transition: color 300ms linear;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_news_Ozone .edsTabulator .eds_tabsNav > li {
    display: block;
    border-width: 0 0 1px;
  }
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li + li {
  border-left: none !important;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:first-child {
  border-radius: 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:last-child {
  border-radius: 0 5px 0 0;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li:hover {
  color: #c81704;
}
.eds_news_Ozone .edsTabulator .eds_tabsNav > li.edsTabulator_active {
  background-color: #eb1601;
  box-shadow: 0 -25px 13px -13px #cb1400 inset;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.eds_news_Ozone .edsTabulator .edsTabulator_tabsWrapper {
  overflow: hidden;
}
.eds_news_Ozone .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
  height: 0;
  bottom: 100%;
  border: solid 1px #c81704;
  border-radius: 0 5px 5px 5px;
  -webkit-transition: opacity 300ms linear;
  -khtml-transition: opacity 300ms linear;
  -moz-transition: opacity 300ms linear;
  -ms-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
.eds_news_Ozone .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab.edsTabulator_active {
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 1;
  height: auto;
  bottom: 0;
}

.eds_news_Ozone.eds_subCollection_news .edn_sss {
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_ssslide {
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  overflow: hidden;
}
.eds_news_Ozone.eds_subCollection_news .edn_ssslide img {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext,
.eds_news_Ozone.eds_subCollection_news .edn_sssprev {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  position: absolute;
  top: 50%;
  border-radius: 2px;
  background-color: rgba(27, 25, 21, 0.5);
  z-index: 2;
  text-align: center;
  line-height: 50px;
  font-size: 0;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext:before,
.eds_news_Ozone.eds_subCollection_news .edn_sssprev:before {
  font-family: "FontAwesome";
  color: #fff;
  font-size: 50px;
  opacity: 0.7;
  -webkit-transition: opacity 200ms linear;
  -khtml-transition: opacity 200ms linear;
  -moz-transition: opacity 200ms linear;
  -ms-transition: opacity 200ms linear;
  -o-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext:hover:before,
.eds_news_Ozone.eds_subCollection_news .edn_sssprev:hover:before {
  opacity: 1;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssprev {
  left: 3%;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssprev:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext {
  right: 3%;
}
.eds_news_Ozone.eds_subCollection_news .edn_sssnext:before {
  content: "";
}
.eds_news_Ozone.eds_subCollection_news .edn_sssprev:hover,
.eds_news_Ozone.eds_subCollection_news .edn_sssnext:hover {
  cursor: pointer;
}
.eds_news_Ozone.eds_subCollection_news .edn_sss > div {
  display: none;
}
.eds_news_Ozone.eds_subCollection_news .edn_sss > img + img ~ div {
  display: block;
}

.eds_news_Ozone.eds_subCollection_news.eds_print .article_gallery,
.eds_news_Ozone.eds_subCollection_news.eds_print .article_comments,
.eds_news_Ozone.eds_subCollection_news.eds_print .fb-comments,
.eds_news_Ozone.eds_subCollection_news.eds_print #disqus_thread,
.eds_news_Ozone.eds_subCollection_news.eds_print .admin_action,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_socialPrintWrapper,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_eventRegistrationModalTrigger,
.eds_news_Ozone.eds_subCollection_news.eds_print .eds_signUpActionBarWrapper,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_aditionalBox,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_authorGroupDetails,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_galleryLink,
.eds_news_Ozone.eds_subCollection_news.eds_print .article_pager,
.eds_news_Ozone.eds_subCollection_news.eds_print .detailsArticleDefaultWithTabs,
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_fixedPrevNextArticleNavigation,
.eds_news_Ozone.eds_subCollection_news.eds_print [class*="eds_GravityGallery_"] {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_title {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_contentWrapper {
  height: auto !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edn_accordionWrapper .edsAccordion_section .edsAccordion_contentWrapper .edsAccordion_content {
  padding: 0 !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edsTabulator .eds_tabsNav {
  display: none !important;
}
.eds_news_Ozone.eds_subCollection_news.eds_print .edsTabulator .edsTabulator_tabsWrapper .edsTabulator_tab {
  position: relative !important;
  visibility: visible !important;
  top: auto !important;
  padding: 0 !important;
  border: none !important;
  opacity: 1 !important;
}
/*Fix RTL EDN Dashbord 2018*/
.rtl .eds_subCollection_news .user_dashboard a { float: right; font-family: inherit !important; }
@font-face {
font-family: 'IRANSans';
src: url("/Portals/_default/Skins/ForVend/Fonts/IRANSansWeb.eot");
src: url("/Portals/_default/Skins/ForVend/Fonts/IRANSansWeb.eot") format('embedded-opentype'),
url("/Portals/_default/Skins/ForVend/Fonts/IRANSansWeb.svg") format('svg'),
url("/Portals/_default/Skins/ForVend/Fonts/IRANSansWeb.ttf") format('truetype'),
url("/Portals/_default/Skins/ForVend/Fonts/IRANSansWeb.woff") format('woff');
}
@font-face {
font-family: 'IRANSans Bold';
src: url("/Portals/_default/Skins/ForVend/Fonts/IRANSansWeb_Bold.eot");
src: url("/Portals/_default/Skins/ForVend/Fonts/IRANSansWeb_Bold.eot") format('embedded-opentype'),
url("/Portals/_default/Skins/ForVend/Fonts/IRANSansWeb_Bold.svg") format('svg'),
url("/Portals/_default/Skins/ForVend/Fonts/IRANSansWeb_Bold.ttf") format('truetype'),
url("/Portals/_default/Skins/ForVend/Fonts/IRANSansWeb_Bold.woff") format('woff');
}



 

/*Fix RTL Dnnplus.ir*/
html .rtl,.rtl button,.rtl input,
.rtl select,.rtl textarea .rtl h1, .rtl h2,
.rtl h3, .rtl h4, .rtl h5, .rtl h6{
    Font-Family:"IRANSans";
}
#dnngo_megamenu ul, .multi_menu, .nav_box{
   Font-Family:"IRANSans" !important;
   Font-weight:Normal !important;
}
/*global setting*/
#Body ,
html, 
body ,
.Head,
.SubTitle ,
.SubSubTitle ,
.Normal{
	color:#666666;
	font-size:13px;
	line-height:1.8;
	letter-spacing:0.5px;
	Font-Family:"IRANSans";
	Font-weight:Normal;
}
html, 
button, 
input, 
select, 
textarea,
.ls-layer, 
.ls-layer *,
.uneditable-input,
.btn{
	Font-Family:"IRANSans";
	Font-weight:Normal;
}
div[class^="Theme_Responsive"] select,
div[class^="Theme_Responsive"] textarea,
div[class^="Theme_Responsive"] input[type="text"],
div[class^="Theme_Responsive"] input[type="password"],
div[class^="Theme_Responsive"] input[type="datetime"],
div[class^="Theme_Responsive"] input[type="datetime-local"],
div[class^="Theme_Responsive"] input[type="date"],
div[class^="Theme_Responsive"] input[type="month"],
div[class^="Theme_Responsive"] input[type="time"],
div[class^="Theme_Responsive"] input[type="week"],
div[class^="Theme_Responsive"] input[type="number"],
div[class^="Theme_Responsive"] input[type="email"],
div[class^="Theme_Responsive"] input[type="url"],
div[class^="Theme_Responsive"] input[type="search"],
div[class^="Theme_Responsive"] input[type="tel"],
div[class^="Theme_Responsive"] input[type="color"]{
	Font-Family:IRANSans;
	Font-weight:Normal;
}

.dnn_layout,
.container  {
	width: 970px;
}
@media only screen and (min-width: 1600px) {
	.dnn_layout,
	.container {
		width: 1470px;
	}
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
	.dnn_layout,
	.container  {
		width: 1170px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.dnn_layout,
	.container  {
		width: 750px;
	}
}
 @media only screen and (max-width: 767px) {
	.dnn_layout,
	.container  {
		width: auto;
	}
}

/*color*/

/* body style*/
.dnngo-main {
								background-image:url("/Portals/_default/Skins/ForVend/images/Body_bg_2.png");
											background-position:center top;
	background-attachment:scroll;
					background-repeat:repeat;
		background-size:auto ;
}


/*content style*/
#dnn_content,.BannerPane:before{
	background-color:#FFFFFF;
}
	

/*Mode style*/
	#dnn_wrapper{width:auto;}





/*Fixed Top Content*/
#fixedBox{
	display:none;
}
	#fixedBox{
		display:block;
	}
	#fixedContent:before{
		background-color:#0d0d0d;
		filter:alpha(opacity= 60 );
		opacity: 0/6;
	}
	#fixedBox,
	#fixedBox .Normal,
	#fixedToggle .fa{
		font-size:#0d0d0dpx;
		color:#0d0d0d;
	}
	#fixedBox a,
	#fixedBox a:link,
	#fixedBox a:active,
	#fixedBox a:visited,
	#fixedBox a:hover{
		color:#20a3f0;
	}
	#fixedToggle:before{
		border-top-color:#0d0d0d;
		border-right-color:#0d0d0d;
	}
/*h1~h6 style*/
h1 {
	color:#333333;
	font-size:18px;
	line-height:28px;
	letter-spacing:0px;
	Font-Family:IRANSans Bold;
	Font-weight:bold;
}
 
h2 {
	color:#333333;
	font-size:17px;
	line-height:27px;
	letter-spacing:0px;
	Font-Family:IRANSans Bold;
	Font-weight:bold;
}

h3 {
	color:#333333;
	font-size:16px;
	line-height:26px;
	letter-spacing:0px;
	Font-Family:IRANSans Bold;
	Font-weight:bold;
}

h4 {
	color:#333333;
	font-size:15px;
	line-height:25px;
	letter-spacing:0px;
	Font-Family:IRANSans Bold;
	Font-weight:bold;
}

h5 {
	color:#333333;
	font-size:14px;
	line-height:24px;
	letter-spacing:0px;
	Font-Family:IRANSans Bold;
	Font-weight:bold;
}
h6 {
	color:#424242;
	font-size:13px;
	line-height:23px;
	letter-spacing:0px;
	Font-Family:IRANSans Bold;
	Font-weight:bold;
}

/*Content Style*/
a, 
a:link,
a:active,
a:visited{
	color:#20a3f0;
}
a:hover{
	color:#20a3f0;
}
.default_color{
	color:#666666!important;
}
.accent_color,
.color-accent{
	color:#20a3f0!important;
} 
.border-accent{
	border-color:#20a3f0!important;
}

.default_size{
	font-size:13px!important;
}
.big_size{
	font-size:16px!important;
}
.small_size{
	font-size:12px!important;
}
.default_family{
	Font-Family:"IRANSans"!important;
	Font-weight:Normal;
}
.special_family_1{
	Font-Family:"IRANSans"!important;
	Font-weight:Normal;
}
.special_family_2{
	Font-Family:"IRANSans"!important;
	Font-weight:Normal;
}
.default_line_height{
	line-height:1.8!important;
} 
.big_line_height{
	line-height:2!important;
} 
.small_line_height{
	line-height:1.5!important;;
} 
.h1-color {
	color:#333333;
}
 
.h2-color {
	color:#333333;
}

.h3-color {
	color:#333333;
}

.h4-color {
	color:#333333;
}

.h5-color {
	color:#333333;
}
.h6-color {
	color:#424242;
}


.btn-accent{
	color:#20a3f0;
	border-color:#20a3f0;
	background-color:#20a3f0;
}
.btn-accent:before{
	background-color:#20a3f0;
}

[class*="dg-btn-"].hover-accent:hover{
	color:#20a3f0;
	border-color:#20a3f0;
	background-color:#20a3f0;
}
[class*="dg-btn-"].hover-accent:hover:before{
	background-color:#20a3f0;
}

.dg-modal.bg-accent .modal-content,
.dg-modal.header-accent .modal-header,
.list-ico3 .bg-accent,
.bg-accent,
.dropdown-menu.hover-accent a:hover,
.dropdown-menu.hover-accent>.active>a{
	background-color:#20a3f0;
}
[data-color="accent"] + .tooltip .tooltip-inner{
	background-color:#20a3f0;
}
[data-color="accent"] + .tooltip .tooltip-arrow{
	border-color:#20a3f0;
}


/*module style*/
.Skin_05_timeline.news_list .news_date_box span i,
.Skin_05_timeline.news_list .news_post_box .news_post .dot{
	border-color:#FFFFFF;
}
.Skin_03_Simple.simple_list h2.news_title a:hover{
	color:#20a3f0;
} 
.galler_datail h4{
	color:#333333!important;
}
.Skin_04_Box.news_detail .post_date a:hover,
.Skin_04_Box.news_list .post_date a:hover,
.Skin_03_Default.filter_Box .portfolio_categories a:hover{
	color:#20a3f0;
}
.Skin_03_Default.galler_datail .comment_form .submit_button .CommandButton{
	text-shadow:none;
	border-color:#20a3f0;
	color:#20a3f0;
	transition:background-color ease-in 200ms;
}
.Skin_03_Default.galler_datail .comment_form .submit_button .CommandButton:hover{
	background-color:#20a3f0;
	color:#FFF;
}
.Skin_03_Simple.news_detail .heading span{
	background-color:#FFFFFF;
}
.wrapper .Theme_Responsive_Default .form_submit .btn,
.Skin_05_timeline .news_date_box span, 
.Skin_05_timeline .news_date_box span i, 
.Skin_05_timeline .news_more_box span, 
.Skin_05_timeline .news_more_box .line span, 
.Skin_05_timeline .news_post_box .news_post .dot, 
.Skin_05_timeline .news_date_box span, 
.Skin_05_timeline .news_date_box span i, 
.Skin_05_timeline .news_more_box span, 
.Skin_05_timeline .xblog_page .pager,
.Skin_05_timeline .news_post_box .post_box .post_more a:hover,
.banner_btn.btn_white:hover:after{
	background-color:#20a3f0;
}
.filter_Box.Skin_03_Default #filters li.selected a, 
.filter_Box.Skin_03_Default #filters li.selected a:hover,
.filter_Box.Skin_02_Default #filters li.selected a, 
.filter_Box.Skin_03_Default #filters li.selected a:hover,
.news_detail .post_content .post_categories a:hover{
	background-color:#20a3f0;
	color: #fff;
}
.filter_Box.Skin_03_Default .filter-switch,
.filter_Box.Skin_03_Default .view-tenth:hover .portfolio_descr,
.galler_datail.Skin_03_Default .gallery_tags a:hover,
.galler_datail.Skin_02_Default .gallery_tags a:hover,
.filter_Box.Skin_02_Default .filter-switch,
.Theme_21_LinkAndZoom_Default .pager a.selected{
	background-color:#20a3f0;
}
.Skin_03_Default #filters li a:hover,
.Skin_03_Default .sort_box li a:hover,
.validationEngineContainer .galler_datail .single_meta a:hover,
.news_list .post_categories a:hover, 
.news_list .post_more a:hover,
.news_detail .post_categories a:hover, 
.news_detail .post_more a:hover,
.news_list.Skin_04_Box  h2.news_title a:hover,
.Skin_04_Box .post_date a:hover,
.Skin_05_timeline .news_post_box .post_box h2.news_title a:hover, 
.Skin_05_timeline .news_post_box .post_box .post_date a:hover, 
.Skin_05_timeline .news_detail_top h2.news_title,
.news_detail .post_date a:hover{
	color:#20a3f0;
}
.news_detail_top .tab_right .news_detail_username a:hover,
.Theme_19_Normal .filter_navigation ul li.selected a{
	color:#20a3f0!important;
	}
a.abtn.btn_white:hover, 
.banner_btn, 
.banner_btn.btn_white:hover, 
.comment_form .submit_button .CommandButton {
	border-color:#20a3f0;
}
.Skin_05_timeline.news_detail .post_date a:hover,
.Skin_05_timeline.news_detail .post_author_info .author_desc{
	color:#20a3f0;
}
.Skin_05_timeline.news_detail{
	background:none;
}

/*html style*/  

/*Accent Background Color */
.a_bg_c,
.btn.a_bg_c{
	background-color:#20a3f0;
}
.a_bg_c_h:hover,
.btn.a_bg_c_h:hover{
	background-color:#20a3f0;
}
/*Accent Color */
.a_t_c,
.btn.a_t_c{
	color:#20a3f0;
}
.a_t_c_h:hover,
.btn.a_t_c_h:hover{
	color:#20a3f0;
}
/*Accent Border Color */
.a_b_c,
.btn.a_b_c{
	border-color:#20a3f0;
}
.a_b_c_h:hover,
.btn.a_b_c_h:hover{
	border-color:#20a3f0;
}

/*anchorNav*/
#anchorNav li:hover i, 
#anchorNav li.active i,
#anchorNav li span{
	background-color:#20a3f0;
}

/*photo icon*/
.photo_box .ico span, 
.photo_box .ico em, 
.photo_box .ico i, 
.photo_box .ico .fa,
.content_sytle_2 .shade,
.photo_box.content_push_in .content,
.photo_box:hover.entirety_bevel .shade,
.photo_box.ico_push_in .ico,
.photo_box.content_top_increment .content h3,
.photo_box.content_bottom_push_in .content:after{
	background-color:#20a3f0;
}
.photo_box.icon_tag_push .ico:before{
    border-right-color: #20a3f0;
    border-top-color: #20a3f0;
}
.photo_box.content_bottom_push_in .content:before{
    border-bottom-color: #20a3f0;
}
/*map sytle*/

		
	

		
		#gmap02{
		height:380px
	}
	
	@media only screen and (min-width: 1600px) {
		#gmap02{
			height:380px
		}
	}
	@media only screen and (min-width: 1200px) and (max-width: 1599px) {
		#gmap02{
			height:380px
		}
	}
	@media only screen and (min-width: 768px) and (max-width: 991px) {
		#gmap02{
			height:380px
		}
	}
	 @media only screen and (max-width: 767px) {
		#gmap02{
			height:300px
		}
	}
	

		
	

		
	

		
	


/*Portfolios*/
.portfolio-list01 .filters a.active,
.portfolio-list02 .filters a.active,
.portfolio-list03 .filters a.active,
.portfolio-list04 .filters a.active,
.portfolio-list05 .filters a.active,
.portfolio-list06 .filters a.active{
	background-color:#20a3f0;
	border-color:#20a3f0;
}
.portfolio-list01 .filters a:hover,
.portfolio-list02 .filters a:hover,
.portfolio-list03 .filters a:hover,
.portfolio-list04 .filters a:hover,
.portfolio-list05 .filters a:hover,
.portfolio-tag a:hover,
.portfolio-list04 .element-view .more,
.portfolio-detail .detail-port-nav .nav-return,
.portfolio-detail .detail-port-nav a,
.portfolio-detail .detail-preview{
	border-color:#20a3f0;
	color:#20a3f0;
}
.portfolio-list01 .element-pic .ico-left, 
.portfolio-list01 .element-pic .ico-right,
.portfolio-list02 .element-info .ico-left, 
.portfolio-list02 .element-info .ico-right,
.portfolio-categories > li.active > a,
.portfolio-list03 .ico span,
.portfolio-list04 .element:hover,
.portfolio-list05 .loadmore,
.portfolio-list06 .element-category,
.portfolio-detail .detail-preview:hover,
.gallery-carousel01 .slick-dots li.slick-active button,
.gallery-carousel02 .slick-arrow,
.gallery-carousel02 .slick-dots li.slick-active button,
.gallery-carousel03 .slick-arrow,
.gallery-carousel04 .slick-arrow,
.portfolio-detail .detail-author a:hover{
	background-color:#20a3f0;
}
.portfolio-list01 .portfolio-mian h3 a:hover, 
.portfolio-list01 .element-info p a:hover,
.portfolio-list02 .portfolio-mian h3 a:hover, 
.portfolio-list02 .element-info p a:hover,
.portfolio-search:before,
.portfolio-title01,
.portfolio-categories ul li a:hover,
.portfolio-categories ul li.active > a,
.portfolio-list03 .portfolio-mian h3 a:hover, 
.portfolio-list03 .element-info p a:hover,
.portfolio-list05 .element-view a:hover,
.portfolio-list06 .element-view a:hover,
.portfolio-detail .detail-skills dd .fa,
.portfolio-detail .detail-related a:hover,
.portfolio-list06 .filters a:hover{
	color:#20a3f0;
}

.gallery-carousel01 .slick-arrow:before{
	border-color:#20a3f0;
}

/*Blog*/
.blog-title01{
	color:#20a3f0;
}
.blog-category ul li a:hover,
.blog-category ul li.active > a,
.PopularTab .tab-list li h6 a:hover,
.blogdashBoard-carousel h3 a:hover,
.xblog_search:before{
	color:#20a3f0!important;
}
.PopularTab .tab-title li.active:before{
	border-color:#20a3f0!important;
}
.blogDashBoard-tag a:hover{
	border-color: #20a3f0!important;
    color: #20a3f0!important;
}
.author-social a:hover,
.blog-category > li.active > a,
.Theme_Carousel_Default .slick-dots li.slick-active button,
.Theme_Carousel_Default .slider-item .fa,
.Theme_Carousel_Default .slick-prev, 
.Theme_Carousel_Default .slick-next,
.Theme_Slider_Default .slick-prev, 
.Theme_Slider_Default .slick-next{
	background-color:#20a3f0!important;
}
.Theme_Carousel_Default .slick-prev:hover, 
.Theme_Carousel_Default .slick-next:hover,
.Theme_Slider_Default .slick-prev:hover, 
.Theme_Slider_Default .slick-next:hover{
	background-color:#333333!important;
}


.blog-list01 .list-btn{
	border-color: #20a3f0!important;
    color: #20a3f0!important;
}
.blog-list01 .list-info a:hover,
.blog-list01 .list-title a:hover,
.blog-detail01 .detail-info a:hover,
.blog-detail01 .detail-relatedlist a:hover,
.blog-detail01 .detail-relatedlist a.more, 
.blog-detail01 .detail-relatedlist a.more:link, 
.blog-detail01 .detail-relatedlist a.more:active, 
.blog-detail01 .detail-relatedlist a.more:visited, 
.blog-detail01 .detail-relatedlist a.more:hover{
	color:#20a3f0!important;
}
.blog-list01 .list-btn:hover{
	color:#FFF!important;
	background-color:#20a3f0!important;
}
.blog-list01 .blog-slider .slick-prev:hover, 
.blog-list01 .blog-slider .slick-next:hover{
	border-color:#20a3f0!important;
	background-color:#20a3f0!important;
}
.blog-list01 .list-date .month,
.blog-list01 .list-linkbox,
.blog-detail01 .detail-date .month,
.blog-detail01 .author-social a:hover,
.blog-detail01 .leave-formlist input[type="submit"]{
	background-color:#20a3f0!important;
}
.blog-detail01 .detail-heading{
	color:#20a3f0!important;
}
.blog-detail01 .leave-formlist input[type="submit"]:hover{
	background-color:#555!important
}
.blog-list01 a:hover .list-linkbox{
	background-color:#333!important;
}
.blog-list01 .blog-page span.index,
.blog-list01 .blog-page a:hover{
	border-color: #20a3f0!important;
	background-color:#20a3f0!important;
}


.blog-list02 .list-author{
	border-color: #20a3f0!important;
}
.blog-list02 .list-btn{
	border-color: #20a3f0!important;
    color: #20a3f0!important;
}
.blog-list02 .list-title a,
.blog-list02 .list-info a:hover,
.blog-list02 .list-title a:hover,
.blog-detail02 .detail-info a:hover,
.blog-detail02 .detail-relatedlist a:hover,
.blog-detail02 .detail-relatedlist a.more, 
.blog-detail02 .detail-relatedlist a.more:link, 
.blog-detail02 .detail-relatedlist a.more:active, 
.blog-detail02 .detail-relatedlist a.more:visited, 
.blog-detail02 .detail-relatedlist a.more:hover{
	color:#20a3f0!important;
}
.blog-list02 .list-btn,
.blog-list02 .list-btn:hover{
	color:#20a3f0!important;
}
.blog-list02 .blog-slider .slick-prev:hover, 
.blog-list02 .blog-slider .slick-next:hover{
	border-color:#20a3f0!important;
	background-color:#20a3f0!important;
}
.blog-list02 .list-date .month,
.blog-list02 .list-linkbox,
.blog-detail02 .detail-date .month,
.blog-detail02 .author-social a:hover,
.blog-detail02 .leave-formlist input[type="submit"]{
	background-color:#20a3f0!important;
}
.blog-detail02 .detail-heading{
	color:#20a3f0!important;
}
.blog-detail02 .leave-formlist input[type="submit"]:hover{
	background-color:#555!important
}
.blog-list02 a:hover .list-linkbox{
	background-color:#333!important;
}
.blog-list02 .blog-page span.index,
.blog-list02 .blog-page a:hover{
	border-color: #20a3f0!important;
	background-color:#20a3f0!important;
}

.blog-list03 .list-btn{
	border-color: #20a3f0!important;
    color: #20a3f0!important;
}
.blog-list03 .list-info a:hover,
.blog-list03 .list-title a:hover,
.blog-detail03 .detail-info a:hover,
.blog-detail03 .detail-relatedlist a:hover,
.blog-detail03 .detail-relatedlist a.more, 
.blog-detail03 .detail-relatedlist a.more:link, 
.blog-detail03 .detail-relatedlist a.more:active, 
.blog-detail03 .detail-relatedlist a.more:visited, 
.blog-detail03 .detail-relatedlist a.more:hover{
	color:#20a3f0!important;
}
.blog-list03 .list-btn:hover{
	color:#FFF!important;
	background-color:#20a3f0!important;
}
.blog-list03 .blog-slider .slick-prev:hover, 
.blog-list03 .blog-slider .slick-next:hover{
	border-color:#20a3f0!important;
	background-color:#20a3f0!important;
}
.blog-list03 .list-date .month,
.blog-list03 .list-linkbox,
.blog-detail03 .detail-date .month,
.blog-detail03 .author-social a:hover,
.blog-detail03 .leave-formlist input[type="submit"]{
	background-color:#20a3f0!important;
}
.blog-detail03 .detail-heading{
	color:#20a3f0!important;
}
.blog-detail03 .leave-formlist input[type="submit"]:hover{
	background-color:#555!important
}
.blog-list03 a:hover .list-linkbox{
	background-color:#333!important;
}
.blog-list03 .blog-page span.index,
.blog-list03 .blog-page a:hover{
	border-color: #20a3f0!important;
	background-color:#20a3f0!important;
}

.blog-timeline .list-btn{
	border-color: #20a3f0!important;
    color: #20a3f0!important;
}
.blog-timeline .list-info a:hover,
.blog-timeline .list-title a:hover,
.blog-timeline-detail .detail-info a:hover,
.blog-timeline-detail .detail-relatedlist a:hover,
.blog-timeline-detail .detail-relatedlist a.more, 
.blog-timeline-detail .detail-relatedlist a.more:link, 
.blog-timeline-detail .detail-relatedlist a.more:active, 
.blog-timeline-detail .detail-relatedlist a.more:visited, 
.blog-timeline-detail .detail-relatedlist a.more:hover{
	color:#20a3f0!important;
}
.blog-timeline .list-btn:hover{
	color:#20a3f0!important;
}
.blog-timeline .blog-slider .slick-prev:hover, 
.blog-timeline .blog-slider .slick-next:hover{
	border-color:#20a3f0!important;
	background-color:#20a3f0!important;
}
.blog-timeline .list-date .month,
.blog-timeline .list-linkbox,
.blog-timeline .blog-date,
.blog-timeline .timeline-left .list-post:after, 
.blog-timeline .timeline-right .list-post:after,
.blog-timeline-detail .detail-date .month,
.blog-timeline-detail .author-social a:hover,
.blog-timeline-detail .leave-formlist input[type="submit"],
.blog-timeline .blog-date:after{
	background-color:#20a3f0!important;
}
.blog-timeline-detail .detail-heading{
	color:#20a3f0!important;
}
.blog-timeline-detail .leave-formlist input[type="submit"]:hover{
	background-color:#555!important
}
.blog-timeline a:hover .list-linkbox{
	background-color:#333!important;
}
.blog-timeline .blog-pagemore{
	background-color:#20a3f0!important;
}

.blog-timeline2 .list-btn{
	border-color: #20a3f0!important;
    color: #20a3f0!important;
}
.blog-timeline2 .list-info a:hover,
.blog-timeline2 .list-title a:hover,
.blog-timeline2-detail .detail-info a:hover,
.blog-timeline2-detail .detail-relatedlist a:hover,
.blog-timeline2-detail .detail-relatedlist a.more, 
.blog-timeline2-detail .detail-relatedlist a.more:link, 
.blog-timeline2-detail .detail-relatedlist a.more:active, 
.blog-timeline2-detail .detail-relatedlist a.more:visited, 
.blog-timeline2-detail .detail-relatedlist a.more:hover{
	color:#20a3f0!important;
}
.blog-timeline2 .list-btn:hover{
	color:#FFF!important;
	background-color:#20a3f0!important;
}
.blog-timeline2 .blog-slider .slick-prev:hover, 
.blog-timeline2 .blog-slider .slick-next:hover{
	border-color:#20a3f0!important;
	background-color:#20a3f0!important;
}
.blog-timeline2 .list-date .month,
.blog-timeline2 .list-linkbox,
.blog-timeline2 .blog-date,
.blog-timeline2 .timeline-left .list-post:after, 
.blog-timeline2 .timeline-right .list-post:after,
.blog-timeline2-detail .detail-date .month,
.blog-timeline2-detail .author-social a:hover,
.blog-timeline2-detail .leave-formlist input[type="submit"],
.blog-timeline2 .blog-date:after,
.blog-timeline2 .list-date:before{
	background-color:#20a3f0!important;
}
.blog-timeline2-detail .detail-heading{
	color:#20a3f0!important;
}
.blog-timeline2-detail .leave-formlist input[type="submit"]:hover{
	background-color:#555!important
}
.blog-timeline2 .list-date:after{
	border-color:#20a3f0!important;
}
.blog-timeline2 a:hover .list-linkbox{
	background-color:#333!important;
}
.blog-timeline2 .blog-pagemore{
	background-color:#20a3f0!important;
}

/*Page*/

/*Page*/
.aboutus01-title1 h3, 
.aboutus01-title2 h3,
.aboutus01-title1 ul li span.fa,
.aboutus01-ibox02.photo_box .ico span,
.tab_list li span,
.aboutus02-testimonials01 small,
.service01-ibox .service01-ibox_main em.fa,
.service02-carousel .blockquote_6 .ico,
.ourteam02-ibox h6,
.detail01-Testimonials .mark,
.detail01-chart .percentage4,
.detail02_box h4,
.faq02-Testimonials blockquote .main h2,
.faq02-chart .faq02-percentage,
.pricing01-list li:hover a, 
.pricing01-list li:hover .fa,
.pricing02-price .unit,
.pricing02-price .price_holder ul li span.fa,
.pricing-full .pricing-full_right .pricing-full_right_main h3,
.pricing02-title1 h3,
.three404-list li .fa,
.four404-list02 li span.fa,
.four404-box a:hover.four404-bnt,
.four404-box .four404-input > a .fa,
.history02-title01,
.history02 ul li em,
.history03-content .accent_text,
.history03-tree_middle em.fa,
.contactus02-out h3,
.Theme_Responsive_20073_ContactUs02 .form_submit input,
a:hover.faq02-bnt{
	color:#20a3f0;
}
[class*="dg-tabs-"] h2.resp-tab-active, 
[class*="dg-tabs-"] h2.resp-tab-active:hover,
.aboutus01-testimonials .last_page:hover, 
.aboutus01-testimonials .next_page:hover,
.aboutus01-title2 .img .the4,
.aboutus01-ibox .ico,
.aboutus01-ibox02.photo_box:hover .shade,
.aboutus02-title01 h2:before,
.aboutus02-bnt,
.aboutus02-bg02,
.aboutus02-title3 h2:before,
.aboutus02-testimonials01 .dot a.actived,
.aboutus02-carouse .photo_box .ico span,
.service01-full .service01-full_right,
.service01-ibox02 em.fa,
.service01-tab ul.resp-tabs-list li.resp-tab-active,
.service01-imgbox .service01-imgcon .photo_box .shade,
.service02-bg02,
.service02-carousel .owl-page:hover, 
.service02-carousel .owl-page.active,
.ourteam01-bg03,
.ourteam01-ibox .fa,
.ourteam02-ibox .photo_box em.fa,
.ourteam02-ibox .photo_box .shade,
.detail01-isotope .ico span,
a.pricing01-bnt02:hover, 
a.pricing01-bnt:hover,
.detail02_box ul li a:hover,
.detail02-bg01 > .top-icon, 
.detail02-bg01 > .bottom-icon, 
.detail-bottom-icon > .bottom-icon, 
.detail-bottom-icon .top-icon,
.detail02-list .date:before,
.detail02-carousel .item:hover h3,
.detail02-carousel .owl-page.active,
div.Theme_Responsive_20073_TeamDetails2 .form_submit inpu,
.faq01-Testimonials .faq_list dt:before,
.faq01-Testimonials .dot a:hover, 
.faq01-Testimonials .dot a.actived,
.faq-text .icon,
a.ourteam-bnt, 
a:link.ourteam-bnt,
a:active.ourteam-bnt, 
a:visited.ourteam-bnt,
.detail02-bg01 > .top-icon, 
.detail02-bg01 > .bottom-icon, 
.detail-bottom-icon > .bottom-icon, 
.detail-bottom-icon .top-icon,
.detail02-list .date:before,
.detail02-carousel .item:hover h3,
.detail02-carousel .owl-page.active,
.faq02-ibox .faq02-ibox_left_top .main h3 em.fa, 
.faq02-ibox .faq02-ibox_left_bottom .main h3 em.fa, 
.faq02-ibox .faq02-ibox_right_top .main h3 em.fa, 
.faq02-ibox .faq02-ibox_right_bottom .main h3 em.fa,
.faq02-Testimonials blockquote .main a,
.faq02-accordion .panel-default .accordion_icon,
.pricing01-ibox .ico,
.pricing02-price .price_title em.fa,
.pricing02-price .price_title .line,
.pricing02-price a.btn,
.pricing02-title1 a.links:hover,
.pricing02-ibox .icon em.fa,
div.Theme_Responsive_20073_TeamDetails2 .form_submit input,
.contactus01-ibox .fa,
div.Theme_Responsive_20073_Contact01 .form_submit .btn,
.contactus02-info > span.fa,
.contactus02-title01 h2::before,
.contactus02-ibox .social_list_10 span,
.contactus02-bg02,
.three404-input .btn,
a.three404-bnt, 
a:link.three404-bnt, 
a:active.three404-bnt, 
a:visited.three404-bnt,
.four404-list li:before,
a.history01-bnt, 
a:link.history01-bnt, 
a:active.history01-bnt, 
a:visited.history01-bnt,
.history-box .history-boxmore:hover, 
.history-box .history-boxgotop:hover,
a.history02-bnt, 
a:link.history02-bnt, 
a:active.history02-bnt, 
a:visited.history02-bnt,
.history03-title .line,
.clients-title01 h2:before,
.carousel .owl-buttons .owl-prev:hover, 
.carousel .owl-buttons .owl-next:hover,
.aboutus02-tit2:before,
.contactus02-bg01 .bg_right:before,
.carousel .owl-page.active{
	background-color:#20a3f0;
}
.service01-tab ul.resp-tabs-list li.resp-tab-active:before,
.contactus02-bg02 .contactus02-text:after,
.aboutus02-tab01 ul.resp-tabs-list li.resp-tab-active{
	border-top-color:#20a3f0;
}
.history-box .history-boxmain .history-boxcontent:before{
	border-right-color:#20a3f0;
}
.ourteam01-ibox{
	border-bottom-color:#20a3f0;
}
.aboutus02-meetteam .team_member:hover,
.ourteam01-title1 h4:before,
.ourteam01-title1 h4:after,
.service02-carousel .blockquote_6 .ico:before, 
.blockquote_6 .ico:after,
.detail01-Testimonials .dot a.actived,
.detail01-ibox li h3:after,
.faq02-accordion .panel-heading + .panel-collapse .panel-body,
.pricing01-ibox,
.Contactus01-Container01 .Contactus01-heading01:before,
.Contactus01-Container01 .Contactus01-heading01:after,
.history-top img,
.history-box .history-boxmain .history-boxdate,
.history-box .history-boxmain .history-boxcontent,
.history02-carouse02 .owl-buttons .owl-prev:hover:before, 
.history02-carouse02 .owl-buttons .owl-next:hover:before,
.history02 .time_box_left h3:before{
	border-color:#20a3f0;
}
.pricing01-ibox .ico:before{
	border-left-color:#20a3f0;
	border-top-color:#20a3f0;
}
a.aboutus01-bnt:hover,
a.pricing01-bnt:hover{
	border-color:#20a3f0;
	background-color:#20a3f0;
}
.two404-bg01 a.two404-bnt,
.four404-box a.four404-bnt{
	font-family:Verdana, Geneva, sans-serif;
	border-color:#20a3f0;
	background-color:#20a3f0;
}
.ourteam01-dropcaps,
.pricing01-bnt02,
a.pricing01-bnt02, 
a:link.pricing01-bnt02, 
a:active.pricing01-bnt02, 
a:visited.pricing01-bnt02,
.detail01-ibox li span,
.pricing02-title1 a.links,
.contactus01-ibox02 li .fa,
div.Theme_Responsive_20073_Contact01 .form_submit .btn:hover{
	color:#20a3f0;
	border-color:#20a3f0;
}



/*Short Codes*/
/*lightbox*/
.lightbox-title:after{
    border-bottom-color:#20a3f0;
}
.lightbox-photo .photo > .fa,
.lightbox-photo .photo > .icon .fa{
	background-color:#20a3f0;
}

/*alert*/
.dg-alert01,
.ibox-title:after, 
.ibox-title02:after,
.dg-alert03.alert-accent .icon,
.dg-alert05.alert-accent,
.alertpage-title:after{
    border-color: #20a3f0;
}
.dg-alert01.alert-accent,
.dg-alert03.alert-accent,
.dg-alert05.alert-accent .close {
    border-color: #20a3f0;
    color: #20a3f0;
}
.dg-alert02.alert-accent,
.dg-alert04.alert-accent,
.dg-alert05.alert-accent .icon,
.dg-alert06.alert-accent{
	background-color:#20a3f0;
}

/*thumbnail*/
.thumbnail-title h3:after,
.thumbnail-title02:after{
    border-color: #20a3f0;
}
.dg-thumbnail .thumb-box em, 
.dg-thumbnail .thumb-box i, 
.dg-thumbnail .thumb-box .fa,
.dg-thumbnail .switcher input[type="checkbox"]:checked + label{
	background-color:#20a3f0;
}
.dg-thumbnail .brand a:hover span{
    color: #20a3f0;
}
/*list*/
.list-ordened li:before, 
.list-ordened2 li:before, 
.list-ico .fa, 
.list-ico2 .fa, 
.list-ico3 .fa, 
.list-ico .lnr, 
.list-ico2 .lnr, 
.list-ico3 .lnr, 
.list-ico .glyphicon, 
.list-ico2 .glyphicon, 
.list-ico3 .glyphicon{
    color: #20a3f0;
}
.list-ordened2 li:before,
.list-ico2 .fa, 
.list-ico2 .lnr, 
.list-ico2 .glyphicon{
    border-color: #20a3f0;
}
.list-ordened3 li:before,
.list-ico3 .fa, 
.list-ico3 .lnr, 
.list-ico3 .glyphicon{
	background-color:#20a3f0;
}

/*Dividers*/
.dividers-06:before,
.dividers-06 span,
.dividers-06:after,
.dividers-08{
    border-top-color:#20a3f0;
}

/*icon-box*/
.dg-ibox04 .btn{
	border-color:#20a3f0;
	color:#20a3f0;
}
.dg-ibox04 .btn:hover{
	background-color:#20a3f0;
}
.dg-ibox13 .more:before{
	border-left-color:#20a3f0;
}
.dg-ibox35:before{
	border-top-color:#20a3f0;
}

/*Promo-Boxes*/
.promopage-title:after,
.promo-content .line{
	border-color:#20a3f0;
}
/*breadcrumb*/
.breadcrumb a:hover,
.breadcrumb .dropdown:hover,
.breadcrumb.bg-default li a:hover,
.breadcrumb.bg-default li .dropdown:hover,
.breadcrumb.bg-default li.right .dropdown:hover{
	color:#20a3f0;
}

/*soon*/
.dg-soon-cap-round .soon-label{
	color:#20a3f0;
}


/*price*/

.dg-price01 .color-1 .price-title,
.dg-title25 .line:before, 
.dg-title25 .line:after,
.dg-price02 .price-border:hover, 
.dg-price02 .price-border.best-value,
.dg-price07 .price-box .price-pad,
.dg-price08 .price-box,
.dg-price10 .btn:hover,
.dg-price11 .price-title,
.dg-price11 .btn:hover,
.dg-price15 .price-border:hover .price-title em.fa, 
.dg-price15 .price-border:hover .price-box, 
.dg-price18 .price-border,
.dg-price20 .best-value .price-title,
.dg-price20 .price-border:hover .price-title,
.dg-price21 .price-box,
.dg-price24 .price-border:hover .price-title,
.dg-price27 .price-border:hover .price-title,
.dg-price28 .price-border:hover .price-title, 
.dg-price26 .price-border:hover .price-title, 
.dg-price26 li:hover,
.dg-price06 .color-2 .price-title, 
.dg-price06 .color-2 .price-box,
.dg-price09 .color-2 .price-title,
.dg-price12 .price-box,
.dg-price13 .price-border:hover, 
.dg-price13 .price-border.color-1:hover, 
.dg-price13 .price-border.color-2:hover, 
.dg-price13 .price-border.color-3:hover,
.dg-price13 .price-border,
.dg-price14 .price-border .price-title{
	background-color:#20a3f0;
}
.dg-title25 .line,
.dg-price07 .price-border,
.dg-price07 .price-box,
.dg-price07 .price-border,
.dg-price23,
.dg-price27 .btn,
.dg-price27 .price-border:hover, 
.dg-price29 .price-border,
.dg-price05 .color-2.best-value, 
.dg-price05 .color-2:hover,
.dg-price12 .price-border.color-3:hover,
.dg-price09 .color-2.price-border:hover,
.dg-price02 .price-border:hover{
	border-color:#20a3f0;
}
.dg-price01 .color-1 .price-box .sup, 
.dg-price01 .color-1 .price-box .price,
.dg-price03 .price-title h2,
.dg-price03 .price-holder .fa,
.dg-price03 .price-title h6,
.dg-price03 .btn,
.dg-price05 .color-2 .price-title,
.dg-price10 .price-box,
.dg-price15 .price-title em.fa,
.dg-price15 .price-title h2,
.dg-price15 .price-box,
.dg-price20 .price-holder:hover li:before,
.dg-price20 .best-value .price-holder li:before,
.dg-price21 .price-border:hover .btn,
.dg-price23 .price-box,
.dg-price25 .price-title h2,
.dg-price25 .price-box .sup, 
.dg-price25 .price-box .price,
.dg-price29 .price-box,
.dg-price28 .price-border:hover .price-holder ul li em,
.dg-price29 .price-holder .fa,
.dg-price07 .price-title h2,
.dg-price09 .price-box,
.dg-price14 .price-box .sup,
.dg-price14 .price-box .price{
	color:#20a3f0;
}
.dg-price03 .dg-btn-1{
	color:#20a3f0!important;
}
.dg-price07 .btn{
	background-color:#20a3f0;
	border-color:#20a3f0;
}
.dg-price20 .price-popular,
.dg-price23 .price-title em{
	color:#20a3f0;
	border-color:#20a3f0;
}

/* ProgressBars-Counters */
.chart-list02 .list-percentage2 .percentage_inner,
.chart-list04 .list-percentage4 .percentage_inner,
.chart-list05 .list-percentage5,
.chart-list07 .list-percentage7 .percentage_inner,
.chart-list08 .list-percentage8,
.chart-list08 .list-percentage8 .percentage_inner,
.chart-list09 .list-percentage9,
.chart-list10 .list-percentage10,
.chart-list02 .list-percentage2,
.chart-list04 .list-percentage4,
.chart-list07 .list-percentage7{
	color:#20a3f0;
}
.loaded-title:before{
	border-color:#20a3f0;
}
.loaded-list04 .bar,
.loaded-list05 .bar,
.loaded-list10 .progress-bar,
.loaded-list09 .progress .progress-bar,
.loaded-list08 .progress .progress-bar{
	background-color:#20a3f0;
}

/*Testimonials*/
.Testimonials02-tab .last_page:hover, 
.Testimonials02-tab .next_page:hover {
	border-left-color: #20a3f0;
	border-bottom-color: #20a3f0;
}
.Testimonials03-tab blockquote h2 {color: #20a3f0;}
.Testimonials03-tab .dot a.actived,
.Testimonials05-tab .dot a.actived,
.Testimonials08-tab .dot a.actived,
.Testimonials09-tab .dot a.actived {
	background-color: #20a3f0;
}
.testimonials-title01 h2:before {background-color: #20a3f0;}
.Testimonials04-tab .last_page:hover:before {
	border-top-color: #20a3f0;
	border-left-color: #20a3f0;
}
.Testimonials04-tab .next_page:hover:before {
	border-right-color: #20a3f0;
	border-bottom-color: #20a3f0;
}
.Testimonials05-tab blockquote p {border-top-color: #20a3f0;}
.Testimonials06-tab blockquote p:before {border-top-color: #20a3f0;}
.Testimonials06-tab blockquote p {border-bottom-color: #20a3f0;}
.Testimonials06-tab .last_page:hover:before {
	border-top-color: #20a3f0;
	border-left-color: #20a3f0;
}
.Testimonials06-tab .next_page:hover:before {
	border-right-color: #20a3f0;
	border-bottom-color: #20a3f0;
}
.Testimonials07-tab .last_page:hover, 
.Testimonials07-tab .next_page:hover {
	border-color: #20a3f0;
	background-color: #20a3f0;
}
.image_more_info span {background-color: #20a3f0 !important;}
h2.Testimonials10-tab-title {color: #20a3f0;}





/*Responsive Tab*/
.dg-tabs-top06 ul.resp-tabs-list li.resp-tab-active, 
.dg-tabs-top09 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top09 ul.resp-tabs-list li.resp-tab-active:hover,
.dg-tabs-top20 .resp_margin h2, 
.dg-tabs-left19 .resp_margin h2,
.tab_list02 li span,
.dg-tabs-left08 ul.resp-tabs-list li.resp-tab-active{
	color:#20a3f0;
}

.dg-tabs-top01 ul.resp-tabs-list li:hover, 
.dg-tabs-top01 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top09 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-bottom03 ul.resp-tabs-list li.resp-tab-active span{
	border-bottom-color:#20a3f0;
}
.dg-tabs-top03 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top04 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top05 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top06 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top09 ul.resp-tabs-list li.resp-tab-active:before,
.dg-tabs-top06 ul.resp-tabs-list li.resp-tab-active:before,
.dg-tabs-top12 ul.resp-tabs-list li.resp-tab-active:before,
.dg-tabs-top13 ul.resp-tabs-list li.resp-tab-active:before,
.dg-tabs-top20 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-bottom04 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top21 ul.resp-tabs-list li.resp-tab-active:before,
.dg-tabs-top22 ul.resp-tabs-list li.resp-tab-active:before{
	border-top-color:#20a3f0;
}
.dg-tabs-left01 ul.resp-tabs-list li.resp-tab-active span,
.dg-tabs-left08 ul.resp-tabs-list li.resp-tab-active:before{
	border-right-color:#20a3f0;
}
.dg-tabs-left02 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left03 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left05 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left05 ul.resp-tabs-list li.resp-tab-active:before,
.dg-tabs-left11 ul.resp-tabs-list li.resp-tab-active:before,
.dg-tabs-left12 ul.resp-tabs-list li.resp-tab-active:before,
.dg-tabs-left13 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left14 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left19 ul.resp-tabs-list li.resp-tab-active{
	border-left-color:#20a3f0;
}
.dg-tabs-bottom01 .resp-tabs-container,
.dg-tabs-bottom02 .resp-tabs-container,
.dg-tabs-bottom02 ul.resp-tabs-list li span,
.dg-tabs-bottom02 ul.resp-tabs-list li,
.dg-tabs-left17 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left17 ul.resp-tabs-list li.resp-tab-active{
	border-color:#20a3f0;
}
.dg-tabs-top07 ul.resp-tabs-list li:hover,
.dg-tabs-top08 ul.resp-tabs-list li:hover,
.dg-tabs-top09 ul.resp-tabs-list li:hover,
.dg-tabs-top10 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top11 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top11 .resp-tabs-container,
.dg-tabs-top12 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top13 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top16 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top17 ul.resp-tabs-list li:hover,
.dg-tabs-top18 ul.resp-tabs-list li:hover,
.dg-tabs-top19 ul.resp-tabs-list li:hover,
.dg-tabs-bottom01 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-bottom02 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top20 .resp_margin .line, 
.dg-tabs-left19 .resp_margin .line,
.dg-tabs-bottom04 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top21 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top22 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left09  ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left10 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left10 .resp-tabs-container,
.dg-tabs-left11 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left12 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left15 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left16 ul.resp-tabs-list li:hover,
.dg-tabs-left18 ul.resp-tabs-list li:hover,
.dg-tabs-left18 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-bottom03 ul.resp-tabs-list li:hover span{
	background-color:#20a3f0;
}

/*Accordions*/
.dg-accordion01 .panel-heading .panel-title a,
.dg-accordion01 .panel-heading .panel-title a:hover, 
.dg-accordion01 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion03 .panel-heading .panel-title a:hover, 
.dg-accordion03 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion03 .panel-heading .panel-title a,
.dg-accordion05 .panel-heading .panel-title a:hover, 
.dg-accordion05 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion05 .panel-heading .panel-title a,
.dg-accordion06 .panel-heading .panel-title a:hover, 
.dg-accordion06 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion06 .panel-heading .panel-title a,
.dg-accordion07 .panel-heading .panel-title a:hover, 
.dg-accordion07 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion08 .panel-heading .panel-title a:hover, 
.dg-accordion08 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion08 .panel-heading .panel-title a,
.dg-accordion07 .panel-heading .panel-title a,
.dg-accordion09 .panel-heading .panel-title a:hover, 
.dg-accordion09 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion10 .panel-heading .panel-title a:hover, 
.dg-accordion10 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion09 .panel-heading .panel-title a,
.dg-accordion10 .panel-heading .panel-title a,
.dg-accordion11 .panel-heading .panel-title a:hover, 
.dg-accordion11 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion12 .panel-heading .panel-title a:hover, 
.dg-accordion12 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion11 .panel-heading .collapsed:hover .arrow:before,
.dg-accordion12 .panel-heading .panel-title a,
.dg-accordion12 .panel-heading .arrow,
.dg-accordion11 .panel-heading .arrow,
.dg-accordion11 .panel-heading .panel-title a,
.dg-accordion13 .panel-heading .panel-title a:hover, 
.dg-accordion13 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion13 .panel-heading .arrow,
.dg-accordion13 .panel-heading .panel-title a,
.dg-accordion13 .panel-heading .collapsed:hover .arrow:before,
.dg-accordion14 .panel-heading .panel-title a:hover,
.dg-accordion14 .panel-heading .panel-title a:hover, 
.dg-accordion14 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion14 .panel-heading .collapsed:hover .arrow:before,
.dg-accordion15 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion15 .panel-heading .collapsed:hover .arrow:before,
.dg-accordion16 .panel-heading .panel-title a,
.dg-accordion16 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion17 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion18 .panel-heading .arrow,
.dg-accordion18 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion19 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion20 .panel-heading .panel-title a,
.dg-accordion20 .panel-heading .panel-title a.collapsed:hover{
	color:#20a3f0;
}
.dg-accordion01 .panel-heading .arrow,
.dg-accordion01 .panel-heading .collapsed:hover .arrow,
.dg-accordion02 .panel-heading .panel-title a:before,
.dg-accordion03 .panel-heading .collapsed:hover .arrow,
.dg-accordion03 .panel-heading .arrow,
.dg-accordion04 .panel-heading .panel-title strong:before,
.dg-accordion04 .panel-heading .arrow,
.dg-accordion08:before,
.dg-accordion16 .panel-heading .panel-title a:before,
.dg-accordion17 .panel-heading .collapsed:hover .arrow{
	border-color:#20a3f0;
}
.dg-accordion02 .panel-heading .panel-title a,
.dg-accordion02 .panel-heading .panel-title a:hover, 
.dg-accordion02 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion05 .panel-heading .arrow,
.dg-accordion05 .panel-heading .collapsed:hover .arrow,
.dg-accordion08 .panel-default>.panel-heading:before,
.dg-accordion07 .panel-heading .arrow,
.dg-accordion07 .panel-heading .collapsed:hover .arrow,
.dg-accordion12 .panel-heading .arrow,
.dg-accordion14 .panel-heading .panel-title a,
.dg-accordion15 .panel-heading .panel-title a,
.dg-accordion18 .panel-collapse,
.dg-accordion18 .panel-heading .panel-title a,
.dg-accordion18 .panel-heading .collapsed:hover .arrow,
.dg-accordion19 .panel-heading .collapsed:hover .arrow,
.dg-accordion20 .panel-heading .arrow,
.dg-tabs-top10  .resp-tabs-container{
	background-color:#20a3f0;
}
.dg-accordion06 .panel-heading .arrow,
.dg-accordion06 .panel-heading .collapsed:hover .arrow{
	border-left-color:#20a3f0;
}
.dg-accordion17 .panel-heading .panel-title a{
	background-color:#20a3f0;
	border-color:#20a3f0;
}
.dg-accordion11 .panel-heading .panel-title a:before,
.dg-accordion13 .panel-heading .panel-title a:before,
.dg-accordion18 .panel-heading .arrow:before {
	background: #20a3f0;
}
.dg-accordion14 .panel-heading .panel-title .number {
	border-right-color: #20a3f0;
}
.dg-accordion04 .panel-heading .panel-title a:hover .arrow {
	border-right-color: #20a3f0;
	border-bottom-color: #20a3f0;
}
.dg-accordion04 .panel-heading .panel-title a:hover {
	color: #20a3f0;
}


/*Animated*/
.animat-col01 li.color-01,
.animat-col05 li:hover,
.animat-col06{
	background-color:#20a3f0;
}
.animat-col-title:after,
.animat-col04 h3:before{
	border-color:#20a3f0;
}
.animat-col04,
.animat-col05 li{
	color:#20a3f0;
}
.Animatedcolumns-title01 h2:before {background-color: #20a3f0;}
.animat-col01 li.color-01 .box .btn:hover {color: #20a3f0 !important;}
.animat-col05 li .fa {color: #20a3f0;}

/*Flip-Box*/
.flip-box02 .back,
.flip-box04 .back,
.flip-box04 .back,
.flip-box06 .back,
.flip-box08 .back,
.flip-box03 .front:after,
.flip-box01 .back .hover-darkturquoise:hover{
	background-color:#20a3f0;
}
.flip-box06 .front .v-center > h3,
.flip-box03 .front .fa,
.flip-box02 .size-lg,
.flip-box04 .btn-danger{
	color:#20a3f0;
}
.flip-box08 .front .fa{
	color:#20a3f0;
	border-color:#20a3f0;
}
.flip-box03 .back,
.flip-box01 .back .hover-darkturquoise:hover{
	border-color:#20a3f0;
}

/*Clients*/
.clients-title:after,
.clients-carousel01 .img_box:hover,
.clients-carousel02 .img_box:hover,
.clients-title03 h3:after,
.clients-list04 li:before,
.clients-list06 li:before,
.clients-list06{
	border-color:#20a3f0;
}
.clients-carousel01 .img_box:before{
	border-bottom-color:#20a3f0;
}
.clients-title02 h3,
.clients-title03 h6{
	color:#20a3f0;
}
.clients-carousel01 .owl-page.active,
.clients-carousel03 .img_box:hover,
.clients-list04 li:after,
.clients-list07 li:hover,
.clients-bnt01 a, 
.clients-bnt01 a:link{
	background-color:#20a3f0;
}
/*Image Box*/
.imgbox01:hover,
.imgbox03:hover, 
.imgbox03:hover .imgbox03-con .btn,
.imgbox04:hover img,
.dg-title23 .line{
	border-color:#20a3f0;
}
.dg-title23 .line:after,
.imgbox02:hover,
.imgbox05:hover .btn,
.imgbox07:hover .imgbox07-icon span,
.imgbox10 .btn{
	background-color:#20a3f0;
}
.imgbox03:hover .imgbox03-con .btn,
.imgbox05:hover .imgbox05-con h3,
.imgbox10:hover .btn{
	color:#20a3f0;
}
.imgbox08 .imgbox08-con .btn:hover,
.imgbox10:hover{
	border-color:#20a3f0;
	background-color:#20a3f0;
}
.imagebox-title01 h2:before {background-color: #20a3f0;}
.imgbox03 .imgbox03-con [class*="dg-btn-"].hover-borland:hover {
	border-color: #20a3f0;
	background-color: #20a3f0;
}
.imgbox04 img {border-color: #20a3f0;}
.imgbox04:hover .imgbox04-con h3 {color: #20a3f0;}
.imgbox05:hover .imgbox05-con a[class*="btn"] {background: #20a3f0;}
.imgbox06:hover .imgbox06-con a.btn {color: #20a3f0;}
.imgbox07:hover .imgbox07-con h3 {color: #20a3f0;}
.imgbox08 .imgbox08-con > a[class*="btn"]:hover {border-color: #20a3f0;background: #20a3f0;}





/*icon box*/
[class*="dg-iconbox"]:hover .dg-ico02, 
[class*="dg-iconbox"]:hover .dg-ico02.fa,
[class*="dg-iconbox"]:hover .dg-ico08, 
[class*="dg-iconbox"]:hover .fa.dg-ico08,
[class*="dg-iconbox"]:hover .dg-ico10:after,
[class*="dg-iconbox"]:hover .dg-ico11:after,
.dg-iconbox12:hover{
    background-color: #20a3f0;
}
[class*="dg-iconbox"]:hover .dg-ico03, 
[class*="dg-iconbox"]:hover .dg-ico03.fa,
[class*="dg-iconbox"]:hover .dg-ico11:after,
[class*="dg-iconbox"]:hover .dg-ico13{
	color: #20a3f0;
    border-color: #20a3f0;
}
[class*="dg-iconbox"]:hover .dg-ico04 .hexagon, 
[class*="dg-iconbox"]:hover .dg-ico04 .hexagon:before, 
[class*="dg-iconbox"]:hover .dg-ico04 .hexagon:after,
.dg-ico01, 
.dg-ico01.fa,
.dg-iconbox13:hover{
    border-color: #20a3f0;
    background-color: #20a3f0;
}
.dg-ico05.accent,
.dg-iconbox05 h3,
.dg-iconbox07:hover .dg-ico05,
.dg-iconbox07:hover h3,
.dg-iconbox10:hover h3,
.dg-iconbox11 h3,
.dg-iconbox06 h3{
	color: #20a3f0;
}
[class*="dg-iconbox"]:hover .dg-ico10, 
[class*="dg-iconbox"]:hover .dg-ico10.fa,
[class*="dg-iconbox"]:hover .dg-ico11,
.dg-iconbox04:hover [class*="dg-ico"] .left-line,
.dg-iconbox05 h3:after,
.dg-iconbox08:after,
.dg-iconbox10:hover,
.dg-iconbox11 h3:after,
.dg-iconbox06 h3:after{
    border-color: #20a3f0;
}
.dg-iconbox05,
.dg-iconbox07,
.dg-iconbox09{
    border-top-color: #20a3f0;
}
/*Mini-callout-box-ornamental-title*/
.dg-title01 h3,
.dg-title06 h3,
.dg-title07 h3,
.dg-title09 h3,
.dg-title13 .icon,
.dg-title32 .fa{
	color:#20a3f0;
}
.dg-title06 h3:before,
.dg-title07 h3:before, 
.dg-title07 h3:after,
.dg-title09 h3:before,
.dg-title26 h3,
.dg-title28 h3:before,
.dg-title30:after{
	border-color:#20a3f0;
}
.dg-title08 h3,
.dg-title21 h3:before, 
.dg-title21 h3:after{
	background-color:#20a3f0;
}

/*player boxes */
.video-bg .player_line{
	border-color:#20a3f0;
}
.player_boxes .btn {
	background-color:#20a3f0;
}
/*simpleanchor */
#simpleanchor a:hover,
#simpleanchor .active a{
    color: #20a3f0;
    border-left-color:#20a3f0;
}
/*OurTeam*/
.ourteam-short .owl-item:hover .teamshort-img img,
.ourteam-short.carousel .owl-buttons .owl-prev:hover, 
.ourteam-short.carousel .owl-buttons .owl-next:hover,
.ourteam-short16:hover{
	border-color:#20a3f0;
}
.ourteam-short .owl-buttons .owl-prev:hover:before, 
.ourteam-short .owl-buttons .owl-next:hover:before {
    border-left: 1px solid #20a3f0;
    border-bottom: 1px solid #20a3f0;
}
.ourteam-short06 h2:before {
    border-right: 8px solid #20a3f0; 
}
.ourteam-short06 h2:after {
    border-left: 8px solid #20a3f0; 
}
.ourteam-short .owl-buttons .owl-next:hover:before {
    border-left: none;
    border-right: 1px solid #20a3f0;
}
.ourteam-short12 .text-style h2:before {
    border-top: 42px solid #20a3f0;
}
.ourteam-bg:before { 
    border-left: 1px solid #20a3f0;
}
.ourteam-short02 .social em:hover,
.ourteam-short03 .photo_box .ico i:before,
.ourteam-short06 .social em:hover,
.ourteam-short10 span,
.ourteam-short13:hover h2,
.ourteam-short20 .teamshort-r span,
.ourteam-short21 .teamshort-r span,
.ourteam-short22 .teamshort-r span,
.ourteam-short23 .teamshort-r span,
.ourteam-short05 .photo_box .content >.fa:hover{
    color: #20a3f0;
}
.ourteam-short05 .ourteam-img:hover {
    border-bottom: 13px solid #20a3f0;
}
.ourteam-short04 .photo_box .content >.fa:hover,
.ourteam-short06 h2,
.ourteam-short07:hover,
.ourteam-short08 .photo_box .shade,
.ourteam-short09 .photo_box .shade,
.ourteam-short11 .text-style .social,
.ourteam-short12 .text-style h2,
.ourteam-short12 .text-style .social em,
.ourteam-short16 .social em:hover,
.ourteam-short17:hover .social,
.ourteam-short18:hover .text-style, 
.ourteam-short18:hover p,
.ourteam-short19 .photo_box:hover .text-style,
.ourteam-short20 .social em,
.ourteam19-line,
.ourteam-short21 .social em:hover,
.ourteam-short22:hover{
	background-color:#20a3f0;
}








 /*Menu Style*/


	/*HoverStyle_3*/
	#dnngo_megamenu > div.dnngo_gomenu > ul > li{
		margin-left:2px;
	}
	#dnngo_megamenu > div.dnngo_gomenu > ul > li > a > span {
		padding: 0px 2px;
		border-radius:3px;
		-moz-border-radius:3px;
		-webkit-border-radius:3px;
	}
	#dnngo_megamenu > div > ul > li:hover > a > span,
	#dnngo_megamenu > div > ul > li.current > a > span,
	#dnngo_megamenu > div > ul > li.menu_hover > a > span {
		background-color:#919191;
	}
	.roll_menu.roll_activated #dnngo_megamenu > div > ul > li:hover > a > span,
	.roll_menu.roll_activated #dnngo_megamenu > div > ul > li.current > a > span,
	.roll_menu.roll_activated #dnngo_megamenu > div > ul > li.menu_hover > a > span {
		background-color:#20a3f0; 
	}

	@media only screen and (min-width: 1200px) {
		#dnngo_megamenu > div.dnngo_gomenu > ul > li > a > span{
			padding: 0px 6px;
		}
	}
	@media only screen and (min-width: 1600px) {
		#dnngo_megamenu > div.dnngo_gomenu > ul > li > a > span{
			padding: 0px 9px;
		}
	}
	@media only screen and (min-width: 768px) and (max-width: 991px) {
		#dnngo_megamenu > div.dnngo_gomenu > ul > li > a > span{
			padding: 0px 1px;
		}
	}


	#dnngo_megamenu ul,
	.multi_menu,
	.nav_box{
		font-family: "IRANSans Bold";
	}
	#dnngo_megamenu > div > ul {
		display: inline-block;
		vertical-align: middle;
	}
	*+html #dnngo_megamenu > div > ul {
		display: inline;
	}
	#dnngo_megamenu > div > ul > li {
		background: none;
		padding:3px 0 3px;
		transition: 		border-color ease-in 200ms;
		-moz-transition: 	border-color ease-in 200ms; /* Firefox 4 */
		-webkit-transition: border-color ease-in 200ms; /* Safari and Chrome */
		-o-transition: 		border-color ease-in 200ms; /* Opera */
		-ms-transition: 	border-color ease-in 200ms; /* IE9? */
	}
	#dnngo_megamenu > div > ul > li > a {
		line-height: 39px;
		transition: 			all ease-in 200ms,line-height 0ms;
		-webkit-transition: 	all ease-in 200ms,line-height 0ms; /* Safari and Chrome */
	}
	#dnngo_megamenu > div > ul > li > a > span {
		font-size: 13px;
		text-transform:capitalize;
		font-weight:bold;
		transition: color ease-in 200ms,background ease-in 200ms,border ease-in 200ms;
		-moz-transition: color ease-in 200ms,background ease-in 200ms,border ease-in 200ms; /* Firefox 4 */
		-webkit-transition: color ease-in 200ms,background ease-in 200ms,border ease-in 200ms; /* Safari and Chrome */
		-o-transition: color ease-in 200ms,background ease-in 200ms,border ease-in 200ms; /* Opera */
		-ms-transition: color ease-in 200ms,background ease-in 200ms,border ease-in 200ms; /* IE9? */
	}
	#dnngo_megamenu > div > ul > li.dir > a > span:after {
		content: "";
		height: 5px;
		width: 5px;
		overflow: hidden;
		margin: 0 0px 3px 6px;
		display: inline-block;
		vertical-align: middle;
		transform: rotate(45deg);
		-ms-transform: rotate(45deg); /* IE 9 */
		-moz-transform: rotate(45deg); /* Firefox */
		-webkit-transform: rotate(45deg); /* Safari and Chrome */
		-o-transform: rotate(45deg); /* Opera */
		transition: all ease-in 200ms;
		-moz-transition: all ease-in 200ms; /* Firefox 4 */
		-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
		-o-transition: border ease-in 200ms; /* Opera */
		-ms-transition: border ease-in 200ms; /* IE9? */
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
	}
	
	#dnngo_megamenu > div > ul > li > a > span {
		color: #2e2e2e;
	}
	#dnngo_megamenu > div > ul > li.dir > a > span:after {
		border-bottom: 1px solid #2e2e2e;
		border-right: 1px solid #2e2e2e;
	}
	
	#dnngo_megamenu > div > ul > li.dir:hover > a > span:after,
	#dnngo_megamenu > div > ul > li.dir.current > a > span:after,
	#dnngo_megamenu > div > ul > li.dir.menu_hover > a > span:after {
		border-bottom: 1px solid #2e2e2e;
		border-right: 1px solid #2e2e2e;
	}
	#dnngo_megamenu > div > ul > li > a > span > i {
		color:#FFFFFF;
		font-size:16px;
	}
	#dnngo_megamenu > div > ul > li:hover > a > span,
	#dnngo_megamenu > div > ul > li.current > a > span,
	#dnngo_megamenu > div > ul > li.menu_hover > a > span,
	#dnngo_megamenu > div > ul > li > a:hover > span > i,
	#dnngo_megamenu > div > ul > li.menu_hover > a > span > i,
	#dnngo_megamenu > div > ul > li.current > a > span > i{
		color: #2e2e2e;
	}

/*Sub Menu Style*/
#dnngo_megamenu .dnngo_slide_menu li a{
	padding-left:2px;
}
@media only screen and (min-width: 1200px) {
	#dnngo_megamenu .dnngo_slide_menu li a{
		padding-left:6px;
	}
}
@media only screen and (min-width: 1600px) {
	#dnngo_megamenu .dnngo_slide_menu li a{
		padding-left:9px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	#dnngo_megamenu .dnngo_slide_menu li a{
		padding-left:1px;
	}
}

#dnngo_megamenu .dnngo_slide_menu,
#dnngo_megamenu .dnngo_slide_menu .dnngo_submenu,
#dnngo_megamenu .dnngo_boxslide {
	background-color: #ffffff;
}
#dnngo_megamenu .dnngo_menuslide .dnngo_slide_menu a{
	font-size:13px;
	color:#666666;
	transition: 		color ease-in 200ms,border ease-in 200ms,background ease-in 200ms;
	-moz-transition: 	color ease-in 200ms,border ease-in 200ms,background ease-in 200ms;
	-webkit-transition: color ease-in 200ms,border ease-in 200ms,background ease-in 200ms;
	-o-transition: 		color ease-in 200ms,border ease-in 200ms,background ease-in 200ms;
	-ms-transition: 	color ease-in 200ms,border ease-in 200ms,background ease-in 200ms;
}
#dnngo_megamenu .dnngo_menuslide{
	transition: 		color ease-in 200ms,border ease-in 200ms,background ease-in 200ms,top ease-out 200ms;
	-moz-transition: 	color ease-in 200ms,border ease-in 200ms,background ease-in 200ms,top ease-out 200ms;
	-webkit-transition: color ease-in 200ms,border ease-in 200ms,background ease-in 200ms,top ease-out 200ms;
	-o-transition: 		color ease-in 200ms,border ease-in 200ms,background ease-in 200ms,top ease-out 200ms;
	-ms-transition: 	color ease-in 200ms,border ease-in 200ms,background ease-in 200ms,top ease-out 200ms;
}
#dnngo_megamenu .dnngo_submenu {
	transition: 		top ease-out 200ms;
	-moz-transition: 	top ease-out 200ms;
	-webkit-transition: top ease-out 200ms;
	-o-transition: 		top ease-out 200ms;
	-ms-transition: 	top ease-out 200ms;
}

#dnngo_megamenu .dnngo_slide_menu li:hover > a,
#dnngo_megamenu .dnngo_slide_menu li.subcurrent > a {
	color:#FFF;
	background-color:#20a3f0;
}
#dnngo_megamenu .dnngo_slide_menu li.dir:before{
	border-right:1px solid #666666;
	border-bottom:1px solid #666666;
	transition: 		all ease-in 200ms;
	-webkit-transition: all ease-in 200ms;
}
#dnngo_megamenu .dnngo_slide_menu li.dir:hover:before,
#dnngo_megamenu .dnngo_slide_menu li.dir.subcurrent:before{
	border-right:1px solid #FFF;
	border-bottom:1px solid #FFF;
}
#dnngo_megamenu .dnngo_slide_menu li a > span > i{
	color:#666666;
	font-size:13px;
}
#dnngo_megamenu .dnngo_slide_menu li a:hover > span > i,
#dnngo_megamenu .dnngo_slide_menu li.menu_hover > a > span > i,
#dnngo_megamenu .dnngo_slide_menu li.current > a > span > i,
#dnngo_megamenu .dnngo_slide_menu li.subcurrent > a > span > i{
	color:#FFF;
}


#dnngo_megamenu .dnngo_custommenu > .menupane {
	background-color:#ffffff;
}
#dnngo_megamenu .dnngo_custommenu > .menupane.topline .pane_space{
	border-top-color:#dcdcdc;
}
#dnngo_megamenu .dnngo_custommenu > .menupane.bottomline .pane_space{
	border-bottom-color:#dcdcdc;
}
#dnngo_megamenu .dnngo_custommenu > .menupane.leftline {
	border-left-color:#dcdcdc;
}
#dnngo_megamenu .dnngo_custommenu > .menupane.rightline {
	border-right-color:#dcdcdc;
}

#dnngo_megamenu  .pane_space{
	font-size:13px;
	color:#666666;
}
.menu-ibox .btn, 
.menu-ibox .btn:link, 
.menu-ibox .btn:active, 
.menu-ibox .btn:visited{
    color:#20a3f0;
    border-color:#20a3f0;
}
.menu-ibox .btn:hover{
	color:#FFF;
}
.menu-ibox .btn:hover{
	background-color: #20a3f0;
}
.menu-cont01 .more, 
.menu-cont01 .more:link, 
.menu-cont01 .more:active, 
.menu-cont01 .more:visited{
    color: #20a3f0;
}
.menu-carousel.carousel .owl-page{
	border-color:#20a3f0;
}
.menu-carousel.carousel .owl-page.active{
	background-color: #20a3f0;
}

#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li a:before,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li a:before,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li a:before{
	border-right:1px solid  #666666;
	border-bottom:1px solid  #666666;
}
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li a:hover:before,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li a:hover:before,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li a:hover:before{
	border-right-color:#20a3f0;
	border-bottom-color:#20a3f0;
}
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_1 li a,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li a,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li a,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li a,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_4 ul li a{
	color: #666666;
}
#dnngo_megamenu .dnngo_custommenu .submenulist_1 .submenu_title a:hover span,
#dnngo_megamenu .dnngo_custommenu .submenulist_5 .submenu_title a:hover span,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li a:hover,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li a:hover,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li a:hover,
#dnngo_megamenu .dnngo_custommenu .submenulist_4 .submenu_title a:hover span,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_4 ul li a:hover,
#dnngo_megamenu .dnngo_custommenu .submenulist_2 .submenu_title span,
#dnngo_megamenu .dnngo_custommenu .submenulist_3 .submenu_title span{
	color:#20a3f0;
}
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_1 li a:hover{
	background-color:#20a3f0;
}

#dnngo_megamenu .dnngo_custommenu .submenu_title,
#dnngo_megamenu .dnngo_custommenu .submenulist_4 .submenu_title span,
#dnngo_megamenu .dnngo_custommenu .submenulist_5 .submenu_title span,
#dnngo_megamenu .dnngo_custommenu .submenulist_1 .submenu_title span{
	color:#424242;
}
#dnngo_megamenu .dnngo_custommenu .submenu_title,
#dnngo_megamenu .dnngo_custommenu .submenu_title span{
	font-size:15px;
}
#dnngo_megamenu .dnngo_custommenu .submenulist_2 .submenu_title:after{
	border-bottom-color:#bebebe;
}
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 > ul > li > a,
#dnngo_megamenu .dnngo_custommenu .submenulist_4 .submenu_title {
	border-bottom-color:#dcdcdc;
}

.menu-bloglist li,
.menu-cont01 .line{
	border-bottom-color:#dcdcdc;
}
.menu-ibox h3{
	color:#424242;
	font-size:15px;
}
.menu_list01 li a,
.menu_list01 li a:link,
.menu_list01 li a:active, 
.menu_list01 li a:visited{
	color:#424242;
	font-size:15px;
	border-color:#bebebe;
	transition: 		border-color ease-in 200ms;
	-moz-transition: 	border-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: border-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		border-color ease-in 200ms; /* Opera */
	-ms-transition: 	border-color ease-in 200ms; /* IE9? */
}
.menu_list01 li a:hover{
	border-color:#20a3f0;
}
div.menu_list01 li:after,
div.menu_list02 li:after{
	border-bottom-color:#dcdcdc;
}
.menu_list02 li a,
.menu_list02 li a:link,
.menu_list02 li a:active, 
.menu_list02 li a:visited{
	color:#424242;
	font-size:15px;
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */
}
.menu_list02 li a:hover{
	color:#20a3f0;
}

.MegaMenuList li a,
.MegaMenuList li a:link,
.MegaMenuList li a:active, 
.MegaMenuList li a:visited{
	font-size:13px;
	color:#666666;
}
.MegaMenuList li a:hover{
	background-color:#20a3f0;
}
.MegaMenuList li:after{
	border-left-color:#dcdcdc;
}


/*Fixed Menu Style Start*/
.roll_menu.roll_activated{
	margin:auto;
}
.roll_menu.roll_activated .headerBox{
	margin:auto;
}
.roll_menu.roll_activated .headerBox > .shade {
	background-color:#ffffff;
	filter:alpha(opacity= 100 );
	opacity: 1;
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
	-moz-box-shadow: 0 0 10px rgba(0,0,0,0.4);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.roll_menu.roll_activated #dnngo_megamenu > div > ul > li > a > span {
	color: #666666;
	vertical-align:bottom;
}
.roll_menu.roll_activated #dnngo_megamenu > div > ul > li.dir > a > span:after {
	border-bottom: 1px solid #666666;
	border-right: 1px solid #666666;
}
.roll_menu.roll_activated #dnngo_megamenu > div > ul > li:hover > a > span,
.roll_menu.roll_activated #dnngo_megamenu > div > ul > li.current > a > span,
.roll_menu.roll_activated #dnngo_megamenu > div > ul > li.menu_hover > a > span {
	color: #ffffff;
}
.roll_menu.roll_activated #dnngo_megamenu > div > ul > li.dir:hover > a > span:after,
.roll_menu.roll_activated #dnngo_megamenu > div > ul > li.dir.current > a > span:after,
.roll_menu.roll_activated #dnngo_megamenu > div > ul > li.dir.menu_hover > a > span:after {
	border-bottom: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
}
.roll_menu.roll_activated #dnngo_megamenu > div > ul > li > a > span > i {
	color:#666666;
}
.roll_menu.roll_activated #dnngo_megamenu > div > ul > li > a:hover > span > i,
.roll_menu.roll_activated #dnngo_megamenu > div > ul > li.menu_hover > a > span > i,
.roll_menu.roll_activated #dnngo_megamenu > div > ul > li.current > a > span > i{
	color:#ffffff;
}

.roll_menu.roll_activated #dnngo_megamenu > div > ul > li{
		padding:5px 0 5px;
}
.roll_menu.roll_activated #dnngo_megamenu > div > ul > li > a{
		line-height: 40px;
}
.roll_menu.roll_activated .dnn_logo {
	float:none;
	margin:0;
	margin-top:0px;
	line-height: 50px;
	height: 50px;
}
.roll_menu.roll_activated .menuRightBox {
	margin:0;
	margin-top:0px;
	line-height: 50px;
	height: 50px;
}

.roll_menu.roll_activated .LogoPane, 
.roll_menu.roll_activated .mobileLogoPane, 
.roll_menu.roll_activated .dnn_logo .Logobox{
	vertical-align:top;
}

.roll_menu.roll_activated .menuRightBox{
	display:none;
}
.roll_menu.roll_activated .headerBox .headertopBox{
	display:none;
}

@media only screen and (min-width:768px) and (max-width:991px){
	.roll_menu.roll_activated .menuRightBox{
		display:none;
	}
}



/*header 10 style*/    


	.headerBox {
		margin:0px auto 0px;
	}
	.headerBox .header-right{
		white-space:nowrap;	
	}
	.headerBox .header-right > *{
		white-space:normal;
	}
	.headerBox .dnn_layout.full{
		width:auto;
	}
	.headerBox .nav_box,
	.headerBox .nav_ico{
		display:inline-block;
		vertical-align:middle;
	}
	.header_bg {
		top: 0px;
		left: 0px;
		width: 100%;
		z-index: 10;
	}
	.headerBox > .shade {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		background-color:#ffffff;
		filter:alpha(opacity= 100 );
		opacity: 1;
	}
	.headerBox .HeaderPane,
	.headerBox .HeaderPaneB{
		display:inline-block;
		margin:0;
		vertical-align:middle;
	}
	.headerBox .headertopBox {
		padding:0px 0;
		line-height:44px;
		border-bottom:1px solid #ffffff;
		background-color:#2e2e2e;
	}
	.headerBox .header-top .languageBox ,
	.headerBox .header-top .Login{
		display:inline-block;
		vertical-align:middle;
		margin-right:5px;
	}
	.headerBox .header-top .Login .registerGroup,
	.headerBox .header-top .Login .loginGroup{
	}
	.headerBox .header-top .Login .registerGroup{
	}
	.headerBox .header-top .HeaderPane > div {
		padding-right:19px;
		height:30px;
		line-height:30px;
		display:block;
	}
	.headerBox .header-top .HeaderPane .Normal{
		line-height:30px;
	}
	.headerBox .header-top .languageBox{
		margin:0 15px 0 0;
	}
	.headerBox .header-top .languageBox span img{
		border:none;
		border-radius:0;
		-moz-border-radius:0;
		-webkit-border-radius:0;
	}
	.headerBox .header-top .searchMainBox {
		position:relative;
		margin-left:18px;
		display:inline-block;
		vertical-align:middle;
		z-index:1;
	}
	.headerBox .header-top .searchMainBox:before {
		content:"";
		position:absolute;
		top:0;
		left:0;
		right:0;
		bottom:0;
		opacity:0.2;
		z-index:-1;
		border-right:1px solid #bbbbbb;
		border-left:1px solid #bbbbbb;
	}
	
	.headerBox .header-top #search-icon{
		width:56px;
		line-height:44px;
		overflow:hidden;
		text-align:center;
		cursor:pointer;
		font-size:16px;
		color:#bbbbbb;
		display:block;
		transition: 		color ease-in 200ms;
		-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
		-webkit-transition:     color ease-in 200ms; /* Safari and Chrome */
		-o-transition: 		color ease-in 200ms; /* Opera */
		-ms-transition: 	color ease-in 200ms; /* IE9? */
	}
	.headerBox .header-top #search-icon:hover,
	.headerBox .header-top #search-icon.active{
		color:#ffffff;
	}
	.headerBox .header-top #search-icon.active:before{
		content:"\f00d";
	}
	.headerBox .header-top .searchBox{
		display:none;
		padding:0px;
		position:absolute;
		top:100%;
		right:0;
		margin-top:3px;
		z-index:980;
		background-color:#2e2e2e;
		border-radius:5px;
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
		height:44px;
		line-height:44px;
	}
	.headerBox .header-top .searchBox:before{
		content:"";
		background-color:#2e2e2e;
		width:8px;
		height:8px;
		position:absolute;
		top: -4px;
		right: 24px;
		transform:rotate(45deg);
		-webkit-transform:rotate(45deg);
	}
	.headerBox .header-top .searchBox input.NormalTextBox{
		width:230px;
		height:40px;
		line-height:40px;
		position:static;
		background:none;
		color:#FFF;
		padding:0px 3px 0px 10px;
	}
	.headerBox .header-top .search, 
	.headerBox .header-top a.search:link, 
	.headerBox .header-top a.search:active, 
	.headerBox .header-top a.search:visited{
		position:static;
		display:inline-block;
		width:40px;
		text-align:center;
		height:40px;
		line-height:40px;
		vertical-align:middle;
		font-size:15px;
		color:#ffffff;
		background:none;
		margin-left: -4px; 
	}
	.headerBox .header-top .searchBox .searchInputContainer{
		margin:0!important;
		vertical-align:middle;
	}
	.headerBox .header-top,
	.headerBox .header-top .Normal,
	.headerBox .header-top a, 
	.headerBox .header-top a:link, 
	.headerBox .header-top a:active, 
	.headerBox .header-top a:visited, 
	.headerBox .header-top .Login, 
	.headerBox .header-top .Login a, 
	.headerBox .header-top .Login a:link, 
	.headerBox .header-top .Login a:active, 
	.headerBox .header-top .Login a:visited{
		color:#bbbbbb;
	}
	.headerBox .header-top a:hover, 
	.headerBox .header-top .Login a:hover{
		color:#ffffff;
	}
	.headerBox .header-top .Login .registerGroup li.userMessages a span, 
	.headerBox .header-top .Login .registerGroup li.userNotifications a span{
		margin-bottom:-6px;
		background-color:#ffffff;
	}
	.headerBox .header-top .searchBox .searchInputContainer a.dnnSearchBoxClearText.dnnShow{
	}
	.headercenterBox{
		position:relative;
	}
	.headercenterBox:after{
		content:"";
		position:absolute;
		border-bottom:1px solid #ffffff;
		left:0;
		right:0;
		bottom:0;
		opacity:0.4;
	}
	
	.headerBox .headertopBox,
	.headerBox .headerbottomBox{
		border-bottom:1px solid #FFF;
	}
	.headerBox .dnn_logo {
		float:none;
		margin:0px;
		padding:20px 0;
		text-align:center;
	}
	.headerBox .HeaderPaneB{
		float:none;
	}
	.menuRightBox{
		margin:3px 0 3px;
		line-height:39px;
		height: 39px;
	}
	.headerBox .HeaderPaneB > div {
		display:inline-block;
		vertical-align:middle;
		line-height:1.8;
	}
	.roll_menu.roll_activated .header-top{
		display:none;
	}
	#dnngo_megamenu .primary_structure > li.line{
		height:18px;
		padding:0;
		margin:3px 6px 3px 6px;
		line-height:39px;
		height: 39px;
		opacity:0.4;
	}
	#dnngo_megamenu .primary_structure > li.line:before{
		content:"";
		display:inline-block;
		border-left:1px solid #2e2e2e;
		vertical-align:middle;
		height:18px;
	}
	
	.headerbottomBox .header-left{
		text-align:center;
	}
	.headerbottomBox .dnn_menu  {
		display:inline-block;
	}
	.headerBox .header-bottom #search-icon{
		display:inline-block;
		vertical-align:middle;
	}
	.roll_menu.roll_activated .headercenterBox:after {
		display:none;
	}
	.roll_menu.roll_activated .headercenterBox{
		display:none;
	}
	.roll_menu.roll_activated .FixedLogoPane{
		float:left;
		padding:0px ;
		margin-top:0px;
		line-height: 50px;
		height: 50px;
	}
	.roll_menu.roll_activated .FixedLogoPane  a{
		margin-right:15px;
	}
	.roll_menu.roll_activated .headerbottomBox .header-left{
		text-align:right;
	}
	.roll_menu.roll_activated #dnngo_megamenu .primary_structure > li.line{
		margin:0 0 0 2px;
		line-height:40px;
		height:40px;
	}
	.roll_menu.roll_activated #dnngo_megamenu .primary_structure > li.line:before{
		border-left-color:#666666;
	}


	#header10.bg_boxed .headertopBox ,
	#header10.bg_boxed .headercenterBox,
	#header10.bg_boxed .headerbottomBox{
		margin-left:-15px;
		margin-right:-15px;
		padding-left:15px;
		padding-right:15px;
	}	
	@media only screen and (min-width: 768px) and (max-width: 991px) {
		.header-bottom{
			display:block;
		}
		.header-bottom .header-left,
		.header-bottom .header-center,
		.header-bottom .header-right{
			display:block;
			text-align:center;
			white-space:normal;
		}
		.menuRightBox{
			margin:0;
		}
		.header-bottom .header-right {
			display:table;
			text-align:left;
			width:100%;
		}
		.header-right .nav_box ,
		.header-right .menuRightBox{
			display:table-cell;
			vertical-align:middle;
		}
		.header-right .menuRightBox{
			text-align:right;
		}
		.roll_menu.roll_activated .header-bottom{
			display:table;
		}
		.roll_menu.roll_activated .header-left,
		.roll_menu.roll_activated .header-center,
		.roll_menu.roll_activated .header-right{
			display: table-cell;
		}
		.roll_menu.roll_activated .header-right {
			text-align:right;
			width:auto;
		}
		.roll_menu.roll_activated .nav_box ,
		.roll_menu.roll_activated .menuRightBox{
			display:inline-block;
			vertical-align:middle;
		}
     }
	@media only screen and (max-width: 767px) {
	}



@media only screen and (max-width:767px){
	.roll-xs.roll_menu.roll_activated{
		position:relative!important;
		top:0!important;
		left:0!important;
		opacity:1!important;
	}	
	.roll_menu.roll_activated .roll-xs {
		display:none!important;
	}	
}
@media only screen and (min-width:768px) and (max-width:991px){
	.roll-sm.roll_menu.roll_activated{
		position:relative!important;
		top:0!important;
		left:0!important;
		opacity:1!important;
	}	
	.roll_menu.roll_activated .roll-sm {
		display:none!important;
	}	
}

@media only screen and (min-width:992px) and (max-width:1199px){
	.roll-md.roll_menu.roll_activated{
		position:relative!important;
		top:0!important;
		left:0!important;
		opacity:1!important;
	}	
	.roll_menu.roll_activated .roll-md {
		display:none!important;
	}	
}
@media only screen and (min-width:1200px){
	.roll-lg.roll_menu.roll_activated{
		position:relative!important;
		top:0!important;
		left:0!important;
		opacity:1!important;
	}	
	.roll_menu.roll_activated .roll-lg {
		display:none!important;
	}	
}
/*header position*/
	.header_bg{
		position:relative;
	}
	.roll_replace {
		position:relative; 
	}




/*header position*/
.header_bg,
.roll_replace,
.mobile_header {
	position: relative;
}


		@media only screen and (min-width: 768px) and (max-width: 991px) {
			.dnngo-main.boxed .mobile_nav{
				width:auto;
			}
		}	

@media only screen and (max-width: 991px) {
	
			.header_bg.roll_menu {
			position:absolute;
			width:100%;
			top:0;
			padding:0;			
		}
		.mobile_nav{
			position:fixed;
			width:100%;
		}
		body[style*="margin-left: 80px"] .mobile_nav{
			margin-left:-80px;
		
		}
		
		.mobile_header,
	.mobile_dnn_logo,
	.mobile_nav{
		height:46px;
	}
	.mobile_dnn_logo{
		line-height:46px;
	}	
	.mobile_header .Logobox  ,
	.mobile_header .mobileLogoPane{
		display:inline-block;
		vertical-align:middle;
		height:100%;
		max-width:100%;
		margin-top:-1px;
	}	
	.mobile_nav > .shade {
		background-color:#FFFFFF;
		filter:alpha(opacity= 100 );
		opacity: 1;
		box-shadow:0 0 4px rgba(0,0,0,0.4);	
		-moz-box-shadow:0 0 4px rgba(0,0,0,0.4); 	
		-webkit-box-shadow:0 0 4px rgba(0,0,0,0.4);
	}
	.mobile_nav_ico .fa{
		border-color:#333333;
		color:#333333;
	}
	.mobile_left_icon .fa, 
	.mobile_right_icon a{
		border-color:#333333;
		color:#333333;
	}
	.mobile_right_icon{
		padding-top:1px;
	}
	.mobile_left_icon {
		margin-right:15px;
		right:16px;
	}
	
	.mobile_left_icon #ico_search,
	.mobile_right_icon a:before{
		line-height:1;
		width:16px;
		height:16px;
		font-size:16px;
	}
	.mobile_nav_ico .fa.active{
		color:#20a3f0;
	}
	.mobile_left_icon .fa.active,
	html.mm-opening.mm-opened .mobile_right_icon a{
		color:#20a3f0;
	}
	
	#mobile_search{
		background-color:#FFFFFF;
	}
	#mobile_search:before{
		border-bottom-color:#FFFFFF;
	}
	#mobile_search .search, 
	#mobile_search a.search:link, 
	#mobile_search a.search:active, 
	#mobile_search a.search:visited{
		background-color:#20a3f0;
	}
	#mobile_search input.NormalTextBox{
		color:#333333;
		background-color:#e1e1e1;
	}
	.mobile_nav #mobile_nav{
		background-color:#20a3f0;
	}
	.multi_menu ul li a{
		color:#FFF;
		border-color:#FFF;
	}
	.multi_menu ul li.active > a,
	.multi_menu ul li a:hover ,
	.multi_menu ul li.current > a,
	.multi_menu ul li.current > a:hover {
		 background-color:#FFF;
		 color:#20a3f0;
	}
	.multi_menu ul li .menu_arrow:before{
		border-bottom-color:#FFF;
	  	border-right-color:#FFF;
	}
	.multi_menu ul li .menu_arrow.arrow_closed:before, 
	.multi_menu ul li.current > a >  .menu_arrow:before, 
	.multi_menu ul li:hover .menu_arrow.arrow_closed:before,
	.multi_menu ul li:hover > a > .menu_arrow:before{
		border-bottom-color:#20a3f0;
	  	border-right-color:#20a3f0;
	}
	.multi_menu > ul > li > a > span {
		font-size:13px;
	}
	.multi_menu ul ul li > a > span {
		font-size:13px;
	}
	
	.mobile_menu.mm-menu{
		background-color:#f3f3f3;
	}
	.mobile_menu .social_list_6 span {
		color:#333333;
		border-color: #333333;
	}	
	
	.mobile_menu,
	.mobile_menu .Normal,
	.HeaderPane_mobile, 
	.HeaderPaneB_mobile,
	.mobile_menu .Header_Info,
	.mm-menu .mm-navbar.mm-navbar-top-2, 
	.mm-menu .mm-navbar.mm-navbar-top-2 a,
	.mobile_menu .mm-listview > li > a, 
	.mobile_menu .mm-listview > li > span{
		color:#333333;
	}
	#mobile_user, 
	#mobile_user a, 
	#mobile_user a:link, 
	#mobile_user a:active, 
	#mobile_user a:visited{
		color:#333333;
	}
	#mobile_user a:hover{
		color:#20a3f0;
	}
	#mobile_user .registerGroup li.userMessages a span, 
	#mobile_user .registerGroup li.userNotifications a span{
		background-color:#20a3f0;
	}
	.mobile_menu.mm-menu .mm-navbar .mm-btn:before, 
	.mobile_menu.mm-menu .mm-navbar .mm-btn:after{
		border-color:#333333;
	}
	.mobile_menu .mm-listview > li, 
	.mobile_menu .mm-listview > li:after, 
	.mobile_menu .mm-listview > li .mm-next, 
	.mobile_menu .mm-listview > li .mm-next:before,
	.mobile_menu .mm-navbar.mm-navbar-top-2,
	.mobile_menu .menu_header,
	.mobile_menu .mm-navbar.mm-navbar-top.mm-navbar-top-1,
	#mobile_user{
		border-color:#dbdbdb;
	}
	.mobile_menu.mm-menu em.mm-counter,
	.mobile_menu .mm-next:after{
		color:#AAAAAA;
	}
	.mobile_menu.mm-menu .mm-listview > li .mm-next:after, 
	.mobile_menu.mm-menu .mm-listview > li .mm-arrow:after{
		border-color:#AAAAAA;
	}
	.mobile_menu.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next), 
	.mobile_menu.mm-menu .mm-listview > li.mm-selected > span,
	.mobile_menu.mm-menu .mm-listview > li.current > a:not(.mm-next),
	.mobile_menu.mm-menu .mm-listview > li.subcurrent > a:not(.mm-next),
	.mobile_menu.mm-menu .mm-listview > li.current > .mm-next,
	.mobile_menu.mm-menu .mm-listview > li.subcurrent >.mm-next,
	.mobile_menu.mm-menu .mm-listview > li > a:not(.mm-next):hover,
	.mobile_menu.mm-menu .mm-listview > li > .mm-counter:hover + .mm-next,
	.mobile_menu.mm-menu .mm-listview > li > a.mm-next:hover{
		background-color:#F9F9F9;
	}
	.mobile_menu.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next):hover, 
	.mobile_menu.mm-menu .mm-listview > li.current > a:not(.mm-next),
	.mobile_menu.mm-menu .mm-listview > li.subcurrent > a:not(.mm-next),
	.mobile_menu.mm-menu .mm-listview > li > a:not(.mm-next):hover,
	.mobile_menu.mm-menu .mm-listview > li.current > em,
	.mobile_menu.mm-menu .mm-listview > li.subcurrent > em,
	.mobile_menu.mm-menu .mm-listview > li > em:hover,
	.mobile_menu.mm-menu .mm-listview > li > .mm-next:hover > em,
	.mobile_menu.mm-menu .mm-listview > li.current > .mm-next:after,
	.mobile_menu.mm-menu .mm-listview > li.subcurrent > .mm-next:after,
	.mobile_menu.mm-menu .mm-listview > li > .mm-next:hover:after{
		color:#20a3f0!important;
	}
	
	
		.mobile_menu.mm-menu a > span > i{
		display:none;
	}
		
	/*html*/
	
	.HeaderPane_mobile,
	.HeaderPaneB_mobile{
		color:#333333;
	}
	
	.menu_header_box div.home03-social02 a{
		color:#333333;
		border-color:#333333;
	}
	.menu_header_box div.home03-social02 a:hover{
		border-color:#20a3f0;
		background-color:#20a3f0;
	}
	
	.social_list_7{
		border:none;
	}
	.social_list_7 span{
		margin:0 4px;
		color:#333333;
		border:1px solid #333333;
	}
	.social_list_7 a:hover span{
		background-color:#20a3f0;;
		border-color:#20a3f0;
	}
	.shop_info{
		display:inline-block;
		border:none;
		color:#333333;
	}
	.shop_info span{
		color:#333333;
	}
}

@media only screen and (min-width: 992px) {
	html.mm-opening.mm-opened .mm-slideout {
		-webkit-transform: translate(0%, 0);
		-moz-transform: translate(0%, 0);
		-ms-transform: translate(0%, 0);
		-o-transform: translate(0%, 0);
		transform: translate(0%, 0); 
	}
}
@media only screen and (max-width: 991px) {
	.mobile_menu.mm-menu{
		left:auto;
		right:0;
		display:block!important;
	}
	#header_slide{
		display:none;
	}
	.mobile_menu.mm-menu .mm-listview > li > a.mm-next{
		bottom:1px;
	}
	.mobile_menu.mm-menu em.mm-counter{
		z-index:5;
		pointer-events: none
	}
	.mobile_menu.mm-menu .mm-listview i{
		margin-right:3px;
	}
	.HeaderBottom ,
	.Loginandlanguage{
		display:none;
	}	
	.mobile_menu.mm-menu .HeaderBottom ,
	.mobile_menu.mm-menu .Loginandlanguage{
		display:block;
	}	
}






.pagetitleBox .pagetitle{
	background:none;
	padding:0;
}
.PageTitle_bg [class*="Pane"] {
    margin-bottom: 0;
}
.HeaderPageTitle_bg{
    position: relative;
    z-index: 5;
}
.pagetitleBox .pagetitletoken,
.page10Box .page10token{
   line-height:1.2;
}
.pagetitleBox .pagetitletoken .fa,
.page10Box .page10token .fa{
  vertical-align:middle;
}
   		.PageTitle_bg{
			position:relative;
			z-index:5;
		}
		
		.pagetitleBox {
		position:relative;
		text-align:center;
		z-index:1;
	}
	.PageTitle_bg  > .shade .img{
		position:absolute;
		width:100%;
		height:100%;
		top:0;
		left:0;
	
					background-color:#fafafa;
			}
		.pagetitleBox .PageTitlePane a,
	.pagetitleBox .PageTitlePane a:link,
	.pagetitleBox .PageTitlePane a:active,
	.pagetitleBox .PageTitlePane a:visited{
		color:#20a3f0;
	}
	.pagetitleBox .pagetitletoken,
	.pagetitleBox .pagetitletoken a,
	.pagetitleBox .pagetitletoken a:link,
	.pagetitleBox .pagetitletoken a:active,
	.pagetitleBox .pagetitletoken a:visited{
		Font-Size:13px;
		text-transform:inherit;
		color:#424242;
	 	Font-Family:"IRANSans";
		Font-weight:Normal;
	}
	.pagetitleBox h1{
		line-height:1.2;
		text-align:left;
		margin:0px 0 10px 0;
		Font-Size:14px;
		text-transform:inherit;
		color:#333333;
	 	Font-Family:"IRANSans Bold";
		Font-weight:bold;		
	}
	.pagetitleBox .pagetitletoken .fa{
		font-size:1.2em;
	}
	.pagetitleBox .pagetitleborder {
		display:table;
		width:100%;
		padding:5px 0 5px;
		position:relative;
		clear:both;
	}
	.pagetitleBox .pagetitle-left{
		display:table-cell;
		text-align:left;
		vertical-align:middle;
	}
	.pagetitleBox .pagetitle-right{
		display:table-cell;
		text-align:right;
		vertical-align:middle;
	}
	.pagetitle_Pane {
		margin:0;
	}
	.pagetitleBox .pagetitletoken a:hover,
	.pagetitleBox .PageTitlePane a:hover{
		text-decoration:none;
		color:#20a3f0;
	}
   .pagetitleBox h1{
      display:inline-block;}	  
   .pagetitleBox .pagetitletoken{
      display:block}	  
@media only screen and (max-width: 991px) {
		.pagetitleBox h1{
			font-size:20px;
		}
		.pagetitleBox .pagetitleborder{
		   padding:30px 0;
		}
}
	@media only screen and (max-width: 767px) {
		.pagetitleBox .pagetitleborder {
			display:block;
			padding:15px  0 10px;
		}
		.pagetitleBox .pagetitle-left{
			display:block;
			margin-bottom:3px;
		}
		.pagetitleBox .pagetitletoken{
		    line-height:1.2;
		}
		.pagetitleBox .pagetitle-right{
			display:block;
			text-align:left;
		}
		.pagetitleBox h1{
			font-size:20px;
			margin-bottom:5px;
		}
		.pagetitleBox,
		.pagetitleBox a,
		.pagetitleBox a:link,
		.pagetitleBox a:active,
		.pagetitleBox a:visited,
		.pagetitleBox .pagetitle,
		.pagetitleBox .Normal {
			font-size:13px;
		}
	}	

@media only screen and (max-width: 991px) {
		.pagetitleBox h1{
			font-size:20px;
		}
}


 









































/*Home Page 39 Style*/

/*Home Page 40 Style*/

/*Home Page 41 Style*/















/*Footer */
	.footer_box {
		position:relative;
		z-index:3;
	}
	.foot_bgs{
		display:none;
	}
	.footer_box .footer_bg{
		content: "";
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		opacity: 1;
									background-color:#222c36;
						background-position:center bottom;
				background-repeat:no-repeat;
										background-size:cover ;
	}
	.footer_bottom  {
		overflow:hidden;
	}
	.footer_bottom .footer_bottom_bg{
		opacity: 0/5;
					background-color:#283641;
				-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-webkit-transform:skew(0deg,0deg);
		-moz-transform:skew(0deg,0deg);
		transform:skew(0deg,0deg);
		transform-origin:right bottom;
	}

.footer_box .Normal {
	color:#aaaaaa;
}

.footer_box a, 
.footer_box a:link, 
.footer_box a:active, 
.footer_box a:visited{
	color:#20a3f0;
}
.footer_box a:hover{
	text-decoration:underline;
	color:#20a3f0;
}
.footer_box .dnntitle span{
	color: #ffffff;
}

.FooterPane .Normal,
.copyright_style,
.copyright_style a,
.copyright_style a:link,
.copyright_style a:active,
.copyright_style a:visited,
.FooterPane a,
.FooterPane a:link,
.FooterPane a:active,
.FooterPane a:visited{
	color: #999999;
}
.FooterPane .foot_social_3 a:hover span{
	color: #20a3f0;
}
.footer_bottom .Normal,
.footer_bottom a,
.footer_bottom a:link,
.footer_bottom a:active,
.footer_bottom a:visited,
.footer_bottom .social_list_1 a span,
.footer_bottom .link_list_1 a, 
.footer_bottom .link_list_1 a:link, 
.footer_bottom .link_list_1 a:active,
.footer_bottom .link_list_1 a:visited{
	color: #999999;
}
.footer_bottom .link_list_1 .social a, 
.footer_bottom .link_list_1 .social a:link, 
.footer_bottom .link_list_1 .social a:active,
.footer_bottom .link_list_1 .social a:visited,
.footer_bottom .FooterPane a:hover,
.footer_bottom .copyright_style a:hover,
.footer_bottom .link_list_1 a:hover,
.footer_bottom .link_list_1  .social a:hover,
.footer_bottom .list_style_13 li .fa{
	text-decoration:none;
	color: #20a3f0;
}
.footer_bottom .social_list_5 a:hover span{
	background-color:#20a3f0;
	border-color: #20a3f0;
}

.footer_bottom .link_list_1  .social a:hover{
	text-decoration:underline;
}
.footer_bottom .social_list_1 a{
	border-color: #999999;
}
.footer_bottom .social_list_1 a:hover{
	background-color:#999999;
}
.footer_bottom .social_list_1 a:hover span{
	color: #20a3f0;
}
.footer_box .footer_bottom  {
	padding:0 0 35px;
}
.footer_box .footer_bottom .footer_line{
	padding:35px 0 0;
			border-top:1px solid #3b4752;
	}

.footer_bottom .dnntitle span{
	color: #FFFFFF;
}
.footer_bottom .title_style_2{
	color: #FFFFFF;
}
.footer_bottom .title_style_2 .icon:before, 
.footer_bottom .title_style_2 .icon:after{
	border-color: #FFFFFF;
}

.footer_bottom .Theme_Responsive_20072_home5-Email .form_submit:before{
	color: #20a3f0!important;
}
.footer_bottom .Theme_Responsive_20072_home7-Email .form_submit .btn{
	background-color:  #20a3f0!important;
}
.footer_bottom .Theme_Responsive_20072_home7-Email .form_submit .btn:hover{
	background-color: #555!important;
}

.copyright_style, 
.copyright_style a,
.FooterPane {
	font-size:14px;
}




#to_top {
	width: 65px;
	height: 65px;
	line-height:65px;
	right: 90px;
	bottom: 120px;
}
.backtop01 {
	border-color:#333333;
}
.backtop01 span:before{
	border-top-color:#333333;
	border-left-color:#333333;
}
.backtop01 span:after{
	border-left-color:#333333;
}
.backtop01:hover {
	background-color:#20a3f0;
	border-color:#20a3f0;
}

.backtop02 {
	background-color:#333333;
}
.backtop02:hover {
	background-color:#20a3f0;
}
.backtop03 {
	border-color:#333333;
	color:#333333;
}
.backtop03:hover {
	border-color:#20a3f0;
	background-color:#20a3f0;
}
.backtop04 {
	background-color:#333333;
}
.backtop04:hover {
	background-color:#20a3f0;
}
/* 
================================
 Container Styles for DotNetNuke
================================
.


/*-------------------------------------------------------------------------------*/
.actions								 { width:10px;}
.clear									 { clear:both;}
.c_footer								 { padding-right:10px; text-align:right;}
.dnntitle 								 {}
.c_contentpane 							 { text-align:left; padding:2px 5px 0px 5px;}
.ModuleTitle_MenuContainer				 { width:100px!important;}


.Container-H3-1 						 { margin:0 0 5px;  }
.Container-H3-1 .dnntitle				 { white-space:nowrap; padding:0px 0 8px;  text-align:center; }
.Container-H3-1 .contentmain1			 { }
.Container-H3-1 .contentpane			 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }

.Container-H4-1 						 { margin:0 0 5px;  }
.Container-H4-1 .dnntitle				 { white-space:nowrap; padding:0px 0 8px;  text-align:left; }
.Container-H4-1 .contentmain1			 { }
.Container-H4-1 .contentpane			 { padding:5px 0px 0px 0px;  vertical-align:top; clear:both; }

.Home01-Container01 							 { margin:0 0 5px;  }
.Home01-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 15px; margin-bottom:15px; }
.Home01-Container01 .contentmain1				 { }
.Home01-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home01-heading01									 { font-size:18px; line-height:1.2; color:#000000; white-space:normal; vertical-align:middle; font-weight:normal; padding:0px 0 0 15px; margin:0px; position:relative; }
.Home01-heading01:before							 { content:""; height:20px; border-left:3px solid #20a3f0; display:inline-block; position:absolute; top:50%; left:0; margin-top:-10px;}

.Home01-Container02 							 { margin:0 0 5px;  }
.Home01-Container02 .dnntitle					 { white-space:nowrap; padding:0px 0 8px; }
.Home01-Container02 .contentmain1				 { }
.Home01-Container02 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home01-Container02 .dnntitle:after 			 { content:" "; width:50px; border-bottom:3px solid #20a3f0; display:block; margin:25px 0 10px }
.Home01-heading02									 {font-size:18px; line-height:1.2; color:#000000; white-space:normal; vertical-align:middle; font-weight:normal; padding:0px; margin:0px; }

.Home02-Container01 							 { margin:0 ;  }
.Home02-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 30px;  text-align:left; }
.Home02-Container01 .contentmain1				 { }
.Home02-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home02-heading01									 { font-size:18px; line-height:1.2; color:#cccccc; white-space:normal;  vertical-align:middle; margin:0px; position:relative; display:inline-block;  }

.Home03-Container01 							 { margin:0 ;  }
.Home03-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 15px;  text-align:center; }
.Home03-Container01 .contentmain1				 { }
.Home03-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home03-heading01									 { font-size:18px; color:#333333; line-height:1.2; white-space:normal; vertical-align:middle; font-weight:bold; padding:0px; margin:0px; }
.Home03-heading01:before							 { content:""; width:40px; border-top:3px solid #cd3637; display:block; margin:0 auto 20px;}

.Home03-Container02 							 { margin:0 ;  }
.Home03-Container02 .dnntitle					 { white-space:nowrap; padding:0px 0 22px;  text-align:left; }
.Home03-Container02 .contentmain1				 { }
.Home03-Container02 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home03-heading02								 { font-size:18px; line-height:1.2; color:#cccccc; white-space:normal; vertical-align:middle; font-weight:bold; margin:0px; position:relative; display:block;  }
.Home03-heading02:before						 { content:"";  border-left:4px solid #cd3637; display:inline-block; height:40px; vertical-align:middle; margin:0 27px 4px 0;}

.Home03-Container03  							 { margin:0 0 5px;  }
.Home03-Container03 .dnntitle					 { white-space:nowrap; padding:0px 0 33px;  }
.Home03-Container03 .contentmain1				 { }
.Home03-Container03 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home03-heading03								 { font-size:18px; line-height:1.2; color:#333333; white-space:normal; vertical-align:middle; font-weight:bold; padding:0px 0px 0px 40px; margin:0px; position:relative; display:block; }
.Home03-heading03:before						 { content:"";  border-left:4px solid #cd3637; display:inline-block; position:absolute; top:5px; bottom:5px; left:0;  }

.Home04-Container01 							 { margin:0 0 5px; text-align:center; }
.Home04-Container01 .dnntitle					 { padding:0px 0 24px;  text-align:center; overflow:hidden; display:inline-block;}
.Home04-Container01 .contentmain1				 { }
.Home04-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home04-Container01 .dnntitle h4				 { margin:0px; position:relative; display:inline-block; vertical-align:middle; max-width:80% }
.Home04-Container01 .dnntitle h4:before		 	 { content:"";  border-top:1px solid #11ba99; width:60px; vertical-align:middle; margin:-1px 0 0px; position:absolute; left:100%; top:50%; }
.Home04-Container01 .dnntitle h4:after			 { content:"";  border-top:1px solid #11ba99; width:60px; vertical-align:middle; margin:-1px 0 0px; position:absolute; right:100%; top:50%;}
.Home04-heading01								 {font-size:16px; line-height:1.2; color:#333333;  font-weight:bold;  position:relative; padding:0 27px; display:inline-block;}
.Home04-heading01:before						 { content:"";  border-left:3px solid #50bdad;height:30px; margin:-15px 0px 4px 0; position:absolute; left:0; top:50%; }
.Home04-heading01:after							 { content:"";  border-right:3px solid #50bdad;height:30px; margin:-15px 0px 4px 0px;  position:absolute; right:0; top:50%;}

.Home04-Container02 							 { margin:0 ;  }
.Home04-Container02 .dnntitle					 { white-space:nowrap; padding:0px 0 30px;  text-align:left; }
.Home04-Container02 .contentmain1				 { }
.Home04-Container02 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home04-heading02								 { font-size:16px; line-height:1.2; color:#333333; white-space:normal;  vertical-align:middle; margin:0px; position:relative; display:inline-block;  }

.Home05-Container01 							 { margin:0 0 5px;  }
.Home05-Container01 .dnntitle					 { padding:0px 0 20px;  text-align:center; overflow:hidden; }
.Home05-Container01 .contentmain1				 { }
.Home05-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home05-Container01 .dnntitle h4				 { margin:0px; position:relative; display:inline-block; vertical-align:middle; max-width:80% }
.Home05-Container01 .dnntitle h4:before		 	 { content:"";  border-top:1px solid #11ba99; width:60px; vertical-align:middle; margin:-1px 0 0px; position:absolute; left:100%; top:50%; }
.Home05-Container01 .dnntitle h4:after			 { content:"";  border-top:1px solid #11ba99; width:60px; vertical-align:middle; margin:-1px 0 0px; position:absolute; right:100%; top:50%;}
.Home05-heading01								 { font-size:16px; line-height:1.2; color:#283848;  font-weight:bold;  position:relative; padding:0 20px; display:inline-block}
.Home05-heading01:before						 { content:"";  border-left:1px solid #11ba99;height:17px; margin:-9px 27px 4px 0; position:absolute; left:0; top:50%; }
.Home05-heading01:after							 { content:"";  border-right:1px solid #11ba99;height:17px; margin:-9px 0px 4px 27px;  position:absolute; right:0; top:50%;}

.Home05-Container02 							 { margin:0 0 5px;  }
.Home05-Container02 .dnntitle					 { white-space:nowrap; padding:0px 0 20px;}
.Home05-Container02 .contentmain1				 { }
.Home05-Container02 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home05-Container02 .dnntitle h4				 { margin:0px; position:relative; display:block; font-size:0; }
.Home05-Container02 .dnntitle h4:after			 { content:"";  border-bottom:1px solid #11ba99; display:inline-block; width:60px; vertical-align:middle; margin:0 0 4px; }
.Home05-heading02									 {font-size:14px; line-height:1.2; color:#283848; white-space:normal; vertical-align:middle; font-weight:bold; display:inline-block; position:relative; padding-right:20px;}
.Home05-heading02:after							 { content:"";  border-right:1px solid #11ba99; display:inline-block; height:17px; vertical-align:middle; margin:-9px 0px 4px 27px; position:absolute; right:0; top:50%; }

.Home06-Container01 							 { margin:0 ;  }
.Home06-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 20px;  text-align:center; }
.Home06-Container01 .contentmain1				 { }
.Home06-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home06-heading01									 { font-size:14px; line-height:1.2; color:#000000; white-space:normal; border:2px solid #000; vertical-align:middle; font-weight:bold; margin:0px; position:relative; display:inline-block; padding:18px 42px }

.Home06-Container02 							 { margin:0 ;  }
.Home06-Container02 .dnntitle					 { white-space:nowrap; padding:0px 0 20px;  }
.Home06-Container02 .contentmain1				 { }
.Home06-Container02 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home06-heading02									 {font-size:14px; line-height:1.2; color:#cccccc; white-space:normal; vertical-align:middle; font-weight:bold;  }

.Home07-Container01 						 	 { margin:0 0 5px;  }
.Home07-Container01 .dnntitle				 	 { padding:0px 0 0px;  text-align:left; margin-bottom:0px; font-weight:normal;}
.Home07-Container01 .contentmain1			 	 { }
.Home07-Container01 .contentpane			 	 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home07-heading01									 { font-size:14px; color:#cccccc; line-height:1.2; font-weight:bold; white-space:normal; vertical-align:middle; padding:0px; margin:0px; }
.Home07-heading01:after							 { content:""; border-bottom:5px solid #333333; width:60px; display:block; margin:10px 0 22px;}

.Home08-Container01 						 	 { margin:0 0 5px;  }
.Home08-Container01 .dnntitle				 	 { padding:0px 0 8px;  text-align:left; margin-bottom:15px; font-weight:normal;}
.Home08-Container01 .contentmain1			 	 { }
.Home08-Container01 .contentpane			 	 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home08-heading01									 { font-size:14px; color:#cccccc; line-height:1.2; white-space:normal; vertical-align:middle; padding:0px; margin:0px; }

.Home10-Container01 						 	 { margin:0 0 5px;  }
.Home10-Container01 .dnntitle				 	 { padding:0px 0 8px;  text-align:left; margin-bottom:15px; font-weight:normal;}
.Home10-Container01 .contentmain1			 	 { }
.Home10-Container01 .contentpane			 	 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home10-heading01									 { font-size:18px; color:#ffffff; line-height:1.2; white-space:normal; vertical-align:middle; padding:0px; margin:0px; }
.Home10-heading01:after							 { content:""; border-bottom:1px solid #14e7c9; width:30px; display:block; margin:15px 0 0px;}

.Home12-Container01 							 { margin-bottom:5px; }
.Home12-Container01 .dnntitle					 { white-space:nowrap; text-align:center; padding:0px 0 15px; }
.Home12-Container01 .contentmain1				 {  }
.Home12-Container01 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home12-heading01									 { font-size:21px;line-height:1.2;color:#000000;  vertical-align:middle; font-weight:normal; letter-spacing:4px;}
.Home12-heading01:after							 { content:""; border-bottom:1px solid #000000; width:37px; display:block; margin:25px auto 10px;}

.Home12-Container02 							 { margin-bottom:5px; }
.Home12-Container02 .dnntitle					 { white-space:nowrap; text-align:left; padding:0px 0 15px; }
.Home12-Container02 .contentmain1				 {  }
.Home12-Container02 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home12-heading02									 { font-size:22px;line-height:1.2;color:#000000;  vertical-align:middle; font-weight:normal; letter-spacing:4px;}

.Home13-Container01 							 { margin-bottom:5px; }
.Home13-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 40px;  text-align:center; }
.Home13-Container01 .contentpane				 { padding:5px 0px 0px 0px; text-align:left; vertical-align:top; clear:both; }
.Home13-heading01								 { font-size:24px; color:#000000; line-height:1.2; white-space:normal; vertical-align:middle; font-weight:bold; padding:0px; margin:0px; position:relative;}
.Home13-heading01:before						 { content:""; border-left:1px solid #000000; width:0px; position:absolute; left:-38px;  top:8px; bottom:5px; }
.Home13-heading01:after 						 { content:""; border-left:1px solid #000000; width:0px; position:absolute; right:-38px; top:8px; bottom:5px;}

.Home14-Container01 							 { margin-bottom:5px; }
.Home14-Container01 .dnntitle					 { text-align:center; padding:0px 0 22px; }
.Home14-Container01 .contentmain1 > div			 { padding:0px 0 26px; }
.Home14-Container01 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home14-heading01									 { font-size:18px;line-height:1.2;color:#666666;  vertical-align:middle; font-weight:normal; letter-spacing:4px;}
.Home14-Container01:after						 { content:""; width:400px; max-width:80%; display:block; border-bottom:1px solid #dbdbdb; margin:-1px auto 0;  }
.Home14-Container01 .contentmain1:after			 { content:""; width:106px; max-width:30%; display:block; border-bottom:1px solid #3b9cf7; margin:0 auto ; position:relative; z-index:1;  }

.Home14-Container02 							 { margin-bottom:5px; }
.Home14-Container02 .dnntitle					 { text-align:left; padding:0px 0 20px; }
.Home14-Container02 .contentmain1				 {  }
.Home14-Container02 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home14-Container02 .dnntitle .line				 { height:1px; background-color:#dbdbdb; display:block; margin-top:20px;}
.Home14-Container02 .dnntitle .line:after		 { height:1px; background-color:#3b9cf7; display:block; width:135px; max-width:50%; content:"";}
.Home14-heading02									 { font-size:17px; line-height:1.2; color:#666666;  vertical-align:middle; font-weight:normal;}

.Home14-Container03 							 { margin-bottom:5px; }
.Home14-Container03 .dnntitle					 { white-space:nowrap; text-align:left; padding:0px 0 20px; }
.Home14-Container03 .contentmain1				 {  }
.Home14-Container03 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home14-heading03									 { font-size:17px; line-height:1.2; color:#f2f2f2;  vertical-align:middle; font-weight:normal;}

.Home15-Container01 							 { margin-bottom:5px; }
.Home15-Container01 .dnntitle					 { white-space:nowrap; text-align:left; padding:0px 0 15px; }
.Home15-Container01 .contentmain1				 {  }
.Home15-Container01 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home15-heading01									 { font-size:20px;line-height:1.2;color:#e5e5e5;  vertical-align:middle; font-weight:normal;}
.Home15-Container01 img 						 { margin-right:6px;}

.Home16-Container01 							 { margin-bottom:5px; }
.Home16-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 10px; text-align:center; }
.Home16-Container01 .contentmain1				 {  }
.Home16-Container01 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home16-heading01									 { font-size:24px;line-height:1.2;color:#666666; white-space:normal; vertical-align:middle;  }
.Home16-heading01:after							 { content:""; border-bottom:1px solid #666666; width:44px; display:block; margin:25px auto 10px;}

.Home16-Container02 							 { margin-bottom:5px; }
.Home16-Container02 .dnntitle					 { white-space:nowrap; text-align:left; padding:0px 0 30px; text-align:left; }
.Home16-Container02 .contentmain1				 {  }
.Home16-Container02 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home16-heading02									 { font-size:25px;line-height:1.2;color:#ffffff; white-space:normal; vertical-align:middle;  }


.Home17-Container01 							 { margin-bottom:5px; }
.Home17-Container01 .dnntitle					 { white-space:nowrap; text-align:left; padding:0px 0 10px; text-align:center; }
.Home17-Container01 .contentmain1				 { }
.Home17-Container01 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home17-heading01									 { font-size:24px;line-height:1.2;color:#666666; white-space:normal; vertical-align:middle;  }

.Home17-Container02 							 { margin-bottom:5px;}
.Home17-Container02 .dnntitle					 { white-space:nowrap; text-align:left; padding:0px 20px; position:relative; display:inline-block; line-height:1; }
.Home17-Container02 .dnntitle:before			 { content:""; background:url("/Portals/_default/Containers/ForVend/images/Home17-Container02.png"); width:120px; height:20px; position:absolute; top:50%; right:100%; margin-top:-9px; }
.Home17-Container02 .dnntitle:after			 	 { content:""; background:url("/Portals/_default/Containers/ForVend/images/Home17-Container02.png"); width:120px; height:20px; position:absolute; top:50%;  left:100%; margin-top:-9px; }
.Home17-Container02 .contentmain1				 {  }
.Home17-Container02 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home17-Container02 .titleBox					 { width:100%; overflow:hidden; text-align:center;}
.Home17-heading02								 	 { font-size:26px; line-height:1; color:#2e2e2e; white-space:normal; display:inline-block ; letter-spacing:2px; }

.Home17-Container03 							 { margin-bottom:5px; }
.Home17-Container03 .dnntitle					 { white-space:nowrap; text-align:left; padding:0px 0 15px; border-bottom:1px solid #dddddd; margin-bottom:10px; }
.Home17-Container03 .contentmain1				 {  }
.Home17-Container03 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home17-heading03									 { font-size:24px;line-height:1.2;color:#2e2e2e; white-space:normal; vertical-align:middle;  }

.Home17-Container04 							 { margin-bottom:5px; }
.Home17-Container04 .dnntitle					 { white-space:nowrap; text-align:left; padding:0px 0px 10px 0px; }
.Home17-Container04 .contentmain1				 { }
.Home17-Container04 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home17-heading04									 { font-size:18px; line-height:1.2; color:#FFF; white-space:normal; vertical-align:middle;  }

.Home18-Container01 							 { margin:0 0 5px;  }
.Home18-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 0px;  text-align:center; }
.Home18-Container01 .contentmain1				 { }
.Home18-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home18-heading01 								 { font-size:22px; line-height:1.2; color:#444444; white-space:normal; vertical-align:middle; font-weight:normal; margin:0px; display:inline-block; position:relative;}
.Home18-heading01:after							 { content:""; border-bottom:1px solid #009b85; width:126px; display:block; margin:20px auto 16px;}

.Home18-Container02 							 { margin:0 0 5px;  }
.Home18-Container02 .dnntitle					 { white-space:nowrap; padding:0px 0 20px; margin-bottom:25px;  text-align:left; border-bottom:2px solid #414141 }
.Home18-Container02 .contentmain1				 { }
.Home18-Container02 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home18-heading02 								 { font-size:22px; line-height:1.2; color:#FFF; white-space:normal; vertical-align:middle; font-weight:normal; margin:0px; display:inline-block; position:relative;}

.Home21-Container01 							 { margin:0 0 5px;  }
.Home21-Container01 .dnntitle					 { white-space:nowrap; padding:0px; margin-bottom:25px;  text-align:left;}
.Home21-Container01 .contentmain1				 { }
.Home21-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home21-heading01 								 { font-size:33px; line-height:1.2; white-space:normal; vertical-align:middle; font-weight:normal; margin:0px; display:inline-block; position:relative;}

.Home21-Container02 							 { margin:0 0 5px;  }
.Home21-Container02 .dnntitle					 { white-space:nowrap; padding:0px; margin-bottom:25px;  text-align:left;}
.Home21-Container02 .contentmain1				 { }
.Home21-Container02 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home21-heading02 								 { font-size:33px; line-height:1.2; white-space:normal; vertical-align:middle; font-weight:normal; margin:0px; display:inline-block; position:relative;}
.Home21-Container02 .line {
	width: 100px;
    height: 1px;
    margin: 28px 0 41px;
    background-color: #0e2a36;
    position: relative;
}
.Home21-Container02 .line:before {
	content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: -2px;
    left: 0;
    background-color: #0e2a36;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.Home21-Container02 .line:after {
	content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: -2px;
    right: 0;
    background-color: #0e2a36;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}


.Home21-Container03 							 { margin:0 0 5px;  }
.Home21-Container03 .dnntitle					 { white-space:nowrap; padding:0px; margin-bottom:25px;  text-align:left;}
.Home21-Container03 .contentmain1				 { }
.Home21-Container03 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home21-heading03 								 { font-size:22px; line-height:1.2; white-space:normal; vertical-align:middle; font-weight:normal; margin:0px; display:inline-block; position:relative;}
.Home21-Container03 .line {
	width: 95px;
    height: 1px;
    margin: 22px 0;
    background-color: #474747;
    position: relative;
}
.Home21-Container03 .line:before {
	content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: -2px;
    left: 0;
    background-color: #474747;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.Home21-Container03 .line:after {
	content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: -2px;
    right: 0;
    background-color: #474747;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}


.Home21-Container04 							 { margin:0 0 5px;padding: 10px 25px;}
.Home21-Container04 .dnntitle					 { white-space:nowrap; padding:0px; margin-bottom:0px;  text-align:left;}
.Home21-Container04 .contentmain1				 { }
.Home21-Container04 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home21-heading04 								 { font-size:15px; line-height:1.2; color:#fff !important; white-space:normal; vertical-align:middle; font-weight:normal; margin:0px; display:inline-block; position:relative;}
.Home21-Container04 .line {
	width: 60px;
    height: 1px;
    margin: 20px 0;
    background-color: #767676;
    position: relative;
}
.Home21-Container04 .line:before {
	content: "";
    width: 4px;
    height: 4px;
    position: absolute;
    top: -2px;
    left: 0;
    background-color: #767676;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.Home21-Container04 .line:after {
	content: "";
    width: 4px;
    height: 4px;
    position: absolute;
    top: -2px;
    right: 0;
    background-color: #767676;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.Home22-Container01 							 { margin:0 0 5px; }
.Home22-Container01 .dnntitle					 { white-space:nowrap;  padding:0; text-align:center; margin:0; }
.Home22-Container01 .dnntitle img              { display:block; margin:0 auto 28px; }
.Home22-Container01 .contentmain1				 { }
.Home22-Container01 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home22-Container01 .line		 				 { height:1px; width:70px; background-color:#3b9cf7; margin:-1px auto 30px; position:relative; z-index:1;}
.Home22-Container01 h2 .Home22-heading01            {    font-size: 30px;/*line-height: 1.2;color: #000000;white-space: normal;*/vertical-align: middle;
                                                  font-weight: normal;padding: 0px;margin: 0px;display: inline-block;padding: 0px 0px 24px;border-bottom: 1px solid #cccccc;}
.Home22-Container01 h2{
   margin:0;
}
												  

.Home22-Container02 							 { margin:0 0 5px; }
.Home22-Container02 .dnntitle					 { white-space:nowrap;  padding:0; text-align:left; margin:0; }
.Home22-Container02 .contentmain1				 { }
.Home22-Container02 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home22-Container02 .line		 				 { height:1px; width:70px; background-color:#3b9cf7; margin:-1px 0 30px; position:relative; z-index:1;}
.Home22-Container02 .Home22-heading02            { /*font-size: 30px;line-height: 1.2;color: #000000;white-space: normal;*/vertical-align: middle;font-weight: normal;padding: 0px;
                                                   margin: 0px;    display: inline-block;	padding: 0px 0px 24px;    border-bottom: 1px solid #cccccc;}
.Home22-Container02 h3{ margin:0;}		
									
.Home22-Container03 							 { margin-bottom:5px; }
.Home22-Container03 .dnntitle					 { text-align:left; padding:0px 0 20px; }
.Home22-Container03 .contentmain1				 {  }
.Home22-Container03 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home22-heading03									 { font-size:30px; line-height:1.2; color:#f2f2f2; white-space:normal;  vertical-align:middle; margin:0px; position:relative; display:inline-block;  }	

.Home23-Container01 							 { margin:0;  }
.Home23-Container01 .dnntitle					 { white-space:nowrap; padding:0px; margin-bottom:25px;  text-align:center;}
.Home23-Container01 .contentmain1				 { }
.Home23-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home23-heading01 								 { font-size:30px; line-height:1.2; color:#333333 !important; white-space:normal; vertical-align:middle; font-weight:normal; margin:0px; display:inline-block; position:relative;}
.Home23-Container01 .line {
	width:38px;
	height:1px;
	border-bottom:1px dotted #666;
	margin:0 auto 25px;
}

.Home23-Container02 							 { margin:0;  }
.Home23-Container02 .dnntitle					 { white-space:nowrap; padding:0px; margin-bottom:25px;  text-align:left;}
.Home23-Container02 .contentmain1				 { }
.Home23-Container02 .contentpane				 { padding:0px; vertical-align:top; clear:both; }
.Home23-Container02 .Home23-heading02 			 { font-size:24px; line-height:1.2; color:#fff; white-space:normal; vertical-align:middle; font-weight:normal; margin:0px; display:inline-block; position:relative;}

.Home24-Container01 							 { margin:0 ;  }
.Home24-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 15px;  text-align:left; }
.Home24-Container01 .contentmain1				 { }
.Home24-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home24-heading01								 { font-size:20px; line-height:1.2; color:#333333; white-space:normal;  vertical-align:middle; margin:0px; position:relative; display:inline-block; letter-spacing:0.5px;  }

.Home24-Container02 							 { margin:0 ;  }
.Home24-Container02 .dnntitle					 { white-space:nowrap; padding:0px 0 15px;  text-align:center; }
.Home24-Container02 .contentmain1				 { }
.Home24-Container02 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home24-heading02								 { font-size:24px; line-height:1.2; color:#333333; white-space:normal;  vertical-align:middle; margin:0px; position:relative; display:inline-block;  letter-spacing:2px; }
.Home24-Container02 .dnntitle .line				 { display:inline-block; position:relative; margin:0px 95px;}
.Home24-heading02:before {
	position: absolute;
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	top: 50%;
	left: 0;
	margin: -4px 0 0 -90px;
	background-color: #1e7ad8;
	background: #1e7ad8;
	background: -moz-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: -webkit-gradient(linear,left bottom,right top,color-stop(0%,#1e7ad8),color-stop(100%,#1ed6d8));
	background: -webkit-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: -o-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: -ms-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);	
}
.Home24-heading02:after {
	position: absolute;
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	top: 50%;
	right: 0;
	margin: -4px -90px 0 0;
	background-color: #1e7ad8;
	background: #1e7ad8;
	background: -moz-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: -webkit-gradient(linear,left bottom,right top,color-stop(0%,#1e7ad8),color-stop(100%,#1ed6d8));
	background: -webkit-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: -o-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: -ms-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
}
.Home24-Container02 .dnntitle .line:before {
	position: absolute;
	content: "";
	width: 60px;
	height: 1px;
	top: 50%;
	left: 0;
	margin: 0 0 0 -80px;
	background-color: #1e7ad8;
	background: #1e7ad8;
	background: -moz-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: -webkit-gradient(linear,left bottom,right top,color-stop(0%,#1e7ad8),color-stop(100%,#1ed6d8));
	background: -webkit-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: -o-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: -ms-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
}
.Home24-Container02 .dnntitle .line:after {
	position: absolute;
	content: "";
	width: 60px;
	height: 1px;
	top: 50%;
	right: 0;
	margin: 0 -80px 0 0;
	background-color: #1e7ad8;
	background: #1e7ad8;
	background: -moz-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: -webkit-gradient(linear,left bottom,right top,color-stop(0%,#1e7ad8),color-stop(100%,#1ed6d8));
	background: -webkit-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: -o-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: -ms-linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);
	background: linear-gradient(30deg,#1e7ad8 0%,#1ed6d8 100%);	
}

.Home24-Container03 							 { margin:0 ;  }
.Home24-Container03 .dnntitle					 { white-space:nowrap; padding:0px 0 15px;  text-align:left; }
.Home24-Container03 .contentmain1				 { }
.Home24-Container03 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home24-heading03								 { font-size:16px; line-height:1.2; color:#333333; white-space:normal;  vertical-align:middle; margin:0px; position:relative; display:inline-block; letter-spacing:1px;  }


.Home25-Container01 							 { margin-bottom:5px; }
.Home25-Container01 .dnntitle					 { text-align:left; padding:0px 0 30px; }
.Home25-Container01 .contentmain1				 {  }
.Home25-Container01 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home25-heading01									 { font-size:25px; line-height:1.2; color:#f2f2f2; white-space:normal;  vertical-align:middle; margin:0px; position:relative; display:inline-block;  }

.Home26-Container01 							 { margin:0 ;  }
.Home26-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 15px;  text-align:center; }
.Home26-Container01 .contentmain1				 { }
.Home26-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home26-heading01								 { font-size:20px; line-height:1.2; color:#333333; white-space:normal; font-weight:bold; vertical-align:middle; margin:0px; position:relative; display:inline-block; letter-spacing:1px;  }
.Home26-heading01:after 						 { content:""; display:block; margin:22px auto 10px;  width:40px; border-bottom:1px dotted #ed474a; font-weight:bold; }

.Home26-Container02 							 { margin:0 ;  }
.Home26-Container02 .dnntitle					 { white-space:nowrap; padding:0px 0 15px;  text-align:left; }
.Home26-Container02 .contentmain1				 { }
.Home26-Container02 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home26-heading02								 { font-size:20px; line-height:1.2; color:#333333; white-space:normal; font-weight:bold; vertical-align:middle; margin:0px; position:relative; display:inline-block; letter-spacing:1px;  }
.Home26-heading02:after 						 { content:""; display:block; margin:22px 0 10px;  width:40px; border-bottom:1px dotted #ed474a; font-weight:bold; }

.Home26-Container03 							 { margin:0 ;  }
.Home26-Container03 .dnntitle					 { white-space:nowrap; padding:0px 0 15px;  text-align:left; }
.Home26-Container03 .contentmain1				 { }
.Home26-Container03 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home26-heading03								 { font-size:18px; line-height:1.2; color:#dddddd; white-space:normal; font-weight:normal; vertical-align:middle; margin:0px; position:relative; display:inline-block; letter-spacing:1px;  }


.Home27-Container01 							 { margin:0;  }
.Home27-Container01 .dnntitle					 { white-space:nowrap; padding:0px; margin-bottom:12px;  text-align:left;}
.Home27-Container01 .contentmain1				 { }
.Home27-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home27-heading01 								 { font-size:16px; line-height:1.2; white-space:normal; vertical-align:middle; font-weight:bold; margin:0px;position:relative;text-transform: uppercase;}
.Home27-Container01 > .line {
	width:60px;
	height:5px;
	background: #333;
	margin:0 0 30px;
}


.Home28-Container01 							 { margin:0;  }
.Home28-Container01 .dnntitle					 { white-space:nowrap; padding:0px; margin-bottom:20px;  text-align:left;}
.Home28-Container01 .contentmain1				 { }
.Home28-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home28-heading01 								 { font-size:18px;color: #fff; line-height:1.2; white-space:normal; vertical-align:middle; font-weight:bold; margin:0px;position:relative;text-transform: uppercase;}




.Home29-Container01 							 { margin:0 0 5px; }
.Home29-Container01 .dnntitle					 { white-space:nowrap;  padding:0; text-align:center; margin:0; }
.Home29-Container01 .dnntitle img              { display:block; margin:0 auto 28px; }
.Home29-Container01 .contentmain1				 { }
.Home29-Container01 .contentpane				 { padding:0 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home29-Container01 .line		 				 { height:2px; width:50px; background-color:#666666; margin:18px auto 25px; position:relative; z-index:1;}
.Home29-Container01 h2 .Home29-heading01            {   /* font-size: 24px;line-height: 1.2;color: #666666; letter-spacing:1px;*/white-space: normal;vertical-align: middle;
                                                 padding: 0px;margin: 0px;display: inline-block;padding: 0px 0px 0; text-align:center;}
.Home29-Container01 h2{
   margin:0;
}
.Home29-Container02 							 { margin:0 0 5px;  }
.Home29-Container02 .dnntitle					 { white-space:nowrap; padding:0px 0 8px; }
.Home29-Container02 .contentmain1				 { }
.Home29-Container02 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home29-heading02									 {font-size:15px; line-height:1.2; color:#d7d7d7; white-space:normal; vertical-align:middle; font-weight:normal; padding:0px; margin:0px; }

.Home30-Container01 							 { margin:0;  }
.Home30-Container01 .dnntitle					 { white-space:nowrap; padding:0px; margin-bottom:30px;  text-align:left;}
.Home30-Container01 .contentmain1				 { }
.Home30-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home30-heading01 								 { 
	font-size:18px;
	line-height:1.2; 
	white-space:normal; 
	vertical-align:middle; 
	font-weight:normal; 
	margin:0px;
	position:relative;
	text-transform: uppercase;
	padding-left: 12px;
	border-left: 4px solid #1E7AD8;
}



.Home31-Container01 							 { margin:0 0 5px; }
.Home31-Container01 .dnntitle					 { white-space:nowrap;  padding:0; text-align:center; margin:0; }
.Home31-Container01 .dnntitle img              { display:block; margin:0 auto 28px; }
.Home31-Container01 .contentmain1				 { }
.Home31-Container01 .contentpane				 { padding:0 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home31-Container01 .line		 				 { height:3px; width:50px; background-color:#ff8726; margin:25px auto 30px; position:relative; z-index:1;}
.Home31-Container01 h3 .Home31-heading01            {   white-space: normal;vertical-align: middle; text-transform:uppercase;
                                                 padding: 0px;margin: 0px;display: inline-block;padding: 0px 0px 0; }
.Home31-Container01 h3{
   margin:0;
}
.Home31-Container02 							 { margin:0 0 5px;  }
.Home31-Container02 .dnntitle					 { white-space:nowrap; padding:0px 0 30px 0; }
.Home31-Container02 .contentmain1				 { }
.Home31-Container02 .contentpane				 { padding:0 0px 0px 0px; vertical-align:top; clear:both; }
.Home31-heading02									 {font-size:18px; line-height:1.2; color:#cccccc; white-space:normal; vertical-align:middle; font-weight:normal; padding:0px; margin:0px; }


.Home32-Container01 							 { margin:0 ;  }
.Home32-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 23px;  text-align:left; }
.Home32-Container01 .contentmain1				 { }
.Home32-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home32-heading01								 { font-size:22px; line-height:1.2; color:#ffffff; white-space:normal; font-weight:normal; vertical-align:middle; margin:0px; position:relative; display:inline-block; letter-spacing:1px;  }

.Home33-Container01 							 { margin:0 ;  }
.Home33-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 23px;  text-align:left; }
.Home33-Container01 .contentmain1				 { }
.Home33-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home33-heading01								 { font-size:22px; line-height:1.2; color:#ed474a; white-space:normal; font-weight:normal; vertical-align:middle; margin:0px; position:relative; display:inline-block; letter-spacing:1px;  }
.Home33-heading01:after							{ content:""; border-bottom:3px solid #aaaaaa; width:40px; display:block; margin:15px 0 0px}



.Home34-Container01 							 { margin:0 0 5px; }
.Home34-Container01 .dnntitle					 { white-space:nowrap;  padding:0; text-align:left; margin:0; }
.Home34-Container01 .contentmain1				 { }
.Home34-Container01 .contentpane				 { padding:0 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home34-Container01 .line		 				 { height:2px; width:50px; background-color:#3b9cf7; margin:20px 0 30px; position:relative; z-index:1;}
.Home34-Container01 .Home34-heading01            {   white-space: normal;vertical-align: middle; padding: 0px;margin: 0px;display: inline-block;padding: 0px 0px 0; color:#dddddd; font-size:20px; }

.Home35-Container01 							 { margin:0 ;  }
.Home35-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 33px;  text-align:left; }
.Home35-Container01 .contentmain1				 { }
.Home35-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home35-heading01								 { font-size:24px; line-height:1.2; color:#ffffff; white-space:normal; font-weight:normal;font-weight:lighter; vertical-align:middle; margin:0px; position:relative; display:inline-block; letter-spacing:1px;  }
.Home35-heading01:after							{ content:""; border-bottom:1px solid #3cceda; width:70px; display:block; margin:24px 0 0px}

.Home36-Container01 							 { margin:0 ;  }
.Home36-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 20px;margin: 0 0 18px;  text-align:left; position: relative;}
.Home36-Container01 .dnntitle:before 			 { content: "";height: 1px;width: 88px;background: #303030;position: absolute;left: 0;bottom: 0;}
.Home36-Container01 .contentmain1				 { }
.Home36-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home36-heading01								 { font-size:22px; line-height:1.2; color:#ffffff; white-space:normal; font-weight:normal;vertical-align:middle; margin:0px; letter-spacing:0px;  }

.Home37-Container01 							 { margin-bottom:5px; }
.Home37-Container01 .dnntitle					 { white-space:nowrap; margin:0; padding:0 0 0; text-align:center; line-height:1.3;} 
.Home37-Container01 .contentmain1			     { }
.Home37-Container01 .contentpane				 { padding:5px 0px 3px 0px; text-align:left; vertical-align:top; clear:both; }
.Home37-Container01 .dnntitle .line		 	 { width:177px; height:18px; margin:20px auto 25px; position:relative;}
.Home37-Container01 .dnntitle .line .line_l,
.Home37-Container01 .dnntitle .line .line_r	 { width:78px; height:1px; background-color:#009b85; position:absolute; top:7px; left:0;}
.Home37-Container01 .dnntitle .line .line_r	 { left:auto; right:0}
.Home37-Container01 .dnntitle .line .line_m	 { 
	width:15px;
	height:15px;
	border-right:1px solid #009b85;
	border-bottom:1px solid #009b85;
	position:absolute;
	top:0;
	left:50%;
	margin-left:-7px;
	transform:rotate(45deg);
	-ms-transform:rotate(45deg); /* IE 9 */
	-moz-transform:rotate(45deg); /* Firefox */
	-webkit-transform:rotate(45deg); /* Safari and Chrome */
	-o-transform:rotate(45deg); /* Opera */
}
.Home37-Container01 .dnntitle .line .line_m:before{ 
	content:"";
	width:7px;
	height:7px;
	background-color:#009b85;
	position:absolute;
	left:0;
	top:0;
	margin:2px;
}
.Home37-Container01 .dnntitle h3{ margin:0;}


.Home37-Container02 							 { margin:0 ;  }
.Home37-Container02 .dnntitle					 { white-space:nowrap; padding:0px 0 23px;  text-align:left; }
.Home37-Container02 .contentmain1				 { }
.Home37-Container02 .contentpane				 { padding:0 0px 0px 0px; vertical-align:top; clear:both; }
.Home37-heading02								 { font-size:20px; line-height:1.2; color:#f4f4f4; white-space:normal; font-weight:normal; vertical-align:middle; margin:0px; position:relative; display:inline-block; letter-spacing:1px;  }


.Home38-Container01 							 { margin:0 ;  }
.Home38-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 25px;  text-align:left; }
.Home38-Container01 .contentmain1				 { }
.Home38-Container01 .contentpane				 { padding:0 0px 0px 0px; vertical-align:top; clear:both; }
.Home38-heading01								 { font-size:30px; line-height:1.2; white-space:normal; font-weight:normal; vertical-align:middle; margin:0px; position:relative; display:inline-block; letter-spacing:1px;  }
.Home38-Container01 .dnntitle h2 {margin: 0 0 23px;}
.Home38-Container01 .dnntitle .line {
	width: 60px;
	height: 2px;
	background: #3CCEDA;
}

.Home38-Container02 							 { margin:0 ;  }
.Home38-Container02 .dnntitle					 { white-space:nowrap; padding:0px 0 32px;  text-align:left; }
.Home38-Container02 .contentmain1				 { }
.Home38-Container02 .contentpane				 { padding:0 0px 0px 0px; vertical-align:top; clear:both; }
.Home38-heading02								 { font-size:24px; line-height:1.2; color:#ddd; white-space:normal; font-weight:normal; vertical-align:middle; margin:0px; position:relative; display:inline-block; letter-spacing:1px;  }
.Home38-Container02 .dnntitle h2 {margin: 0 0 23px;}
.Home38-Container02 .dnntitle .line {
	width: 60px;
	height: 2px;
	background: #3CCEDA;
}

.Home39-Container01 							 { margin:0 ;  }
.Home39-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 20px;margin: 0 0 0;  text-align:left; position: relative;}

.Home39-Container01 .contentmain1				 { }
.Home39-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home39-heading01								 { font-size:24px; line-height:1; color:#ffffff; white-space:normal; font-weight:normal;vertical-align:middle; margin:0px; letter-spacing:0px;  }

.Home40-Container01 							 { margin:0 ;  }
.Home40-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 20px;margin: 0 0 0;  text-align:left; position: relative;}
.Home40-Container01 .contentmain1				 { }
.Home40-Container01 .contentpane				 { padding:0px; vertical-align:top; clear:both; }
.Home40-heading01								 { font-size:15px; line-height:1; color:#ffffff; white-space:normal; font-weight:bold;vertical-align:middle; margin:0px; letter-spacing:0px;text-transform: uppercase; }



.Home41-Container01 							 { margin:0 ;  }
.Home41-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 20px;margin: 0 0 0;  text-align:left; position: relative;}

.Home41-Container01 .contentmain1				 { }
.Home41-Container01 .contentpane				 { padding:5px 0px 0px 0px; vertical-align:top; clear:both; }
.Home41-heading01								 { font-size:15px; line-height:1; color:#d7d7d7; white-space:normal; font-weight:normal;vertical-align:middle; margin:0px; letter-spacing:3px;  }


.Contactus01-Container01 							 { margin:0 auto;  }
.Contactus01-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 0;  text-align:center; position:relative;}
.Contactus01-Container01 .contentmain1				 { }
.Contactus01-Container01 .contentpane				 { padding:0 0px 0px 0px; vertical-align:top; clear:both; }
.Contactus01-bg02{ background:url("/Portals/_default/Containers/ForVend/images/contactus01-bg02.jpg") repeat left center;}
.Contactus01-Container01 .dnntitle h4{ margin:0;}

.Contactus02-Container01 							 { margin:0 auto;  }
.Contactus02-Container01 .dnntitle					 { white-space:nowrap; padding:0px 0 0;  text-align:left; position:relative; }
.Contactus02-Container01 .contentmain1				 { }
.Contactus02-Container01 .contentpane				 { padding:0 0px 0px 0px; vertical-align:top; clear:both;  }
.Contactus02-Container01 .dnntitle h4				 { margin:0; font-weight:normal; color:#fff; font-size:24px; line-height:1;}
.Contactus02-Container01 .Normal 					 { color:#FFF;}

.Contactus01-heading01{font-size:30px; line-height:1.2; color:#333333; white-space:normal; vertical-align:middle; font-weight:bold; margin:0px; display:inline-block; position:relative; padding:0px 27px;  }
.Contactus01-heading01:before{ content:"";  border-left:3px solid #20a3f0; height:22px; margin:0; position:absolute; left:0; top:50%; margin-top:-11px; }
.Contactus01-heading01:after{ content:"";  border-right:3px solid #20a3f0; height:22px; margin:0; position:absolute; right:0; top:50%; margin-top:-11px; }

.Contactus02-heading01:after{content: "";width: 66px; display: block; border-bottom: 2px solid rgba(255,255,255,0.5);margin: 30px 0 34px; color:#fff;}

@media only screen and (max-width: 767px) {
	.Home38-heading01 {font-size: 22px;}
	.Home38-Container01 .dnntitle h2 {margin: 0 0 15px;}
	.Home38-heading02 {font-size: 22px;}
	.Home38-Container02 .dnntitle h2 {margin: 0 0 15px;}
}
.rateit {
    display: -moz-inline-box;
    display: inline-block;
    position: relative;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.rateit .rateit-range
{
    position: relative;
    display: -moz-inline-box;
    display: inline-block;
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif");
    height: 16px;
    outline: none;
}

.rateit .rateit-range * {
    display:block;
}

/* for IE 6 */
* html .rateit, * html .rateit .rateit-range
{
    display: inline;
}

/* for IE 7 */
* + html .rateit, * + html .rateit .rateit-range
{
    display: inline;
}

.rateit .rateit-hover, .rateit .rateit-selected
{
    position: absolute;
    left: 0px;
}

.rateit .rateit-hover-rtl, .rateit .rateit-selected-rtl
{
    left: auto;
    right: 0px;
}

.rateit .rateit-hover
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -32px;
}

.rateit .rateit-hover-rtl
{
    background-position: right -32px;
}

.rateit .rateit-selected
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -16px;
}

.rateit .rateit-selected-rtl
{
    background-position: right -16px;
}

.rateit .rateit-preset
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -48px;
}

.rateit .rateit-preset-rtl
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/star.gif") left -48px;
}

.rateit button.rateit-reset
{
    background: url("/DesktopModules/EasyDNNNews/static/rateit/css/delete.gif") 0 0;
    width: 16px;
    height: 16px;
    display: -moz-inline-box;
    display: inline-block;
    float: left;
    outline: none;
    border:none;
    padding: 0;
}

.rateit button.rateit-reset:hover, .rateit button.rateit-reset:focus
{
    background-position: 0 -16px;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
@charset "UTF-8";

.eds_modalWrapper {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  transition: all 200ms ease-in 0s;
  -webkit-transition: all 200ms ease-in 0s;
  -o-transition: all 200ms ease-in 0s;
  -moz-transition: all 200ms ease-in 0s;
  opacity: 0;
  visibility: hidden;
}
.eds_modalWrapper * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.eds_modalWrapper .eds_modalContent {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 6% auto;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  display: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Arial;
  font-color: #7b7b7b;
  font-size: 12px;
  text-align: left;
}
.eds_modalWrapper .eds_modalContent > div {
  padding: 20px 20px 0;
  position: relative;
  overflow: auto;
}
.eds_modalWrapper .eds_modalContent .dnnLabel {
  margin: 0;
  padding: 0;
  text-align: left;
  width: auto;
}
.eds_modalWrapper .eds_modalContent .dnnFormHelp {
  right: 8px;
}
.eds_modalWrapper .eds_modalContent .dnnTooltip {
  display: inline;
}
.eds_modalWrapper .eds_modalContent > h3 {
  background-color: #189fd3;
  color: #fff;
  font-family: Arial;
  font-size: 18px;
  font-weight: normal;
  line-height: 47px;
  margin: 0;
  padding: 0 20px;
  letter-spacing: normal;
  border-radius: 3px 3px 0 0;
}
.eds_modalWrapper .eds_modalContent > h3:before {
  font-family: "FontAwesome";
  color: #fff;
  padding-right: 15px;
  font-size: 30px;
  line-height: 44px;
}
.eds_modalWrapper .eds_modalContent input[type="text"],
.eds_modalWrapper .eds_modalContent textarea,
.eds_modalWrapper .eds_modalContent select {
  background: none #F9F9F9;
  border: solid 1px #ddd;
  border-radius: 3px;
  box-shadow: none;
  line-height: 1;
  font-family: Arial;
  font-size: 12px;
  text-shadow: none;
  color: #444;
  margin: 0;
  padding: 0 10px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 240px;
  transition: box-shadow 200ms linear;
  -webkit-transition: box-shadow 200ms linear;
  -o-transition: box-shadow 200ms linear;
  -moz-transition: box-shadow 200ms linear;
}
.eds_modalWrapper .eds_modalContent input[type="text"]:hover,
.eds_modalWrapper .eds_modalContent textarea:hover,
.eds_modalWrapper .eds_modalContent select:hover {
  border: solid 1px #C1C1C1;
  box-shadow: none;
  color: #444;
  background: none #F9F9F9;
}
.eds_modalWrapper .eds_modalContent input[type="text"]:focus,
.eds_modalWrapper .eds_modalContent textarea:focus,
.eds_modalWrapper .eds_modalContent select:focus {
  border: solid 1px #BABDC9;
  box-shadow: 0 0 3px #98ACF4;
  background: transparent #fff;
  color: #444;
}
.eds_modalWrapper .eds_modalContent input[type="text"]:disabled,
.eds_modalWrapper .eds_modalContent textarea:disabled,
.eds_modalWrapper .eds_modalContent select:disabled {
  color: #929292;
  text-shadow: 1px 1px 0 #fff;
  cursor: not-allowed;
}
.eds_modalWrapper .eds_modalContent input[type="text"].eds_numberOfTickets {
  width: 45px;
  border-right-width: 3px;
  border-right-color: #f00;
}
.eds_modalWrapper .eds_modalContent input[type="text"],
.eds_modalWrapper .eds_modalContent select {
  height: 26px;
  padding-right: 0;
  width: 240px;
}
.eds_modalWrapper .eds_modalContent textarea {
  padding: 10px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_modalWrapper .eds_modalContent input[type="text"],
  .eds_modalWrapper .eds_modalContent textarea,
  .eds_modalWrapper .eds_modalContent select {
    width: 100% !important;
  }
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper {
  text-align: right;
  margin: 20px 0;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type="submit"] {
  background: none #189fd3;
  box-shadow: none !important;
  border: none !important;
  border-radius: 3px;
  color: #fff !important;
  font-family: Arial;
  font-size: 16px;
  font-weight: normal;
  line-height: 48px;
  text-shadow: none !important;
  padding: 0 30px;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block;
  text-transform: none;
  margin: 0;
  height: auto;
  transition: all 100ms linear;
  -webkit-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type="submit"]:hover {
  background: none #2cb3e7;
}
.eds_modalWrapper .eds_modalContent input[type="radio"] + label,
.eds_modalWrapper .eds_modalContent input[type="checkbox"] + label {
  line-height: 22px;
  margin-left: 3px;
  font-weight: normal;
  display: inline-block;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput {
  margin: 0 0 10px;
  padding: 0;
  white-space: nowrap;
  position: relative;
  font-size: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput:after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput .HTMLeditor,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > .dnnLeft,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > .dnnRight {
  float: none;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select ~ span {
  font-size: 11px;
  line-height: 1;
  color: #C42323;
  margin-left: 8px;
  width: auto !important;
  display: inline;
  margin: 0;
  font-weight: normal;
  margin-left: 5px;
  position: absolute;
  left: 165px;
  bottom: -5px;
  top: auto;
  text-shadow: 0px 0px 2px #fff;
  transition: opacity 200ms ease;
  -webkit-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput input ~ span,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea ~ span,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput select ~ span {
    bottom: auto;
    left: auto;
    right: 10px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput input:focus ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea:focus ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select:focus ~ span {
  opacity: 0.1;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo {
  font-size: 12px;
  line-height: 1;
  color: #3b3b3b;
  margin: 0 0 7px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo > span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo.eds_estimatedTotal {
  font-weight: bold;
  font-size: 16px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo.eds_estimatedTotal > span {
  color: #e3011f;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > label,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > div,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    width: 100%;
    clear: both;
    float: none;
    display: block;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 > span {
  width: 100px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input[type="text"],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 select,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea {
  width: 280px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
  left: 125px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
    left: auto;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput input[type="text"],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput select {
  width: 440px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput input[type="text"],
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput select {
    width: 280px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea {
  height: 110px;
}
.eds_modalWrapper .eds_modalContent label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
  font-family: Arial;
  font-size: 13px;
  line-height: 26px;
  color: #7B7B7B;
  width: 140px;
  display: inline-block;
  margin: 0 15px 0 0;
  vertical-align: top;
  font-weight: bold;
  text-decoration: none;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_modalWrapper .eds_modalContent label,
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    display: block;
    width: 100%;
  }
}
.eds_modalWrapper .eds_modalContent a.dnnFormHelp,
.eds_modalWrapper .eds_modalContent .dnnForm .dnnFormItem a.dnnFormHelp,
.eds_modalWrapper .eds_modalContent .dnnTooltip label a.dnnFormHelp {
  font-family: Arial;
  font-size: 13px;
  line-height: 1;
  color: #7B7B7B;
}
.eds_modalWrapper .eds_modalContent ul {
  margin: 15px 0;
  padding: 0;
}
.eds_modalWrapper .eds_modalContent ul li {
  list-style-type: none;
  margin: 0 0 5px;
  padding: 0;
}
.eds_modalWrapper .eds_modalContent ul li label {
  font-weight: normal;
}
.eds_modalWrapper .eds_modalContent ul li label span {
  font-weight: bold;
}
.eds_modalWrapper .eds_modalContent ul.eds_attendantsPrices li input[type="text"] {
  width: 35px;
}
.eds_modalWrapper .eds_modalContent > div .eds_eventRegistrationLoading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(255, 255, 255, 0.5) url("/DesktopModules/EasyDNNNews/static/common/images/eventRegistrationLoading.gif") no-repeat center center;
}
.eds_modalWrapper .edn_errorMessage {
  font-family: Arial;
  line-height: 1;
  font-size: 11px;
  color: #AB1111;
  margin-left: 10px;
}
@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .eds_modalWrapper .edn_errorMessage {
    display: block;
    margin-top: 2px;
    margin-left: 0;
  }
}
.eds_modalWrapper .eds_closeWindowButtonOuter {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  text-align: center;
  border: solid 1px #115f7d;
  border-radius: 3px;
  line-height: 0 !important;
  font-size: 0 !important;
  cursor: pointer;
  transition: background 100ms linear;
  -webkit-transition: background 100ms linear;
  -o-transition: background 100ms linear;
  -moz-transition: background 100ms linear;
}
.eds_modalWrapper .eds_closeWindowButtonOuter:before {
  font-family: "FontAwesome";
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  content: "";
}
.eds_modalWrapper .eds_closeWindowButtonOuter:hover {
  background-color: #115f7d;
}
.eds_modalWrapper .eds_updateProfile {
  font-size: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  text-align: right;
  float: right;
  margin: 11px 70px 0 0;
}
.eds_modalWrapper .eds_updateProfile > a {
  text-decoration: underline;
  color: #fff;
  font-size: 14px;
  line-height: 19px;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/static/common/images/user.png") no-repeat 0 0;
  padding: 1px 0 0 22px;
}
.eds_modalWrapper .eds_updateProfile > a:hover {
  text-decoration: none;
}
.eds_modalWrapper .eds_infoMessages {
  margin: 10px 0;
  display: block;
  line-height: 1.1 !important;
  font-size: 16px !important;
  color: #fff !important;
  padding: 15px 25px;
  border-radius: 2px;
  margin: 5px;
}
.eds_modalWrapper .eds_infoMessages:before {
  font-size: 21px;
  color: #fff !important;
  font-family: "FontAwesome";
  padding-right: 20px;
  line-height: 1;
}
.eds_modalWrapper .eds_infoMessages.eds_success {
  background-color: #00be9c;
}
.eds_modalWrapper .eds_infoMessages.eds_success:before {
  content: "";
}
.eds_modalWrapper .eds_infoMessages.eds_info {
  background-color: #189fd3;
}
.eds_modalWrapper .eds_infoMessages.eds_info:before {
  content: "";
}
.eds_modalWrapper .eds_infoMessages.eds_warning {
  background-color: #f3c500;
}
.eds_modalWrapper .eds_infoMessages.eds_warning:before {
  content: "";
}
.eds_modalWrapper .eds_infoMessages.eds_error {
  background-color: #e07171;
}
.eds_modalWrapper .eds_infoMessages.eds_error:before {
  content: "";
}
.eds_modalWrapper .eds_formStatus {
  padding-bottom: 15px;
}
.eds_modalWrapper .edNews_eventDateRestriction {
  margin: 10px 0 0;
}
.eds_modalWrapper .edNews_eventDateRestriction > table {
  width: 100%;
  border: solid 1px #ffffff;
  box-shadow: 0 0 0 1px #E9E9E9;
  margin-bottom: 10px;
  border-collapse: collapse;
  border-spacing: 0;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody {
  background-color: #F4F4F4;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td {
  padding: 4px;
  text-align: center;
  vertical-align: middle;
  border: none;
  border-bottom: solid 1px #E6E6E6;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td:first-child {
  background-color: #F4F4F4;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td input[type="radio"] {
  margin: 10px;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:nth-child(odd) > td {
  border-bottom: solid 1px #fff;
  background-color: #E6E6E6;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:nth-child(odd) > td:first-child {
  background-image: linear-gradient(to top right, #F4F4F4, #F4F4F4 50%, #E6E6E6 50%, #E6E6E6);
  border-bottom-color: #F4F4F4;
  position: relative;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:last-child > td {
  border-bottom: none;
}
.eds_modalWrapper .eds_styledRadio {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio * {
  vertical-align: middle;
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio *::before,
.eds_modalWrapper .eds_styledRadio *::after {
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"] {
  display: none;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"] + label {
  display: inline-block;
  position: relative;
  margin: 0;
  vertical-align: baseline;
  border-radius: 50% 0 0 50%;
  padding: 2px 0 0 25px;
  min-height: 25px;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"] + label::before, .eds_modalWrapper .eds_styledRadio input[type="radio"] + label:after {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #fff;
  margin: 0;
  padding: 0;
  content: "";
  font-size: 0;
  line-height: 0;
  transition: all ease-in-out 0.2s;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"] + label::before {
  width: 20px;
  height: 20px;
  top: 2px;
  left: 2px;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"] + label:after {
  border: 2px solid #919191;
  background: transparent;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"] + label:hover::before {
  background: #60cb20 !important;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"] + label:hover:after {
  border-color: #60cb20 !important;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"]:checked + label::before {
  background: #189fd3;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"]:checked + label:after {
  border-color: #189fd3;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"]:disabled {
  pointer-events: none;
}
.eds_modalWrapper .eds_styledRadio input[type="radio"]:disabled + label {
  opacity: 0.6;
  pointer-events: none;
}
.eds_modalWrapper .eds_styledRadio.eds_noLabel {
  overflow: hidden;
  width: 22px;
  height: 22px;
}
.eds_modalWrapper .eds_preview_cell_title_disabled {
  opacity: 0.6;
}
.eds_modalWrapper.eds_modalVisible {
  opacity: 1;
  visibility: visible;
}
.eds_modalWrapper.eds_modalVisible .eds_modalContent {
  display: block;
}
.eds_modalWrapper.eds_contactForm .eds_modalContent > h3:before {
  content: "";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > h3:before {
  content: "";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div {
  color: #7b7b7b;
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div p {
  margin: 0;
  padding: 0;
  color: #7b7b7b;
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div p + p {
  margin-top: 15px;
}
.eds_modalWrapper .eds_animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.eds_modalWrapper .eds_fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
