﻿
@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------------
	
	* Filename:				default.css
	* Description: 			sets typography, basic grids, 
							and standard formstyles
	* Version:				1.0.0 (2012-06-16)
	* Author:				Ryan Martinez
	
	== INDEX ===============================================
	
	$__generic classes		classes used globally, should be at bottom to prevent semantic inheritance
	
------------------------------------------------------------*/


/*-------------------------------------*/
/* RESET */
/*-------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
    */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
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: Arial, 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: Arial, 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;
    word-wrap: break-word;
}

/* 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: 100%;
}

    .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%;
    min-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;
    word-break: break-word;
}

    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, .dnnFormPopup > * {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .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;
}
.dnnPanelLoading {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-opacity: 0.7;
    opacity: 0.7;
}

/*-------------------------------------*/
/* 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 */
body:not(.dnnEditState) .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 > span#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*/

/* Overflow for dnnMenu dropdown */
#dnnMenu .dropdown-menu {
    word-wrap: break-word;
}

/* End Overflow for dnnMenu dropdown */


.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;
        word-wrap: break-word;
    }

        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/20073-unlimitedcolorspack-055/fonts/glyphicons-halflings-regular.eot");src:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/fonts/glyphicons-halflings-regular.eot?#iefix") format('embedded-opentype'),url("/Portals/_default/skins/20073-unlimitedcolorspack-055/fonts/glyphicons-halflings-regular.woff2") format('woff2'),url("/Portals/_default/skins/20073-unlimitedcolorspack-055/fonts/glyphicons-halflings-regular.woff") format('woff'),url("/Portals/_default/skins/20073-unlimitedcolorspack-055/fonts/glyphicons-halflings-regular.ttf") format('truetype'),url("/Portals/_default/skins/20073-unlimitedcolorspack-055/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;}}




/*!
 *  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}



@-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;
}
/*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;
}


/*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:108px;
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/xplugin.png") no-repeat center center;
	z-index:999;
	cursor:pointer;
}
.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) {
	
}





















/*******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;
	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;
}
.photo_box .title,
.photo_box .description{
	display:block;
}

.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 {
	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 span.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 span.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 span.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 span.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 span.ico_left,
.photo_box:hover.ico_LeftAndRight_enter span.ico_right,
.photo_box:hover.ico_TopAndBottom_enter span.ico_top,
.photo_box:hover.ico_TopAndBottom_enter span.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);
}
@-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:70px;
	border-color:#eee;
	margin:20px auto;
}
.video-bg .play {
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-bg .player {
	width: 100%;
	background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/loader.gif") no-repeat center center #000;
}
.video-bg .YTPOverlay {
	background-color: #000;
	filter: alpha(opacity=30);
	opacity: 0.3;
}
.player_boxes {
	padding: 90px 15px;
	text-align: center;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	background-color:rgba(255,255,255,0.6);
	position:relative;
	z-index:1;
}
.player_boxes .player_title {
    font-size: 50px;
    font-weight: normal;
    letter-spacing: 3px;
    line-height: 1.1;
}
.player_boxes .player_smalltitle {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1.2;
	color:#009B85;
}
.player_boxes .btn {
	padding: 12px 30px;
    margin: 0px 10px;
    position: relative;
    font-size: 14px;
    display: inline-block;
    white-space: nowrap;
    margin-bottom: 10px;
	background-color:#009B85;
	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;
	min-width:195px;
	text-align:center;
}
.player_boxes .btn:hover {
	text-decoration: none;
	background-color: #555555;
}
.player_boxes .player_content {
	margin: 0px 10%;
	color:#333;
}
.player_boxes.black{
	background-color:rgba(0,0,0,0.6);
}
.player_boxes.black .player_content{
	color:#FFF;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.player_boxes {
		padding: 50px 0px;
	}
}
@media only screen and (max-width: 767px) {
	.player_boxes {
		padding: 20px 0px;
	}
	.player_boxes .player_title {
		font-size: 25px;
	}
}

/*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;
}

.roller-up{
	position:fixed;
	top:0;
	background-color:rgba(0,0,0,0.5);
	height:18px;
	cursor:pointer;
	z-index:950;
	text-align:center;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
}
.roller-down{
	position:fixed;
	bottom:0;
	background-color:rgba(0,0,0,0.5);
	height:18px;
	cursor:pointer;
	z-index:950;
	text-align:center;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-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{
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	margin:-3px 0 0px -3px;
}
.roller-down:before{
	transform:rotate(-135deg);
	-webkit-transform:rotate(-135deg);
	margin:0px 0 3px -3px;
}






.accordion-bg-01{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/accordion-bg-01.jpg") no-repeat center center;
	background-size:cover;
}
.accordion-bg-02{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/accordion-bg-02.jpg") no-repeat center center;
	background-size:cover;
}
.accordion-bg-03{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/accordion-bg-03.jpg") no-repeat center center;
	background-size:cover;
}
.accordion-bg-04{
	background-color:#f9f9f9;
}
.accordion-title {
	color:#1e1e1e;
	font-size:25px;
	margin-bottom:50px;

}


.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;
	color:#20a3f0;
	display:block;
    padding: 13px 30px 14px 20px;
	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 30px 14px 20px;
}
.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: 13px 30px 14px 20px;
	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: 20px 30px 14px 20px;
}

.dg-accordion03{
	border-bottom:1px solid rgba(255,255,255,0.5);
}
.dg-accordion03 .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-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:bold;
	font-size:15px;
	color:#20a3f0;
	display:block;
    padding: 20px 30px 14px 20px;
	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? */	
}
.dg-accordion03 .panel-heading .panel-title a.collapsed{
	color:#FFF;
    padding-top:13px;
	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:21px;
	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: 20px 30px 14px 20px;
}
.dg-accordion04{
	border-bottom:1px solid rgba(255,255,255,0.5);
}
.dg-accordion04 .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-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:bold;
	font-size:15px;
	color:#FFF;
	display:block;
    padding: 20px 30px 14px 20px;
	position:relative;
	background-color: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-accordion04 .panel-heading .panel-title a.collapsed{
	color:#FFF;
    padding-top: 13px;
	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;
}
.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: 20px 30px 14px 20px;
}
.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: 13px 30px 14px 20px;
	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:#333333;
}
.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 14px 20px;
}
.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 #cccccc;
	margin-bottom:10px;
	-moz-box-shadow:0px 0px 5px rgba(0,0,0,0.1),0px 0px 5px rgba(0,0,0,0.1) inset;               /* For Firefox3.6+ */
	-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.1),0px 0px 5px rgba(0,0,0,0.1) inset;            /* For Chrome5+, Safari5+ */
	box-shadow:0px 0px 5px rgba(0,0,0,0.1),0px 0px 5px rgba(0,0,0,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: 13px 30px 14px 20px;
	position:relative;
}
.dg-accordion06 .panel-heading .panel-title a.collapsed{
	color:#333333;
}
.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: 20px 30px 14px 20px;
}
.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 10px;
	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: 13px 30px 14px 60px;
	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.collapsed{
	color:#333333;
}
.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 .arrow:before{
	content:"\f068";
	font-family:"FontAwesome";
	font-weight: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? */
}
.dg-accordion07 .panel-heading .collapsed .arrow{
	background-color:#eaeaea;
	color:#333333;
}
.dg-accordion07 .panel-heading .collapsed .arrow:before{
	content:"\f067";
}
.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-accordion08{
	position:relative;
}
.dg-accordion08:before{
	content:"";
	position:absolute;
	top:24px;
	left:3px;
	bottom:19px;
	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:19px;
	left:0;
	width:7px;
	height:7px;
	background-color:#20a3f0;
	z-index:2;
}
.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: 13px 30px 14px 30px;
	position:relative;
	font-weight:bold;
	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-accordion08 .panel-heading .panel-title a.collapsed{
	color:#333333;
}
.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:48px;
	position:absolute;
	top:-1px;
	bottom:-1px;
	right:-1px;
	left:auto;
	color:#333333;
	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 .arrow:before{
	content:"\f068";
	font-family:"FontAwesome";	
	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 .arrow:before{
	content:"\f067";
}
.dg-accordion08 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion08 .panel-heading .collapsed:hover .arrow:before {
	color:#333333;
}
.dg-accordion08 .panel-body{
    padding: 20px 30px 14px 30px;
}
.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: 13px 60px 14px 20px;
	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:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.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{
	background-color:#dcdcdc;
	box-shadow:none;
	-webkit-box-shadow:none;
	border:1px solid #cacaca;
	border-top:none;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.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 .arrow:before{
	content:"\f068";
	font-family:"FontAwesome";
	font-weight: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? */
}
.dg-accordion09 .panel-heading .collapsed .arrow{
	color:#333333;
}
.dg-accordion09 .panel-heading .collapsed .arrow:before{
	content:"\f067";
}
.dg-accordion09 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion09 .panel-heading .collapsed:hover .arrow:before {
	color:#666666;
}
.dg-accordion09 .panel-body{
    padding: 20px 30px 14px 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: 13px 60px 14px 20px;
	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:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background-color:#FFF;
}
.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:#f0f0f0;
	box-shadow:none;
	-webkit-box-shadow:none;
	border:1px solid #cacaca;
	border-top:none;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.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 .arrow:before{
	content:"\f068";
	font-family:"FontAwesome";
	font-weight: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? */
}
.dg-accordion10 .panel-heading .collapsed .arrow{
	color:#333333;
}
.dg-accordion10 .panel-heading .collapsed .arrow:before{
	content:"\f067";
}
.dg-accordion10 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion10 .panel-heading .collapsed:hover .arrow:before {
	color:#666666;
}
.dg-accordion10 .panel-body{
    padding: 20px 30px 14px 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: 15px 30px 16px 60px;
	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-accordion11 .panel-heading .panel-title a.collapsed{
	color:#333333;
}
.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 .arrow:before{
	content:"\f068";
	font-family:"FontAwesome";
	font-weight: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? */
}
.dg-accordion11 .panel-heading .collapsed .arrow{
	color:#333333;
}
.dg-accordion11 .panel-heading .collapsed .arrow:before{
	content:"\f067";
}
.dg-accordion11 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion11 .panel-heading .collapsed:hover .arrow:before {
	color:#20a3f0;
}
.dg-accordion11 .panel-body{
    padding: 20px 30px 14px 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: 15px 60px 16px 72px;
	position:relative;
	border:1px solid #e6e6e6;
	font-weight:bold;
	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 .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;
	border:1px solid #e6e6e6;
	border-top: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;
	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:before{
	content:"\f068";
	font-family:"FontAwesome";
	font-weight: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? */
}
.dg-accordion12 .panel-heading .collapsed .arrow{
	color:#666666;
}
.dg-accordion12 .panel-heading .collapsed .arrow:before{
	content:"\f067";
}
.dg-accordion12 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion12 .panel-heading .collapsed:hover .arrow:before {
	color:#20a3f0;
}
.dg-accordion12 .panel-body{
    padding: 20px 30px 14px 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: 15px 60px 16px 72px;
	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 .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;
	border:1px solid #3a6063;
	border-top: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 .arrow:before{
	content:"\f068";
	font-family:"FontAwesome";
	font-weight: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? */
}
.dg-accordion13 .panel-heading .collapsed .arrow{
	color:#ffffff;
}
.dg-accordion13 .panel-heading .collapsed .arrow:before{
	content:"\f067";
}
.dg-accordion13 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion13 .panel-heading .collapsed:hover .arrow:before {
	color:#20a3f0;
}
.dg-accordion13 .panel-body{
    padding: 20px 30px 14px 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: 15px 60px 16px 72px;
	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 .number {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	width:50px;
	text-align:center;
	line-height:50px;
	border-right:1px solid #20a3f0;
}
.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;
	border:1px solid #3a6063;
	border-top: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 .arrow:before{
	content:"\f068";
	font-family:"FontAwesome";
	font-weight: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? */
}
.dg-accordion14 .panel-heading .collapsed .arrow{
	color:#ffffff;
}
.dg-accordion14 .panel-heading .collapsed .arrow:before{
	content:"\f067";
}
.dg-accordion14 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion14 .panel-heading .collapsed:hover .arrow:before {
	color:#20a3f0;
}
.dg-accordion14 .panel-body{
    padding: 20px 30px 14px 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: 16px 30px 17px 70px;
	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.collapsed{
	color:#333333;
	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 .arrow:before{
	content:"\f068";
	font-family:"FontAwesome";
	font-weight: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? */
}
.dg-accordion15 .panel-heading .collapsed .arrow{
	background-color:#dedddd;
	color:#2f2f2f;
}
.dg-accordion15 .panel-heading .collapsed .arrow:before{
	content:"\f067";
}
.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: 20px 30px 14px 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: 15px 60px 16px 20px;
	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.collapsed{
	color:#666666;
}
.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 .arrow:before{
	content:"\f068";
	font-family:"FontAwesome";
	font-weight: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? */
}
.dg-accordion16 .panel-heading .collapsed .arrow{
	color:#666666;
}
.dg-accordion16 .panel-heading .collapsed .arrow:before{
	content:"\f067";
}
.dg-accordion16 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion16 .panel-heading .collapsed:hover .arrow:before {
	color:#666666;
}
.dg-accordion16 .panel-body{
    padding: 20px 30px 14px 20px;
}
.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:10px;
}
.dg-accordion17 .panel-heading{
    padding:0px;
}
.dg-accordion17 .panel-heading .panel-title a{
	font-weight:bold;
	font-size:15px;
	color:#FFF;
	display:block;
    padding: 13px 30px 14px 20px;
	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:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.dg-accordion17 .panel-heading .panel-title a.collapsed{
	color:#434343;
	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:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.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: 20px 30px 14px 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: 20px 30px 14px 60px;
	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:#333333;
	padding-top:13px;
	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:17px;
	left:30px;
	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:"\f068";
	font-family:"FontAwesome";
	font-weight: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? */
}
.dg-accordion18 .panel-heading .collapsed .arrow{
	background-color:#eaeaea;
	color:#333333;
	top:11px;
}
.dg-accordion18 .panel-heading .collapsed .arrow:before{
	content:"\f067";
}
.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: 20px 20px 14px 60px;
}
.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: 20px 30px 14px 60px;
	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;
	padding-top:13px;
	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:17px;
	left:30px;
	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:"\f068";
	font-family:"FontAwesome";
	font-weight: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? */
}
.dg-accordion19 .panel-heading .collapsed .arrow{
	top:11px;
}
.dg-accordion19 .panel-heading .collapsed .arrow:before{
	content:"\f067";
}
.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: 20px 30px 14px 60px;
}
.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:#2ea9f1;
	display:block;
    padding: 15px 60px 16px 20px;
	position:relative;
	border-top:1px solid #e6e6e6;
	font-weight:bold;
	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:#666666;
	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:"\f068";
	font-family:"FontAwesome";
	font-weight: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? */
}
.dg-accordion20 .panel-heading .collapsed .arrow{
	background-color:#666666;
}
.dg-accordion20 .panel-heading .collapsed .arrow:before{
	content:"\f067";
}
.dg-accordion20 .panel-heading .collapsed:hover .arrow{
}
.dg-accordion20 .panel-heading .collapsed:hover .arrow:before {
}
.dg-accordion20 .panel-body{
    padding: 20px 30px 14px 20px;
}


























































.alert-bg-01{
	background-image:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/alert-bg-01.jpg");
}
.alert-bg-02{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/alert-bg-02.jpg") center center no-repeat;
	background-size:cover;
}


.dg-alert01{
	border:1px solid #3aaef2;
	padding:18px 20px;
	margin-bottom:25px;
}
.dg-alert01.radius{
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

.dg-alert01 .icon{
	width:20px;
	height:20px;
	text-align:center;
	margin-right:15px;
}
.dg-alert01 .close{
	font-size:34px;
	color:inherit;
	font-weight:normal;
    height: 22px;
    line-height: 20px;
	opacity:1;
}
.dg-alert01.color-01{
	border-color:#20a3f0;
	color:#20a3f0;
}
.dg-alert01.color-02{
	border-color:#7e47dd;
	color:#6d2ed9;
}
.dg-alert01.color-03{
	border-color:#dedede;
	color:#5d5d5d;
}
.dg-alert01.color-04{
	border-color:#f9cf79;
	color:#ec6e02;
}

.dg-alert02 {
	border:1px solid transparent;
	background-color:#40a2e6;
	padding:26px 20px;
	font-size:13px;
	color:#FFF;
	margin-bottom:25px;
	position:relative;
	min-height:100px;
}
.dg-alert02 h6 {
	color:inherit;
	font-weight:bold;
	font-size:13px;
	margin-top:0;
}
.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:11px;
	top:10px;
	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.color-01{
	background-color:#40a2e6;
}
.dg-alert02.color-02{
	background-color:#1bbc9b;
}
.dg-alert02.color-03{
	background-color:#e15067;
}
.dg-alert02.color-04{
	background-color:#d87a0d;
}
.dg-alert02.box.color-01{
	background-color:#c7effd;
	border-color:#40a2e6;
	color:#40a2e6;
}
.dg-alert02.box.color-02{
	background-color:#a5fbe9;
	border-color:#1bbc9b;
	color:#1bbc9b;
}
.dg-alert02.box.color-03{
	background-color:#fdc0ca;
	border-color:#e15067;
	color:#e15067;
}
.dg-alert02.box.color-04{
	background-color:#f9cf79;
	border-color:#d87a0d;
	color:#d87a0d;
}
.dg-alert02.box.color-01 .icon{
	border-color:#40a2e6;
}
.dg-alert02.box.color-02 .icon{
	border-color:#1bbc9b;
}
.dg-alert02.box.color-03 .icon{
	border-color:#e15067;
}
.dg-alert02.box.color-04 .icon{
	border-color:#d87a0d;
}

.dg-alert03 {
	border:1px solid #20a3f0;
	font-size:13px;
	color:#20a3f0;
	margin-bottom:25px;
	position:relative;
	padding:35px 30px ;
}
.dg-alert03 h6 {
	color:inherit;
	font-weight:normal;
	font-size:15px;
	margin-top:0;
}
.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:11px;
	top:10px;
	text-shadow:none;
	-webkit-text-shadow:none;
}

.dg-alert03 .icon{
	position:absolute;
	top:0px;
	left:0px;
	bottom:0;
	width:114px;
	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:112px;
}
.dg-alert03.color-01{
	border-color:#20a3f0;
	color:#20a3f0;
}
.dg-alert03.color-02{
	border-color:#8d6dc4;
	color:#8d6dc4;
}
.dg-alert03.color-03{
	border-color:#5d5d5d;
	color:#5d5d5d;
}
.dg-alert03.color-04{
	border-color:#ec6e02;
	color:#ec6e02;
}
.dg-alert03.color-01 .icon{
	border-color:#20a3f0;
}
.dg-alert03.color-02 .icon{
	border-color:#8d6dc4;
}
.dg-alert03.color-03 .icon{
	border-color:#5d5d5d;
}
.dg-alert03.color-04 .icon{
	border-color:#ec6e02;
}

.dg-alert04 {
	background-color:#1bbc9b;
	font-size:13px;
	color:#ffffff;
	margin-bottom:25px;
	position:relative;
	padding:35px 30px ;
}
.dg-alert04 h6 {
	color:inherit;
	font-weight:normal;
	font-size:15px;
	margin-top:0;
}
.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:11px;
	top:10px;
	text-shadow:none;
	-webkit-text-shadow:none;
}
.dg-alert04 .icon{
	position:absolute;
	top:0px;
	left:0px;
	bottom:0;
	width:114px;
	background-color:rgba(255,255,255,0.2);
	text-align:center;
	font-size:30px;
}
.dg-alert04 .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:14px;
}

.dg-alert04 .icon + h6,
.dg-alert04 .icon + p,
.dg-alert04 .icon + h6 + p,
.dg-alert04 .icon + p + h6{
	padding-left:112px;
}
.dg-alert04.color-01{
	background-color:#1bbc9b;
}
.dg-alert04.color-02{
	background-color:#1286d6;
}
.dg-alert04.color-03{
	background-color:#e15067;
}
.dg-alert04.color-04{
	background-color:#e1940e;
}
.dg-alert04.color-01 .icon{
	background-color:#33e2be;
}
.dg-alert04.color-02 .icon{
	background-color:#20a3f0;
}
.dg-alert04.color-03 .icon{
	background-color:#ef8495;
}
.dg-alert04.color-04 .icon{
	background-color:#f3aa2c;
}
.dg-alert05 {
	border:1px solid #20a3f0;
	font-size:13px;
	color:#ffffff;
	margin-bottom:25px;
	position:relative;
	padding:35px 80px 35px 30px ;
}
.dg-alert05 h6 {
	color:inherit;
	font-weight:normal;
	font-size:15px;
	margin-top:0;
}
.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:14px;
	top:14px;
	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:114px;
	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:-23px 0 0 -23px;
	display:inline-block;
	text-align:center;
	height:45px;
	width:45px;
	line-height:45px;
	font-size:24px;
}

.dg-alert05 .icon + h6,
.dg-alert05 .icon + p,
.dg-alert05 .icon + h6 + p,
.dg-alert05 .icon + p + h6{
	padding-left:112px;
}
.dg-alert05.color-01{
	border-color:#20a3f0;
}
.dg-alert05.color-02{
	border-color:#8d6dc4;
}
.dg-alert05.color-03{
	border-color:#666666;
}
.dg-alert05.color-04{
	border-color:#1bbc9b;
}
.dg-alert05.color-01 .close{
	border-color:#20a3f0;
	color:#20a3f0;
}
.dg-alert05.color-02 .close{
	border-color:#8d6dc4;
	color:#8d6dc4;
}
.dg-alert05.color-03 .close{
	border-color:#666666;
	color:#666666;
}
.dg-alert05.color-04 .close{
	border-color:#1bbc9b;
	color:#1bbc9b;
}
.dg-alert05.color-01 .icon{
	background-color:#20a3f0;
}
.dg-alert05.color-02 .icon{
	background-color:#8d6dc4;
}
.dg-alert05.color-03 .icon{
	background-color:#666666;
}
.dg-alert05.color-04 .icon{
	background-color:#1bbc9b;
}
.dg-alert06 {
	background-color:#1bbc9b;
	font-size:13px;
	color:#ffffff;
	margin-bottom:25px;
	position:relative;
	padding:35px 70px 35px 30px ;
}
.dg-alert06 h6 {
	color:inherit;
	font-weight:normal;
	font-size:15px;
	margin-top:0;
}
.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:#f3aa2c;
}
.dg-alert06 .icon{
	position:absolute;
	top:0px;
	left:0px;
	bottom:0;
	width:114px;
	background-color:rgba(255,255,255,0.2);
	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:14px;
}

.dg-alert06 .icon + h6,
.dg-alert06 .icon + p,
.dg-alert06 .icon + h6 + p,
.dg-alert06 .icon + p + h6{
	padding-left:112px;
}
.dg-alert06.color-01{
	background-color:#e1940e;
}
.dg-alert06.color-02{
	background-color:#e15067;
}
.dg-alert06.color-03{
	background-color:#1286d6;
}
.dg-alert06.color-04{
	background-color:#1bbc9b;
}
.dg-alert06.color-01 .close{
	background-color:#f3aa2c;
}
.dg-alert06.color-02 .close{
	background-color:#ef8495;
}
.dg-alert06.color-03 .close{
	background-color:#20a3f0;
}
.dg-alert06.color-04 .close{
	background-color:#33e2be;
}
.dg-alert06.color-01 .icon{
	background-color:#f3aa2c;
}
.dg-alert06.color-02 .icon{
	background-color:#ef8495;
}
.dg-alert06.color-03 .icon{
	background-color:#20a3f0;
}
.dg-alert06.color-04 .icon{
	background-color:#33e2be;
}

.dg-alert07 {
	border:1px solid #dadada;
	font-size:13px;
	color:#333333;
	margin-bottom:25px;
	position:relative;
	padding:40px 50px 40px 30px ;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
}
.dg-alert07 h6 {
	color:inherit;
	font-weight:bold;
	font-size:15px;
	margin-top:0;
}
.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:20px;
	top:20px;
	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.color-01 .icon:before{
	border-color:#f03251;
	background-color:#fdc0ca;
	color:#f03251;
}
.dg-alert07.color-02 .icon:before{
	border-color:#8d6dc4;
	background-color:#c2a4f7;
	color:#8d6dc4;
}
.dg-alert07.color-03 .icon:before{
	border-color:#1bbc9b;
	background-color:#a5fbe9;
	color:#1bbc9b;
}
.dg-alert07.color-04 .icon:before{
	border-color:#0097ff;
	background-color:#c7effd;
	color:#0097ff;
}

.dg-alert08 {
	border:1px solid #dadada;
	font-size:13px;
	color:#333333;
	margin-bottom:25px;
	position:relative;
	padding:40px 50px 40px 30px ;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
}
.dg-alert08 h6 {
	color:inherit;
	font-weight:bold;
	font-size:15px;
	margin-top:0;
}
.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:20px;
	top:20px;
	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;
}











.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 .fa{
	font-size:42px;
	margin-bottom:40px;
	color:#353535;
}
.animat-col01 .box h3{
	color:#353535;
	font-size:25px;
	margin-bottom:20px;
}
.animat-col01 .box .btn {
	padding:12px 40px;
	border:2px solid #353535;	
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	margin-top:50px;
	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 .fa{
	font-size:35px;
	margin-bottom:15px;
}
.animat-col02 li h3{
	color:#FFF;
}
.animat-col02 li h3 span{
	color:#FFF;
	font-size:13px;
	display:block;
}
.animat-col02 li .btn{
	margin-top:40px;
	background-color:#FFF;
	border:1px solid #FFF;
	color:#000000;
	padding:7px 20px;
	border-radius:20px;
	-moz-border-radius:20px;
	-webkit-border-radius:20px;
	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 .btn{
	background-color:transparent;
	color:#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 .fa{
	font-size:142px;
	margin-bottom:40px;
	color:#FFFFFF;
}
.animat-col03 .box h3{
	color:#FFFFFF;
	font-size:25px;
	margin-bottom:20px;
}
.animat-col03 .box h3:after{
	content:"";
	width:50px;
	display:block;
	border-bottom:2px solid #FFF;
	margin:15px auto 45px;
}
.animat-col03 .box .btn {
	padding:0px;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	margin-top:20px;
	color:#FFFFFF;
	font-weight:bold;
	font-size:13px;
}
.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/20073-unlimitedcolorspack-055/images/animat-col03-01.jpg");
}
.animat-col04.bg-right {
	background-image:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/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:55px;
} 
.animat-col04 h3{
	font-size:15px;
	color:inherit;
	margin-bottom:30px;
} 
.animat-col04 h3:before{
	content:"";
	border-top:3px solid #20a3f0;
	width:40px;
	display:block;
	margin:auto;
	font-size:15px;
	color:#20a3f0;
	margin-bottom:20px;
	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 .btn{
	border:1px solid #ffffff;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	font-size:13px;
	color:#020202;
	padding:0px 38px;
	position:relative;
	height:0;
	line-height:46px;
	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 .btn:before{
	content:"";
	top:3px;
	left:3px;
	right:3px;
	bottom:3px;
	position:absolute;
	background-color:#FFF;
	z-index:-1;
}
.animat-col04:hover:before{
	opacity:1;
	visibility:visible
}
.animat-col04:hover .btn{
	height:46px;
	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;
}
.animat-col05 li h3{
	font-size:13px;
	visibility:hidden;
	opacity:0;
	position:absolute;
	left:0;
	top:5px;
	width:100%;
}
.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:20px;
	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;
}
.animat-col06 .btn {
	color:#FFF;
	font-size:13px;
}
.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;
}







/*default style*/
[class*="dg-btn-"]{
	color:#555;
	border-color:#555;
	background-color:#555;
	margin:3px;
	white-space:nowrap;
}
[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-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;
}
/*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-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;
}

/*btn hover color end*/


.dg-btn-1,
.dg-btn-1:link,
.dg-btn-1:active,
.dg-btn-1:visited{
	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{
	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{
	color:#FFF;
	border-bottom:5px solid rgba(0,0,0,0.2)!important;
	padding:8px 16px;
	display:inline-block;
}
.dnngo-main .dg-btn-3:hover{
	color:#FFF;
	text-decoration:none;
}
.dg-btn-4,
.dg-btn-4:link,
.dg-btn-4:active,
.dg-btn-4:visited{
	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{
	border-width:1px;
	border-style:solid ;
	border-bottom-width:5px!important;
	background:transparent;
	padding:8px 16px;
	display:inline-block;
}
.dnngo-main .dg-btn-5:hover{
	color:#FFFFFF;
	text-decoration:none;
	border-bottom:5px solid rgba(0,0,0,0.2)!important;
}

[class*="dg-btn-"].size-s{
	padding:10px 37px;
	font-size:13px;	
	font-weight:bold;
	line-height:1.5;
}
[class*="dg-btn-"].size-m{
	padding:13px 40px ;	
	font-size:15px;	
	font-weight:bold;
	line-height:1.5;
}
[class*="dg-btn-"].size-l{
	padding:17px 60px ;	
	font-size:20px;	
	font-weight:bold;
	line-height:1.2;
}
[class*="dg-btn-"].size-xl{
	padding:20px 60px ;	
	font-size:25px;
	font-weight:bold;
	line-height:1.2;
}

[class*="dg-btn-"] .fa{
	margin-right:5px;
}
[class*="dg-btn-"].size-s .fa{
	margin-right:5px;
}
[class*="dg-btn-"].size-m .fa{
	margin-right:6px;
}
[class*="dg-btn-"].size-l .fa{
	margin-right:10px;
}
[class*="dg-btn-"].size-xl .fa{
	margin-right:15px;
}

[class*="dg-btn-"].icon-line{
	position:relative;
}
[class*="dg-btn-"].icon-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-"].icon-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-"].icon-line .fa:before{
	display:inline-block;
	vertical-align:middle;
}
[class*="dg-btn-"].size-s.icon-line{
	padding-left:48px;
	padding-right:26px;
}
[class*="dg-btn-"].size-s.icon-line .fa{
	padding:0px 11px;
	line-height:38px;
}
[class*="dg-btn-"].size-m.icon-line{
	padding-left:60px;
	padding-right:26px;
}
[class*="dg-btn-"].size-m.icon-line .fa{
	padding:0px 14px;
	line-height:47px;
}
[class*="dg-btn-"].size-l.icon-line{
	padding-left:80px;
	padding-right:30px;
}
[class*="dg-btn-"].size-l.icon-line .fa{
	padding:0px 18px;
	line-height:57px;
}
[class*="dg-btn-"].size-xl.icon-line{
	padding-left:80px;
	padding-right:30px;
}
[class*="dg-btn-"].size-xl.icon-line .fa{
	padding:0px 18px;
	line-height:69px;
}
[class*="dg-btn-"].icon-box{
	position:relative;
	overflow:hidden;
}
[class*="dg-btn-"].icon-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-"].icon-box .fa:before{
	display:inline-block;
	vertical-align:middle;
}
[class*="dg-btn-"].size-s.icon-box{
	padding-left:48px;
	padding-right:26px;
}
[class*="dg-btn-"].size-s.icon-box .fa{
	padding:0px 11px;
	line-height:38px;
}
[class*="dg-btn-"].size-m.icon-box{
	padding-left:60px;
	padding-right:26px;
}
[class*="dg-btn-"].size-m.icon-box .fa{
	padding:0px 14px;
	line-height:47px;
}
[class*="dg-btn-"].size-l.icon-box{
	padding-left:80px;
	padding-right:30px;
}
[class*="dg-btn-"].size-l.icon-box .fa{
	padding:0px 18px;
	line-height:57px;
}
[class*="dg-btn-"].size-xl.icon-box{
	padding-left:80px;
	padding-right:30px;
}
[class*="dg-btn-"].size-xl.icon-box .fa{
	padding:0px 18px;
	line-height:69px;
}


[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 > div{
	vertical-align:bottom;
	display:inline-block;
	float:none;
	display:inline-block;
	font-size:13px;
	margin-left:-4px;
}
.button-bg01 {
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/button-bg01.jpg") center center no-repeat;
	background-size:cover;
}
.button-bg02 {
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/button-bg02.jpg") center center no-repeat;
	background-size:cover;
}
.button-bg03 {
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/button-bg03.jpg") center center no-repeat;
	background-size:cover;
}
.button-bg04 {
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/button-bg04.jpg") center center no-repeat;
	background-size:cover;
}
.button-list{
	margin:0;
	padding:0;
	list-style:none;
}
.button-list li{
	width:150px;
	float:left;
	text-align:center;
	margin-bottom:20px;
}
.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-title-bg01{
	background-color:#f9f9f9
}
.dg-title-bg02{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/dg-title-bg02.jpg") center center no-repeat;
	background-size:cover;
}
.dg-title-bg03{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/dg-title-bg03.jpg") center center no-repeat;
	background-size:cover;
}
.dg-title-bg04{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/dg-title-bg04.jpg") center center no-repeat;
	background-size:cover;
}

.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:20px;
}
.dg-title02 h3{
	display:inline-block;
	font-size:30px;
	line-height:1.2;
	color:#333333;
	position:relative;
	padding:0px 30px;
	margin:5px 55px 10px;
}
.dg-title02 h3:before,
.dg-title02 h3:after{
	content:"";
	position:absolute;
	top:50%;
	left:100%;
	width:55px;
	border-bottom:1px solid #303030;
}
.dg-title02 h3:after{
	left:auto;
	right:100%;
}
.dg-title03 {
	text-align:center;
	overflow:hidden;
	margin-bottom:20px;
}
.dg-title03 h3{
	display:inline-block;
	font-size:30px;
	line-height:1.2;
	color:#020202;
	position:relative;
	padding:0px 36px;
	font-weight:normal;
	max-width:80%;
}
.dg-title03 h3:before,
.dg-title03 h3:after{
	content:"";
	position:absolute;
	top:50%;
	left:100%;
	width:2000px;
	border-bottom:1px solid #afafaf;
}
.dg-title03 h3:after{
	left:auto;
	right:100%;
}
.dg-title04 {
	text-align:center;
	overflow:hidden;
	margin-bottom:20px;
}
.dg-title04 h3{
	display:inline-block;
	font-size:30px;
	line-height:1.2;
	color:#020202;
	position:relative;
	padding:0px 50px;
	font-weight:normal;
	max-width:80%;
}
.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:20px;
}
.dg-title05:before,
.dg-title05:after{
	content:"";
	display:inline-block;
	height:31px;
	width:7px;
	vertical-align:middle;
	border-left:1px solid #656565;
	border-right:1px solid #656565;
	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;
}
.dg-title05 h3:before,
.dg-title05 h3:after{
	content:"";
	position:absolute;
	top:50%;
	left:100%;
	width:2000px;
	border-bottom:1px solid #656565;
	border-top:1px solid #656565;
	height:7px;
	margin-top:-4px;
}
.dg-title05 h3:after{
	left:auto;
	right:100%;
}
.dg-title06 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:20px;
}
.dg-title06 h3{
	display:inline-block;
	font-size:25px;
	color:#20a3f0;
	position:relative;
	padding:20px 50px 00px;
	font-weight:bold;
	line-height:1.2;
}
.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:20px;
}
.dg-title07 h3{
	display:inline-block;
	font-size:25px;
	color:#20a3f0;
	position:relative;
	padding:20px 15px;
	font-weight:bold;
	max-width:80%;
	font-style:italic;
}
.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:20px;
}
.dg-title08 h3{
	display:inline-block;
	font-size:25px;
	color:#FFF;
	position:relative;
	padding:17px 15px;
	font-weight:bold;
	line-height:1.2;
	background-color:#20a3f0;
}
.dg-title09 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:20px;
	font-size:15px;
	color:#333333;
}
.dg-title09 h3{
	display:inline-block;
	font-size:30px;
	color:#20a3f0;
	position:relative;
	padding:17px 15px 0;
	font-weight:bold;
	line-height:1.2;
}
.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:20px;
	font-size:20px;
	color:#333333;
}
.dg-title10 h3{
	display:inline-block;
	font-size:30px;
	color:#333333;
	position:relative;
	padding:0px 15px 35px;
	font-weight:bold;
	line-height:1.2;
}
.dg-title10 h3:before{
	content:"";
	position:absolute;
	bottom:0;
	left:50%;
	width:95px;
	margin-left:-48px;
	border-top:3px solid #333333;
}
.dg-title11 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:30px;
	font-size:15px;
	color:#666666;
}
.dg-title11 .box{
	border:1px solid #b3b3b3;
	display:inline-block;
	padding:20px 20px 25px;
}
.dg-title11 h3{
	font-size:30px;
	color:#333333;
	font-weight:bold;
	padding:0px;
	margin:0 0 5px;
	line-height:1.2;
}
.dg-title11 p{
	margin:0;
	line-height:1.2;
}
.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:25px;
	color:#FFF;
	background-color:#333333;
	position:relative;
	padding:0px;
	font-weight:bold;
	line-height:1.2;
	padding:0 15px;
}
.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;
	font-size:20px;
	color:#333333;
	padding-bottom:30px;
}
.dg-title13 h3{
	font-size:25px;
	color:#FFF;
	font-weight:bold;
	line-height:1.2;
	color:#333333;
	padding:35px 25px;
	border:1px solid #b0b0b0;
	border-bottom:none;
	margin:0;
}
.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-top:28px;
}
.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:12px;
}
.dg-title15 h3{
	font-size:30px;
	color:#333333;
	position:relative;
	font-weight:normal;
	line-height:1.2;
}
.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-bottom:15px;
}
.dg-title16 .number{
	position:relative;
	display:inline-block;
	font-size:30px;
	margin-bottom:10px;
	font-weight:bold;
	line-height:1;
	color:#20a3f0;
}
.dg-title16 .number:before,
.dg-title16 .number:after{
	content:"";
	position:absolute;
	top:50%;
	left:50%;
	width:43px;
	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:#333333;
	padding-bottom:30px;
}
.dg-title19 h3{
	font-size:25px;
	font-weight:bold;
	line-height:1.2;
	color:#FFFFFF;
	padding:35px 25px;
	border:1px solid #89888e;
	border-bottom:none;
	margin:0;
}
.dg-title19 .box{
	display:inline-block;
	position:relative;
}
.dg-title19 .icon{
	position:absolute;
	bottom:-20px;
	left:0;
	color:#89888e;
	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 #89888e;
	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;
	font-size:15px;
	color:#FFF;
}
.dg-title20 h3{
	display:inline-block;
	font-size:30px;
	color:#FFF;
	position:relative;
	padding:17px 15px;
	font-weight:bold;
	line-height:1.2;
}
.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:12px;
}
.dg-title21 h3{
	display:inline-block;
	font-size:30px;
	color:#333333;
	position:relative;
	font-weight:normal;
	line-height:1.2;
	padding:0 25px;
	
}
.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;
}
.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:#3c3c3c;
	position:relative;
	font-weight:normal;
	line-height:1.2;
	margin:0;
}
.dg-title23 .line{
	position:relative;
	display:inline-block;
	font-size:20px;
	color:#333333;
	width:150px;
	height:30px;
	border-bottom:1px solid #d0d0d0;
}
.dg-title23 .line:after{
	content:"";
	width:11px;
	height:11px;
	position:absolute;
	bottom:2px;
	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:20px;
	color:#333333;
	font-size:13px;
}
.dg-title24 h3{
	font-size:30px;
	color:#3c3c3c;
	position:relative;
	line-height:1.2;
	margin:0;
	font-weight:bold;
}
.dg-title25 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:30px;
	color:#FFF;
}
.dg-title25 h3{
	font-size:30px;
	color:#FFF;
	position:relative;
	font-weight:bold;
	line-height:1.2;
	margin:0;
}
.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 0 10px;
	padding:0 0 2px;
	font-weight:normal;
	border-bottom:1px solid #20a3f0;
	display:inline-block;
}
.dg-title26 p{
	width:50%;
	margin:auto;
}
.dg-title27 {
	text-align:center;
	overflow:hidden;
	position:relative;
	margin-bottom:20px;
	color:#FFF;
	font-size:13px;
}
.dg-title27 h3{
	font-size:30px;
	color:#FFF;
	position:relative;
	line-height:1.2;
	margin:0 0 10px;
	font-weight:bold;
	display:inline-block;
}
.dg-title27 p{
	margin:auto;
}
.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:bold;
	line-height:1.2;
	margin:0;
}
.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;
	position:relative;
	margin-bottom:20px;
}
.dg-title29 h3{
	font-size:30px;
	color:#20a3f0;
	position:relative;
	font-weight:bold;
	line-height:1.2;
	margin:0;
}
.dg-title30 {
	text-align:center;
	overflow:hidden;
	position:relative;
	padding:25px 0 17px;
	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 h3{
	font-size:30px;
	color:#333333;
	position:relative;
	font-weight:bold;
	line-height:1.2;
	margin:0;
}
.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 #cfcfcf;
	position:absolute;
	margin-top:3px;
	top:50%;
}
.dg-title31 p{
	margin:0;
}
.dg-title31 h3{
	display:inline-block;
	font-size:25px;
	color:#333333;
	position:relative;
	padding:0px 50px;
	margin:0;
	font-weight:bold;
	line-height:1.2;
}
.dg-title31 h3:before,
.dg-title31 h3:after{
	content:"";
	position:absolute;
	top:50%;
	left:100%;
	width:135px;
	border-bottom:1px solid #cfcfcf;
}
.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 0 5px;
	font-weight:bold;
}
.dg-title32 .fa{
	font-size:40px;
	color:#20a3f0;
}

.img-border{
	border:1px solid #333
}











.clients-bg01{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/clients-bg01.jpg") center center no-repeat;
	background-size:cover;
}
.clients-bg02{
	background:#f9f9f9;
}
.clients-bg03{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/clients-bg03.jpg") center center no-repeat;
	background-size:cover;
}
.clients-bg04{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/clients-bg04.jpg") center center no-repeat;
	background-size:cover;
}
.clients-bg05{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/clients-bg05.jpg") center center no-repeat;
	background-size:cover;
}
.clients-bg05{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/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 30px;
}
.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{
	color:#333333;
	margin-bottom:15px;
}
.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:10px 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:4px 0;
}
.clients-textlist01 li:before{
	content:"";
	display:inline-block;
	vertical-align:middle;
	margin:0 5px 2px 0;
	border:5px solid transparent;
	border-left-color:#fafafa!important;
}
.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:15px;
	padding-top:15px;
}
.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 #616165;
	border-bottom-color:rgba(255,255,255,0.2);*/
}
.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: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-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-title01{
    text-align: center;
}
.clients-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;
}
.clients-title01 h2:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -20px;
    width: 40px;
	background-color: #20a3f0;
	height:3px;
}


















[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{
	padding:15px;
}

.dg-tabs-top ul.resp-tabs-list li ,
.dg-tabs-bottom 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;
	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;	
}
.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 .resp_margin,
.dg-tabs-right .resp_margin{
	padding:15px;
}

.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;
	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: 4px;
	}
	[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;
	color:#272727;
	font-size:15px;
	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:#272727;
	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:30px 0 0;
}
/*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;
	font-size:13px;
	border:1px solid transparent;
	border-bottom:none;
	padding:18px 20px 14px;
}
.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-top03*/
.dg-tabs-top03 ul.resp-tabs-list li{
    font-size:15px;}

.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: #383838;
}
.dg-tabs-top03 .resp_margin{
    padding:30px;
}
/*dg-tabs-top04*/
.dg-tabs-top04 ul.resp-tabs-list li{
    font-size:15px;}

.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: #383838;	
	-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-top04 .resp_margin{
    padding:30px;
}
/*dg-tabs-top05*/
.dg-tabs-bg01{
       background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/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{
   color:#fff;}
   
.dg-tabs-top05 ul.resp-tabs-list li{
    font-size:15px;}

.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{
    padding:1px 0 0 0;	
}
.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_margin{
    padding:30px;
}
.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{
   color:#fff;}
   
.dg-tabs-top06 ul.resp-tabs-list li{
    font-size:15px;}

.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 .resp_margin{
    padding:30px;
} 
.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{
	color:#383838;
	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:#383838;
	 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-top07 .resp_margin{
    padding:30px;
}

/*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{
	color:#383838;
	font-size:15px;	
	padding:11px 20px;
	line-height:1.2;
	 background:#e8e7e7;
	 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-top09 .resp_margin{
    padding:30px;
} 
.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:#e3e3e3;
    padding:16px 30px;
   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{
   background:#20a3f0;
   color:#fff;
   position:relative;
   border-radius:10px 0 0 0;
}
.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_margin{
    padding:30px;
} 
.dg-tabs-top10  .resp-tabs-container{
   border:1px solid #cccbcb;
   border-radius: 0 5px 5px 5px;
}
/*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:#e3e3e3;
    padding:11px 30px;
   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_margin{
    padding:30px;
} 
.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 15px;
   line-height:1.2;
   font-size:15px; 

}
.dg-tabs-top16 ul.resp-tabs-list li em{
   display:inline-block;
   padding:0 10px 0 0;
}
.dg-tabs-top16 ul.resp-tabs-list li.resp-tab-active{
   background:#20a3f0;
   color:#fff;
 }
 .dg-tabs-top16 .resp_margin{
    padding:30px;
} 
 /*dg-tabs-top17*/
.dg-tabs-top17 ul.resp-tabs-list li{
   padding:12px 15px;
   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 10px 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_margin{
    padding:30px;
} 
.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{
  height:226px;
  overflow:hidden;
  position:absolute;    
}
.tab_top_img img{
  width:100%!important;
}
.dg-tabs-top18{
  text-align:center;
  border:1px solid #e0dede;
  position:relative;
}
.dg-tabs-top18 ul.resp-tabs-list{
  margin-top:180px;
  padding:0 5px;
}
.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)
}
.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 .resp_margin{
    padding:30px;
}
.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;
  position:relative;
}
.dg-tabs-top19 ul.resp-tabs-list{
  margin-top:180px;
  padding:0 5px;
}
.dg-tabs-top19 ul.resp-tabs-list li{
   padding:14px 15px;
   line-height:1.2;
   font-size:15px;
   background:#eeeeee;
   margin:0 5px 0 0;
   border-left:0;
   border-top:0;
   border-right:0;
   background:rgba(255,255,255,0.8)
}
.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:#333333;
}
.dg-tabs-top19 .resp_margin{
    padding:30px;
}
.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/20073-unlimitedcolorspack-055/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;
   color:#383838;  
   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 .resp_margin{
    padding:30px;
}
.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;
	color:#000;}

.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: #383838;
}
.dg-tabs-top20 .resp_margin{
    padding:30px;
}
/*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:#e3e3e3;
   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_margin{
    padding:30px;
} 
.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:#333;
   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:#333;
   margin-left:0;
   position:relative;	
}
.dg-tabs-left03 ul.resp-tabs-list li.resp-tab-active:after{
   content:"";
   position:absolute;
   bottom: -6px;
   left: -2px;
/*   background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/dg-tabs-shadow.png") repeat-x left bottom;*/
   width:102%;
   height:6px;
}
.dg-tabs-left03 .resp_margin{
   padding:30px;
}
/*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;
   color:#333;
   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:#333;
   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-left05 .resp_margin{
   padding:30px;
}
.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_margin{
    padding:30px;
} 
.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:#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-left12 ul.resp-tabs-list li.resp-tab-active{
   background:#20a3f0;
   color:#fff;
   position:relative;  
   border-bottom:1px solid #fff;   
}
.dg-tabs-left12 .resp_margin{
    padding:20px;	
} 
.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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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-top17 .resp_margin p{
  font-size:15px;
 } 
.dg-tabs-top17 .resp_margin .tab_list{
  font-weight:bold;
  padding-top:1px;
  padding-bottom:1px;
}
.dg-tabs-bottom01 .tab_list02 li span{
  color:#fff;
}
.left {
  float:left;}

.dg-tabs-left03 .resp_margin{
  text-align:center;
}
.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-top20 .resp_margin h3,
.dg-tabs-left19 .resp_margin h3{
  color:#000000;
  font-size:13px;
  margin:10px 0 10px 0;
  text-transform:uppercase;
}
.dg-tabs-top20 .resp_margin h2,
.dg-tabs-left19 .resp_margin h2{
  color:#20a3f0;
  font-size:25px;
  text-transform:uppercase;
  font-weight:bold;  
}
.dg-tabs-top20 .resp_margin .line,
.dg-tabs-left19 .resp_margin .line{
  height:4px;
  background:#20a3f0;
  width:16px;
  margin:0 auto;  
}
.dg-tabs-top20 .resp_margin .social_a em,
.dg-tabs-left19 .resp_margin .social_a em{
   display:inline-block;
   margin:5px 10px;
}
.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: 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;
}
}

@media only screen and (max-width: 768px) {
.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-left08 .resp_margin,.dg-tabs-left09 .resp_margin,.dg-tabs-left10 .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-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;
}

/*tab contaienr*/
.tab_list { 
    width: 100%;
    float: none;
}

}







.aboutus01-title1 h3,
.aboutus01-title2 h3{
    font-size: 20px;
    color: #20a3f0;  
    margin: 0 0 15px 0;
	font-weight:normal;
}
.aboutus01-title1 h1,
.aboutus01-title2 h1{
    font-size: 30px;
    color: #333;   
    margin: 0 0 28px 0;
	font-weight:normal;
}
.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;
}
.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/20073-unlimitedcolorspack-055/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 35px 0;
}
.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;
}
.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;
}
.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/20073-unlimitedcolorspack-055/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;
}

.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 10px 0;
}

.ourteam02-full .ourteam02-full-left.the1 .ourteam02-full-lmain h6 {
    font-size: 13px;
    color: #f4f5f6;
    font-weight: normal;
    margin: 0;
}

.ourteam02-full .ourteam02-full-right.the1 {
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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 10px 0;
}

.ourteam02-full .ourteam02-full-right.the2 .ourteam02-full-rmain h6 {
    font-size: 13px;
    color: #f4f5f6;
    font-weight: normal;
    margin: 0;
}
@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;
}
.ourteam01-title2 span {
    display: block;
    color: #999999;
    font-size: 13px;
    letter-spacing: 1px;
}
.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;
}

.ourteam01-ibox p {
    margin-bottom: 20px;
}
.ourteam01-bg01{
  background:#f4f4f4;
}
.ourteam01-bg02 {
    background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/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;
}
.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;
}
.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/20073-unlimitedcolorspack-055/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 20px 0;
	margin:0;
}
.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:10px 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/20073-unlimitedcolorspack-055/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;
}

.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-bottom: 22px;
}
@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/20073-unlimitedcolorspack-055/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: 32px;
}
.contactus01-ibox02 li h3 {
    color: #333333;
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 32px;
}
.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;
    margin-bottom: 15px;
}
.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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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;
}
.contactus02-ibox h3 span {
    display: block;
    font-size: 13px;
    color: #666666;
    padding: 8px 0 8px;
}
.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 10px 0;
    font-weight: normal;
}
.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 15px 0;
    font-size: 17px;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
}
.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: 24px 0;
    font-size: 16px;
    color: #333333;
}
.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-bottom: 25px;
    font-size: 17px;
    color: #ffffff;
}
.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/20073-unlimitedcolorspack-055/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;
}
.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 30px 60px;
    position: relative;
	text-transform:uppercase;
}
.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 60px;
}
.faq-text h3 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 45px;
    line-height: 1.2;
}
.fag01-bg02 {
    background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/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;
}
.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%;
}
.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;
}
.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%;
}
.faq02-ibox .faq02-ibox_right_top {
    position: absolute;
    right: 0;
    top: 30px;
    text-align: right;
    width: 30%;
}
.faq02-ibox .faq02-ibox_right_bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
    width: 30%;
}
.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 15px 0;
	}
.faq02-Testimonials blockquote .main h1{
	color:#fff;
	font-size:30px;
	font-weight:normal;
	margin:0 0 40px 0;
	}
.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;
}
.faq02-chart p {
    font-size: 13px;
    color: #fff;
}
.faq02-bg01{
    background-image: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/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 60px;
    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: 10px;
}
.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;
}

.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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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;
}
.pricing02-title1 h1 {
    font-size: 30px;
    color: #333;  
    margin: 0 0 20px 0;
}
.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/20073-unlimitedcolorspack-055/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 20px 0;
}
.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 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:30px 0 10px;
	font-weight:bold;
}
.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/20073-unlimitedcolorspack-055/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: 50px;
}
.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;
}

.detail01-ibox li h3:after {
    content: "";
    width: 36px;
    border-bottom: 2px solid #20a3f0;
    margin: 22px 0 16px;
    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/20073-unlimitedcolorspack-055/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: 20px;
    letter-spacing: 7px;
    text-align: center;
}
.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;
}
.two404-title p{
   font-size:15px;
   padding:10px 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;
}
}







[class*="dg-icon-"]{
	-webkit-transition:	color ease-in 300ms,border ease-in 300ms,background ease-in 300ms;
	-moz-transition: 	color ease-in 300ms,border ease-in 300ms,background ease-in 300ms;
	-ms-transition: 	color ease-in 300ms,border ease-in 300ms,background ease-in 300ms;
	-o-transition: 		color ease-in 300ms,border ease-in 300ms,background ease-in 300ms;
	transition: 		color ease-in 300ms,border ease-in 300ms,background ease-in 300ms;
}
[class*="dg-icon-"]{
	color:#333333;
	border-color:#333333;
	background-color:#333333;
	background-image:none;
}
[class*="dg-icon-"]:before,
[class*="dg-icon-"] .hexagon span:before{
	background-color:#333333;
	background-image:none;
}

[class*="dg-icon-"].icon-turquoise{
	color:#08dcf5;
	border-color:#08dcf5;
	background-color:#08dcf5;
}
[class*="dg-icon-"].icon-turquoise:before,
[class*="dg-icon-"].icon-turquoise .hexagon span:before{
	background-color:#08dcf5;
}

[class*="dg-icon-"].icon-borland{
	color:#20a3f0;
	border-color:#20a3f0;
	background-color:#20a3f0;
}
[class*="dg-icon-"].icon-borland:before,
[class*="dg-icon-"].icon-borland .hexagon span:before{
	background-color:#20a3f0;
}
[class*="dg-icon-"].icon-denim{
	color:#127dcf;
	border-color:#127dcf;
	background-color:#127dcf;
}
[class*="dg-icon-"].icon-denim:before,
[class*="dg-icon-"].icon-denim .hexagon span:before{
	background-color:#127dcf;
}

[class*="dg-icon-"].icon-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-icon-"].icon-turquoise-g:before,
[class*="dg-icon-"].icon-turquoise-g .hexagon span: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-icon-"].icon-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-icon-"].icon-navyblue-g:before,
[class*="dg-icon-"].icon-navyblue-g .hexagon span: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-icon-"].icon-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-icon-"].icon-blue-g:before,
[class*="dg-icon-"].icon-blue-g .hexagon span: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-icon-"].icon-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-icon-"].icon-jewel-g:before,
[class*="dg-icon-"].icon-jewel-g .hexagon span: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-icon-"].icon-summersky-g{
	color:#24acea;
	border-color:#24acea;
	background: -webkit-linear-gradient(135deg, #24acea 30%, #2ec3dd, #34d0d6);
	background: -o-linear-gradient(135deg, #24acea 30%, #2ec3dd, #34d0d6); 
	background: -moz-linear-gradient(135deg, #24acea 30%, #2ec3dd, #34d0d6); 
	background: linear-gradient(135deg,#24acea 30%, #2ec3dd, #34d0d6);
	background-color:#24acea;
}
[class*="dg-icon-"].icon-summersky-g:before,
[class*="dg-icon-"].icon-summersky-g .hexagon span:before{
  background: -webkit-linear-gradient(135deg, #24acea 30%, #2ec3dd, #34d0d6);
  background: -o-linear-gradient(135deg, #24acea 30%, #2ec3dd, #34d0d6); 
  background: -moz-linear-gradient(135deg, #24acea 30%, #2ec3dd, #34d0d6); 
  background: linear-gradient(135deg, #24acea 30%, #2ec3dd, #34d0d6);
  background-color:#24acea;
}



[class*="dg-icon-"].icon-gray{
	color:#333333;
	border-color:#333333;
	background-color:#333333;
}
[class*="dg-icon-"].icon-gray:before,
[class*="dg-icon-"].icon-gray .hexagon span:before{
	background-color:#333333;
}
[class*="dg-icon-"].icon-white{
	color:#ffffff;
	border-color:#ffffff;
	background-color:#ffffff;
}
/**/
[class*="dg-icon-"].full.icon-white{
	color:#333333;
}

[class*="dg-icon-"].icon-white:before,
[class*="dg-icon-"].icon-white .hexagon span:before{
	background-color:#ffffff;
}
[class*="dg-icon-"].icon-black{
	color:#191919;
	border-color:#191919;
	background-color:#191919;
}
[class*="dg-icon-"].icon-black:before,
[class*="dg-icon-"].icon-black .hexagon span:before{
	background-color:#191919;
}
[class*="dg-icon-"].icon-night{
	color:#323232;
	border-color:#323232;
	background-color:#323232;
}
[class*="dg-icon-"].icon-night:before,
[class*="dg-icon-"].icon-night .hexagon span:before{
	background-color:#323232;
}
[class*="dg-icon-"].icon-emerald{
	color:#40d075;
	border-color:#40d075;
	background-color:#40d075;
}
[class*="dg-icon-"].icon-emerald:before,
[class*="dg-icon-"].icon-emerald .hexagon span:before{
	background-color:#40d075;
}

[class*="dg-icon-"].icon-orange{
	color:#f39705;
	border-color:#f39705;
	background-color:#f39705;
}
[class*="dg-icon-"].icon-orange:before,
[class*="dg-icon-"].icon-orange .hexagon span:before{
	background-color:#f39705;
}
[class*="dg-icon-"].icon-chambray{
	color:#505f79;
	border-color:#505f79;
	background-color:#505f79;
}
[class*="dg-icon-"].icon-chambray:before,
[class*="dg-icon-"].icon-chambray .hexagon span:before{
	background-color:#505f79;
}
[class*="dg-icon-"].icon-bittersweet{
	color:#ff6061;
	border-color:#ff6061;
	background-color:#ff6061;
}
[class*="dg-icon-"].icon-bittersweet:before,
[class*="dg-icon-"].icon-bittersweet .hexagon span:before{
	background-color:#ff6061;
}
[class*="dg-icon-"].icon-pelorous{
	color:#237da6;
	border-color:#237da6;
	background-color:#237da6;
}
[class*="dg-icon-"].icon-pelorous:before,
[class*="dg-icon-"].icon-pelorous .hexagon span:before{
	background-color:#237da6;
}
[class*="dg-icon-"].icon-citrus{
	color:#a9d300;
	border-color:#a9d300;
	background-color:#a9d300;
}
[class*="dg-icon-"].icon-citrus:before,
[class*="dg-icon-"].icon-citrus .hexagon span:before{
	background-color:#a9d300;
}
[class*="dg-icon-"].icon-blackberry{
	color:#461135;
	border-color:#461135;
	background-color:#461135;
}
[class*="dg-icon-"].icon-blackberry:before,
[class*="dg-icon-"].icon-blackberry .hexagon span:before{
	background-color:#461135;
}
[class*="dg-icon-"].icon-melon{
	color:#febbb4;
	border-color:#febbb4;
	background-color:#febbb4;
}
[class*="dg-icon-"].icon-melon:before,
[class*="dg-icon-"].icon-melon .hexagon span:before{
	background-color:#febbb4;
}
[class*="dg-icon-"].icon-lipstick{
	color:#9a2c4a;
	border-color:#9a2c4a;
	background-color:#9a2c4a;
}
[class*="dg-icon-"].icon-lipstick:before,
[class*="dg-icon-"].icon-lipstick .hexagon span:before{
	background-color:#9a2c4a;
}
[class*="dg-icon-"].icon-darkcyan{
	color:#007c8e;
	border-color:#007c8e;
	background-color:#007c8e;
}
[class*="dg-icon-"].icon-darkcyan:before,
[class*="dg-icon-"].icon-darkcyan .hexagon span:before{
	background-color:#007c8e;
}
[class*="dg-icon-"].icon-toryblue{
	color:#40548e;
	border-color:#40548e;
	background-color:#40548e;
}
[class*="dg-icon-"].icon-toryblue:before,
[class*="dg-icon-"].icon-toryblue .hexagon span:before{
	background-color:#40548e;
}
[class*="dg-icon-"].icon-crimson{
	color:#ef1d38;
	border-color:#ef1d38;
	background-color:#ef1d38;
}
[class*="dg-icon-"].icon-crimson:before,
[class*="dg-icon-"].icon-crimson .hexagon span:before{
	background-color:#ef1d38;
}
[class*="dg-icon-"].icon-celery{
	color:#bbb83f;
	border-color:#bbb83f;
	background-color:#bbb83f;
}
[class*="dg-icon-"].icon-celery:before,
[class*="dg-icon-"].icon-celery .hexagon span:before{
	background-color:#bbb83f;
}
[class*="dg-icon-"].icon-pink{
	color:#dc717c;
	border-color:#dc717c;
	background-color:#dc717c;
}
[class*="dg-icon-"].icon-pink:before,
[class*="dg-icon-"].icon-pink .hexagon span:before{
	background-color:#dc717c;
}
[class*="dg-icon-"].icon-citrus2{
	color:#97c200;
	border-color:#97c200;
	background-color:#97c200;
}
[class*="dg-icon-"].icon-citrus2:before,
[class*="dg-icon-"].icon-citrus2 .hexagon span:before{
	background-color:#97c200;
}
[class*="dg-icon-"].icon-comet{
	color:#626073;
	border-color:#626073;
	background-color:#626073;
}
[class*="dg-icon-"].icon-comet:before,
[class*="dg-icon-"].icon-comet .hexagon span:before{
	background-color:#626073;
}
[class*="dg-icon-"].icon-atomic{
	color:#3d4c53;
	border-color:#3d4c53;
	background-color:#3d4c53;
}
[class*="dg-icon-"].icon-atomic:before,
[class*="dg-icon-"].icon-atomic .hexagon span:before{
	background-color:#3d4c53;
}
[class*="dg-icon-"].icon-seagreen{
	color:#1cc0be;
	border-color:#1cc0be;
	background-color:#1cc0be;
}
[class*="dg-icon-"].icon-seagreen:before,
[class*="dg-icon-"].icon-seagreen .hexagon span:before{
	background-color:#1cc0be;
}
[class*="dg-icon-"].icon-shadowgreen{
	color:#94c1ab;
	border-color:#94c1ab;
	background-color:#94c1ab;
}
[class*="dg-icon-"].icon-shadowgreen:before,
[class*="dg-icon-"].icon-shadowgreen .hexagon span:before{
	background-color:#94c1ab;
}
[class*="dg-icon-"].icon-silver{
	color:#b8b8b8;
	border-color:#b8b8b8;
	background-color:#b8b8b8;
}
[class*="dg-icon-"].icon-silver:before,
[class*="dg-icon-"].icon-silver .hexagon span:before{
	background-color:#b8b8b8;
}
[class*="dg-icon-"].icon-acapulco{
	color:#62a783;
	border-color:#62a783;
	background-color:#62a783;
}
[class*="dg-icon-"].icon-acapulco:before,
[class*="dg-icon-"].icon-acapulco .hexagon span:before{
	background-color:#62a783;
}
[class*="dg-icon-"].icon-rock{
	color:#2e313d;
	border-color:#2e313d;
	background-color:#2e313d;
}
[class*="dg-icon-"].icon-rock:before,
[class*="dg-icon-"].icon-rock .hexagon span:before{
	background-color:#2e313d;
}
[class*="dg-icon-"].icon-midnightblue{
	color:#122b58;
	border-color:#122b58;
	background-color:#122b58;
}
[class*="dg-icon-"].icon-midnightblue:before,
[class*="dg-icon-"].icon-midnightblue .hexagon span:before{
	background-color:#122b58;
}
[class*="dg-icon-"].icon-darkturquoise{
	color:#00d7e9;
	border-color:#00d7e9;
	background-color:#00d7e9;
}
[class*="dg-icon-"].icon-darkturquoise:before,
[class*="dg-icon-"].icon-darkturquoise .hexagon span:before{
	background-color:#00d7e9;
}
[class*="dg-icon-"].icon-radicalred{
	color:#f82f54;
	border-color:#f82f54;
	background-color:#f82f54;
}
[class*="dg-icon-"].icon-radicalred:before,
[class*="dg-icon-"].icon-radicalred .hexagon span:before{
	background-color:#f82f54;
}
[class*="dg-icon-"].icon-cadetblue{
	color:#5d9ca8;
	border-color:#5d9ca8;
	background-color:#5d9ca8;
}
[class*="dg-icon-"].icon-cadetblue:before,
[class*="dg-icon-"].icon-cadetblue .hexagon span:before{
	background-color:#5d9ca8;
}
[class*="dg-icon-"].icon-sunshade{
	color:#fa973c;
	border-color:#fa973c;
	background-color:#fa973c;
}
[class*="dg-icon-"].icon-sunshade:before,
[class*="dg-icon-"].icon-sunshade .hexagon span:before{
	background-color:#fa973c;
}
[class*="dg-icon-"].icon-blackberry{
	color:#361630;
	border-color:#361630;
	background-color:#361630;
}
[class*="dg-icon-"].icon-blackberry:before,
[class*="dg-icon-"].icon-blackberry .hexagon span:before{
	background-color:#361630;
}
[class*="dg-icon-"].icon-mantis{
	color:#8fc567;
	border-color:#8fc567;
	background-color:#8fc567;
}
[class*="dg-icon-"].icon-mantis:before,
[class*="dg-icon-"].icon-mantis .hexagon span:before{
	background-color:#8fc567;
}
[class*="dg-icon-"].icon-saffron{
	color:#f0ca3d;
	border-color:#f0ca3d;
	background-color:#f0ca3d;
}
[class*="dg-icon-"].icon-saffron:before,
[class*="dg-icon-"].icon-saffron .hexagon span:before{
	background-color:#f0ca3d;
}
[class*="dg-icon-"].icon-shamrock{
	color:#24d78a;
	border-color:#24d78a;
	background-color:#24d78a;
}
[class*="dg-icon-"].icon-shamrock:before,
[class*="dg-icon-"].icon-shamrock .hexagon span:before{
	background-color:#24d78a;
}
[class*="dg-icon-"].icon-orange2{
	color:#f4633c;
	border-color:#f4633c;
	background-color:#f4633c;
}
[class*="dg-icon-"].icon-orange2:before,
[class*="dg-icon-"].icon-orange2 .hexagon span:before{
	background-color:#f4633c;
}
/*btn color*/

.dnngo-main [class*="dg-icon-"]:hover,
.dg-ibox-hover:hover [class*="dg-icon-"]{
	color:#20a3f0;
	border-color:#20a3f0;
	background-color:#20a3f0;
	background-image:none;
}
.dnngo-main [class*="dg-icon-"]:hover:before,
[class*="dg-icon-"]:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"]:before,
.dg-ibox-hover:hover .hexagon span:before{
	background-color:#20a3f0;
	border-color:#20a3f0;
	background-image:none;
}

/*btn Hover color*/
[class*="dg-icon-"].hover-turquoise:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-turquoise{
	color:#08dcf5;
	border-color:#08dcf5;
	background-color:#08dcf5;
}
[class*="dg-icon-"].hover-turquoise:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-turquoise:before,
[class*="dg-icon-"].hover-turquoise:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-turquoise .hexagon span:before{
	background-color:#08dcf5;
}
[class*="dg-icon-"].hover-borland:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-borland{
	color:#20a3f0;
	border-color:#20a3f0;
	background-color:#20a3f0;
}
[class*="dg-icon-"].hover-borland:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-borland:before,
[class*="dg-icon-"].hover-borland:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-borland .hexagon span:before{
	background-color:#20a3f0;
}
[class*="dg-icon-"].hover-denim:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-denim{
	color:#127dcf;
	border-color:#127dcf;
	background-color:#127dcf;
}
[class*="dg-icon-"].hover-denim:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-denim:before,
[class*="dg-icon-"].hover-denim:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-denim .hexagon span:before{
	background-color:#127dcf;
}
[class*="dg-icon-"].hover-denim:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-denim{
	color:#127dcf;
	border-color:#127dcf;
	background-color:#127dcf;
}
[class*="dg-icon-"].hover-denim:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-denim:before,
[class*="dg-icon-"].hover-denim:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-denim .hexagon span:before{
	background-color:#127dcf;
}
[class*="dg-icon-"].hover-turquoise-g:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-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-icon-"].hover-turquoise-g:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-turquoise-g:before,
[class*="dg-icon-"].hover-turquoise-g:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-turquoise-g .hexagon span: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-icon-"].hover-navyblue-g:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-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-icon-"].hover-navyblue-g:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-navyblue-g:before,
[class*="dg-icon-"].hover-navyblue-g:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-navyblue-g .hexagon span: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-icon-"].hover-blue-g:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-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-icon-"].hover-blue-g:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-blue-g:before,
[class*="dg-icon-"].hover-blue-g:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-blue-g .hexagon span: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-icon-"].hover-jewel-g:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-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-icon-"].hover-jewel-g:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-jewel-g:before,
[class*="dg-icon-"].hover-jewel-g:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-jewel-g .hexagon span: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-icon-"].hover-summersky-g:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-summersky-g{
	color:#24acea;
	border-color:#24acea;
	background: -webkit-linear-gradient(135deg, #24acea 30%, #2ec3dd, #34d0d6);
	background: -o-linear-gradient(135deg, #24acea 30%, #2ec3dd, #34d0d6); 
	background: -moz-linear-gradient(135deg, #24acea 30%, #2ec3dd, #34d0d6); 
	background: linear-gradient(135deg,#24acea 30%, #2ec3dd, #34d0d6);
	background-color:#24acea;
}
[class*="dg-icon-"].hover-summersky-g:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-summersky-g:before,
[class*="dg-icon-"].hover-summersky-g:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-summersky-g .hexagon span:before{
  background: -webkit-linear-gradient(135deg, #24acea 30%, #2ec3dd, #34d0d6);
  background: -o-linear-gradient(135deg, #24acea 30%, #2ec3dd, #34d0d6); 
  background: -moz-linear-gradient(135deg, #24acea 30%, #2ec3dd, #34d0d6); 
  background: linear-gradient(135deg, #24acea 30%, #2ec3dd, #34d0d6);
  background-color:#24acea;
}

[class*="dg-icon-"].hover-gray:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-gray{
	color:#333333;
	border-color:#333333;
	background-color:#333333;
}
[class*="dg-icon-"].hover-gray:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-gray:before,
[class*="dg-icon-"].hover-gray:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-gray .hexagon span:before{
	background-color:#333333;
}
[class*="dg-icon-"].hover-white:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-white{
	color:#ffffff;
	border-color:#ffffff;
	background-color:#ffffff;
}
[class*="dg-icon-"].hover-white:hover:before,
.dg-ibox-hover:hover .hover-white:before,
[class*="dg-icon-"].hover-white:hover .hexagon span:before,
.dg-ibox-hover:hover .hover-white .hexagon span:before{
	background-color:#ffffff;
}

.dnngo-main .dg-icon-1.hover-white:hover, 
.dnngo-main .dg-icon-2.hover-white:hover, 
.dnngo-main .dg-icon-3.hover-white:hover, 
.dnngo-main .dg-icon-4.hover-white:hover, 
.dnngo-main .dg-icon-5.hover-white:hover,
.dnngo-main .dg-ibox-hover:hover .dg-icon-1.hover-white, 
.dnngo-main .dg-ibox-hover:hover .dg-icon-2.hover-white, 
.dnngo-main .dg-ibox-hover:hover .dg-icon-3.hover-white, 
.dnngo-main .dg-ibox-hover:hover .dg-icon-4.hover-white, 
.dnngo-main .dg-ibox-hover:hover .dg-icon-5.hover-white{
	color:#333333!important;
}

[class*="dg-icon-"].hover-black:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-black{
	color:#191919;
	border-color:#191919;
	background-color:#191919;
}
[class*="dg-icon-"].hover-black:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-black:before,
[class*="dg-icon-"].hover-black:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-black .hexagon span:before{
	background-color:#191919;
}
[class*="dg-icon-"].hover-night:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-night{
	color:#323232;
	border-color:#323232;
	background-color:#323232;
}
[class*="dg-icon-"].hover-night:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-night:before,
[class*="dg-icon-"].hover-night:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-night .hexagon span:before{
	background-color:#323232;
}
[class*="dg-icon-"].hover-emerald:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-emerald{
	color:#40d075;
	border-color:#40d075;
	background-color:#40d075;
}
[class*="dg-icon-"].hover-emerald:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-emerald:before,
[class*="dg-icon-"].hover-emerald:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-emerald .hexagon span:before{
	background-color:#40d075;
}

[class*="dg-icon-"].hover-orange:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-orange{
	color:#f39705;
	border-color:#f39705;
	background-color:#f39705;
}
[class*="dg-icon-"].hover-orange:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-orange:before,
[class*="dg-icon-"].hover-orange:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-orange .hexagon span:before{
	background-color:#f39705;
}
[class*="dg-icon-"].hover-chambray:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-chambray{
	color:#505f79;
	border-color:#505f79;
	background-color:#505f79;
}
[class*="dg-icon-"].hover-chambray:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-chambray:before,
[class*="dg-icon-"].hover-chambray:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-chambray .hexagon span:before{
	background-color:#505f79;
}
[class*="dg-icon-"].hover-bittersweet:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-bittersweet{
	color:#ff6061;
	border-color:#ff6061;
	background-color:#ff6061;
}
[class*="dg-icon-"].hover-bittersweet:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-bittersweet:before,
[class*="dg-icon-"].hover-bittersweet:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-bittersweet .hexagon span:before{
	background-color:#ff6061;
}
[class*="dg-icon-"].hover-pelorous:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-pelorous{
	color:#237da6;
	border-color:#237da6;
	background-color:#237da6;
}
[class*="dg-icon-"].hover-pelorous:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-pelorous:before,
[class*="dg-icon-"].hover-pelorous:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-pelorous .hexagon span:before{
	background-color:#237da6;
}
[class*="dg-icon-"].hover-citrus:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-citrus{
	color:#a9d300;
	border-color:#a9d300;
	background-color:#a9d300;
}
[class*="dg-icon-"].hover-citrus:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-citrus:before,
[class*="dg-icon-"].hover-citrus:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-citrus .hexagon span:before{
	background-color:#a9d300;
}
[class*="dg-icon-"].hover-blackberry:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-blackberry{
	color:#461135;
	border-color:#461135;
	background-color:#461135;
}
[class*="dg-icon-"].hover-blackberry:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-blackberry:before,
[class*="dg-icon-"].hover-blackberry:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-blackberry .hexagon span:before{
	background-color:#461135;
}
[class*="dg-icon-"].hover-melon:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-melon{
	color:#febbb4;
	border-color:#febbb4;
	background-color:#febbb4;
}
[class*="dg-icon-"].hover-melon:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-melon:before,
[class*="dg-icon-"].hover-melon:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-melon .hexagon span:before{
	background-color:#febbb4;
}
[class*="dg-icon-"].hover-lipstick:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-lipstick{
	color:#9a2c4a;
	border-color:#9a2c4a;
	background-color:#9a2c4a;
}
[class*="dg-icon-"].hover-lipstick:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-lipstick:before,
[class*="dg-icon-"].hover-lipstick:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-lipstick .hexagon span:before{
	background-color:#9a2c4a;
}
[class*="dg-icon-"].hover-darkcyan:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-darkcyan{
	color:#007c8e;
	border-color:#007c8e;
	background-color:#007c8e;
}
[class*="dg-icon-"].hover-darkcyan:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-darkcyan:before,
[class*="dg-icon-"].hover-darkcyan:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-darkcyan .hexagon span:before{
	background-color:#007c8e;
}
[class*="dg-icon-"].hover-toryblue:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-toryblue{
	color:#40548e;
	border-color:#40548e;
	background-color:#40548e;
}
[class*="dg-icon-"].hover-toryblue:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-toryblue:before,
[class*="dg-icon-"].hover-toryblue:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-toryblue .hexagon span:before{
	background-color:#40548e;
}
[class*="dg-icon-"].hover-crimson:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-crimson{
	color:#ef1d38;
	border-color:#ef1d38;
	background-color:#ef1d38;
}
[class*="dg-icon-"].hover-crimson:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-crimson:before,
[class*="dg-icon-"].hover-crimson:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-crimson .hexagon span:before{
	background-color:#ef1d38;
}
[class*="dg-icon-"].hover-celery:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-celery{
	color:#bbb83f;
	border-color:#bbb83f;
	background-color:#bbb83f;
}
[class*="dg-icon-"].hover-celery:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-celery:before,
[class*="dg-icon-"].hover-celery:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-celery .hexagon span:before{
	background-color:#bbb83f;
}
[class*="dg-icon-"].hover-pink:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-pink{
	color:#dc717c;
	border-color:#dc717c;
	background-color:#dc717c;
}
[class*="dg-icon-"].hover-pink:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-pink:before,
[class*="dg-icon-"].hover-pink:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-pink .hexagon span:before{
	background-color:#dc717c;
}
[class*="dg-icon-"].hover-citrus2:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-citrus2{
	color:#97c200;
	border-color:#97c200;
	background-color:#97c200;
}
[class*="dg-icon-"].hover-citrus2:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-citrus2:before,
[class*="dg-icon-"].hover-citrus2:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-citrus2 .hexagon span:before{
	background-color:#97c200;
}
[class*="dg-icon-"].hover-comet:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-comet{
	color:#626073;
	border-color:#626073;
	background-color:#626073;
}
[class*="dg-icon-"].hover-comet:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-comet:before,
[class*="dg-icon-"].hover-comet:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-comet .hexagon span:before{
	background-color:#626073;
}
[class*="dg-icon-"].hover-atomic:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-atomic{
	color:#3d4c53;
	border-color:#3d4c53;
	background-color:#3d4c53;
}
[class*="dg-icon-"].hover-atomic:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-atomic:before,
[class*="dg-icon-"].hover-atomic:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-atomic .hexagon span:before{
	background-color:#3d4c53;
}
[class*="dg-icon-"].hover-seagreen:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-seagreen{
	color:#1cc0be;
	border-color:#1cc0be;
	background-color:#1cc0be;
}
[class*="dg-icon-"].hover-seagreen:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-seagreen:before,
[class*="dg-icon-"].hover-seagreen:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-seagreen .hexagon span:before{
	background-color:#1cc0be;
}
[class*="dg-icon-"].hover-shadowgreen:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-shadowgreen{
	color:#94c1ab;
	border-color:#94c1ab;
	background-color:#94c1ab;
}
[class*="dg-icon-"].hover-shadowgreen:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-shadowgreen:before,
[class*="dg-icon-"].hover-shadowgreen:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-shadowgreen .hexagon span:before{
	background-color:#94c1ab;
}
[class*="dg-icon-"].hover-silver:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-silver{
	color:#b8b8b8;
	border-color:#b8b8b8;
	background-color:#b8b8b8;
}
[class*="dg-icon-"].hover-silver:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-silver:before,
[class*="dg-icon-"].hover-silver:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-silver .hexagon span:before{
	background-color:#b8b8b8;
}
[class*="dg-icon-"].hover-acapulco:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-acapulco{
	color:#62a783;
	border-color:#62a783;
	background-color:#62a783;
}
[class*="dg-icon-"].hover-acapulco:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-acapulco:before,
[class*="dg-icon-"].hover-acapulco:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-acapulco .hexagon span:before{
	background-color:#62a783;
}
[class*="dg-icon-"].hover-rock:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-rock{
	color:#2e313d;
	border-color:#2e313d;
	background-color:#2e313d;
}
[class*="dg-icon-"].hover-rock:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-rock:before,
[class*="dg-icon-"].hover-rock:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-rock .hexagon span:before{
	background-color:#2e313d;
}
[class*="dg-icon-"].hover-midnightblue:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-midnightblue{
	color:#122b58;
	border-color:#122b58;
	background-color:#122b58;
}
[class*="dg-icon-"].hover-midnightblue:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-midnightblue:before,
[class*="dg-icon-"].hover-midnightblue:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-midnightblue .hexagon span:before{
	background-color:#122b58;
}
[class*="dg-icon-"].hover-darkturquoise:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-darkturquoise{
	color:#00d7e9;
	border-color:#00d7e9;
	background-color:#00d7e9;
}
[class*="dg-icon-"].hover-darkturquoise:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-darkturquoise:before,
[class*="dg-icon-"].hover-darkturquoise:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-darkturquoise .hexagon span:before{
	background-color:#00d7e9;
}
[class*="dg-icon-"].hover-radicalred:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-radicalred{
	color:#f82f54;
	border-color:#f82f54;
	background-color:#f82f54;
}
[class*="dg-icon-"].hover-radicalred:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-radicalred:before,
[class*="dg-icon-"].hover-radicalred:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-radicalred .hexagon span:before{
	background-color:#f82f54;
}
[class*="dg-icon-"].hover-cadetblue:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-cadetblue{
	color:#5d9ca8;
	border-color:#5d9ca8;
	background-color:#5d9ca8;
}
[class*="dg-icon-"].hover-cadetblue:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-cadetblue:before,
[class*="dg-icon-"].hover-cadetblue:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-cadetblue .hexagon span:before{
	background-color:#5d9ca8;
}
[class*="dg-icon-"].hover-sunshade:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-sunshade{
	color:#fa973c;
	border-color:#fa973c;
	background-color:#fa973c;
}

[class*="dg-icon-"].hover-sunshade:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-sunshade:before,
[class*="dg-icon-"].hover-sunshade:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-sunshade .hexagon span:before{
	background-color:#fa973c;
}
[class*="dg-icon-"].hover-blackberry:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-blackberry{
	color:#361630;
	border-color:#361630;
	background-color:#361630;
}
[class*="dg-icon-"].hover-blackberry:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-blackberry:before,
[class*="dg-icon-"].hover-blackberry:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-blackberry .hexagon span:before{
	background-color:#361630;
}
[class*="dg-icon-"].hover-mantis:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-mantis{
	color:#8fc567;
	border-color:#8fc567;
	background-color:#8fc567;
}
[class*="dg-icon-"].hover-mantis:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-mantis:before,
[class*="dg-icon-"].hover-mantis:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-mantis .hexagon span:before{
	background-color:#8fc567;
}
[class*="dg-icon-"].hover-saffron:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-saffron{
	color:#f0ca3d;
	border-color:#f0ca3d;
	background-color:#f0ca3d;
}
[class*="dg-icon-"].hover-saffron:hover:beforem,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-saffron:before,
[class*="dg-icon-"].hover-saffron:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-saffron .hexagon span:before{
	background-color:#f0ca3d;
}
[class*="dg-icon-"].hover-shamrock:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-shamrock{
	color:#24d78a;
	border-color:#24d78a;
	background-color:#24d78a;
}
[class*="dg-icon-"].hover-shamrock:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-shamrock:before,
[class*="dg-icon-"].hover-shamrock:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-shamrock .hexagon span:before{
	background-color:#24d78a;
}
[class*="dg-icon-"].hover-orange2:hover,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-orange2{
	color:#f4633c;
	border-color:#f4633c;
	background-color:#f4633c;
}
[class*="dg-icon-"].hover-orange2:hover:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-orange2:before,
[class*="dg-icon-"].hover-orange2:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"].hover-orange2 .hexagon span:before{
	background-color:#f4633c;
}




[class*="dg-icon-"] .img-icon{
	display:inline-block;
	white-space:nowrap;
	max-width:100%;
}
[class*="dg-icon-"] .img-icon:after{
	content:"";
	vertical-align:middle;
	width:0px;
	opacity:0;
}

.dg-icon-01,
.dg-icon-02,
.dg-icon-03{
	width:32px;
	height:32px;
	line-height:32px;
	font-size:32px;
	text-align:center;
	display:inline-block;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	vertical-align:middle;
}
.dg-icon-01.hollow,
.dg-icon-02.hollow,
.dg-icon-03.hollow{
	border:1px solid ;
	background:none!important;
}
.dg-icon-01.hollow-full,
.dg-icon-02.hollow-full,
.dg-icon-03.hollow-full,
.dg-icon-01.full-hollow,
.dg-icon-02.full-hollow,
.dg-icon-03.full-hollow{
	border:1px solid ;
	position:relative;
	z-index:1;
	background:transparent!important;
}
.dg-icon-01.hollow-full:before,
.dg-icon-02.hollow-full:before,
.dg-icon-03.hollow-full:before,
.dg-icon-01.full-hollow:before,
.dg-icon-02.full-hollow:before,
.dg-icon-03.full-hollow:before{
	content:"";
	position:absolute;
	top:-1px;
	left:-1px;
	right:-1px;
	bottom:-1px;
	z-index:-1;
	transition: 		background-color ease-in 300ms;
	-moz-transition: 	background-color ease-in 300ms; /* Firefox 4 */
	-webkit-transition: background-color ease-in 300ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 300ms; /* Opera */
	-ms-transition: 	background-color ease-in 300ms; /* IE9? */
	border-radius:inherit;
	-moz-border-radius:inherit;
	-webkit-border-radius:inherit;
}
.dg-icon-01.hollow-full:before,
.dg-icon-02.hollow-full:before,
.dg-icon-03.hollow-full:before{
	background:transparent;
}
.dg-icon-01.full-hollow,
.dg-icon-02.full-hollow,
.dg-icon-03.full-hollow{
	color:#FFF;
}
.dg-icon-01.hollow-full:hover,
.dg-icon-02.hollow-full:hover,
.dg-icon-03.hollow-full:hover,
.dg-ibox-hover:hover .dg-icon-01.hollow-full,
.dg-ibox-hover:hover .dg-icon-02.hollow-full,
.dg-ibox-hover:hover .dg-icon-03.hollow-full{
	color:#FFF!important;
	background:inherit!important;
}
.dg-icon-01.full-hollow:hover,
.dg-icon-02.full-hollow:hover,
.dg-icon-03.full-hollow:hover,
.dg-ibox-hover:hover .dg-icon-01.full-hollow,
.dg-ibox-hover:hover .dg-icon-02.full-hollow,
.dg-ibox-hover:hover .dg-icon-03.full-hollow{
}
.dg-icon-01.full-hollow:hover:before,
.dg-icon-02.full-hollow:hover:before,
.dg-icon-03.full-hollow:hover:before,
.dg-ibox-hover:hover .dg-icon-01.full-hollow:before,
.dg-ibox-hover:hover .dg-icon-02.full-hollow:before,
.dg-ibox-hover:hover .dg-icon-03.full-hollow:before{
	background:transparent!important;
}

.dg-icon-01.full,
.dg-icon-02.full,
.dg-icon-03.full{
	border:none;
	color:#FFF;
}
.dg-icon-01.full:hover,
.dg-icon-02.full:hover,
.dg-icon-03.full:hover,
.dg-ibox-hover:hover .dg-icon-01.full,
.dg-ibox-hover:hover .dg-icon-02.full,
.dg-ibox-hover:hover .dg-icon-03.full{
	color:#FFF!important;
}
.dg-icon-01{
	border-width:2px;
}
.dg-icon-02{
	border-radius:6%;
	-moz-border-radius:6%;
	-webkit-border-radius:6%;
}
.dg-icon-03{
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}

.dg-icon-04{
	width:32px;
	height:32px;
	line-height:32px;
	font-size:32px;
	text-align:center;
	display:inline-block;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	vertical-align:middle;
	background:none!important;
	position:relative;
	z-index:1;
}

.dg-icon-04:before{
	content:"";
	top:14%;
	left:14%;
	right:14%;
	bottom:14%;
	position:absolute;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	z-index:-1;
}
.dg-icon-04.full:before{
	transition: 		background ease-in 300ms;
	-moz-transition: 	background ease-in 300ms; /* Firefox 4 */
	-webkit-transition: background ease-in 300ms; /* Safari and Chrome */
	-o-transition: 		background ease-in 300ms; /* Opera */
	-ms-transition: 	background ease-in 300ms; /* IE9? */
}
.dg-icon-04.hollow:before{
	background:none;
	border-width:1px;
	border-style: solid;
}
.dg-icon-04.hollow-full{
}
.dg-icon-04.hollow-full:before{
	background:none;
	border-width:1px;
	border-style: solid;
	border-color:inherit;
}
.dg-icon-04.full{
	color:#FFF;
}
.dg-icon-04.hollow:hover:before,
.dg-ibox-hover:hover .dg-icon-04.hollow:before{
	background:none;
	border-color:inherit;
}
.dg-icon-04.hollow-full:hover,
.dg-ibox-hover:hover .dg-icon-04.hollow-full{
	color:#FFF!important;
}
.dg-icon-04.hollow-full:hover:before,
.dg-ibox-hover:hover .dg-icon-04.hollow-full:before{
	color:#FFF!important;
	border-color:transparent!important;
}
.dg-icon-04.full-hollow{
	color:#FFF;
}
.dg-icon-04.full-hollow:before{
	border-width:1px;
	border-style: solid;
	border-color:transparent;
	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? */
}
.dg-icon-04.full-hollow:hover:before,
.dg-ibox-hover:hover .dg-icon-04.full-hollow:before{
	background:transparent;
}
.dg-icon-04.full:hover,
.dg-ibox-hover:hover .dg-icon-04.full{
	color:#FFF!important;
}
.dg-icon-05,
.dg-icon-06{
	width:32px;
	height:32px;
	line-height:32px;
	font-size:32px;
	text-align:center;
	display:inline-block;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	vertical-align:middle;
	position:relative;
	z-index:2;
}

.dg-icon-05 .hexagon,
.dg-icon-06 .hexagon,
.dg-icon-05 .hexagon span,
.dg-icon-06 .hexagon span,
.dg-icon-05 .hexagon span,
.dg-icon-06 .hexagon span,
.dg-icon-05 .hexagon span:before,
.dg-icon-06 .hexagon span:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	overflow:hidden;
	transform-origin:center center;
	-webkit-transform-origin:center center;
	transform:rotate(120deg);
	-webkit-transform:rotate(120deg);
	border-radius:47%;
	-moz-border-radius:47%;
	-webkit-border-radius:47%;
}
.dg-icon-05 .hexagon,
.dg-icon-06 .hexagon{
	left:-44px;
	right:-44px;
	z-index:-2;
}
.dg-icon-05 .hexagon span,
.dg-icon-06 .hexagon span{
}  
.dg-icon-05 .hexagon span:before,
.dg-icon-06 .hexagon span:before{
}  

.dg-icon-05.size-s{
	margin:0 3px;
}
.dg-icon-05.size-m{
	margin:0 5px;
}
.dg-icon-05.size-l{
	margin:0 7px;
}
.dg-icon-05.size-xl{
	margin:0 8px;
}
.dg-icon-05:before,
.dg-icon-05:after,
.dg-icon-05 .fa:after,
.dg-icon-05 .img-icon:after,
.dg-icon-06:before,
.dg-icon-06:after,
.dg-icon-06 .fa:after,
.dg-icon-06 .img-icon:after{
	content:"";
	position:absolute;
	top:0;
	left:21%;
	right:21%;
	bottom:0;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	z-index:-1;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	background-color:transparent!important;

}
.dg-icon-06.size-s{
	margin:3px 0;
}
.dg-icon-06.size-m{
	margin:5px 0;
}
.dg-icon-06.size-l{
	margin:7px 0;
}
.dg-icon-06.size-xl{
	margin:8px 0;
}
.dg-icon-05:after{
	transform:rotate(120deg);
	-webkit-transform:rotate(120deg);
}
.dg-icon-05 .fa:after,
.dg-icon-05 .img-icon:after{
	transform:rotate(-120deg);
	-webkit-transform:rotate(-120deg);
}
.dg-icon-06:before,
.dg-icon-06 .hexagon{
	transform:rotate(30deg);
	-webkit-transform:rotate(30deg);
}
.dg-icon-06:after{
	transform:rotate(150deg);
	-webkit-transform:rotate(150deg);
}
.dg-icon-06 .fa:after,
.dg-icon-06 .img-icon:after{
	transform:rotate(-90deg);
	-webkit-transform:rotate(-90deg);
}
.dg-icon-05.hollow,
.dg-icon-06.hollow{
	background:none!important;
}
.dg-icon-05.hollow .hexagon,
.dg-icon-06.hollow .hexagon{
	display:none!important;
}
.dg-icon-05.hollow:before,
.dg-icon-05.hollow:after,
.dg-icon-05.hollow .fa:after,
.dg-icon-05.hollow .img-icon:after,
.dg-icon-06.hollow:before,
.dg-icon-06.hollow:after,
.dg-icon-06.hollow .fa:after,
.dg-icon-06.hollow .img-icon:after{
	border-top:2px solid ;
	border-bottom:2px solid ;
	border-color:inherit!important;	
	background:none!important;
}
.dg-icon-05.hollow-full,
.dg-icon-06.hollow-full{
	background:none!important;
}
.dg-icon-05.hollow-full:before,
.dg-icon-05.hollow-full:after,
.dg-icon-05.hollow-full .fa:after,
.dg-icon-05.hollow-full .img-icon:after,
.dg-icon-06.hollow-full:before,
.dg-icon-06.hollow-full:after,
.dg-icon-06.hollow-full .fa:after,
.dg-icon-06.hollow-full .img-icon:after{
	border-top:2px solid ;
	border-bottom:2px solid ;
	border-color:inherit!important;	
	background:none!important;
	transition: 		none;
	-moz-transition: 	none; /* Firefox 4 */
	-webkit-transition: none; /* Safari and Chrome */
	-o-transition: 		none; /* Opera */
	-ms-transition: 	none; /* IE9? */	
}
.dg-icon-05.hollow-full .hexagon,
.dg-icon-06.hollow-full .hexagon{
	opacity:0;
	visibility:hidden;
	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? */
}
.dg-icon-05.hollow-full:hover .hexagon,
.dg-icon-06.hollow-full:hover .hexagon,
.dg-ibox-hover:hover .dg-icon-05.hollow-full .hexagon,
.dg-ibox-hover:hover .dg-icon-06.hollow-full .hexagon{
	opacity:1;
	visibility:visible;
	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? */
}
.dg-icon-05.full-hollow,
.dg-icon-06.full-hollow{
	background:none!important;
}
.dg-icon-05.full-hollow .fa:before,
.dg-icon-06.full-hollow .fa:before{
	color:#FFF;
	transition: 		color ease-in 300ms;
	-moz-transition: 	color ease-in 300ms; /* Firefox 4 */
	-webkit-transition: color ease-in 300ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 300ms; /* Opera */
	-ms-transition: 	color ease-in 300ms; /* IE9? */
}
.dg-icon-05.full-hollow:before,
.dg-icon-05.full-hollow:after,
.dg-icon-05.full-hollow .fa:after,
.dg-icon-05.full-hollow .img-icon:after,
.dg-icon-06.full-hollow:before,
.dg-icon-06.full-hollow:after,
.dg-icon-06.full-hollow .fa:after,
.dg-icon-06.full-hollow .img-icon:after{
	border-top:2px solid ;
	border-bottom:2px solid ;
	border-color:inherit!important;	
	transition: 		none;
	-moz-transition: 	none; /* Firefox 4 */
	-webkit-transition: none; /* Safari and Chrome */
	-o-transition: 		none; /* Opera */
	-ms-transition: 	none; /* IE9? */	
}
.dg-icon-05.full-hollow .hexagon,
.dg-icon-06.full-hollow .hexagon{
	opacity:1;
	visibility:visible;
	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? */
}
.dg-icon-05.full-hollow:hover .hexagon,
.dg-icon-06.full-hollow:hover .hexagon,
.dg-ibox-hover:hover .dg-icon-05.full-hollow .hexagon,
.dg-ibox-hover:hover .dg-icon-06.full-hollow .hexagon{
	opacity:0;
	visibility:hidden;
	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? */
}
.dg-icon-05.full-hollow:hover .fa:before,
.dg-icon-06.full-hollow:hover .fa:before,
.dg-ibox-hover:hover .dg-icon-05.full-hollow .fa:before,
.dg-ibox-hover:hover .dg-icon-06.full-hollow .fa:before{
	color:inherit;
	transition: 		none;
	-moz-transition: 	none; /* Firefox 4 */
	-webkit-transition: none; /* Safari and Chrome */
	-o-transition: 		none; /* Opera */
	-ms-transition: 	none; /* IE9? */
}


.dg-icon-06.hollow:before,
.dg-icon-06.hollow:after,
.dg-icon-06.hollow .fa:after,
.dg-icon-06.hollow .img-icon:after,
.dg-icon-06.hollow-full:before,
.dg-icon-06.hollow-full:after,
.dg-icon-06.hollow-full .fa:after,
.dg-icon-06.hollow-full .img-icon:after{
	border-top-width:6px;
	border-bottom-width:6px;
	border-radius:9px;
	-moz-border-radius:9px;
	-webkit-border-radius:9px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	left:18%;
	right:18%;
}
.dg-icon-06.hollow.size-s:before,
.dg-icon-06.hollow.size-s:after,
.dg-icon-06.hollow.size-s .fa:after,
.dg-icon-06.hollow.size-s .img-icon:after,
.dg-icon-06.hollow-full.size-s:before,
.dg-icon-06.hollow-full.size-s:after,
.dg-icon-06.hollow-full.size-s .fa:after,
.dg-icon-06.hollow-full.size-s .img-icon:after{
	border-top-width:2px;
	border-bottom-width:2px;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	left:20%;
	right:20%;
}
.dg-icon-05.full .hexagon span:before,
.dg-icon-06.full .hexagon span:before,
.dg-icon-05.hollow-full .fa:before,
.dg-icon-06.hollow-full .fa: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? */
}

.dg-icon-05.hollow-full:hover .fa:before,
.dg-icon-06.hollow-full:hover .fa:before,
.dg-ibox-hover:hover .dg-icon-05.hollow-full .fa:before,
.dg-ibox-hover:hover .dg-icon-06.hollow-full .fa:before{
	color:#FFF;
}

.dg-icon-05.full,
.dg-icon-05.full:hover,
.dg-ibox-hover:hover .dg-icon-05.full,
.dg-icon-06.full,
.dg-icon-06.full:hover,
.dg-ibox-hover:hover .dg-icon-06.full{
	background:none;
	color:#FFF;
}
.dg-icon-05.full:before,
.dg-icon-05.full:after,
.dg-icon-05.full .fa:after,
.dg-icon-05.full .img-icon:after,
.dg-icon-06.full:before,
.dg-icon-06.full:after,
.dg-icon-06.full .fa:after,
.dg-icon-06.full .img-icon:after{
	content:normal;
}


.dg-icon-07{
	width:32px;
	height:32px;
	line-height:32px;
	font-size:32px;
	text-align:center;
	display:inline-block;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	vertical-align:middle;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	color:#FFF!important;
	position:relative;
	overflow:hidden;
}
.dg-icon-07:after{
	content:"";
	position:absolute;
	background-color:#FFF;
	opacity:0.15;
	width:50%;
	height:100%;
	left:0;
	top:0;
	z-index:0;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	transform-origin:right center;
	-webkit-transform-origin:right center;
}
.dg-icon-07 > *{
	position:relative;
	z-index:1;
}
.dg-icon-07.icon-white{
	color:#333333!important;
}
.dg-icon-07.icon-white:after{
	background-color:#000;
}



.dg-icon-08{
	width:32px;
	height:32px;
	line-height:32px;
	font-size:32px;
	text-align:center;
	display:inline-block;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	vertical-align:middle;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	position:relative;
	background:none!important;
	border:1px solid #b9b9b9!important;
}
.dg-icon-08:before{
	content:"";
	position:absolute;
	top:6%;
	left:6%;
	right:6%;
	bottom:6%;
	background:none!important;
	border:1px solid #b9b9b9!important;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.dg-icon-08 .img-icon img{
	max-width:75%;
	max-height:75%;
}
.dg-icon-09{
	width:32px;
	height:32px;
	line-height:32px;
	font-size:32px;
	text-align:center;
	display:inline-block;
	vertical-align:middle;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	position:relative;
	background:none!important;
	color:#333333!important;
}

.dg-icon-09:after{
	content:"";
	position:absolute;
	top:8px;
	left:8px;
	right:8px;
	bottom:8px;
	background:none!important;
	border:1px solid #b9b9b9!important;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.dg-icon-09:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:none!important;
	border:8px solid #b9b9b9;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	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-icon-10{
	width:32px;
	height:32px;
	line-height:32px;
	font-size:32px;
	text-align:center;
	display:inline-block;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	vertical-align:middle;
	position:relative;
	background-image:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/dg-icon-10-bg.png")!important;;
	background-position:left top;
	background-size:cover;
	color:#FFF!important;
}

.dg-icon-10.icon-white{
	color:#333333!important;
}
.dg-icon-11{
	width:32px;
	height:32px;
	line-height:32px;
	font-size:32px;
	text-align:center;
	display:inline-block;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	vertical-align:middle;
	position:relative;
	background:none!important;
}
 .dg-icon-11 .fa{
	font-size:60%!important;
}

[class*="dg-icon-"] .fa{
	line-height:inherit;
	font-size:40%;
	color:inherit;
	vertical-align:top;
}
[class*="dg-icon-"] .img-icon{
	line-height:inherit;
	font-size:40%;
	color:inherit;
	vertical-align:top;
}
[class*="dg-icon-"] img{
	display:inline-block;
	vertical-align:middle;
	max-width:80%;
	max-height:80%; 
}

[class*="dg-icon-"].size-s{
	width:42px;
	height:42px;
	line-height:42px;
	font-size:42px;
}
[class*="dg-icon-"].size-m{
	width:60px;
	height:60px;
	line-height:60px;
	font-size:60px;
}
[class*="dg-icon-"].size-l{
	width:80px;
	height:80px;
	line-height:80px;
	font-size:80px;
}
[class*="dg-icon-"].size-xl{
	width:110px;
	height:110px;
	line-height:110px;
	font-size:110px;
}


/**/
.dg-iconlist {
	margin:0;
	padding:0;
	list-style:none;
}
.dg-iconlist li{
	margin:0 3px 3px 0;
	display:inline-block;
	vertical-align:bottom;
}



/**/
.iconbox-title {
	font-size:30px;
	color:#333333;
	text-align:center;
	margin-bottom:50px;
}

/**/
.iconbox-bg01{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/iconbox-bg01.jpg");
}
.iconbox-bg02{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/iconbox-bg02.jpg") no-repeat center center;
	background-size:cover;
	-moz-box-shadow:0px 8px 5px -8px #999 inset,0px -8px 5px -8px rgba(0,0,0,0.2) inset;               /* For Firefox3.6+ */
	-webkit-box-shadow:0px 8px 5px -8px #999 inset,0px -8px 5px -8px rgba(0,0,0,0.2) inset;            /* For Chrome5+, Safari5+ */
	box-shadow:0px 8px 5px -8px #999 inset,0px -8px 5px -8px rgba(0,0,0,0.2) inset;                    /* For Latest Opera */
}
.iconbox-bg03 {
	background-color:#08c6f5;
}
.iconbox-bg04{
	background-color:#eeeeee;
}
.iconbox-bg05 {
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/iconbox-bg05.png");
}
.iconbox-bg06 {
	background-color:#f9f9f9;
}
.iconbox-bg07{
	background-color:#000723;
}
.iconbox-bg08{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/iconbox-bg08.jpg") no-repeat center center;
	background-size:cover;
}
.iconbox-bg09 {
	background-color:#ececec;
}
.iconbox-bg10{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/iconbox-bg10.jpg") no-repeat center center;
	background-size:cover;
}
.iconbox-bg11{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/iconbox-bg11.jpg") no-repeat center center;
	background-size:cover;
}
.iconbox-bg12{
	background-color:#013b4c;
}

/**/
.dg-ibox01 {
	text-align:center;
	margin-bottom:30px;
}
.dg-ibox01 h3{
	margin:38px 0 22px;
	font-size:15px;
	color:#333333;
	font-weight:normal;
	font-weight:300;
}
.dg-ibox01 h3:after{
	content:"";
	border-bottom:2px solid #444444;
	width:28px;
	display:block;
	margin:22px auto 0;
}
.dg-ibox01 p{
	max-width:85%;
	margin:auto;
	color:#666666;
	font-size:13px;
	font-weight:bold;
}
.dg-ibox02 {
	text-align:center;
	margin-bottom:30px;
}
.dg-ibox02 h3{
	margin:38px 0 22px;
	font-size:15px;
	color:#333333;
	font-weight:bold;
}
.dg-ibox02 h3:after{
	content:"";
	border-bottom:2px solid #333333;
	width:28px;
	display:block;
	margin:22px auto 0;
}
.dg-ibox02 p{
	max-width:85%;
	margin:auto;
}
.dg-ibox03 {
	text-align:center;
	color:#FFF;
	margin-bottom:30px;
}
.dg-ibox03 [class*="dg-icon-"]{
	margin:0 auto 50px;
}
.dg-ibox03 h3{
	font-size:15px;
	color:#FFF;
	font-weight:normal;
	margin-bottom:14px;
}
.dg-ibox03 h3:before{
	content:"";
	width:29px;
	border-top:2px solid #cccccc;
	display:block;
	margin:0 auto 20px;	
}
.dg-ibox03 p {
	max-width:90%;
	margin:auto;
}

.dg-ibox04 {
	text-align:center;
	margin-bottom:30px;
}
.dg-ibox04 [class*="dg-icon-"]{
	margin:0 auto 25px;
}
.dg-ibox04 h3{
	font-size:15px;
	color:#333333;
	margin-bottom:20px;
}
.dg-ibox04 h3:before{
	content:"";
	display:block;
	border-bottom:2px solid #444444;
	width:28px;
	margin:24px auto 19px;
}
.dg-ibox04 .btn {
	border:1px solid #20a3f0;
	color:#20a3f0;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	transition: 		background-color ease-in 300ms;
	-moz-transition: 	background-color ease-in 300ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 300ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 300ms; /* Opera */
	-ms-transition: 	background-color ease-in 300ms; /* IE9? */
}
.dg-ibox04 .btn:hover {
	color:#FFF;
	background-color:#20a3f0
}




.dg-ibox05 {
	text-align:center;
	margin-bottom:30px;
}
.dg-ibox05 [class*="dg-icon-"]{
	margin:0 auto 25px;
}
.dg-ibox05 h3{
	font-size:15px;
	color:#333333;
	margin-bottom:20px;
}
.dg-ibox06 {
	text-align:center;
	margin-bottom:30px;
}
.dg-ibox06 h3{
	margin-bottom:35px;
	font-size:15px;
}
.dg-ibox06 [class*="dg-icon-"]{
	margin:0 auto 40px;
}
.dg-ibox06 p {
	max-width:85%;
	margin:0 auto 10px;
	color:#666666;
}
.dg-ibox06 .more{
	font-size:15px;
	color:#333333;
	font-weight:bold;

}
.dg-ibox07 {
	text-align:center;
	margin-bottom:30px;
}
.dg-ibox07 h3{
	margin:20px 0 32px;
	font-size:15px;
	color:#333333;
}
.dg-ibox07 [class*="dg-icon-"]{
	margin:0 auto 28px;
}
.dg-ibox07 p {
	max-width:85%;
	margin:0 auto 10px;
	color:#666666;
}
.hover-black .dg-icon-06.full:before,
.hover-black .dg-icon-06.full:after,
.hover-black .dg-icon-06.full .fa:after,
.hover-black.dg-icon-06.full .img-icon:after{
	content:"";
	position:absolute;
    top: 6%;
    left: 25%;
    right: 25%;
    bottom: 6%;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	z-index:-1;
	background:#333333!important;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	opacity:0;
	visibility:hidden;	
}
.hover-black .dg-icon-06.full:before{
	transform:rotate(30deg);
	-webkit-transform:rotate(30deg);
}
.hover-black .dg-icon-06.full:after{
	transform:rotate(150deg);
	-webkit-transform:rotate(150deg);
}
.hover-black .dg-icon-06.full .fa:after,
.hover-black .dg-icon-06.full .img-icon:after{
	transform:rotate(-90deg);
	-webkit-transform:rotate(-90deg);
}
.hover-black:hover .dg-icon-06.full:before,
.hover-black:hover .dg-icon-06.full:after,
.hover-black:hover .dg-icon-06.full .fa:after,
.hover-black:hover .dg-icon-06.full .img-icon:after{
	opacity:1;
	visibility:visible;	
}
.hover-black .dg-icon-03{
	position:relative;
}
.hover-black .dg-icon-03.full:after{
	content:"";
	position:absolute;
	top:5px;
	left:5px;
	right:5px;
	bottom:5px;
	background:#333333!important;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	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? */
}
.hover-black .dg-icon-03.full >*{
	position:relative;
	z-index:1;
}
.hover-black:hover .dg-icon-03.full:after{
	opacity:1;
	visibility:visible;
}

.dg-ibox08 {
	text-align:center;
	margin-bottom:30px;
}
.dg-ibox08 h3{
	margin-bottom:28px;
	font-size:15px;
	color:#333333;
}
.dg-ibox08 [class*="dg-icon-"]{
	margin:0 auto 35px;
}
.dg-ibox08 p {
	max-width:85%;
	margin:0 auto 10px;
	color:#666666;
}
.dg-ibox08 .more{
	font-size:15px;
	color:#333333;
	font-weight:bold;
}
.dg-ibox09{
	text-align:center;
	padding:20px 15px 10px;
	margin-bottom:30px;
	transition: 		background-color ease-in 300ms;
	-moz-transition: 	background-color ease-in 300ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 300ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 300ms; /* Opera */
	-ms-transition: 	background-color ease-in 300ms; /* IE9? */
}
.dg-ibox09:hover{
	background-color:#FFF;
}
.dg-ibox09 h3{
	margin-top:20px;
	color:#ffffff;
	font-size:15px;
	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? */
}
.dg-ibox09:hover h3{
	color:#00c6ff
}
.dg-ibox10,
.dg-ibox11,
.dg-ibox12{
	margin-bottom:30px;
}
.dg-ibox10 [class*="dg-icon-"],
.dg-ibox11 [class*="dg-icon-"],
.dg-ibox12 [class*="dg-icon-"]{
	float:left;
}
.dg-ibox10 [class*="dg-icon-"] + .box-right,
.dg-ibox11 [class*="dg-icon-"] + .box-right,
.dg-ibox12 [class*="dg-icon-"] + .box-right{
	overflow:hidden;
	padding-left:20px;
}
.dg-ibox10 h3{
	font-size:15px;
	color:#333333;
	font-weight:normal;
	margin:12px 0 18px;
}
.dg-ibox10 p{
	color:#666666;
	font-weight:bold;
}
.dg-ibox11 h3{
	font-size:15px;
	color:#333333;
	font-weight:bold;
	margin:20px 0 22px;
}
.dg-ibox11 p{
	color:#000000;
}
.dg-ibox12 h3{
	font-size:15px;
	color:#444444;
	font-weight:bold;
	margin:30px 0 18px;
}
.dg-ibox12 p{
	color:#444444;
}
.dg-ibox12 .more{
	font-size:13px;
	color:#333333;
	font-weight:bold;
}
.dg-ibox13{
	margin-bottom:30px;
}
.dg-ibox13 [class*="dg-icon-"]{
	float:left;
}
.dg-ibox13 [class*="dg-icon-"] + .box-right{
	overflow:hidden;
	padding-left:20px;
}
.dg-ibox13 h3{
	font-size:15px;
	color:#444444;
	font-weight:bold;
	margin:20px 0 18px;
}
.dg-ibox13 .more:before{
	content:"";
	width:0px;
	height:0px;
	overflow:hidden;
	border:5px solid transparent;
	border-left-color:#20a3f0;
	display:inline-block;
	margin-right:7px;
}
.dg-ibox14{
	margin-bottom:30px;
}
.dg-ibox14 [class*="dg-icon-"]{
	float:left;
}
.dg-ibox14 [class*="dg-icon-"] + .box-right{
	overflow:hidden;
	padding-left:20px;
}
.dg-ibox14 .box-right{
	color:#ffffff;
}
.dg-ibox14 h3{
	font-size:18px;
	color:#00c6ff;
	font-weight:bold;
	margin:50px 0 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.dg-ibox14{
		text-align:center;
	}
	.dg-ibox14 [class*="dg-icon-"]{
		float:none;
	}
	.dg-ibox14 [class*="dg-icon-"] + .box-right{
		overflow:visible;
		padding-left:0px;
	}
	.dg-ibox14 h3{
		margin:20px 0 18px;
	}
}

.dg-ibox15{
	margin-bottom:30px;
}
.dg-ibox15 [class*="dg-icon-"]{
	display:inline-block;
	vertical-align:middle;
}
.dg-ibox15 [class*="dg-icon-"] + .box-right{
	overflow:hidden;
	padding-left:20px;
}
.dg-ibox15 .box-right{
	color:#ffffff;
}

.dg-ibox15 h3{
	font-size:15px;
	color:#1d1d1d;
	font-weight:normal;
	margin:0 0 0 10px;
	display:inline-block;
	vertical-align:middle;
}
.dg-ibox15 .box-title {
	margin-bottom:15px;
}
.dg-ibox16{
	max-width:75%;
	margin:0 auto 4px;
	overflow:hidden;
}
.dg-ibox16 [class*="dg-icon-"]{
	float:left;
	position:relative;
}
.dg-ibox16 [class*="dg-icon-"] .left-line{
	position:absolute;
	top:100%;
	left:50%;
	height:10000px;
	border-left:1px solid #333333;
	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-ibox16:hover [class*="dg-icon-"] .left-line{
	border-left-color:#00c6ff;
}
.dg-ibox16 h3{
	color:#1d1d1d;
	font-size:15px;
	margin:0 0 10px;	
}
.dg-ibox16 [class*="dg-icon-"] + .box-right{
	overflow:hidden;
	padding-left:25px;
	padding-bottom:60px;
}
@media only screen and (max-width: 767px) {
	.dg-ibox16{
		max-width:none;
	}
}
.dg-ibox17 {
	border:2px solid #FFF;
	text-align:center;
	margin-bottom:30px;
	height:385px;
	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-ibox17:hover {
	border-color:#20a3f0;
	background-color:#20a3f0;

}
.dg-ibox17:before{
	content:"";
	vertical-align:middle;
	display:inline-block;
	height:385px;
}
.dg-ibox17 .center {
	display:inline-block;
	vertical-align:middle;
}
.dg-ibox17 h3{
	color:#FFF;
}
.dg-ibox17 h3:before{
	content:"";
	border-top:3px solid #FFF;
	width:40px;
	display:block;
	margin:30px auto 20px;
}

.dg-ibox18 {
	border:1px solid #cccccc;
	border-top-color:transparent;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	text-align:center;
	padding:0px 25px 25px;
	margin:40px 0 30px;
	position:relative;
}
.dg-ibox18 [class*="dg-icon-"]{
	margin:-40px 0 30px;
}
.dg-ibox18 .top-line:before,
.dg-ibox18 .top-line:after{
	content:"";
	border-top:1px solid #cccccc;
	position:absolute;
	top:-1px;
	height:10px;
}
.dg-ibox18 .top-line:before{
	left:0;
	right:50%;
	border-radius:3px 0 0 0;
	-moz-border-radius:3px 0 0 0;
	-webkit-border-radius:3px 0 0 0;
}
.dg-ibox18 .top-line:after{
	right:0;
	left:50%;
	border-radius:0 3px 0 0;
	-moz-border-radius:0 3px 0 0;
	-webkit-border-radius:0 3px 0 0;
}
@media only screen and (max-width: 767px) {
	.dg-ibox18{
		margin-bottom:60px;
	}
}

.size-s + .top-line:before{
	margin-right:22px;
}
.size-s + .top-line:after{
	margin-left:22px;
}
.size-m + .top-line:before{
	margin-right:30px;
}
.size-m + .top-line:after{
	margin-left:30px;
}
.size-l + .top-line:before{
	margin-right:41px;
}
.size-l + .top-line:after{
	margin-left:41px;
}
.size-xl + .top-line:before{
	margin-right:56px;
}
.size-xl + .top-line:after{
	margin-left:56px;
}
.size-s.dg-icon-05 + .top-line:before{
	margin-right:23px;
}
.size-s.dg-icon-05 + .top-line:after{
	margin-left:23px;
}
.size-m.dg-icon-05 + .top-line:before{
	margin-right:32px;
}
.size-m.dg-icon-05 + .top-line:after{
	margin-left:32px;
}
.size-l.dg-icon-05 + .top-line:before{
	margin-right:44px;
}
.size-l.dg-icon-05 + .top-line:after{
	margin-left:44px;
}
.size-xl.dg-icon-05 + .top-line:before{
	margin-right:59px;
}
.size-xl.dg-icon-05 + .top-line:after{
	margin-left:59px;
}
.size-s + .left-line:before{
	margin-bottom:22px;
}
.size-s + .left-line:after{
	margin-top:22px;
}
.size-m + .left-line:before{
	margin-bottom:30px;
}
.size-m + .left-line:after{
	margin-top:30px;
}
.size-l + .left-line:before{
	margin-bottom:41px;
}
.size-l + .left-line:after{
	margin-top:41px;
}
.size-xl + .left-line:before{
	margin-bottom:56px;
}
.size-xl + .left-line:after{
	margin-top:56px;
}
.size-s.dg-icon-05 + .left-line:before{
	margin-bottom:23px;
}
.size-s.dg-icon-05 + .left-line:after{
	margin-top:23px;
}
.size-m.dg-icon-05 + .left-line:before{
	margin-bottom:32px;
}
.size-m.dg-icon-05 + .left-line:after{
	margin-top:32px;
}
.size-l.dg-icon-05 + .left-line:before{
	margin-bottom:44px;
}
.size-l.dg-icon-05 + .left-line:after{
	margin-top:44px;
}
.size-xl.dg-icon-05 + .left-line:before{
	margin-bottom:59px;
}
.size-xl.dg-icon-05 + .left-line:after{
	margin-top:59px;
}



.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;
}
@media only screen and (max-width: 767px) {
	.dg-iboxlist li{
		width:auto;
		float:none;
	}
}



.dg-ibox20 {
	border:1px solid #cccccc;
	border-top:5px solid #10cef2;
	text-align:center;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	padding:0px 28px 35px;
	margin:43px 0 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-ibox20 [class*="dg-icon-"]{
	margin:-43px 0 37px;
}
.dg-ibox20 h3{
	color:#20a3f0;
	font-size:15px;
	margin-bottom:23px;
}
.dg-ibox20:hover {
	border-top-color:#333333
}
.dg-ibox21 {
	border:1px solid #cccccc;
	text-align:center;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	padding:0px 28px 35px;
	margin:43px 0 30px;
}
.dg-ibox21 [class*="dg-icon-"]{
	margin:-40px 0 37px;
}
.dg-ibox21 h3{
	color:#20a3f0;
	font-size:15px;
}
.dg-ibox21 .line{
	width:39px;
	border-bottom:3px solid #333333;
	margin:22px auto ;
}
.dg-ibox21 .btn{
	border:1px solid #cccccc;
	padding:10px 30px;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	font-size:13px;
	color:#2c2c2c;
	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? */
}
.dg-ibox21:hover .btn{
	background-color:#20a3f0;
	border-color:transparent;
	color:#FFF;
}
.dg-ibox22 {
	text-align:center;
	color:#FFF;
	border:1px solid #474747;
	border-top-color:transparent;
	margin:30px 0 40px;
	padding:0 25px 25px;
	position:relative;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
}
.dg-ibox22 [class*="dg-icon-"]{
	margin:-30px 0 37px;
}
.dg-ibox22 h3{
	font-size:15px;
	color:#FFF;
	margin:0px 0 20px
}
.dg-ibox22:before{
	content:"";
	width:100%;
	left:0;
	bottom:-1px;
	position:absolute;
	border-bottom:4px solid #20a3f0;
	height:20px;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	opacity:0;
	visibility:hidden;
	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? */
}
.dg-ibox22:hover:before{
	opacity:1;
	visibility:visible;
}
.dg-ibox22 .top-line:before,
.dg-ibox22 .top-line:after{
	content:"";
	border-top:1px solid #474747;
	position:absolute;
	top:-1px;
	height:10px;
}
.dg-ibox22 .top-line:before{
	left:0;
	right:50%;
	border-radius:3px 0 0 0;
	-moz-border-radius:3px 0 0 0;
	-webkit-border-radius:3px 0 0 0;
}
.dg-ibox22 .top-line:after{
	right:0;
	left:50%;
	border-radius:0 3px 0 0;
	-moz-border-radius:0 3px 0 0;
	-webkit-border-radius:0 3px 0 0;
}
.dg-ibox23 {
	text-align:center;
	color:#FFF;
	border:1px solid #474747;
	border-top-color:transparent;
	margin:30px 0 40px;
	padding:0 25px 25px;
	position:relative;
	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? */
}
.dg-ibox23 [class*="dg-icon-"]{
	margin:-30px 0 37px;
}
.dg-ibox23 h3{
	font-size:15px;
	color:inherit;
	margin:0px 0 20px
}
.dg-ibox23:hover{
	background-color:#FFF;
	color:#000000;
}
.dg-ibox23 .top-line:before,
.dg-ibox23 .top-line:after{
	content:"";
	border-top:1px solid #474747;
	position:absolute;
	top:-1px;
}
.dg-ibox23 .top-line:before{
	left:0;
	right:50%;
}
.dg-ibox23 .top-line:after{
	right:0;
	left:50%;
}
.dg-ibox23:hover .dg-icon-08,
.dg-ibox23:hover .dg-icon-09{
	background-color:#092228!important;
	color:#FFF;
}
.dg-ibox23 .dg-icon-09{
	color:#FFF!important;
}
.dg-ibox24{
	text-align:center;
	border:1px solid #cccccc;
	padding:70px 40px 100px;
	position:relative;
	margin-bottom:30px;
}
.dg-ibox24:before{
	content:"";
	width:100%;
	height:6px;
	border-top:1px solid #cccccc;
	border-bottom:1px solid #cccccc;
	bottom:4px;
	left:0;
	position:absolute;
}
.dg-ibox24 [class*="dg-icon-"]{
	margin:0px 0 40px;
}
.dg-ibox24 h3{
	color:#20a3f0;
	font-size:15px;
	margin-bottom:22px;
}
.dg-ibox24 h3:after{
	content:"";
	border-bottom:1px solid #20a3f0;
	width:94px;
	display:block;
	margin:20px auto 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? */
}
.dg-ibox24 .btn{
	position:absolute;
	bottom:-18px;
	left:50%;
	margin-left:-85px;
	width:170px;
	height:50px;
	line-height:50px;
	padding:0;
	color:#FFF;
	background:#02c5f5;
	font-size:13px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	font-weight:bold;
	border-bottom:1px solid rgba(0,0,0,0.5);
	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? */
}
.dg-ibox24:hover .btn{
	background:#dbdbdb;
	color:#333333;
}
.dg-ibox24:hover h3:after{
	content:"";
	border-bottom-color:#00586e;
}
.dg-ibox24 [class*="dg-icon-"]{
	margin:0px 0 40px;
}
@media only screen and (max-width: 767px) {
	.dg-ibox24{
		padding:30px 20px 30px;
	}
}

.dg-ibox25 {
	border:1px solid #d5d4d4;
	margin-bottom:30px;
	padding:20px 20px 12px 100px;
	position:relative;
}
.dg-ibox25:before{
	content:"";
	width:48px;
	background-color:#FFFFFF;	
	border-right:1px solid #d5d4d4;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}
.dg-ibox25 [class*="dg-icon-"]{
	position:absolute;
	top:50%;
	left:17px;
	margin-top:-30px;
}
.dg-ibox25 h3{
	color:#333333;
	font-size:15px;
	margin-bottom:5px;
}
.dg-ibox26 {
	border:1px solid #cccccc;
	padding:30px 30px 20px;
	margin-bottom:30px;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	position:relative;
}
.dg-ibox26 [class*="dg-icon-"]{
	display:inline-block;
	vertical-align:middle;
}
.dg-ibox26 .box-title h3{
	display:inline-block;
	margin:0 0 0 15px;
	font-size:15px;
	color:#333333;
	vertical-align:middle;
	white-space: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? */
}
.dg-ibox26:hover .box-title h3{
	color:#20a3f0;
}
.dg-ibox26 .box-title{
	white-space:nowrap;
	margin-bottom:30px;
}
.dg-ibox26:before{
	content:"";
	width:100%;
	left:0;
	top:-1px;
	position:absolute;
	border-top:4px solid #20a3f0;
	height:20px;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	opacity:0;
	visibility:hidden;
	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? */
}
.dg-ibox26:hover:before{
	opacity:1;
	visibility:visible;
}
.dg-ibox27 {
	border:1px solid #cccccc;
	padding:30px 30px 20px;
	margin-bottom:30px;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	position:relative;
}
.dg-ibox27 [class*="dg-icon-"]{
	display:inline-block;
	vertical-align:middle;
}
.dg-ibox27 .box-title h3{
	display:inline-block;
	margin:0 0 0 15px;
	font-size:15px;
	color:#333333;
	vertical-align:middle;
	white-space: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? */
}
.dg-ibox27:hover .box-title h3{
	color:#20a3f0;
}
.dg-ibox27 .box-title{
	white-space:nowrap;
	margin-bottom:30px;
}
.dg-ibox27 .btn{
	border:1px solid #cccccc;
	color:#2c2c2c;
	font-size:13px;
	margin-top:10px;
	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? */
}
.dg-ibox27:hover .btn{
	border-color:transparent;
	background-color:#20a3f0;
	color:#FFF;
}
.dg-ibox28 {
	background-color:#ffffff;
	margin-bottom:30px;
	padding:45px;
	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? */
}
.dg-ibox28:hover{
	color:#FFF;
	background-color:#20a3f0;
}
.dg-ibox28 [class*="dg-icon-"]{
	float:left;
}
.dg-ibox28 [class*="dg-icon-"] + .box-right{
	overflow:hidden;
	padding-left:35px;
}
.dg-ibox28 .info {
	padding-top:20px ;
	color:#333333;
	font-size:20px;
	font-weight:bold;
	line-height:1.5;
}
.dg-ibox28 .info small{
	color:#7e7d7d;
	font-size:15px;
	display:block;
	transition: 		background-color ease-in 300ms;
	-moz-transition: 	background-color ease-in 300ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 300ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 300ms; /* Opera */
	-ms-transition: 	background-color ease-in 300ms; /* IE9? */
}
.dg-ibox28:hover .info small{
	color:#FFF ;
}
@media only screen and (max-width: 767px) {
	.dg-ibox28 {
		padding:20px 10px;
	}
	.dg-ibox28 [class*="dg-icon-"] + .box-right{
		overflow:hidden;
		padding-left:10px;
	}
}

.dg-ibox29,
.dg-ibox30{
	border:1px solid #dddddd;
	padding:35px 20px;
	margin-bottom:30px;
	position:relative;
	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? */
}
.dg-ibox29:before{
	content:"";
	left:-1px;
	right:-1px;
	bottom:-1px;
	position:absolute;
	border-bottom:2px solid #20a3f0;
	opacity:0;
	visibility:hidden;
	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? */
}
.dg-ibox29:hover:before{
	opacity:1;
	visibility:visible;
}
.dg-ibox30:hover{
	color:#FFF;
	background-color:#20a3f0;
}
.dg-ibox29 [class*="dg-icon-"],
.dg-ibox30 [class*="dg-icon-"]{
	float:left;
}
.dg-ibox29 [class*="dg-icon-"] + .box-right,
.dg-ibox30 [class*="dg-icon-"] + .box-right{
	overflow:hidden;
	padding-left:20px;
}
.dg-ibox29 h3,
.dg-ibox30 h3{
	color:#282828;
	font-size:15px;
	margin:0 0 20px;
}
.dg-ibox29 h3 small,
.dg-ibox30 h3 small{
	display:block;
	color:inherit;
	font-size:13px;
	margin-top:8px;
	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? */
}
.dg-ibox30:hover h3{
	color:#FFF
}
.dg-ibox30:hover [class*="dg-icon-"]{
	background-color:transparent!important;
}
.dg-ibox30 .dg-icon-03{
	border:1px solid transparent;
}
.dg-ibox30:hover .dg-icon-03{
	border-color:#FFF;
}
.dg-ibox31{
	border:1px solid #cccccc;
	border-left-color:transparent;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	padding:30px 30px 30px 50px;
	position:relative;
	margin:0 0 30px 31px;
}
.dg-ibox31 [class*="dg-icon-"]{
	position:absolute;
	top:50%;
	left:-31px;
	margin-top:-31px;
}
.dg-ibox31 .left-line:before,
.dg-ibox31 .left-line:after{
	content:"";
	border-left:1px solid #cccccc;
	position:absolute;
	left:-1px;
	width:10px;
}
.dg-ibox31 .left-line:before{
	top:0;
	bottom:50%;
	border-radius:3px 0 0 0;
	-moz-border-radius:3px 0 0 0;
	-webkit-border-radius:3px 0 0 0;
}
.dg-ibox31 .left-line:after{
	bottom:0;
	top:50%;
	border-radius:0 3px 0 0;
	-moz-border-radius:0 3px 0 0;
	-webkit-border-radius:0 3px 0 0;
}

.dg-ibox32 {
	text-align:center;
	color:#FFF;
	margin-bottom:30px;
	font-size:15px;
}
.dg-ibox32 .number{
	font-size:50px;
}
.dg-ibox32 .number:after{
	content:"";
	border-bottom:1px solid #20a3f0;
	width:50px;
	margin:10px auto 20px;
	display:block;
}
.dg-ibox32 .dg-icon-08{
	color:#FFF!important;
}
.dg-ibox32 .dg-icon-09{
	background-color:#20a3f0!important;
	color:#FFF!important;
}
.dg-ibox32 .dg-icon-09:before{
	border-color:#FFF!important;
}

.dg-ibox33 {
	text-align:center;
	margin-bottom:30px;
	font-size:15px;
}
.dg-ibox33 [class*="dg-icon-"]{
	margin-bottom:25px
}
.dg-ibox33 .ibox-number{
	font-size:50px;
	color:#2f333f;
	line-height:1.3;
	font-weight:bold;
}
.dg-ibox33 h3{
	color:#b9b9b9;
	font-size:20px;
}
.dg-ibox34 {
	border:1px solid #cccccc;
	text-align:center;
	font-size:48px;
	margin-bottom:30px;
}
.dg-ibox34 .ibox-number {
	padding:15px 0;
}
.dg-ibox34 h3{
	background-color:#20a3f0;
	color:#FFF;
	padding:10px 15px;
	font-size:13px;
	font-weight:normal;
	margin:-1px;
}
.dg-ibox35{
	border:1px solid #c2c2c2;
	text-align:center;
	padding:42px 15px 62px;
	margin-bottom:30px;
	color:#FFF;
	font-weight:bold;
	font-size:13px;
	position:relative;
}
.dg-ibox35:before{
	content:"";
	top:-1px;
	left:-1px;
	right:-1px;
	position:absolute;
	border-top:3px solid #20a3f0;
	opacity:0;
	visibility:hidden;
	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? */
}
.dg-ibox35:hover:before{
	opacity:1;
	visibility:visible;
}
.dg-ibox35:after{
	content:"";
	bottom:8px;
	left:0;
	width:100%;
	position:absolute;
	border-top:1px solid #c2c2c2;
}
.dg-ibox35 .number {
	color:#20a3f0;
	font-size:30px;
	font-weight:bold;
	line-height:1;
	margin:10px 0 5px;
}





.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;
}
.dg-price .price-title {
	padding:20px 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:block;
	margin:-10px 0 0 0;
}
.dg-price .btn{
	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-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/20073-unlimitedcolorspack-055/images/dg-price-bg01.jpg") no-repeat center center;
	background-size:cover;
}
.dg-price-bg02{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/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:39px 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:-1px;
}
.dg-price01 .price-title h2{
	color:#FFF;
}
.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;
}
.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;
}
.dg-price01 .btn{
	border:1px solid #20a3f0;
	margin:30px 10px 40px;
	padding:10px 25px;
	font-size:13px;
	color:#2f2f2f;
}
.dg-price01 .btn:hover{
	background-color:#20a3f0;
	color:#FFF;
}
.dg-price01 .color-1 .price-title,
.dg-price01 .color-1 .btn:hover{
	background-color:#20a3f0;
}
.dg-price01 .color-1 .btn{
	border-color:#20a3f0;
}
.dg-price01 .color-1 .price-box .sup, 
.dg-price01 .color-1 .price-box .price{
	color:#20a3f0;
}
.dg-price01 .color-2 .price-title,
.dg-price01 .color-2 .btn:hover{
	background-color:#ef8494;
}
.dg-price01 .color-2 .btn{
	border:1px solid #ef8494;
}
.dg-price01 .color-2 .price-box .sup, 
.dg-price01 .color-2 .price-box .price{
	color:#ef8494;
}
.dg-price01 .color-3 .price-title,
.dg-price01 .color-3 .btn:hover{
	background-color:#f9cf79;
}
.dg-price01 .color-3 .btn{
	border:1px solid #f9cf79;
}
.dg-price01 .color-3 .price-box .sup, 
.dg-price01 .color-3 .price-box .price{
	color:#f9cf79;
}

.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;
}
.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;
}
.dg-price02 .btn{
	margin:23px 0px 21px;
	padding:0px 25px;
	height:44px;
	line-height:42px;
	border:1px solid transparent;
	font-size:13px;
	color:#20a3f0;
	font-weight:normal;
	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:102%;
	border-radius:30px;
	-moz-border-radius:30px;
	-webkit-border-radius:30px;
	background-color:#0676f4;
	color:#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 .btn,
.dg-price02 .price-border.best-value .btn{
	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;
}
.dg-price03 .price-title h6 {
	font-size:20px;
	color:#20a3f0;
	margin:-5px 0 12px;
}
.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:20px 0 10px;
}
.dg-price03 .price-holder .fa{
	margin-right:10px;
	color:#20a3f0;
}
.dg-price03 .btn{
	margin:0px 0px 2px;
	padding:10px 25px;
	font-size:13px;
	color:#20a3f0;
	font-weight:bold;
	background-color:#eeeeee;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-price03 .btn:hover{
	background-color:#20a3f0;
	color:#FFF;
}
.dg-price03 .best-value {
	margin-top:-24px;
}
.dg-price03 .best-value .btn{
	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;
}
.dg-price04 .price-title{
	margin:-1px -1px 0;
	padding:15px 10px;
}
.dg-price04 .price-title h2{
	font-size:15px;
	color:#FFF;
}
.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:#363636;
}
.dg-price04 .price-holder li{
	border-bottom:1px dashed #cbcbcb;
}
.dg-price04 .price-holder li .fa{
	margin:0 2px;
}
.dg-price04 .btn{
	margin:22px 0px 21px;
	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-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,
.dg-price04 .color-1 .btn{
	background-color: #ef8494;
}
.dg-price04 .color-1 .fa{
	color: #ef8494;
}
.dg-price04 .color-2 .price-title{
	background-color: #147fd1;
}
.dg-price04 .color-2 .price-box,
.dg-price04 .color-2 .btn{
	background-color: #20a3f0;
}
.dg-price04 .color-2 .fa{
	color: #20a3f0;
}
.dg-price04 .color-3 .price-title{
	background-color: #7a46ba;
}
.dg-price04 .color-3 .price-box,
.dg-price04 .color-3 .btn{
	background-color: #8d6cc3;
}
.dg-price04 .color-3 .fa{
	color: #8d6cc3;
}
.dg-price04 .color-4 .price-title{
	background-color: #e28623;
}
.dg-price04 .color-4 .price-box,
.dg-price04 .color-4 .btn{
	background-color: #eaa037;
}
.dg-price04 .color-4 .fa{
	color: #eaa037;
}
.dg-price04 .btn:hover{
	background-color:#333;
	color:#FFF;
}
.dg-price04 .best-value{
	margin-top:-20px;
}
.dg-price04 .best-value .price-title{
	padding:25px 10px
}
.dg-price04 .best-value .btn{
	margin-bottom:41px;
}
.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:31px 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 .btn{
	margin:25px;
	display:block;
	font-size:13px;
	color:#FFF;
	padding:12px;
	background-color:#666666;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.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 .btn{
	background-color:#1bbc9b;
}
.dg-price05 .color-4.best-value,
.dg-price05 .color-4:hover{
	border-color:#1bbc9b;
}
.dg-price06 .price-border{
	background-color:#FFF;
	text-align:center;
}
.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;
}
.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 .btn{
	margin:13px 0px 23px;
	padding:11px 35px 10px;
	font-size:13px;
	color:#20a3f0;
	font-weight:bold;
	color:#FFF;
	font-weight:normal;
	background-color:#ef8494;
}
.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 .btn{
	background-color: #8d6cc3;
}
.dg-price06 .color-4 .price-title,
.dg-price06 .color-4 .price-box,
.dg-price06 .color-4 .btn{
	background-color: #1bbc9b;
}
.dg-price06 .btn:hover{
	background-color:#333;
}
.dg-price06 .best-value{
	margin-top:-20px;
}
.dg-price06 .best-value .price-title{
	padding-bottom:75px;
}
.dg-price06 .best-value .btn{
	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:5px 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-holder{
	color:#fff;
}
.dg-price07 .price-holder li:nth-child(odd){
	background-color:rgba(0,0,0,0.8);
}
.dg-price07 .price-holder li{
	line-height:1.2;
	padding:21px 0;
}
.dg-price07 .btn{
	color: #FFF;
    border-bottom: 3px solid rgba(0,0,0,0.2)!important;
    padding: 8px 16px;
    display: inline-block;
	padding: 13px 43px;
    font-size: 15px;   
    line-height: 1.2;
	border-color: #20a3f0;
    background-color: #20a3f0;
	border-radius:40px;
	margin:20px 0;
}
.dg-price07 .btn:hover{
	border-color: #fff;
    background-color: #fff;
	color:#20a3f0;	
}
/*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:14px 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:35px 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;
}
.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 .btn{
	margin:30px 0;
	color:#FFF;
	border:none;
	background: -webkit-linear-gradient(90deg, #2386d4, #5ae5e7);
	background: -o-linear-gradient(90deg, #2386d4, #5ae5e7); 
	background: -moz-linear-gradient(90deg, #2386d4, #5ae5e7); 
	background: linear-gradient(90deg,#24acea, #5ae5e7);
	background-color:#2386d4;
	border-radius:30px;
	-moz-border-radius:30px;
	-webkit-border-radius:30px;
	padding:0px 30px;
	height:36px;
	line-height:36px;
	font-size:13px;
	font-weight:bold;
}
.dg-price08 .btn:hover{
	background-size:200%;
	
}
.dg-price08 .price-btninfo {
	margin:30px 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 .btn{
    padding: 14px 27px;  
    font-weight: bold;
    line-height: 1.2;
	border:1px solid #2e2d2d;
	color:#2e2d2d;
	font-size:13px;
	margin:28px 0;
	border-radius:0;
	text-transform:uppercase;
}
.dg-price09 .btn:hover{
  background-color:#20a3f0;
  color:#fff;
  border-color:#20a3f0;
}
.dg-price09 .color-2 .price-title{
   background-color:#20a3f0;
}
.dg-price09 .color-3 .price-title{
   background-color:#ef8494;
}
.dg-price09 .color-3.price-border{
   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/20073-unlimitedcolorspack-055/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;
}
.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 .btn {
    padding: 14px 36px;  
    line-height: 1.2;   
    color: #fff;
    font-size: 13px;
    margin: 28px 0;
    border-radius: 0;  
	background:#004a7b;
}
.dg-price10 .btn:hover{
   background:#20a3f0;	
}
/*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:15px 0;
	font-weight:bold;
	background-color:#20a3f0;
	line-height:1.2;
	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:-13px -5% 0 -5%;
   z-index:999;
   background-color:#333333;
   padding:28px 0;
   border-radius:5px;
}
.dg-price11 .best-value .btn{
   background-color:#333333;
}
.dg-price11 .price-title h2{
	color:#fff;
	font-size:30px;
}
.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-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 .btn{
	margin:0px 0px 2px;
	padding:10px 25px;
	font-size:13px;
	color:#20a3f0;
	font-weight:bold;
	background-color:#eeeeee;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
.dg-price11 .btn:hover{
	background-color:#20a3f0;
	color:#FFF;
}
.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;
    list-style-position: inside;
    text-align: left;
    position: relative;
    padding-left: 120px;
	text-transform:uppercase;
}
.dg-price11 .price-holder li:nth-child(even),
.dg-price11 .price-bottom{
   background-color:#e7e7e7;
}
.dg-price11 .price-holder ul {
  border-top:1px solid #d8d8d8;
  border-radius:6px 6px 0 0;
  position:relative;
}
.dg-price11 .price-border ul: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 .btn {
    padding: 14px 75px;
    line-height: 1.2;
    color: #fff;
    font-size: 13px;
    margin: 28px 0;
    border-radius: 0;
    background: #20a3f0;
	text-transform:uppercase;
	border-radius:10px;
}
.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:#3a3a3a;
   position:relative;
   margin:0;
}
.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;
}
.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:#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 .btn {
    padding: 14px 0;
    line-height: 1.2;
    color: #666666;
    font-size: 13px;  
    border-radius: 0;
    background: #eaeaea;
    text-transform: uppercase;   
	display:block;
	margin:20px;
}
.dg-price12 ul{
    padding:27px 0 0 50px;
}
.dg-price12 ul li em{
   display:inline-blcck;
   padding:0 20px 0 0;
   color:#666;
}
/**/
.dg-price-bg04 {
    background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/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:#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:#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 .btn {
    padding: 14px 27px;
    line-height: 1.2;
    border: 1px solid #fff;
    color: #fff;
    font-size: 13px;
    margin: 34px 0;
    border-radius: 5px;
    text-transform: uppercase;	
}
/*dg-price14*/
.dg-price14{
  text-align:center;
}
.dg-price14 .price-title h2{
  font-size:25px;
  color:#fff;
  font-weight:normal;
  text-transform:uppercase;
}
.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-3 .price-title,
.dg-price14 .price-border.color-3 .btn{
  background-color:#0e81d1;
}
.dg-price14 .price-border.color-4 .price-title,
.dg-price14 .price-border.color-4 .btn{
  background-color:#0e6ad1;
}
.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-3 .price-box .sup,
.dg-price14 .price-border.color-3 .price-box .price{
  color:#0e81d1;
}
.dg-price14 .price-border.color-4 .price-box .sup,
.dg-price14 .price-border.color-4 .price-box .price{
  color:#0e6ad1;
}
.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;
}
.dg-price14 .price-holder p{
  margin:0;
  padding:30px 10px 8px 10px;
}
.dg-price14 .price-border .btn {
    padding: 14px 45px;
    line-height: 1.2;
    color: #fff;
    font-size: 15px;
    margin: 20px 0;
    border-radius: 0;
    background-color: #20a3f0;
    text-transform: uppercase;
    border-radius: 5px;
}
.dg-price14 .price-border:hover .btn{
   background-color:#444;
}
/*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 .btn {
    margin: 21px 0px 20px;
    padding: 11px 20px 11px 20px;
    font-size: 15px;   
    color: #FFF;
    font-weight: normal;
    border-bottom: 2px solid rgba(0,0,0,0.8);
	background-color:#888888;	
}
/*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;	
}
.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;
}
.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-price18*/
.dg-price-bg05 {
    background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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: 768px) and (max-width: 991px) {
.dg-price11 .best-value .price-title {
    position: relative;
    width: 100%;
    margin: 0; 
} 
.dg-price15  .price-border{
  margin-top:50px;
}
.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;
}
 
}
@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 .price-holder li {   
    text-align: center;   
    padding-left: 0;   
}
.dg-price11 .best-value .price-title {
    position: relative;
    width: 100%;
    margin: 0; 
}
.dg-price15  .price-border{
  margin-top:20px;
}	
}













.blog-carousel{
	display:none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.blog-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.blog-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
	
}
.blog-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;
}
.blog-carousel .owl-item {
	float: left;
}
.blog-carousel .owl-pagination {
	text-align: center;
	margin-top: 20px;
	top: 100%;
	left: 0;
	width: 100%;
}
.blog-carousel .owl-page {
	cursor: pointer;
	width: 13px;
	height: 13px;
	margin: 3px;
	border: 2px solid #20a3f0;
	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? */
}
.blog-carousel .owl-page.active {
	background-color: #20a3f0;
}
.blog-carousel .owl-buttons .owl-prev,
.blog-carousel .owl-buttons .owl-next {
	position: absolute;
	left:3%;
	top: 50%;
	width: 32px;
	height: 32px;
	line-height: 32px;
	font-size: 0px;
	text-align: center;
	cursor: pointer;
	margin: -16px 0 0 0;
	border:1px solid #FFF;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	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? */
}
.blog-carousel .owl-buttons .owl-next {
	left: auto;
	right: 3%;
}
.blog-carousel .owl-buttons .owl-prev:before,
.blog-carousel .owl-buttons .owl-next:before {
	content: "";
	border-left: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	width: 5px;
	height: 5px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -2px 0 0 -2px;
	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;
}
.blog-carousel .owl-buttons .owl-next:before {
	margin-left: -4px;
	transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
}
.blog-carousel .owl-buttons .owl-prev:hover,
.blog-carousel .owl-buttons .owl-next:hover {
	background-color: #20a3f0;
	border-color:#20a3f0;
}
.blog-carousel .owl-pagination {
	text-align: center;
	margin-top: 10px;
	top: 100%;
	left: 0;
	width: 100%;
}
.blog-carousel .grabbing {
	cursor: move;
}
.blog-carousel .blog-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);
}
.blog-carousel .owl-wrapper,
.blog-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);
}
.blog-video{
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	z-index: 0;
}
.blog-video.ratio1{
    padding-bottom: 56.25%;
}
.blog-video.ratio2{
    padding-bottom: 75%;
}
.blog-video.ratio3{
    padding-bottom: 50%;
}
.blog-video.ratio4{
    padding-bottom: 100%;
}
.blog-video iframe,
.blog-video object,
.blog-video embed,
.blog-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.blog-list-page a,
.blog-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? */
}
.blog-list-page a, 
.blog-list-page a:link, 
.blog-list-page a:active, 
.blog-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? */
}
.blog-list-page a:hover,
.blog-list-page span{
	background-color:#20a3f0;
	border-color:#20a3f0;
	color:#FFF;
}
.blog-list-page em,
.blog-list-page i{
	font-style:normal;
	font-size:14px;
	color:#666666;
	padding-right:10px;
}
.blog-list-page .disabled{
    pointer-events: none;
    cursor: default;
	border-color:#d2d2d2!important;
	color:#d2d2d2!important;
}

.list-linkbox a,
.list-linkbox a:link,
.list-linkbox a:active, 
.list-linkbox a:visited{
	color:#FFF;
}
.list-linkbox a:hover{
	text-indent:inherit;
}

.blog-list01 .list-post{
	padding-bottom:50px;
	margin-bottom:49px;
	border-bottom:1px dashed #bfbfbf;
}
.blog-list01 .list-gallery{
	margin-bottom:20px;
}
.blog-list01 .list-images {
	display:inline-block;
	border:5px solid #f5f5f5;
	max-width:100%;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
}
.blog-list01 .list-images img{
	max-width:100%;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
}

.blog-list01 .list-viewinfo{
	position:relative;
	min-height:63px;
	margin-bottom:20px;
}
.blog-list01 .list-date{
	width:52px;
	line-height:38px;
	background-color:#f5f5f5;
	text-align:center;
	font-size:24px;
	color:#666666;
	position:absolute;
	left:0;
}
.blog-list01 .list-date .month{
	height:25px;
	line-height:25px;
	background-color:#20a3f0;
	color:#FFF;
	display:block;
	font-size:14px;
}
.blog-list01 .list-date + .list-title,
.blog-list01 .list-date + .list-info,
.blog-list01 .list-date + .list-info + .list-title,
.blog-list01 .list-date + .list-title + .list-info,
.blog-list01 .list-date + .list-viewinfo{
	margin-left:70px;
}
.blog-list01 .list-date + .list-viewinfo{
	margin-bottom:0;
}

.blog-list01 .list-title{
	font-size:24px;
	line-height:1.4;
	color:#666666;
	margin:0 0 5px;
}
.blog-list01 .list-title a,
.blog-list01 .list-title a:link,
.blog-list01 .list-title a:active,
.blog-list01 .list-title a:visited{
	color:#666666;
}
.blog-list01 .list-title a:hover{
	color:#666666;
}
.blog-list01 .list-info,
.blog-list01 .list-info a,
.blog-list01 .list-info a:link,
.blog-list01 .list-info a:active,
.blog-list01 .list-info a:visited{
	color:#999999;
}
.blog-list01 .list-info a:hover{
	color:#20a3f0;
	text-decoration:none;
}
.blog-list01 .list-info .fa{
	margin:0 9px 0 0 
}
.blog-list01 .list-info .sep{
	margin:0 9px
}
.blog-list01 .list-description{
	margin-bottom:26px;
}
.blog-list01 .list-btn{
	border:1px solid #20a3f0;
	color:#20a3f0;
	padding:10px ;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	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? */
}
.blog-list01 .list-btn:hover{
	background:#20a3f0;
	color:#FFF;
	text-decoration:none;
}
.blog-list01 img {
	max-width: 100%;
}
.blog-list01 .list-quote{
	background-color:#f5f5f5;
	padding:20px 20px 20px 100px;
	margin:0;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	position:relative;
	min-height:100px;
}
.blog-list01 .list-quote:before{
	content:"\f10d";
	font-family:"FontAwesome";
	position:absolute;
	left:20px;
	top:20px;
	font-size:60px;
	color:#c4c3c3;
	line-height:1;
}
.blog-list01 .list-quote p{
	text-indent:0;
	font-size:20px;
	color:#666666;
}
.blog-list01 .list-quote small{
	position:static;
	padding:0;
	color:#666666;
	font-size:16px;
}
.blog-list01 .list-video{
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	z-index: 0;
}
.blog-list01 .list-video.ratio1{
    padding-bottom: 56.25%;
}
.blog-list01 .list-video.ratio2{
    padding-bottom: 75%;
}
.blog-list01 .list-video.ratio3{
    padding-bottom: 50%;
}
.blog-list01 .list-video.ratio4{
    padding-bottom: 100%;
}
.blog-list01 .list-video iframe,
.blog-list01 .list-video object,
.blog-list01 .list-video embed,
.blog-list01 .list-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.blog-list01 .list-voice {
	border:2px solid #f5f5f5;
	padding:25px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.blog-list01 .list-voice h3{
	color:#666666;
	font-size:20px;
	font-weight:normal;
	margin:8px 0 0;
}
.blog-list01 .list-voice audio{
	width:100%;
	width:100%;
	background-color:#FFF;
	max-width:800px;
}
.blog-list01 .list-section{
	background-color:#f5f5f5;
	padding:20px 25px;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	line-height:1.8;
	color:#666666;
}

.blog-list01 .list-linkbox {
	background-color:#20a3f0;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding:20px 25px;
	color:#FFF;
	text-align:center;
	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? */
}
.blog-list01 a:hover{
	text-decoration:none;
}
.blog-list01 a:hover .list-linkbox{
	background-color:#333;
}

.blog-list01 .list-linkbox .link-title {
	font-size:24px;
	border-bottom:1px solid #ffffff;
	display:inline-block;
	padding:4px 0;
}
.blog-list01 .list-linkbox .link-url{
	padding:10px 0;
}

.blog-list02 .list-post{
	background-color:#FFF;
}
.blog-list02 .list-author {
	margin-bottom:20px;
	background-color:#FFF;
	border-left:5px solid #20a3f0;
	min-height:135px;
}
.blog-list02 .author-left {
	float:left;
	width:160px;
	min-height:135px;
	text-align:center;
	padding:5px ;
	color:#666666;
}
.blog-list02 .author-left img{
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	margin-bottom:9px;
	width:78px;
	height:78px;
}
.blog-list02 .author-left .author-name{
	color:#666666;
	font-size:16px;
	line-height:1.3;
}
.blog-list02 .author-left p{
	color:#999999;
	font-size:14px;
}
.blog-list02 .author-right {
	overflow:hidden;
	padding:20px;
	background-color:#f5f5f5;
	min-height:135px;
}
.blog-list02 .author-right.no-padding {
	padding:0px;
	background:none;
}

.blog-list02 .list-title{
	font-size:24px;
	color:#666666;
	margin-bottom:16px;
	line-height:1.2;
}
.blog-list02 .list-btn{
	color:#20a3f0;
	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? */
}
.blog-list02 .list-btn:hover{
	text-decoration:underline;
}
.blog-list02 .list-post{
	padding-bottom:66px;
	margin-bottom:66px;
	border-bottom:1px dashed #bfbfbf;
}
.blog-list02 .list-images {
	max-width:inherit;
	margin-bottom:20px;
}
.blog-list02 .list-images img{
	max-width:100%;
}
.blog-list02 .list-info{
	padding:8px 10px;
	background-color:#f5f5f5;
}
.blog-list02 .list-info,
.blog-list02 .list-info a,
.blog-list02 .list-info a:link,
.blog-list02 .list-info a:active,
.blog-list02 .list-info a:visited{
	color:#999999;
}
.blog-list02 .list-info a:hover{
	color:#20a3f0;
	text-decoration:none;
}
.blog-list02 .list-info .fa{
	margin:0 9px 0 0 
}
.blog-list02 .list-info .sep{
	margin:0 9px
}
.blog-list02 img {
	max-width: 100%;
}
.blog-list02 .blog-carousel{
	margin-bottom:20px;
}
.blog-list02 .list-quote{
	background-color:#f5f5f5;
	padding:10px 10px 10px 95px;
	margin:0;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	position:relative;
}
.blog-list02 .list-quote:before{
	content:"\f10d";
	font-family:"FontAwesome";
	position:absolute;
	left:5px;
	top:10px;
	font-size:60px;
	color:#c4c3c3;
	line-height:1;
}
.blog-list02 .list-quote p{
	text-indent:0;
	font-size:20px;
	color:#666666;
}
.blog-list02 .list-quote small{
	position:static;
	padding:0;
	color:#666666;
	font-size:16px;
}
.blog-list02 .list-video{
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	z-index: 0;
	margin-bottom:20px;
}
.blog-list02 .list-video.ratio1{
    padding-bottom: 56.25%;
}
.blog-list02 .list-video.ratio2{
    padding-bottom: 75%;
}
.blog-list02 .list-video.ratio3{
    padding-bottom: 50%;
}
.blog-list02 .list-video.ratio4{
    padding-bottom: 100%;
}
.blog-list02 .list-video iframe,
.blog-list02 .list-video object,
.blog-list02 .list-video embed,
.blog-list02 .list-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.blog-list02 .list-voice {
	border:2px solid #f5f5f5;
	padding:25px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background-color:#FFF;
}
.blog-list02 .list-voice audio{
	width:100%;
	width:100%;
	background-color:#FFF;
	max-width:800px;
}
.blog-list02 .list-voice h3{
	color:#666666;
	font-size:20px;
	font-weight:normal;
	margin:8px 0 0;
}
.blog-list02 .list-linkbox {
	margin:-20px;
	background-color:#20a3f0;
	padding:20px 25px;
	color:#FFF;
	text-align:center;
	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? */
}
.blog-list02 a:hover{
	text-decoration:none;
}
.blog-list02 a:hover .list-linkbox{
	background-color:#333;
}
.blog-list02 .list-linkbox .link-title {
	font-size:24px;
	border-bottom:1px solid #ffffff;
	display:inline-block;
	padding:4px 0;
}
.blog-list02 .list-linkbox .link-url{
	padding:10px 0;
}
.blog-list02 .list-btn{
	text-decoration:underline;
	font-style:italic;
}

.blog-list03 .list-post{
	padding-bottom:50px;
	margin-bottom:49px;
	border-bottom:1px dashed #bfbfbf;
}
.blog-list03 .list-viewinfo .list-gallery{
	margin-bottom:20px;
}
.blog-list03 .list-images {
	border:5px solid #f5f5f5;
	max-width:20%;
	min-width:270px;
	float:left;
	margin-right:30px;
}
.blog-list03 .list-images img{
	max-width:100%;
}
.blog-list03 .list-gallery + .list-viewinfo{
	overflow:hidden;
}
.blog-list03 .list-viewinfo{
	margin-bottom:20px;
}
.blog-list03 .list-title{
	font-size:24px;
	line-height:1.4;
	color:#666666;
	margin:0 0 12px;
}
.blog-list03 .list-title a,
.blog-list03 .list-title a:link,
.blog-list03 .list-title a:active,
.blog-list03 .list-title a:visited{
	color:#666666;
}
.blog-list03 .list-title a:hover{
	color:#666666;
}
.blog-list03 .list-gallery + .list-viewinfo + .list-info{
	clear:both;
	padding-top:30px;
}
.blog-list03 .list-info,
.blog-list03 .list-info a,
.blog-list03 .list-info a:link,
.blog-list03 .list-info a:active,
.blog-list03 .list-info a:visited{
	color:#999999;
}
.blog-list03 .list-info a:hover{
	color:#20a3f0;
	text-decoration:none;
}
.blog-list03 .list-info .fa{
	margin:0 9px 0 0 
}
.blog-list03 .list-info .sep{
	margin:0 9px
}
.blog-list03 .list-description{
	margin-bottom:17px;
}
.blog-list03 .list-btn{
	border:1px solid #20a3f0;
	color:#20a3f0;
	padding:7px 15px;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	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? */
}
.blog-list03 .list-btn:hover{
	background:#20a3f0;
	color:#FFF;
	text-decoration:none;
}
.blog-list03 img {
	max-width: 100%;
}
.blog-list03 .blog-carousel{
	border:5px solid #f5f5f5;
	max-width:20%;
	min-width:270px;
	float:left;
	margin-right:30px;
}
.blog-list03 .list-quote{
	background-color:#f5f5f5;
	padding:30px 30px 30px 115px;
	margin:0;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	position:relative;
	min-height:100px;
}
.blog-list03 .list-quote:before{
	content:"\f10d";
	font-family:"FontAwesome";
	position:absolute;
	left:25px;
	top:30px;
	font-size:60px;
	color:#c4c3c3;
	line-height:1;
}
.blog-list03 .list-quote p{
	text-indent:0;
	font-size:20px;
	color:#666666;
}
.blog-list03 .list-quote small{
	position:static;
	padding:0;
	color:#666666;
	font-size:16px;
}
.blog-list03 .video-left{
	float:left;
	max-width:20%;
	min-width:270px;
	margin-right:30px;
	border:5px solid #f5f5f5;
}
.blog-list03 .list-video{
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	z-index: 0;
}
.blog-list03 .list-video.ratio1{
    padding-bottom: 56.25%;
}
.blog-list03 .list-video.ratio2{
    padding-bottom: 75%;
}
.blog-list03 .list-video.ratio3{
    padding-bottom: 50%;
}
.blog-list03 .list-video.ratio4{
    padding-bottom: 100%;
}
.blog-list03 .list-video iframe,
.blog-list03 .list-video object,
.blog-list03 .list-video embed,
.blog-list03 .list-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.blog-list03 .list-voice {
	border:2px solid #f5f5f5;
	padding:25px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.blog-list03 .list-voice audio{
	width:100%;
	width:100%;
	background-color:#FFF;
	max-width:800px;
}
.blog-list03 .list-voice h3{
	color:#666666;
	font-size:20px;
	font-weight:normal;
	margin:8px 0 0;
}
.blog-list03 .list-section{
	background-color:#f5f5f5;
	padding:20px 25px;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	line-height:1.8;
	color:#666666;
}
.blog-list03 .list-linkbox {
	background-color:#20a3f0;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding:20px 25px;
	color:#FFF;
	text-align:center;
	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? */
}
.blog-list03 a:hover{
	text-decoration:none;
}
.blog-list03 a:hover .list-linkbox{
	background-color:#333;
}
.blog-list03 .list-linkbox .link-title {
	font-size:24px;
	border-bottom:1px solid #ffffff;
	display:inline-block;
	padding:4px 0;
}
.blog-list03 .list-linkbox .link-url{
	padding:10px 0;
}

@media only screen and (max-width: 767px) {
	.blog-list03 .list-images,
	.blog-list03 .video-left,
	.blog-list03 .blog-carousel{
		float:none;
		margin:0 0 20px;
		max-width:inherit;
		min-width:inherit;
	}
	.blog-list03 .list-images{
		display:inline-block;
	}
}

.blog-timeline{
	position:relative;
}
.blog-timeline:before{
	content:"";
	position:absolute;
	border-left:4px solid #e7e7e7;
	top:0;
	bottom:0;
	left:50%;
	margin-left:-2px;
}
.blog-timeline .blog-date{
	width:150px;
	height:50px;
	line-height:50px;
	color:#FFF;
	font-size:15px;
	background-color:#20a3f0;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	text-align:center;
	margin:auto auto 38px;
	position:relative;
}
.blog-timeline .blog-more{
	width:150px;
	height:50px;
	line-height:50px;
	color:#FFF;
	font-size:15px;
	display:block;
	background-color:#20a3f0;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	text-align:center;
	margin:auto auto 38px;
	position:relative;
	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? */
}
.blog-timeline .blog-more, 
.blog-timeline .blog-more:link, 
.blog-timeline .blog-more:active, 
.blog-timeline .blog-more:visited{
	color:#FFF;
}
.blog-timeline .blog-more:hover{
	background-color:#333;
}

.blog-timeline .blog-date:after{
	content:"";
	width:18px;
	height:18px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#20a3f0;
	border:4px solid #FFF;
	position:absolute;
	left:50%;
	bottom:-9px;
	margin-left:-9px;
}
.blog-timeline .timeline-left,
.blog-timeline .timeline-right{
	float:left;
	width:50%;
	margin-bottom:50px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	position:relative;
	padding:0 30px 0 0;
}
.blog-timeline .timeline-right{
	float:right;
	padding:0 0 0 30px;
}
.blog-timeline .timeline-left .list-post:before,
.blog-timeline .timeline-right  .list-post:before{
	content:"";
	width:10px;
	height:10px;
	display:inline-block;
	border-right:1px solid #e7e7e7;
	border-bottom:1px solid #e7e7e7;
	position:absolute;
	left:100%;
	top:70px;
	margin:0px 0 0 -4px;
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	background-color:#FFF;
}
.blog-timeline .timeline-right  .list-post:before{
	transform:rotate(135deg);
	-webkit-transform:rotate(135deg);
	margin:0px -4px 0 0 ;
	top:140px;
	left:auto;
	right:100%;
}
.blog-timeline .timeline-left  .list-post:after,
.blog-timeline .timeline-right  .list-post:after{
	content:"";
	width:20px;
	height:20px;
	display:inline-block;
	border:4px solid #ffffff;
	background-color:#20a3f0;
	position:absolute;
	top:66px;
	left:auto;
	right:-41px;
	margin:0px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.blog-timeline .timeline-right .list-post:after{
	margin:0px;
	top:136px;
	left:-41px;
	right:auto;
}
.blog-timeline .list-post{
	position:relative;
	border:1px solid #e7e7e7;
	background-color:#ffffff;
	padding:20px;
}
.blog-timeline .list-gallery{
	margin-bottom:20px;
}
.blog-timeline .list-images {
	display:inline-block;
	max-width:100%;
}
.blog-timeline .list-images img{
	max-width:100%;
}

.blog-timeline .list-viewinfo{
	min-height:63px;
	margin-bottom:20px;
}
.blog-timeline .list-date{
	width:52px;
	line-height:38px;
	background-color:#f5f5f5;
	text-align:center;
	font-size:24px;
	color:#666666;
	position:absolute;
	left:20px;
}
.blog-timeline .list-date .month{
	height:25px;
	line-height:25px;
	background-color:#20a3f0;
	color:#FFF;
	display:block;
	font-size:14px;
}
.blog-timeline .list-date + .list-title,
.blog-timeline .list-date + .list-info,
.blog-timeline .list-date + .list-info + .list-title,
.blog-timeline .list-date + .list-title + .list-info,
.blog-timeline .list-date + .list-viewinfo{
	margin-left:70px;
}
.blog-timeline .list-date + .list-viewinfo{
	margin-bottom:30px;
}

.blog-timeline .list-title{
	font-size:20px;
	line-height:1.4;
	color:#666666;
	margin:0 0 8px;
	font-weight:normal;
}
.blog-timeline .list-title a,
.blog-timeline .list-title a:link,
.blog-timeline .list-title a:active,
.blog-timeline .list-title a:visited{
	color:#666666;
}
.blog-timeline .list-title a:hover{
	color:#666666;
}
.blog-timeline .list-info{
	background-color:#f5f5f5;
	padding:10px;
}
.blog-timeline .list-info,
.blog-timeline .list-info a,
.blog-timeline .list-info a:link,
.blog-timeline .list-info a:active,
.blog-timeline .list-info a:visited{
	color:#999999;
}
.blog-timeline .list-info a:hover{
	color:#20a3f0;
	text-decoration:none;
}
.blog-timeline .list-info .fa{
	margin:0 8px 0 0 
}
.blog-timeline .list-info .sep{
	margin:0 8px
}
.blog-timeline .list-description{
	margin-bottom:26px;
}
.blog-timeline .list-btn{
	color:#20a3f0;
	display:inline-block;
	text-decoration:underline;
	font-style:italic;
	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? */
}
.blog-timeline .list-btn:hover{
	text-decoration:none;
}
.blog-timeline img {
	max-width: 100%;
}
.blog-timeline .list-quote{
	background-color:#f5f5f5;
	padding:20px 20px 20px 100px;
	margin:0;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	position:relative;
	min-height:100px;
}
.blog-timeline .list-quote:before{
	content:"\f10d";
	font-family:"FontAwesome";
	position:absolute;
	left:20px;
	top:20px;
	font-size:60px;
	color:#c4c3c3;
	line-height:1;
}
.blog-timeline .list-quote p{
	text-indent:0;
	font-size:20px;
	color:#666666;
}
.blog-timeline .list-quote small{
	position:static;
	padding:0;
	color:#666666;
	font-size:16px;
}
.blog-timeline .list-video{
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	z-index: 0;
}
.blog-timeline .list-video.ratio1{
    padding-bottom: 56.25%;
}
.blog-timeline .list-video.ratio2{
    padding-bottom: 75%;
}
.blog-timeline .list-video.ratio3{
    padding-bottom: 50%;
}
.blog-timeline .list-video.ratio4{
    padding-bottom: 100%;
}
.blog-timeline .list-video iframe,
.blog-timeline .list-video object,
.blog-timeline .list-video embed,
.blog-timeline .list-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.blog-timeline .list-voice {
	border:2px solid #f5f5f5;
	padding:25px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.blog-timeline .list-voice h3{
	color:#666666;
	font-size:18px;
	font-weight:normal;
	margin:8px 0 0;
}
.blog-timeline .list-voice audio{
	width:100%;
	width:100%;
	background-color:#FFF;
	max-width:800px;
}
.blog-timeline .list-section{
	border:1px solid #e7e7e7;
	padding:20px 25px;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	line-height:1.8;
	color:#666666;
}

.blog-timeline .list-linkbox {
	background-color:#20a3f0;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding:20px 25px;
	color:#FFF;
	text-align:center;
	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? */
}
.blog-timeline a:hover{
	text-decoration:none;
}
.blog-timeline a:hover .list-linkbox{
	background-color:#333;
}

.blog-timeline .list-linkbox .link-title {
	font-size:22px;
	border-bottom:1px solid #ffffff;
	display:inline-block;
	padding:4px 0;
}
.blog-timeline .list-linkbox .link-url{
	padding:10px 0;
}
@media only screen and (max-width: 767px) {
	.blog-timeline .timeline-left,
	.blog-timeline .timeline-right{
		width:auto;
	}
	.blog-timeline:before{
		left:0;
	}
	.blog-timeline .blog-date{
		margin:auto 2px 20px;
	}
	.blog-timeline .blog-date:after{
		left:0;
		top:50%;
		bottom:auto;
		margin-top:-9px;
	}
	.blog-timeline .timeline-left,
	.blog-timeline .timeline-right{
		padding:0 0 0 30px;
		float:none;
		margin-bottom:20px;
	}
	.blog-timeline .timeline-left  .list-post:before{
		transform:rotate(135deg);
		-webkit-transform:rotate(135deg);
		margin:0px -4px 0 0 ;
		top:140px;
		left:auto;
		right:100%;
	}
	.blog-timeline .timeline-left .list-post:after{
		margin:0px;
		top:136px;
		left:-41px;
		right:auto;
	}
	.blog-timeline .list-linkbox .link-title{
		font-size:14px;
	}
}
.blog-timeline2{
	padding-left:200px;
	position:relative;
}
.blog-timeline2:before{
	content:"";
	border-right:2px solid #e7e7e7;
	position:absolute;
	top:0;
	bottom:0;
	left:112px;
}
.blog-timeline2 .list-post{
	padding-bottom:50px;
	margin-bottom:49px;
	border-bottom:1px dashed #bfbfbf;
	position:relative;
}
.blog-timeline2 .list-gallery{
	margin-bottom:20px;
}
.blog-timeline2 .list-images {
	display:inline-block;
	border:5px solid #f5f5f5;
	max-width:100%;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
}
.blog-timeline2 .list-images img{
	max-width:100%;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
}

.blog-timeline2 .list-viewinfo{
	position:relative;
	min-height:63px;
	margin-bottom:20px;
}
.blog-timeline2 .list-date{
	text-align:center;
	font-size:14px;
	color:#666666;
	position:absolute;
	right:100%;
	top:60px;
	margin-right:106px;
	white-space:nowrap;
}
.blog-timeline2 .list-date:before{
	content:"";
	width:38px;
	height:38px;
	background-color:#20a3f0;
	border:14px solid #FFFFFF;
	position:absolute;
	right:-38px;
	top:-7px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.blog-timeline2 .list-date:after{
	content:"";
	width:20px;
	height:20px;
	border:1px solid #20a3f0;
	position:absolute;
	right:-29px;
	top:2px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.blog-timeline2 .list-post:before{
	content:"";
	width:60px;
	border-bottom:2px solid #e7e7e7;
	position:absolute;
	right:100%;
	top:71px;
	margin-right:10px;
}
.blog-timeline2 .list-date .month{
	height:25px;
	line-height:25px;
	background-color:#20a3f0;
	color:#FFF;
	display:block;
	font-size:14px;
}

.blog-timeline2 .list-title{
	font-size:24px;
	line-height:1.4;
	color:#666666;
	margin:0 0 5px;
}
.blog-timeline2 .list-title a,
.blog-timeline2 .list-title a:link,
.blog-timeline2 .list-title a:active,
.blog-timeline2 .list-title a:visited{
	color:#666666;
}
.blog-timeline2 .list-title a:hover{
	color:#666666;
}
.blog-timeline2 .list-info,
.blog-timeline2 .list-info a,
.blog-timeline2 .list-info a:link,
.blog-timeline2 .list-info a:active,
.blog-timeline2 .list-info a:visited{
	color:#999999;
}
.blog-timeline2 .list-info a:hover{
	color:#20a3f0;
	text-decoration:none;
}
.blog-timeline2 .list-info .fa{
	margin:0 9px 0 0 
}
.blog-timeline2 .list-info .sep{
	margin:0 9px
}
.blog-timeline2 .list-description{
	margin-bottom:26px;
}
.blog-timeline2 .list-btn{
	border:1px solid #20a3f0;
	color:#20a3f0;
	padding:8px 15px ;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	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? */
}
.blog-timeline2 .list-btn:hover{
	background:#20a3f0;
	color:#FFF;
	text-decoration:none;
}
.blog-timeline2 img {
	max-width: 100%;
}
.blog-timeline2 .blog-carousel{
	border:5px solid #f5f5f5;
	max-width:100%;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
}
.blog-timeline2 .blog-carousel img{
	max-width:100%;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
}
.blog-timeline2 .list-quote{
	background-color:#f5f5f5;
	padding:20px 20px 20px 100px;
	margin:0;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	position:relative;
	min-height:100px;
	
}
.blog-timeline2 .list-quote:before{
	content:"\f10d";
	font-family:"FontAwesome";
	position:absolute;
	left:20px;
	top:20px;
	font-size:60px;
	color:#c4c3c3;
	line-height:1;
}
.blog-timeline2 .list-quote p{
	text-indent:0;
	font-size:20px;
	color:#666666;
}
.blog-timeline2 .list-quote small{
	position:static;
	padding:0;
	color:#666666;
	font-size:16px;
	text-align:right;
}

.blog-timeline2 .list-video{
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	z-index: 0;
}
.blog-timeline2 .list-video >*{
	border:5px solid #f5f5f5;
	max-width:100%;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
}

.blog-timeline2 .list-video.ratio1{
    padding-bottom: 56.25%;
}
.blog-timeline2 .list-video.ratio2{
    padding-bottom: 75%;
}
.blog-timeline2 .list-video.ratio3{
    padding-bottom: 50%;
}
.blog-timeline2 .list-video.ratio4{
    padding-bottom: 100%;
}
.blog-timeline2 .list-video iframe,
.blog-timeline2 .list-video object,
.blog-timeline2 .list-video embed,
.blog-timeline2 .list-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.blog-timeline2 .list-voice {
	border:2px solid #f5f5f5;
	padding:25px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.blog-timeline2 .list-voice h3{
	color:#666666;
	font-size:20px;
	font-weight:normal;
	margin:8px 0 0;
}
.blog-timeline2 .list-voice audio{
	width:100%;
	width:100%;
	background-color:#FFF;
	max-width:800px;
}
.blog-timeline2 .list-section{
	background-color:#f5f5f5;
	padding:20px 25px;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	line-height:1.8;
	color:#666666;
}

.blog-timeline2 .list-linkbox {
	background-color:#20a3f0;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding:20px 25px;
	color:#FFF;
	text-align:center;
	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? */
}
.blog-timeline2 a:hover{
	text-decoration:none;
}
.blog-timeline2 a:hover .list-linkbox{
	background-color:#333;
}

.blog-timeline2 .list-linkbox .link-title {
	font-size:24px;
	border-bottom:1px solid #ffffff;
	display:inline-block;
	padding:4px 0;
}
.blog-timeline2 .list-linkbox .link-url{
	padding:10px 0;
}
@media only screen and (max-width: 767px) {
	.blog-timeline2 {
		padding:0px 0 0 20px;
	}
	.blog-timeline2 {
		padding:0px 0 0 20px;
	}
	.blog-timeline2:before{
		left:0;
	}
	.blog-timeline2 .list-date {
		position:static;
		text-align:left;
		margin-bottom:10px;
	}
	.blog-timeline2 .list-date:before{
		left:-38px
	}
	.blog-timeline2 .list-date:after{
		left:-29px;
	}
	.blog-timeline2 .list-post:before{
		display:none;
	}
	
	
}


.blog-search {
	position:relative;
}
.blog-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;
}
.blog-search .submit{
	position:absolute;
	top:0;
	right:0;
	height:100%;
	width:40px;
	border:none;
	background:none;
}
.blog-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;
}
.blog-title01 {
	font-size:20px;
	color:#20a3f0;
	margin-bottom:12px;
	line-height:1.2;
}
.blog-categories,
.blog-categories ul{
	list-style:none;
	margin:0;
	padding:0;
}
.blog-categories > li,
.blog-categories > li > ul > li{
	background-color:#fcfcfc;
	position:relative;
}
.blog-categories > li > a,
.blog-categories > li > ul > li > a{
	padding:10px 12px;
	color:#444444;
	display:block;
	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? */
} 

.blog-categories  a:hover {
	text-decoration:none;
}
.blog-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? */
} 
.blog-categories > li > .arrow:before{
	content:"";
	margin-top:-2px;
	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? */
}
.blog-categories > li > .arrow:after{
	content:"";
	position:absolute;
	top:-12px;
	left:-12px;
	bottom:-12px;
	right:-12px;
}
.blog-categories > li.active > a{
	background-color:#20a3f0;
	color:#FFF!important;
}
.blog-categories > li.active > .arrow{
	border-color:#FFF!important;
}
.blog-categories > li.active > .arrow:before{
	transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
	border-top-color:#FFF!important;
}
.blog-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;
} 
.blog-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? */
} 

.blog-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? */
} 
.blog-categories ul li.active > .arrow:after{
	visibility:hidden;
	opacity:0;
}
.blog-categories ul li.active > a{
	color:#20a3f0;
	background-color:#f5f5f5;
}
.blog-categories ul ul li a{
	padding:10px 12px;
	color:#999999;
	display:block;
}
.blog-categories ul li a:hover{
	color:#20a3f0;
}
.blog-categories ul {
	display:none;
}
.blog-categories .current > ul{
	display:block;
}
.blog-tab .tab-title {
	margin:0;
	padding:0;
	list-style:	none;
	overflow:hidden;
	margin-bottom:-1px;
}
.blog-tab .tab-title li{
	float:left;
	width:49%;
	text-align:center;
	border:1px solid #f0f0f0;
	border-radius:4px 4px 0 0;
	-moz-border-radius:4px 4px 0 0;
	-webkit-border-radius:4px 4px 0 0;
	padding:12px 0;
	font-size:14px;
	color:#666666;
	background-color:#f5f5f5;
	position:relative;
	margin-right:1%;
	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? */
}
.blog-tab .tab-title li:before{
	content:"";
	border-top:2px solid #f5f5f5;
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	height:4px;
	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? */
}
.blog-tab .tab-title li.active{
	background-color:#FFF;
	border-bottom-color:transparent;
}
.blog-tab .tab-title li.active:before{
	border-top-color:#20a3f0;
}

.blog-tab .tab-title li:last-child{
	margin:0;
	float:right;
}
.blog-tab .tab-container{
	border:1px solid #f0f0f0;
	position:relative;
}
.blog-tab .tab-list{
	list-style:none;
	margin:0;
	padding:0;
}
.blog-tab .tab-list img{
	float:left;
	margin-right:12px;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
.blog-tab .tab-list li {
	overflow:hidden;
	padding-bottom:20px;
	margin-bottom:20px;
	border-bottom:1px dashed #dbdbdb;
	color:#999999;
}
.blog-tab .tab-list li:last-child {
	border-bottom:none;
	margin:0;
	padding:0;
}

.blog-tab .tab-list li h6{
	color:#666666;
	font-size:13px;
}
.blog-tab .tab-list li .tab-right{
	overflow:hidden;
}
.blog-tab .tab-container .tab-main{
	position:absolute;
	top:0;
	visibility:hidden;
	opacity:0;
	z-index:-1;
	padding:20px 12px;
	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? */
}
.blog-tab .tab-container .tab-main.active{
	position:static;
	top:0;
	visibility:visible;
	opacity:1;
}

.blogdashBoard-carousel{
	display:none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.blogdashBoard-carousel img {
	max-width: 100%;
	margin-bottom:10px;
}
.blogdashBoard-carousel p{
	margin-bottom:0px;
}
.blogdashBoard-carousel .owl-page {
	cursor: pointer;
	width: 13px;
	height: 13px;
	margin: 3px;
	border:none;
	background-color:#c8c8c8;
	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? */
}
.blogdashBoard-carousel .owl-page.active {
	background-color: #999999;
}

.blog-tag a{
	display:inline-block;
	margin:0 7px 5px 0;
	border:1px solid #e5e5e5;
	padding:5px 15px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.blog-tag a, 
.blog-tag a:link, 
.blog-tag a:active, 
.blog-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? */
}
.blog-tag a:hover{
	border-color:#20a3f0;
	color:#20a3f0;
	text-decoration:none
}


/*detail*/
.blog-detail .detail-gallery{
	margin-bottom:20px;
}
.blog-detail .detail-images {
	display:inline-block;
	border:5px solid #f5f5f5;
	max-width:100%;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
}
.blog-detail .detail-images img{
	max-width:100%;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
}

.blog-detail .detail-viewinfo{
	position:relative;
	min-height:63px;
	margin-bottom:20px;
}
.blog-detail .detail-date{
	width:52px;
	line-height:38px;
	background-color:#f5f5f5;
	text-align:center;
	font-size:24px;
	color:#666666;
	position:absolute;
	left:0;
}
.blog-detail .detail-date .month{
	height:25px;
	line-height:25px;
	background-color:#20a3f0;
	color:#FFF;
	display:block;
	font-size:14px;
}
.blog-detail .detail-date + .detail-title,
.blog-detail .detail-date + .detail-info,
.blog-detail .detail-date + .detail-info + .detail-title,
.blog-detail .detail-date + .detail-title + .detail-info,
.blog-detail .detail-date + .detail-viewinfo{
	margin-left:70px;
}
.blog-detail .detail-date + .detail-viewinfo{
	margin-bottom:0;
}

.blog-detail .detail-title{
	font-size:24px;
	line-height:1.4;
	color:#666666;
	margin:0 0 5px;
}
.blog-detail .detail-title a,
.blog-detail .detail-title a:link,
.blog-detail .detail-title a:active,
.blog-detail .detail-title a:visited{
	color:#666666;
}
.blog-detail .detail-title a:hover{
	color:#666666;
}
.blog-detail .detail-info,
.blog-detail .detail-info a,
.blog-detail .detail-info a:link,
.blog-detail .detail-info a:active,
.blog-detail .detail-info a:visited{
	color:#999999;
}
.blog-detail .detail-info a:hover{
	color:#20a3f0;
	text-decoration:none;
}
.blog-detail .detail-info .fa{
	margin:0 9px 0 0 
}
.blog-detail .detail-info .sep{
	margin:0 9px
}
.blog-detail .detail-description{
	margin-bottom:26px;
}
.blog-detail .detail-heading{
	background-color:#f4f4f4;
	padding:14px 18px;
	font-size:18px;
	color:#20a3f0;
	font-weight:normal;
	margin-bottom:20px;
}
.blog-detail .detail-author{
	min-height:135px;
	margin-bottom:50px;
}
.blog-detail .author-portrait {
	width:132px;
	height:132px;
	float:left;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	margin-right:18px;
	overflow:hidden;
}
.blog-detail .author-portrait img{
	max-width:100%;
}
.blog-detail .author-right{
	overflow:hidden;
}
.blog-detail .author-title{
	margin:0px 0px 5px;
	font-size:14px;
	color:#555555;
}
.blog-detail .author-social{
	margin-top:20px;
}
.blog-detail .author-social a{
	display:inline-block;
	width:25px;
	height:25px;
	text-align:center;
	line-height:25px;
	background-color:#f4f4f4;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	color:#000000;
	margin:0 4px 4px 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? */
}
.blog-detail .author-social a:hover{
	color:#FFF;
	background-color:#20a3f0
}

.blog-detail .comments-post{
	position:relative;
	padding-left:148px;
	min-height:120px;
}
.blog-detail .comments-portrait {
	width:148px;
	text-align:center;
	position:absolute;
	left:0;
	top:0;
}
.blog-detail .comments-portrait img{
	width:81px;
	height:81px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	margin-bottom:10px;
}
.blog-detail .comments-main {
	padding:20px;
	border:1px solid #e7e7e7;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	margin-bottom:40px;
	background-color:#FFF;
	position:relative;
}
.blog-detail .comments-main:before{
	content:"";
	position:absolute;
	right:100%;
	top:35px;
	margin-right:-4px;
	border-bottom:1px solid #e7e7e7;
	border-left:1px solid #e7e7e7;
	background-color:#FFF;
	width:10px;
	height:10px;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
}
.blog-detail .comments-info {
	text-align:right;
	padding-top:20px;
	line-height:32px;
	margin-bottom:-3px;
	position:relative;
	z-index:1;
}
.blog-detail .comments-info .reply-btn.active {
	height:31px;
	line-height:31px;
	padding:0px 10px;
	background-color:#fcfcfc;
	border:1px solid #f5f5f5;
	border-bottom:none;
	display:inline-block;
	vertical-align:inherit;
}
.blog-detail .comments-reply {
	background-color:#fcfcfc;
	border:1px solid #f5f5f5;
	padding:20px;
}
.blog-detail .reply-post{
	position:relative;
	padding:0px 0px 0px 150px;
	min-height:105px;
	margin-bottom:30px;
}
.blog-detail .reply-portrait{
	position:absolute;
	top:10px;
	left:20px;
	color:#666666;
	text-align:center;
}
.blog-detail .reply-portrait img{
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	margin-bottom:10px;
}
.blog-detail .reply-main {
	background-color:#f5f5f5;
	padding:20px;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	position:relative;
}
.blog-detail .reply-main {
}
.blog-detail .reply-main:before{
	content:"";
	position:absolute;
	right:100%;
	top:45px;
	margin-right:-4px;
	background-color:#f5f5f5;
	width:12px;
	height:12px;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
}
.blog-detail .reply-info{
	text-align:right;
	margin-top:20px;
	margin-bottom:-3px;
	position:relative;
	z-index:1;
}
.blog-detail .reply-info .reply-btn.active {
	height:31px;
	line-height:31px;
	padding:0px 10px;
	background-color:#fcfcfc;
	border:1px solid #f5f5f5;
	border-bottom:none;
	display:inline-block;
	vertical-align:inherit;
}
.blog-detail .detail-relatedlist{
	overflow:hidden;
}
.blog-detail .detail-relatedlist ul{
	list-style:none;
	clear:both;
	margin:0 -18px;
}
.blog-detail .detail-relatedlist:after{
	content:"";
	clear:both;
	display:block;
}
.blog-detail .detail-relatedlist li{
	float:left;
	width:33.33333%;
	padding:0 18px 20px;
	list-style:none;
}
.blog-detail .detail-relatedlist li img {
	max-width:100%;
}
.blog-detail .detail-relatedlist li h3{
	margin:0px;
	padding:14px 0 8px;
	line-height:1.2;
	color:#666666;
}
.blog-detail .detail-relatedlist li .info{
	border-bottom:1px solid #dcdcdc;
	padding-bottom:8px;
	max-width:80%;
	margin-bottom:10px;
}
.blog-detail .detail-relatedlist li .sep{
	padding:0px 4px;	
	color:#999999;
}
.blog-detail .detail-relatedlist a,
.blog-detail .detail-relatedlist a:link,
.blog-detail .detail-relatedlist a:active,
.blog-detail .detail-relatedlist a:visited{
	color:#999999;
}
.blog-detail .detail-relatedlist a:hover{
	color:#20a3f0;
}
.blog-detail .detail-relatedlist li p{
	line-height:1.8;
}
.blog-detail .detail-relatedlist a.more,
.blog-detail .detail-relatedlist a.more:link,
.blog-detail .detail-relatedlist a.more:active,
.blog-detail .detail-relatedlist a.more:visited{
	color:#20a3f0;
	text-decoration:underline;
}
.blog-detail .detail-relatedlist a.more{
	padding:20px 0;
	display:inline-block;
}
@media only screen and (max-width: 767px) {
	.blog-detail .comments-post{
		padding-left:0;
	}
	.blog-detail .comments-portrait{
		position:static;
		margin:0px auto 25px;
	}
	.blog-detail .comments-main:before{
		transform:rotate(135deg);
		-webkit-transform:rotate(135deg);
		top:-5px;
		left:50%;
		margin:0 0 0 -5px;
	}
	.blog-detail .detail-relatedlist li{
		width:auto;
		display:block;
	}
	.blog-detail .reply-post{
		padding-left:0;
	}
	.blog-detail .reply-portrait{
		position:static;
		margin:0px auto 25px;
	}
	.blog-detail .reply-main:before{
		transform:rotate(135deg);
		-webkit-transform:rotate(135deg);
		top:-5px;
		left:50%;
		margin:0 0 0 -5px;
	}
	.blog-detail .reply-main,
	.blog-detail .comments-reply,
	.blog-detail .comments-main{
		padding:10px;}

}

.blog-detail .leave-formlist {
	margin:0 -23px 0 0;
	padding:0;
	list-style:none;
	font-size:0;
	letter-spacing:0;
}
.blog-detail .leave-formlist input,
.blog-detail .leave-formlist textarea  {
	box-sizing:				border-box;
	-moz-box-sizing: 		border-box;
	-webkit-box-sizing: 	border-box;
	padding:8px 12px 8px 5px;
	margin:0;
	line-height:28px;
	border:1px solid #e3e3e3;
	background-color:#FFF;
	font-size:13px;
	transition: 		all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-webkit-box-shadow:  none;
	-moz-box-shadow: none;
	box-shadow: none;
	font-family:Arial, Helvetica, sans-serif;
	width:100%;
}
.blog-detail .leave-formlist li{
	padding:0px 23px 23px 0;
	display:inline-block;
	vertical-align:top;
	font-size:13px;
}
.blog-detail .submit-but {
	background:#20a3f0;
	border:none;
	color:#FFF;
	padding:9px 25px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	font-size:18px;
}
.blog-detail .submit-but:hover {
	background:#333;
	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? */
}
@media only screen and (max-width: 767px) {
	.blog-detail .leave-formlist li{
		width:100%!important;
	}
}












/* 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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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.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.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.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.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.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 {
	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/20073-unlimitedcolorspack-055/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:1px solid #929292;
  margin:27px auto 0 auto;
}
.imgbox01 h3{
  font-size:16px;
  font-weight:normal;
  margin:0;
  padding:10px 0 10px 0;
}
.imgbox01 .imgbox01-con{
  padding:0 30px;
}
.imgbox01-pad .col-sm-4{
  padding:0 35px;
}
.row.imgbox01-pad{
  margin-right: -35px;
  margin-left: -35px;
}
.imgbox02{
  background-color:#ececec;
  border-radius:5px;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
  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 38px
}
.imgbox02 .imgbox02-con h3{
	font-size:16px;
	line-height:1.2;
	text-transform:uppercase;
	margin:0;
	padding:30px 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;
}
.imgbox03-bg01{
    background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/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;
}
.imgbox03:hover,
.imgbox03:hover .imgbox03-con .btn {
	 border-color:#20a3f0;	
}
.imgbox03 img{
	width:100%;
}
.imgbox03 h3{
	font-size:14px;
	font-weight:normal;
	color:#fff;
	margin: 0;
    padding: 25px 0 25px 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 transparent;
  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 #20a3f0;
}
.imgbox04 .imgbox04-con h3{
  margin:0;
  font-size:15px;
  padding:26px 0 0 0;
}
.imgbox05{
  text-align:center;
  background-color:#ececec;
   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 p{
  padding:0 55px;
}
.imgbox05 .imgbox05-con h3{
  margin:0;
  font-size:15px;
  line-height:1.2;
  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 .btn{
   background-color:#20a3f0;
   text-decoration:none; 
}
.imgbox05:hover .imgbox05-con h3{
   color:#20a3f0;
}
.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 40px 20px 40px;
    	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:13px; 
  padding:35px 0 20px 0;
  color:#333333;
}
.imgbox06:hover .imgbox06-con{
  background-color:#fff;
  border-color:#dadada;
}
.imgbox06 .imgbox06-con .btn{
  font-size:13px;
  font-weight:bold;
  color:#333333;
  display:inline-block;
  padding:0 0 10px 0;
}
.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:#62d9ff;
  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:#4d449a;
}
.imgbox07 .imgbox07-icon.color-3 span{
   background-color:#abd372;
}
.imgbox07-icon span em{
    display: block;
    position: absolute;
    font-size: 30px;
    color: #fff;
    top: 50%;
    left: 50%;
    margin: 0 0 0 -15px;
}
.imgbox07 .imgbox07-con h3{
  font-size:15px;
  font-weight:normal;
  margin:0;
  padding:20px 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;
}
.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;
}
.imgbox08 .imgbox08-con h3{
      margin: 0;
    font-weight: normal;
    font-size: 15px;
    padding: 0 0 20px 0;
}
.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/20073-unlimitedcolorspack-055/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;
  margin: 0;
  padding: 10px 0 20px 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;
    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 275px;
}
.imgbox10-left img {
    padding: 10px;
    -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: 18px;
    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: 20px 0;
}
.imgbox10 .btn {
    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;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    text-decoration: none;
    padding: 12px 25px;
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
	line-height:1.2;
	text-align:center;
}
@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%;   
}
}

@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;
}
}



.Testimonials01-tab{
  border:1px solid #dedede; 
  text-align:center;
  padding:45px 30px 30px 30px;
   border-radius:5px;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
  margin:0 0 20px 0;
}
.Testimonials01-tab .Testimonials01-top em{
  width:56px;
  height:56px;
  margin:0 auto;
  background:#20a3f0;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  line-height:56px;
  text-align:center;
  color:#fff;
  font-size:20px;
  margin:7px 0 0 0;
  display:inline-block;
}
.Testimonials01-tab .Testimonials01-top em img{
  width:56px;
  height:56px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  vertical-align:top;
}
.Testimonials01-tab .Testimonials01-top{
    width: 70px;
    height: 35px;
  margin:-34px auto 0 -35px;
  border:1px solid #dedede;
   border-bottom:1px solid #fff;
   border-radius:50px 50px 0 0;
  -moz-border-radius:50px 50px 0 0;
  -webkit-border-radius:50px 50px 0 0;
  position:absolute;
  left:50%;
  top:0;
}
.Testimonials02-tab{
  text-align:center;
  margin:0 0 20px 0;
}
.Testimonials01-tab h2{
  color:#121212;
  font-size:15px;  
  margin:0;
  padding:0 0 0 0;
} 
.Testimonials01-tab h2 span{
  font-size:13px;
  font-weight:normal;
  color:#666;
}
.Testimonials02-tab img{
  width:253px;
  height:253px;
    border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
}
.Testimonials02-tab .Testimonials02-con h3{
  font-size:15px;
  color:#121212;
  margin:0;
  padding:35px 0 0 0;
}
.Testimonials02-tab .Testimonials02-con span{
  display:block;
  font-size:13px;
  color:#666;
  padding:0 0 10px 0;
}
.Testimonials03-tab{
  text-align:center;
  border:1px solid #dedede;
  padding:30px;
  margin:0 0 20px 0;
}
.Testimonials03-tab h2{
  font-weight:normal;
  font-size:15px;
  margin:0;
  padding:0 0 10px 0;
}
.Testimonials03-tab span{
  color:#2e2e2e;
}
.Testimonials03-tab  p{
  margin:0;
}	
.Testimonials03-tab .btn{
    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;
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    text-decoration: none;
    padding: 18px 55px;
    display: inline-block;
    margin: 25px 0 0 0;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
	font-size:15px;
}
.Testimonials03-tab .btn:hover{
	background-color:#333;
}

/*Testimonials04-tab*/
.Testimonials04-tab{
  border:1px solid #d2d2d2;
  text-align:center;
  padding:40px 40px;
  margin:0 0 20px 0;
}
.Testimonials04-tab p{
  font-style:italic;
  font-weight:bold;	
  color:#393939;
}
.Testimonials04-tab img{
  width:70px;
  height:70px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  margin:20px 0 0 0;
}
.Testimonials04-tab .line{
  width:25px;
  border-bottom:2px solid #393939;
  margin:0 auto;
  padding:25px 0 0 0;
}
.Testimonials04-tab h2{
  color:#393939;
  font-size:15px;
  margin:0;
  line-height:1.2; 
  padding:25px 0 0 0;
}
.Testimonials04-tab h3{
  color:#393939;
  font-style:italic;
  font-weight:normal;
  margin:0;
  font-size:13px;
  line-height:1.2;
  padding:5px 0 0 0;	
}
/*Testimonials05-tab*/
.Testimonials05-tab{ 
  text-align:center;
  padding:0;
}
.Testimonials05-tab .Testimonials05-con{
  position:relative;
  border:1px solid #d2d2d2;
  padding:25px 25px 20px 25px;
}
.Testimonials05-tab .Testimonials05-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;	
}
.Testimonials05-tab img{
  width:50px;
  height:50px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  margin:20px 0 0 0;
}
.Testimonials05-tab h2{
  color:#393939; 
  margin:0;
  line-height:1.2; 
  padding:18px 0 0 0;
  font-weight:normal;
  font-size:13px;
}
.Testimonials05-tab h3{
  color:#393939; 
  font-weight:normal;
  margin:0;
  font-size:13px;
  line-height:1.2;
  padding:5px 0 0 0;	
}
/*Testimonials06-tab*/
.Testimonials06-tab{
  float:left;
  width:25%;
  background-color:#e9e9e9;
}
.Testimonials06-tab img{
  border-right:1px solid #fff;
  width:100%;
}
.Testimonials06-tab .Testimonials06-con{
  border-right:1px solid #fff; 
  text-align:center;
  padding:40px 30px 20px 30px;
  position:relative;
}
.Testimonials06-tab .Testimonials06-con:before{
   border:10px solid transparent;
    border-bottom:10px solid #e9e9e9;
    content: "";
    display: block;
    position: absolute;
    left:45px;
    top: -19px;
    width: 0;
}
.Testimonials06-tab .Testimonials06-con h2{
  margin:0;
  font-size:15px;
  font-weight:normal;
  color:#282828;
  padding:0 0 25px 0;
}
.Testimonials06-tab .Testimonials06-con p{
  margin:0;
}
.Testimonials06-tab:last-child .Testimonials06-con,
.Testimonials06-tab:last-child img{
  border:0;
}
/*Testimonials07-tab*/
.Testimonials07-tab {
	margin: 0;
	padding: 0;
	color:#fff;
}
.Testimonials07-tab li {
	list-style: none;
	width: 50%;
	float: left;
	position: relative;
	padding: 30px 50px 0 190px;
	min-height: 180px;
	text-align: left;
}
.Testimonials07-tab li.i-right {	
	padding:30px 0 0 237px;
}
.Testimonials07-tab li.i-right .pic {
	left: 65px;
}
.Testimonials07-tab li.clear {
	clear: both;
	min-height: inherit;
	width: 100%;
	float: none;
	position: relative;
	padding: 0;
	overflow: hidden;
}
.Testimonials07-tab li.clear span {
	display: block;
	width: 60px;
	height: 60px;	
	text-align: center;
	font-size: 25px;
    height: 60px;
    line-height: 50px;
	margin: auto;
	border: 1px solid #15839e;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	overflow: hidden;
	position: relative;
}
.Testimonials07-tab li.clear span:before {	
	position: absolute;
	border: 1px solid #15839e;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	width: 48px;
	height: 48px;
	left: 5px;
	top: 5px;
}
.Testimonials07-tab li.clear:before {
	content: "";
	width: 50%;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 0px;
	margin: -1px 0 0 -30px;
	background-color: #FFF;
	background: -webkit-linear-gradient(to right, rgba(255,255,255,0) 5%, rgba(21,131,158,0.8));
	background: linear-gradient(to right, rgba(21,131,158,0) 5%, rgba(21,131,158,0.8));
}
.Testimonials07-tab li.clear:after {
	content: "";
	width: 50%;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 0px;
	margin: -1px -30px 0 0;
	background-color: #FFF;
	background: -webkit-linear-gradient(to left, rgba(255,255,255,0) 5%, rgba(21,131,158,0.8));
	background: linear-gradient(to left, rgba(255,255,255,0) 5%, rgba(21,131,158,0.8));
}
.Testimonials07-tab li:first-child:before {
	content: "";
	width: 1px;
	height: 90%;
	position: absolute;
	bottom: 0;
	right: 0px;
	margin: -30px -1px 0 0;
	background-color: #FFF;
	background: -webkit-linear-gradient(to bottom, rgba(255,255,255,0) 5%, rgba(21,131,158,0.8));
	background: linear-gradient(to bottom, rgba(255,255,255,0) 5%, rgba(21,131,158,0.8));
}
.Testimonials07-tab li:last-child:before {
	content: "";
	width: 1px;
	height: 90%;
	position: absolute;
	top: 0;
	left: 0px;
	margin: 0px;
	background-color: #FFF;
	background: -webkit-linear-gradient(to top, rgba(255,255,255,0) 5%, rgba(21,131,158,0.8));
	background: linear-gradient(to top, rgba(255,255,255,0) 5%, rgba(21,131,158,0.8));
}
.Testimonials07-tab .pic {
	position: absolute;
	left: 18px;
	top: 30px;
	width: 128px;
	height: 128px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	overflow: hidden;
}
.Testimonials07-tab li p {
	line-height: 1.8;
}
.Testimonials07-tab h2{
  font-size:15px;
  font-weight:normal;
  color:#fff;
  margin:0;
}
.Testimonials07-tab h3{
  color:#fff;
  font-weight:normal;
  margin:0;
  font-size:13px;
  padding:0 0 20px 0;
}
.Testimonials07-tab h3 span{
  color:#85d8fe;
}
/*Testimonials08-tab*/
.Testimonials08-tab{
  border:1px solid #d1d1d1;
  padding:20px 16px 20px 100px;
  position:relative;
  margin:0 0 20px 0;  
}
.Testimonials08-tab em.fa{
  position:absolute;
  left:30px;
  top:30px;
  width:45px;
  height:45px;
  line-height:45px;
    border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  border:1px solid #20a3f0;
  color:#20a3f0;
  font-size:18px;
  text-align:center;
}
.Testimonials08-tab h2{
   font-size:13px;
   color:#20a3f0;
   font-weight:normal;
   margin:0;
}
.Testimonials08-tab h2 span{
  color:#393939;   
}
/*Testimonials09-tab*/
.dg-testimonials-bg05 {
    background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/testimonials/dg-testimonials-bg05.jpg") no-repeat center center;
    background-size: cover;
	color:#fff;
}
.Testimonials09-tab{
   margin-bottom:20px;
}
.Testimonials09-tab h2{
    font-size: 13px;
    font-weight: normal;
    color: #fff;
    margin: 20px 0;
    line-height: 1.2;
}
.Testimonials09-tab .bnt{
  position:relative;  
  padding:0 10px 0 0;
  color:#20a3f0
}
.Testimonials09-tab .bnt:after{
 content:"\f105";
 position:absolute;
 right:0;
 top:-3px;
 font-family:"FontAwesome"
}
/*Testimonials10-tab*/
.Testimonials10-tab{
 border:1px solid #dfdfdf;
 border-right:4px solid #20a3f0;
 margin-bottom:20px;
}
.Testimonials10-tab .pic{
  float:left;
  padding:0 16px 0 0;
}
.Testimonials10-tab .Testimonials10-com{
  padding:16px 10px 6px
}
.dg-testimonials-bg01{
    background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/testimonials/dg-testimonials-bg01.jpg") no-repeat center center;
    background-size: cover;
}
.dg-testimonials-tab01{
   text-align:center;
   padding:0 0 60px 0;
}
/*Testimonials11-tab*/
.Testimonials11-tab {
    border: 1px solid #dfdfdf; 
    margin-bottom:20px;
}
.Testimonials11-tab .Testimonials11-con {
    padding:12px 20px 2px 20px;
}
.Testimonials11-tab .Testimonials11-bottom{
    background: #eaeaea;
	padding:4px 20px;
}
.Testimonials11-tab .Testimonials11-author {
    float: left;
}
.Testimonials11-tab .Testimonials11-icon {
    float: right;
}
.Testimonials11-tab .Testimonials11-icon .fa{
   color:#ff9e00;
   display:inline-block;
   padding:0 3px;
}
.Testimonials11-author span{
  color:#20a3f0;
}
/*Testimonials12-tab*/
.Testimonials12-tab {
    border: 1px solid #eaeaea; 
    border-bottom: 0;
}
.Testimonials12-tab .Testimonials12-con {
    padding: 22px 30px 20px 30px;
}
.Testimonials12-tab .pic {
    float: left;
    padding: 7px;
    position: relative;
    z-index: 100;
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-top: 0;
    position: absolute;
    margin-left: -1px;
}
.Testimonials12-author {   
    padding: 12px 0 12px 72px;
    background: #eaeaea;
    bottom: 0;
    width: 100%;
    left: 0;
	color:#121212;
	border-bottom: 1px solid #d3d3d3;
}
/*Testimonials13-tab*/
.Testimonials13-tab{
  position:relative;
  padding:30px 30px 20px 30px; 
  border:1px solid #d1d1d1;
}
.Testimonials13-tab .pic {
    float: left;
    text-align: center;
	padding:0 30px 0 0;
}
.Testimonials13-tab .pic span {
    display: block;
    text-transform: uppercase;
    padding: 15px 0;
}
.Testimonials13-tab p.c-font{
  color:#20a3f0;
  padding:10px 0 20px 0;
}
/*Testimonials14-tab*/
.Testimonials14-tab{
  background-color:rgba(0,0,0,0.8);
  color:#fff;
  padding:40px 38px 50px 38px;
  margin:0 0 40px 0;
}
.dg-testimonials-bg06{
    background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/testimonials/dg-testimonials-bg06.jpg") no-repeat center center;
    background-size: cover;
}
.Testimonials14-tab .Testimonials14-bottom{
  position:absolute;
  bottom: 0;
}
.Testimonials14-tab .Testimonials14-bottom img{
  	border-radius:50%;
    -moz-border-radius: 50%;
    -webkit-border-radius:50%;
	width:70px;
	height:70px;	
}
/*Testimonials15-tab*/
.Testimonials15-tab{
  background-color:rgba(0,0,0,0.8);
  color:#fff;
  padding:0 0 0 140px;
  position:relative;
  margin:0 0 20px 0;
}
.Testimonials15-tab .pic {
    position: absolute;
    left: 1px;
    height: 100%;
    background: #20a3f0;
	width: 103px;
    text-align: center;
	padding:20px 0 0 0;	
}
.Testimonials15-tab .pic:before {
    border-top: 1px solid #000;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.Testimonials15-tab .pic:after{
    border-top: 1px solid #000;
    content: "";
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.Testimonials15-tab .pic-border{
   padding:1px;
}
.Testimonials15-tab .pic span{
    display: block;
    position: absolute;
    bottom: 20px;
    width: 100%;
}
.Testimonials15-con {
    padding: 30px 30px 25px 0;
}
.Testimonials14-tab .Testimonials14-bottom span{
  vertical-align:bottom;
  padding:0 0 0 5px;
}
/*Testimonials17-tab*/
.Testimonials17-tab{
    position: relative;
    padding: 0 0 0 136px;
	margin:0 0 20px 0;
}
.Testimonials17-tab .pic {
    position: absolute;
    left: 24px;
    width: 95px;
    height: 95px;
    overflow: hidden;
  	border-radius:50%;
    -moz-border-radius: 50%;
    -webkit-border-radius:50%;
}
.Testimonials17-tab .Testimonials17-com h2 {
    font-size: 15px;
    color: #20a3f0;
    line-height: 1.2;
    font-weight: normal;
    margin: 0;
    padding: 0 0 10px 0;
}
.Testimonials17-tab .Testimonials17-com h2 span{
  display:block;
  color:#2e2e2e;
}
.Testimonials17-bottom{
    border-top: 1px solid #d4d4d4;
    padding: 20px 0 0 0;
    margin: 30px 0 0 0;
}
.Testimonials17-bottom em.fa{
  float:right;
  margin: 3px 0 3px 5px;
}
.Testimonials17-bottom em.fa fa-star{
  color:#ff9e00;
}
/*Testimonials18-tab*/
.Testimonials18-tab{
    position: relative;
    padding: 30px 10px 30px 136px;
    background: #e7e7e7;
    border-radius: 5px;
    border: 1px solid #d4d4d4;
	margin-bottom:20px;
}
.Testimonials18-tab .pic span {
    color: #3b3b3b;
    font-size: 13px;
    display: block;
}
.Testimonials18-tab .pic {
    position: absolute;
    left: 24px;
    width: 95px;
    height: 95px;
    overflow: hidden;
  	border-radius:50%;
    -moz-border-radius: 50%;
    -webkit-border-radius:50%;
	top:50px;
}
.Testimonials18-icon em{
  color:#ff9e00;
  margin:3px 5px 0 0
}
.Testimonials18-icon {
    padding: 0 0 10px 0;
}
.Testimonials18-author {
    padding: 15px 0 0 0;
}
/*Testimonials19-tab*/
.dg-testimonials-bg07{
  background-color:#032b4a;
  color:#fff;
}
.Testimonials19-tab {
  margin-bottom:20px;
}
.Testimonials19-tab h2{
    color: #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
    margin: 0 0 10px 0;
    font-size: 15px;
    padding: 25px 0 5px 0;
}
.Testimonials19-tab h2 span{
    display: block;
    font-size: 13px;
    font-weight: normal;
    font-style: italic;
}
/*Testimonials21-tab*/
.Testimonials21-tab{
    background: #e7e7e7;
    padding: 35px;
	position:relative;
	margin:0 0 20px 0;
}
.Testimonials21-com {
    width: 80%;
    float: left;
}
.Testimonials21-tab .pic { 
    width: 20%;
    float: right;
    text-align: right;
}
.Testimonials21-tab .pic img{
  padding:0 0 0 35px;
}
.Testimonials21-tab h2{
  color:#20a3f0;
  font-size:13px;
  font-weight:normal;
  margin:0;
  line-height:1.2;
}
.Testimonials21-tab h2 span{
  color:#323232;
}
.Testimonials21-tab:before {
    border-top: 20px solid #bababa;
    border-right: 20px solid #fff;
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    margin: 0;
}
/*Testimonials22-tab*/
Testimonials22-tab{
	margin-bottom:20px;
}
.Testimonials22-con {
    display: inline-block;
    width: 65%;
    vertical-align:middle;
    background: #e7e7e7;
    padding:32px 40px 30px;
    border-right: 3px solid #20a3f0;
	margin-right:2.5%;
}
.Testimonials22-tab .pic {
    display: inline-block;
    max-width:30%;
    text-align: center;
    margin: 6px 0 0 0;
	vertical-align:middle;
}
.Testimonials22-tab .pic img{
     	border-radius:50%;
    -moz-border-radius: 50%;
    -webkit-border-radius:50%;
	width:113px;
	height:113px;
}
.Testimonials22-tab .pic span {
    display: block;
    color: #20a3f0;
    padding: 10px 0 0 0;
}

.dg-testimonials-tab01 blockquote{
  position:relative;
  padding:0;
  font-style:normal;  
}
.dg-testimonials-tab01 blockquote p{
  color:#fff;
  font-weight:bold;
  position:relative;
  padding:0 170px;
  text-indent:inherit; 
}
.dg-testimonials-tab01 blockquote:before{
    content: "\f10d";
    font-family: "FontAwesome";
    font-size: 50px;
    left: 30px;
    position: absolute;
	color: #fff;
    top: 50%;
}
.dg-testimonials-tab01 blockquote:after{
    content: "\f10e";
    font-family: "FontAwesome";
    font-size: 50px;
    right:30px;
    position: absolute;
	color: #fff;
    top: 50%;
}
.dg-testimonials-tab01 blockquote h2{
  text-align:center;
  font-size:15px;
  color:#fff;
  margin:0;
  padding:20px 0 0 0;
}
.dg-testimonials-tab01 blockquote .pic{
  margin:0;
  width:105px;
  height:105px;
  overflow:hidden;
  display:block;
  margin:0  auto 35px auto;
}
.dg-testimonials-tab01 blockquote h2 span{
  display:block;
  font-size:13px;  
}
.dg-testimonials-tab01 .last_page,
.dg-testimonials-tab01 .next_page {
	width:40px;
	height:40px;
	border:1px solid #fff;
	background-color:transparent;
	top: 35px;
	bottom: 0;
	left: 50%;
	right:auto;
	font-size:0;
	overflow: hidden;
	text-indent:-999;
}
.dg-testimonials-tab01 .last_page:hover,
.dg-testimonials-tab01 .next_page:hover{
    background-color:#20a3f0;
	border:1px solid #20a3f0;   
}
.dg-testimonials-tab01 .last_page {
	margin: 0 0 0 -110px;
	}
.dg-testimonials-tab01 .next_page{
	margin: 0 0 0 70px;
	}
.dg-testimonials-tab01 .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 -4px;
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	}
.dg-testimonials-tab01 .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 -4px;
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	}
.dg-testimonials-tab01 .dot{
  width:100%;
}
.dg-testimonials-tab01 .dot a {
    border: 2px solid #fff;
    width: 14px;
    height: 14px;
}
.dg-testimonials-tab01 .dot a.actived,
.dg-testimonials-tab01 .dot a:hover {
	background-color: #fff;
}
.testimonials02-box{
   border:1px solid #cecece;
   text-align:center;
   padding:30px 50px 70px 50px;
   position:relative;
   margin:0 0 60px 0;  
}
.dg-testimonials-tab02 .testimonials02-box .pic{
   position:absolute;
      bottom: 0;
    left: 50%;
    margin: 0 0 -45px -50px;
}
.dg-testimonials-tab02 .testimonials02-box .pic img{
  width:100px;
  height:100px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  border:2px solid #dcdcdc;
}
.dg-testimonials-tab02  blockquote{
  font-style:normal;
  padding:0 0 45px 0;
}
.dg-testimonials-tab02  blockquote p{
 text-indent:inherit;
}
.dg-testimonials-tab02 blockquote h2 {
    position: relative;
    margin: 0;
    display: inline-block;
    font-size: 30px;
	margin:0 0 10px 0;
	color:#20a3f0;
}
.dg-testimonials-tab02  blockquote h2:before{
  content:"";
  position:absolute;
  border-bottom:1px solid #20a3f0;
  width:45px;
  left:-60px;
  top:50%;
}
.dg-testimonials-tab02  blockquote h2:after{
  content:"";
  position:absolute;
  border-bottom:1px solid #20a3f0;
  width:45px;
  top:50%;
  right:-60px;
}
.dg-testimonials-tab02  blockquote h3{
  font-size:15px;
  font-weight:bold;
  text-align:center;
  color:#343434;
  margin:0;
}
.dg-testimonials-tab02  blockquote h3 span{
  display:block;
  text-transform:uppercase;
  font-size:13px;
  font-weight:normal;  
}
.dg-testimonials-tab02 .dot{
  width:100%;
  text-align:center;
}
.dg-testimonials-tab02 .dot a{
  width:16px;
  height:16px;
  background-color:#cecece;
  border:0;
}
.dg-testimonials-tab02 .dot a.actived,
.dg-testimonials-tab02 .dot a:hover{
  background-color:#20a3f0;
}
/*dg-testimonials-tab03*/
.dg-testimonials-tab03 .last_page, 
.dg-testimonials-tab03 .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 ;
}
.dg-testimonials-tab03 .last_page:hover, 
.dg-testimonials-tab03 .next_page:hover{ 
	border-left: 2px solid #20a3f0;
	border-bottom: 2px solid #20a3f0;
}
.dg-testimonials-tab03 .next_page {
	left: auto;
	right:10px;
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
.dg-testimonials-tab03{
  text-align:center;
}
.dg-testimonials-tab03 blockquote{
  font-style:normal;
  padding:0 50px; 
}
.dg-testimonials-tab03 blockquote p{
  text-indent:inherit;
}
.dg-testimonials-tab03 blockquote span.pic img{
  width:90px;
  height:90px;
  border-radius:50%;
  border:1px solid #20a3f0;
}
.dg-testimonials-tab03 blockquote h2{
  font-weight:normal;
  margin:0;
  font-size:15px;
  color:#393939;
}
.dg-testimonials-tab03 blockquote p{
  padding:30px 0 20px 0;
  margin:0;
}
.dg-testimonials-tab03 blockquote h2 span{
  text-transform:uppercase;
  font-size:13px;
  display:block;
}
/*dg-testimonials-tab04*/
.dg-testimonials-tab04 {
	min-height: inherit;
}
.dg-testimonials-tab04 ul {
	margin: 0;
}
.dg-testimonials-tab04 li blockquote {
    padding: 30px 25px 70px 25px;
    font-size: 13px;
    font-style: normal;
    margin:36px 0 0;
    border-top: 1px solid #e3e3e3;
    text-align: center;
}
.dg-testimonials-tab04 li blockquote h2{
    font-size: 13px;
    color: #323232;
    font-weight: bold;
    margin: 0;
    Padding: 0 0 18px 0;
    line-height: 1;
}
.dg-testimonials-tab04 .dot {
	text-align: center;
	width: 100%;
}
.dg-testimonials-tab04 .dot a img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.dg-testimonials-tab04 .dot a {
	text-indent: inherit;
	width: auto;
	height: auto;
	padding: 2px;
	border: 1px solid transparent;
}
.dg-testimonials-tab04 .dot a.actived {
	border: 1px solid #e3e3e3;
}
.dg-testimonials-tab04 .last_page {
    margin: 0 0 0 -36px;
}
.dg-testimonials-tab04 .last_page, 
.dg-testimonials-tab04 .next_page {
    width: 36px;
    height: 36px;     
    top: 0;
    bottom: 0;
	border:0;
    left: 50%;
    right: auto;
    font-size: 0;
    overflow: hidden;
    text-indent: -999;
	background-color:#ececec;
	    border-radius: 0%;
    -moz-border-radius: 0%;
    -webkit-border-radius: 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-testimonials-tab04 .last_page:hover, 
.dg-testimonials-tab04 .next_page:hover{
   background-color:#20a3f0;
}
.dg-testimonials-tab04 .last_page:hover:before{
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
.dg-testimonials-tab04 .next_page:hover:before{
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.dg-testimonials-tab04 .next_page {
    margin: 0 0 0 0;
}
.dg-testimonials-tab04 .last_page:before,
.dg-testimonials-tab04 .next_page:before {
    content: "";
    border-top: 1px solid #323232;
    border-left: 1px solid #323232;
    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);
		    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-testimonials-tab04 .next_page:before {   
    border-top:0;
	border-left:0;
    border-right: 1px solid #323232;
    border-bottom: 1px solid #323232;
    width: 8px;
    height: 8px;
    left: 50%;   
}
/*dg-testimonials-tab05*/
.dg-testimonials-bg02{
    background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/testimonials/dg-testimonials-bg02.jpg") no-repeat center center;
    background-size: cover;
	text-align:center;
	color:#fff;
}
/*dg-testimonials-tab06*/
.dg-testimonials-tab06{
  text-align:center;
  border:1px solid #d2d2d2;
  border-radius:5px;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
}
.dg-testimonials-tab06 .last_page {
    margin: 0 0 0 -48px;
}
.dg-testimonials-tab06 .next_page{
    margin: 0 0 0 12px;
}
.dg-testimonials-tab06 .last_page, 
.dg-testimonials-tab06 .next_page {
    width: 36px;
    height: 36px;     
    top:50px;  
	border:0;
    left: 50%;
    right: auto;
    font-size: 0;
    overflow: hidden;
    text-indent: -999;	
	    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 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:1px solid #323232;
}
.dg-testimonials-tab06 .last_page:hover, 
.dg-testimonials-tab06 .next_page:hover{
   background-color:#20a3f0;
   border:1px solid #20a3f0
}
.dg-testimonials-tab06 .last_page:hover:before{
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
.dg-testimonials-tab06 .next_page:hover:before{
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.dg-testimonials-tab06 .last_page:before,
.dg-testimonials-tab06 .next_page:before {
    content: "";
    border-top: 1px solid #323232;
    border-left: 1px solid #323232;
    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);
		    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-testimonials-tab06 .next_page:before {   
    border-top:0;
	border-left:0;
    border-right: 1px solid #323232;
    border-bottom: 1px solid #323232;
    width: 8px;
    height: 8px;
    left: 50%;   
}
.dg-testimonials-tab06 blockquote{
  padding:120px 30px 32px 30px;
  color:#393939;
  font-weight:bold;
}
.dg-testimonials-tab06 blockquote p{
  color:#393939;
}
.dg-testimonials-tab06 blockquote .pic{
  display:block;
  padding:30px 0 0 0;
}
.dg-testimonials-tab06 blockquote .pic img{
  border-radius:5px;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
  width:62px;
  height:62px;
}
.dg-testimonials-tab06 blockquote h2{
  color:#393939;
  font-size:15px;
  font-style:normal;
  margin:0;
  padding:25px 0 0 0;
}
.dg-testimonials-tab06 blockquote h2 span{
  display:block;
  font-weight:normal;
  font-size:13px;
}
/**/
.dg-testimonials-tab07 {
	min-height: inherit;
}
.dg-testimonials-tab07 ul {
	margin: 0;
}
.dg-testimonials-tab07 li blockquote {
    padding: 110px 130px 70px 130px;
    font-size: 13px;
    font-style: normal;
    margin:0 0 0;  
    text-align: center;
}
.dg-testimonials-tab07 li blockquote h2{
    font-size: 13px;
    color: #323232;
    font-weight:normal;
    margin: 0;
    Padding:50px 0 0 0;
    line-height: 1;
}
.dg-testimonials-tab07 li blockquote strong{
    color:#20a3f0;
}
.dg-testimonials-tab07 .dot {
	text-align: center;
	width: 100%;
	top:0;
	bottom:auto;
}
.dg-testimonials-tab07 .dot a img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.dg-testimonials-tab07 .dot a {
	text-indent: inherit;
	width: auto;
	height: auto;
	padding: 0;
	border: 6px solid transparent;
}
.dg-testimonials-tab07 .dot a.actived {
	border:6px solid #20a3f0;
}
.dg-testimonials-tab07 .last_page, 
.dg-testimonials-tab07 .next_page {
    width: 43px;
    height: 43px;     
    top:50%;   
	border:0;
    left:0;	   
    font-size: 0;
    overflow: hidden;
    text-indent: -999;
	border:1px solid #d6d6d6;
	    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 ;
}
.dg-testimonials-tab07 .next_page {
    margin: 0 0 0 0;
    right: 0;
    left: auto;
}
.dg-testimonials-tab07 .last_page:hover, 
.dg-testimonials-tab07 .next_page:hover{
   background-color:#20a3f0;
   border:1px solid #20a3f0
}
.dg-testimonials-tab07 .last_page:hover:before{
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
.dg-testimonials-tab07 .next_page:hover:before{
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.dg-testimonials-tab07 .last_page:before,
.dg-testimonials-tab07 .next_page:before {
    content: "";
    border-top: 1px solid #d6d6d6;
    border-left: 1px solid #d6d6d6;
    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);
		    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-testimonials-tab07 .next_page:before {   
    border-top:0;
	border-left:0;
    border-right: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    width: 8px;
    height: 8px;
    left: 50%;   
}
/*dg-testimonials-tab08*/
.dg-testimonials-tab08 blockquote{
  text-align:center;
  padding:34px 25px 70px 25px;
  font-style:normal;
   border:1px solid #d2d2d2; 
}
.dg-testimonials-tab08 blockquote p{
  font-style:normal;
  text-indent:inherit;
}
.dg-testimonials-tab08 blockquote .pic{
  display:block;
  padding:0 0 10px 0;
}
.dg-testimonials-tab08 blockquote .pic img{
  width:50px;
  height:50px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
	
}
.dg-testimonials-tab08 blockquote h2{
  display:inline-block;
  font-size:15px;
  color:#393939;
  vertical-align:bottom;
  margin:0;
}
.dg-testimonials-tab08 .dot{
  width:100%;
  text-align:center;
  bottom:30px;	
}
.dg-testimonials-tab08 .dot a{
  width:9px;
  height:9px;
  border:1px solid #d3d3d3;	
}
.dg-testimonials-tab08 .dot a.actived,
.dg-testimonials-tab08 .dot a:hover{
 border:1px solid #20a3f0;	
}
/*dg-testimonials-tab09*/
.dg-testimonials-bg03 {
    background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/testimonials/dg-testimonials-bg03.jpg") no-repeat center center;
    background-size: cover;
}
.dg-testimonials-tab09 blockquote{
  background-color:#666666;
  margin:0 100px;
  color:#fff;
  font-style:normal;
  text-align:center;
  position:relative;
  padding:70px 90px 50px 90px;
}
.dg-testimonials-tab09 blockquote p{
  color:#fff;
  font-style:normal;
}
.dg-testimonials-tab09 blockquote:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    border:10px solid transparent;
    border-top: 10px solid #666666;
    width: 10px;
    height: 10px;
    margin: 0 0 0 -10px;
	bottom: -20px;
}
.dg-testimonials-tab09 .pic em{
   display:block;
   width:53px;
   height:53px;
   line-height:53px;
   text-align:center;
   font-size:25px;
   border:2px solid #fff;
   border-radius:50%;
   -moz-border-radius:50%;
   -webkit-border-radius:50%; 
   margin:0 auto -26px auto;
   z-index:1;
   position:relative;
   color:#fff;   
}
.dg-testimonials-tab09 .pic{
  display:block;
   width:100px;
   height:100px;
   line-height:100px;
   text-align:center; 
   border-radius:50%;
   -moz-border-radius:50%;
   -webkit-border-radius:50%; 
   margin:0 auto -50px auto;
   z-index:1;
   position:relative;  
   background:#666666;
   padding:20px 0 0 0;
}
.dg-testimonials-tab09 .author{
  text-align:center;
  font-size:15px;
  color:#20a3f0;
  font-weight:blod; 
  padding:40px 0 0 0;
  font-weight:bold; 
}
.dg-testimonials-tab09 .author span{
  font-size:13px;
  font-weight:normal;
  display:block;
  color:#fff;
  text-transform:uppercase;
}
.dg-testimonials-tab09 .last_page, 
.dg-testimonials-tab09 .next_page {
	border: none;
	text-indent: -100px;
	overflow: hidden;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	width: 15px;
	height: 15px;
	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 ;
}
.dg-testimonials-tab09 .last_page:hover, 
.dg-testimonials-tab09 .next_page:hover{ 
	border-left: 2px solid #20a3f0;
	border-bottom: 2px solid #20a3f0;
}
.dg-testimonials-tab09 .next_page {
	left: auto;
	right:10px;
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
/*dg-testimonials-tab10*/
.dg-testimonials-tab10 blockquote{
  font-style:inherit;
  padding:0;
}
.dg-testimonials-tab10 blockquote p{
    font-style: normal;
    text-indent: inherit;
    border: 1px solid #d1d1d1;
    padding: 20px;
    position: relative;
	margin:0 0 35px 0;
}
.dg-testimonials-tab10 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;
}
.dg-testimonials-tab10 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%;
}
.dg-testimonials-tab10 blockquote .pic h2{
  margin:0;
  font-weight:normal;
  font-size:13px;
  color:#393939;
}
.dg-testimonials-tab10 blockquote .pic span{
  font-size:13px;
}
.dg-testimonials-tab10 .last_page, 
.dg-testimonials-tab10 .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:35px;
}
.dg-testimonials-tab10 .next_page {
    margin: 0 0 0 0;
    right: 0;
    left: auto;
}
.dg-testimonials-tab10 .last_page:hover:before{
    border-top: 2px solid #20a3f0;
    border-left: 2px solid #20a3f0;
}
.dg-testimonials-tab10 .next_page:hover:before{
    border-right: 2px solid #20a3f0;
    border-bottom: 2px solid #20a3f0;
}
.dg-testimonials-tab10 .last_page:before,
.dg-testimonials-tab10 .next_page:before {
    content: "";
    border-top: 2px solid #d6d6d6;
    border-left: 2px solid #d6d6d6;
    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 ;
}
.dg-testimonials-tab10 .next_page:before {   
    border-top:0;
	border-left:0;
    border-right: 2px solid #d6d6d6;
    border-bottom: 2px solid #d6d6d6;
    width: 16px;
    height: 16px;
    left: 50%; 
	margin:-7px 0 0 -12px;  
}
/*dg-testimonials-tab11*/
.dg-testimonials-tab11 blockquote{
  font-style:inherit;
  padding:0;
}
.dg-testimonials-tab11 blockquote p{
    font-style: normal;
    text-indent: inherit;
    border: 1px solid #d1d1d1;
    padding: 20px;
    position: relative;
	margin:0 0 35px 0;
	  border-radius:10px;
  -moz-border-radius:10px;
  -webkit-border-radius:10px;
}
.dg-testimonials-tab11 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;
}
.dg-testimonials-tab11 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%;
}
.dg-testimonials-tab11 blockquote .pic h2{
  margin:0;
  font-weight:normal;
  font-size:13px;
  color:#393939;
}
.dg-testimonials-tab11 blockquote .pic span{
  font-size:13px;
}
.dg-testimonials-tab11 .dot{
  right:0;
}
.dg-testimonials-tab11 .dot a{
  background-color:#e3e3e3;
  border:0;
  width:9px;
  height:9px;
}
.dg-testimonials-tab11 .dot a:hover,
.dg-testimonials-tab11 .dot a.actived{
  background-color:#20a3f0;
}
.dg-testimonials-bg04 {
    background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/testimonials/dg-testimonials-bg04.jpg") no-repeat center center;
    background-size: cover;}
/*dg-testimonials-tab12*/
.dg-testimonials-tab12 blockquote{
	
	padding:0 0 30px 0;
	font-style: normal;
	margin:0;
	position:relative;
}
.dg-testimonials-tab12 blockquote:before{
	border-bottom:1px dashed #d3d3d3;
	position:absolute;
	content:"";
	bottom:10px;
	width:100%;
}
.dg-testimonials-tab12 .dot {  
    width: 100%;
    text-align: center;
}
.dg-testimonials-tab12 .dot a{
  width:9px;
  height:9px;
  border:0;
  background:#e3e3e3; 
}
.dg-testimonials-tab12 .dot a.actived{
  background-color:#20a3f0;
}
.dg-testimonials-tab12 blockquote p {   
    text-indent: inherit;   
    font-style: normal;
}
.dg-testimonials-tab12 .testimonials12-box{
  position:relative;
  padding:0 0 0 150px;
}
.dg-testimonials-tab12 .testimonials12-box .pic img{
  position:absolute;
  left:20px;
  top:20px;
  width:96px;
  height:96px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  border:1px solid #666666;
  padding:3px;
}
.dg-testimonials-tab12 .testimonials12-box h2{
  font-size:15px;
  color:#242424;
  margin:0;  
}
.dg-testimonials-tab12 .testimonials12-box h2 span{
  display:block;
  font-weight:normal;
  color:#353535;
}
.dg-testimonials-tab12 .testimonials12-box .line{
  border-bottom:1px solid #d8d8d8;
  width:140px;
  margin:15px 0 15px 0
}
.dg-testimonials-tab12 .col-sm-4{
  border-right:1px dashed #d3d3d3;
}
/*dg-testimonials-tab13*/
.dg-testimonials-tab13 blockquote{
  font-style:inherit;
  padding:0;
}
.dg-testimonials-tab13 blockquote p{
    font-style: normal;
    text-indent: inherit;
    border: 1px solid #d1d1d1;
	border-bottom:2px solid #20a3f0;
    padding: 20px;
    position: relative;
	margin:0 0 35px 0;
	background-color:#e8e8e8;
}
.dg-testimonials-tab13 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;
}
.dg-testimonials-tab13 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%;
}
.dg-testimonials-tab13 blockquote .pic h2{
  margin:0;
  font-weight:normal;
  font-size:13px;
  color:#393939;
}
.dg-testimonials-tab13 blockquote .pic span{
  font-size:13px;
}
.dg-testimonials-tab13 .last_page, 
.dg-testimonials-tab13 .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:15px;
}
.dg-testimonials-tab13 .next_page {
    margin: 0 0 0 0;
    right: 0;
    left: auto;
}
.dg-testimonials-tab13 .last_page:hover:before{
    border-top: 2px solid #20a3f0;
    border-left: 2px solid #20a3f0;
}
.dg-testimonials-tab13 .next_page:hover:before{
    border-right: 2px solid #20a3f0;
    border-bottom: 2px solid #20a3f0;
}
.dg-testimonials-tab13 .last_page:before,
.dg-testimonials-tab13 .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 ;
}
.dg-testimonials-tab13 .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;  
}
/*dg-testimonials-tab14*/
.dg-testimonials-tab14 blockquote{
  font-style:inherit;
  padding:0;
}
.dg-testimonials-tab14 blockquote p{
    font-style: normal;
    text-indent: inherit;
    border: 1px solid #d1d1d1;
	border-top:2px solid #20a3f0;
    padding: 20px;
    position: relative;
	margin:0 0 35px 0;
}
.dg-testimonials-tab14 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;
}
.dg-testimonials-tab14 blockquote .pic img{
  float:left;
  margin:0 20px 0 18px;
  width:50px;
  height:50px;
}
.dg-testimonials-tab14 blockquote .pic h2{
  margin:0;
  font-weight:normal;
  font-size:13px;
  color:#393939;
}
.dg-testimonials-tab14 blockquote .pic span{
  font-size:13px;
}
.dg-testimonials-tab14 .dot{
  right:0;
}
.dg-testimonials-tab14 .dot a{
  width:10px;
  height:10px;
  border:0;
  background-color:#e3e3e3;	
}
.dg-testimonials-tab14 .dot a.actived{
  background-color:#20a3f0;
}
/*dg-testimonials-tab15*/
.dg-testimonials-tab15 blockquote{
  border:1px solid #d1d1d1;
  position:relative;
  padding:20px 20px 20px 105px;
  font-style:inherit;
}
.dg-testimonials-tab15 blockquote p{
  text-indent:inherit;
  font-weight:bold;
  color:#393939;
}
.dg-testimonials-tab15 .pic{
  position:absolute;
  left:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  overflow:hidden;
}
.dg-testimonials-tab15 blockquote h2{
  font-size:15px;
  color:#20a3f0;
  font-style:inherit;
  font-weight:normal;
  margin:0;
  line-height:1.2;
  padding:12px 0 0 0;
}
.dg-testimonials-tab15 blockquote span{  
  font-size:13px;
}
.dg-testimonials-tab15 .dot{
  width:100%; 
  bottom:30px;
  right:15px;
  text-align:right;
}
.dg-testimonials-tab15 .dot a{
  width:10px;
  height:10px;
  border:0;
  background-color:#e3e3e3;	
}
.dg-testimonials-tab15 .dot a.actived{
  background-color:#20a3f0;
}
/*dg-testimonials-tab16*/
.dg-testimonials-tab16 blockquote{
  border:1px solid #d1d1d1;
  position:relative;
  padding:20px 37px 20px 37px;
  font-style:inherit;
  border-top:0;
}
.dg-testimonials-tab16 blockquote p{
  text-indent:inherit;
  font-style:normal;
}
.dg-testimonials-tab16 .pic{
  background-color:#eaeaea;
  padding:18px 24px 18px 24px;
}
.dg-testimonials-tab16 .pic img{  
  width:60px;
  height:60px;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  overflow:hidden;
  float:left;
  margin:0 15px 0 0;  
}
.dg-testimonials-tab16 .pic h2{
  font-size:15px;
  color:#20a3f0;
  font-style:inherit;
  margin:0;
  line-height:1.2;
  padding:12px 0 0 0;
}
.dg-testimonials-tab16 .last_page, 
.dg-testimonials-tab16 .next_page {
    width:27px;
    height: 27px;
    right:60px;	   
    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 ;	
	top:35px;
	background-color:#fff;	
}

.dg-testimonials-tab16 .next_page {
    margin: 0 0 0 0;
    right: 20px;
    left: auto;
}
.dg-testimonials-tab16 .last_page:hover, 
.dg-testimonials-tab16 .next_page:hover{
   background-color:#20a3f0;	
}
.dg-testimonials-tab16 .last_page:hover:before{
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
.dg-testimonials-tab16 .next_page:hover:before{
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.dg-testimonials-tab16 .last_page:before,
.dg-testimonials-tab16 .next_page:before {
    content: "";
    border-top: 1px solid #4d4d4d;
    border-left: 1px solid #4d4d4d;
    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);
		    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-testimonials-tab16 .next_page:before {   
    border-top:0;
	border-left:0;
    border-right: 1px solid #393939;
    border-bottom: 1px solid #393939;
    left: 50%; 
	margin:-5px 0 0 -6px;  
}
/*dg-testimonials-tab17*/
.dg-testimonials-tab17 blockquote{
  position:relative;
  padding:30px 30px 50px 30px;
  font-style:inherit;
  border:1px solid #d1d1d1;
   margin-bottom:20px;
}
.dg-testimonials-tab17 blockquote p{
  text-indent:inherit;
  font-style:normal;
}
.dg-testimonials-tab17 .pic{
  float:left;
  margin:0 30px 0 0;
  width:132px;
}
.dg-testimonials-tab17 blockquote h2{
  font-size:15px;
  color:#20a3f0;
  margin:0;
  line-height:1.2;
  padding:0 0 0 0;
}
.dg-testimonials-tab17 blockquote span {  
    padding: 0 0 20px 0;
    display: inline-block;
	font-size:13px;
}
.dg-testimonials-tab17 .dot{
  bottom:35px;
  left:52px; 
}
.dg-testimonials-tab17 .dot a{
  width:14px;
  height:14px;
  border:1px solid #20a3f0;
}
.dg-testimonials-tab17 .dot a.actived{
  background-color:#20a3f0;  
}
/*dg-testimonials-tab18*/
.dg-testimonials-tab18 blockquote{
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    padding: 40px 38px 50px 38px;
	font-style:normal;
	margin:0 0 26px 0;
}
.dg-testimonials-tab18 blockquote p{
   font-style:normal;
   color:#fff;
   margin:0 0 8px 0;
   text-indent:inherit;
}
.dg-testimonials-tab18 blockquote .pic{
    position: absolute;
    height: 50px;
    bottom: -25px;
}
.dg-testimonials-tab18 blockquote .pic span{
  vertical-align:bottom;
  font-size:13px;
}
.dg-testimonials-tab18 img {
    max-width: 100%;
    max-height: 100%;
}
.dg-testimonials-tab18 .last_page, 
.dg-testimonials-tab18 .next_page {
    width: 26px;
    height: 26px;     
    bottom:-4px;  
	border:0;
    right: 0;
    left: auto;
    font-size: 0;
    overflow: hidden;
    text-indent: -999;	
	    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 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 ;
	 background-color: rgba(0,0,0,0.8);
}
.dg-testimonials-tab18 .last_page {
    margin: 0 35px 0 0;
}
.dg-testimonials-tab18 .next_page{
    margin: 0 0 0 0;
}
.dg-testimonials-tab18 .last_page:hover, 
.dg-testimonials-tab18 .next_page:hover{
   background-color:#20a3f0;   
}
.dg-testimonials-tab18 .last_page:hover:before{
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
.dg-testimonials-tab18 .next_page:hover:before{
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.dg-testimonials-tab18 .last_page:before,
.dg-testimonials-tab18 .next_page:before {
    content: "";
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    width: 6px;
    height: 6px;
    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);
		    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-testimonials-tab18 .next_page:before {   
    border-top:0;
	border-left:0;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    left: 50%;   
}
/*dg-testimonials-tab19*/
.dg-testimonials-tab19{
  margin:0 0 0 23px;
  overflow:inherit;  
}
.dg-testimonials-tab19 blockquote{
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    padding: 0 0 0 140px;
    position: relative;
	font-style:normal;
	overflow:hidden;
}
.dg-testimonials-tab19 blockquote p{
   font-style:normal;
   text-indent:inherit;
   color:#fff;
}
.dg-testimonials-tab19 blockquote span{
  font-size:13px;
  display: block;
  padding: 10px 0 0 0;
}
.dg-testimonials-tab19 blockquote .pic{
  left:1px;
  position:absolute;
  height: 100%;
  width:103px;
}
.dg-testimonials-tab19 blockquote .pic:before {
    border-top: 1px solid #000;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.dg-testimonials-tab19 blockquote .pic:after{
    border-top: 1px solid #000;
    content: "";
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.dg-testimonials-tab19 blockquote .con{
  padding:30px 30px 30px 0;
}
.dg-testimonials-tab19 .icon{
  width:47px;
  height:47px;
  text-align:center;
  line-height:47px;
    border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  background-color:#000;
  color:#fff;
  font-size:20px;
  left: -23px;
  z-index: 999;
  top: -23px;
  position:absolute;
}
.dg-testimonials-tab19 .dot{
  bottom:35px;
  right:15px; 
}
.dg-testimonials-tab19 .dot a{
  width:10px;
  height:10px;
  border:0;
  background-color:#fff;
  border-radius:2px;
  -moz-border-radius:2px;
  -webkit-border-radius:2px;
}
.dg-testimonials-tab19 .dot a.actived{
  background-color:#20a3f0;  
}
/*dg-testimonials-tab20*/
.dg-testimonials-tab20 blockquote{
  font-style:inherit;
  padding:0 0 0 168px;
  margin:0;
}
.dg-testimonials-tab20 blockquote p{
    font-style: normal;
    text-indent: inherit;
    padding: 30px 135px;
    position: relative;
	margin:0 0 35px 0;
	background-color:#20a3f0;
	color:#fff;
	float:left;
}
.dg-testimonials-tab20 blockquote p:before {
    border: 12px solid transparent;
    border-right: 50px solid #20a3f0;
    content: "";
    display: block;
    position: absolute;
    left: -46px;
    top: 28px;
    width: 0;
    margin: 0;
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(319deg);
    -o-transform: rotate(360deg);
}
.dg-testimonials-tab20 blockquote .pic{
    position: absolute;
    left: 0;
    text-align: center;
	width:110px;
}
.dg-testimonials-tab20 blockquote .pic img{
    width:101px;
	height:101px;
}
.dg-testimonials-tab20 blockquote .pic h2{
    margin: 0;
    font-size: 15px;
    color: #20a3f0;
    font-style: italic;
    line-height: 1.2;
    padding: 5px 0 0 0;
}
.dg-testimonials-tab20 blockquote .pic span{
    font-size: 13px;
    font-style: italic;
    text-transform: uppercase;
	color: #20a3f0;
}
.dg-testimonials-tab20 blockquote .small-l{
    right: 40px;
    padding: 0;
    top: 50%;
    left: auto;
    margin: -22px 0 0 0;
}
.dg-testimonials-tab20 blockquote .small-r{
    left: 40px;
    padding: 0;
    top: 50%;
    right: auto;
    margin: -22px 0 0 0;
}
.dg-testimonials-tab20 blockquote .small-l:before,
.dg-testimonials-tab20 blockquote .small-r:before{
  display:none;
}
.dg-testimonials-tab20 .dot{
  width:100%;
  text-align:center;
}
.dg-testimonials-tab20 .dot a{
  width:18px;
  height:18px;
  background-color:#dbdbdb;
  border:0;
}
.dg-testimonials-tab20 .dot a.actived{
  background-color:#333333;
}
/*dg-testimonials-tab21*/
.dg-testimonials-tab21 blockquote{
    font-style: inherit;
    padding: 55px 215px 55px 90px;
    margin: 0;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}
.dg-testimonials-tab21 blockquote p{
    font-style: normal;
    text-indent: inherit;
}
.dg-testimonials-tab21 blockquote .con{
   padding:25px 0;
}
.dg-testimonials-tab21 blockquote .icon{
    position: absolute;
    left: 10px;
    text-align: center;
	width:47px;
	height:47px;
	line-height:47px;
	text-align:center;
	border:1px solid #cecece;
	color:#cecece;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
}
.dg-testimonials-tab21 blockquote .pic{
    border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  width:177px;
  height:177px;
  overflow:hidden;
  position: absolute;
  right: 0;
  top:55px;
}
.dg-testimonials-tab21 blockquote .con span{
    font-size: 13px;
	display: block;
    padding: 15px 0 0 0;
}
.dg-testimonials-tab21 .dot{ 
  text-align:left;
  bottom:40px;
  left:90px;
}
.dg-testimonials-tab21 .dot a{
  width:10px;
  height:10px;
  border:1px solid #dbdbdb
}
.dg-testimonials-tab21 .dot a.actived{
  background-color:#20a3f0;
  border:#20a3f0
}
/*dg-testimonials-tab22*/
.dg-testimonials-tab22 .testimonials22-box{
    font-style: inherit;
    padding:20px;
    margin: 0 0 35px 0;  
    border: 1px solid #d6d6d6;
	  border-radius:5px;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
  position:relative;
}
.dg-testimonials-tab22 blockquote{
   padding:30px 0 0 0;
   margin:0 0 40px 0;
 }
.dg-testimonials-tab22 blockquote p{
    font-style: normal;
    text-indent: inherit;
}
.dg-testimonials-tab22 blockquote .pic{
   width: 60px;
    height: 46px;
    background-color: #20a3f0;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    line-height: 45px;
    position: absolute;
    top: -30px;
    right: 20px;
    z-index: 999;
	font-weight:bold;
	font-style:normal;
}
.dg-testimonials-tab22 blockquote .pic:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    border: 8px solid transparent;
    border-right: 25px solid #20a3f0;
    /* width: 8px; */
    /* height: 5px; */
    margin: 0 0 0 -19px;
    bottom: -10px;
    transform: rotate(319deg);
    -ms-transform: rotate(319deg);
    -moz-transform: rotate(319deg);
    -webkit-transform: rotate(319deg);
    -o-transform: rotate(319deg);
}

.testimonials22-box span {
    vertical-align: top;
    display: inline-block;
    padding: 3px 0 0 15px;
}
.dg-testimonials-tab22 blockquote h2{
  color:#323232;
  font-size:15px;
  font-style:normal;
}
.dg-testimonials-tab22 blockquote h2 em{
  color:#eaeaea;
  font-size:30px;
}
.dg-testimonials-tab22 .dot{ 
  text-align:center;
  bottom:0;
  width:100%;
}
.dg-testimonials-tab22 .dot a{
  width:21px;
  height:21px;
  border:2px solid #d9d9d9
}
.dg-testimonials-tab22 .dot a:hover{
  background-color:#d9d9d9;
}
/*dg-testimonials-tab23*/
.dg-testimonials-tab23{
	text-align:center;
}
.dg-testimonials-tab23 blockquote{
	width:54%;
	margin:0 5% 0 0;
	padding:45px;
	display:inline-block;
	vertical-align:middle;
	text-align:left;
	background-color:#FFF;
}
.dg-testimonials-tab23 blockquote:before{
	content:"";
	border:20px solid transparent;
	border-left-color:#FFF;
	position:absolute;
	top:50%;
	left:100%;
	margin-top:-20px;
}
.dg-testimonials-tab23 blockquote ,
.dg-testimonials-tab23 blockquote p{
	font-style:normal;
	text-indent:0;
	color:#666666;
}
.dg-testimonials-tab23 blockquote h2{
	position:static;
	padding:20px 0 0;
	color:#333333;
	font-size:14px;
}
.dg-testimonials-tab23 blockquote h2 span {
	color:#20a3f0;
}
.dg-testimonials-tab23 li {
}
.dg-testimonials-tab23 .pic {
	width:200px;
	height:200px;
	max-width:20%;
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
	border:2px solid #FFF;
	display:inline-block;
	vertical-align:middle;
	overflow:hidden;
} 
.dg-testimonials-tab23 .pic img {
	max-width:100%;
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
}
.dg-testimonials-tab23 .last_page, 
.dg-testimonials-tab23 .next_page{
	right:auto;
	left:0;
	top:50%;
	margin:-10px 20px 0;
	border-color:#FFF;
	border-width:4px;
	bottom:0px;
	height:19px;
	width:19px;
	color:#27cdf6;
	border-radius:			0;
	-moz-border-radius:		0;
	-webkit-border-radius:	0;
	border-top:none;
	border-right:none;
	overflow:hidden;
	text-indent:-999px!important;
	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 */
	box-shadow: -1px 1px 1px rgba(0,0,0,0.1);
}
.dg-testimonials-tab23 .next_page{
	left:auto;
	right:0;
	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 */
}
.dg-testimonials-bg08{
  background-color:#20a3f0;
}
/*dg-testimonials-tab24*/
.dg-testimonials-tab24{
	text-align:center;
}
.dg-testimonials-tab24 blockquote{
	width:65%;
	margin:0 50 0 0;
	padding:35px 0 35px 35px;
	display:inline-block;
	vertical-align:middle;
	text-align:left;
	background-color:#FFF;
}
.dg-testimonials-tab24 blockquote:before{
	content:"";
	border:20px solid transparent;
	border-left-color:#FFF;
	position:absolute;
	top:50%;
	left:100%;
	margin-top:-20px;
}
.dg-testimonials-tab24 blockquote ,
.dg-testimonials-tab24 blockquote p{
	font-style:normal;
	text-indent:0;
	color:#666666;
}
.dg-testimonials-tab24 blockquote h2{
	position:static;
	padding:20px 0 0;
	color:#333333;
	font-size:15px;
}
.dg-testimonials-tab24 blockquote h2 span {
	font-weight:normal;
	font-size:13px;
}
.dg-testimonials-tab24 li {
}
.dg-testimonials-tab24 .pic {
	width:206px;
	height:207px;
	max-width:20%;
	border:2px solid #FFF;
	display:inline-block;
	vertical-align:middle;
	overflow:hidden;
} 
.dg-testimonials-tab24 .pic img {
	max-width:100%;
}
.dg-testimonials-tab24 .last_page, 
.dg-testimonials-tab24 .next_page {
    width:42px;
    height: 100%;
    left:0;	   
    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 ;	
	top:0;
	border:1px solid #d3d3d3;	
	border-radius:			0%;
	-moz-border-radius:		0;
	-webkit-border-radius:	500;
}
.dg-testimonials-tab24 .next_page {
    margin: 0 0 0 0;
    right: 0;
    left: auto;
}
.dg-testimonials-tab24 .last_page:hover, 
.dg-testimonials-tab24 .next_page:hover{
   border:1px solid #20a3f0;
}
.dg-testimonials-tab24 .last_page:hover:before{
    border-top: 1px solid #20a3f0;
    border-left: 1px solid #20a3f0;
}
.dg-testimonials-tab24 .next_page:hover:before{
    border-right: 1px solid #20a3f0;
    border-bottom: 1px solid #20a3f0;
}
.dg-testimonials-tab24 .last_page:before,
.dg-testimonials-tab24 .next_page:before {
    content: "";
    border-top: 1px solid #d3d3d3;
    border-left: 1px solid #d3d3d3;
    width:12px;
    height: 12px;
    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);
		    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-testimonials-tab24 .next_page:before {   
    border-top:0;
	border-left:0;
    border-right: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
    left: 50%; 
	margin:-5px 0 0 -6px;  
}
/*dg-testimonials-circle*/
.dg-testimonials-circle {
	overflow: hidden;
}
.dg-testimonials-circle blockquote {
	padding: 0px 0px 25px;
	margin: 0px;
}
.dg-testimonials-circle blockquote p {
	color: #8a8a8a;
	font-size: 16px;
	line-height: 1.8;
	padding: 0px;
	margin: 0px;
	text-indent: 0px;
	font-style:normal;
}
.dg-testimonials-circle blockquote small {
	font-size: 16px;
	color: #3b9cf7;
	position: static;
	text-align: center;
	padding-top: 12px;
	font-style:normal;
}
.dg-testimonials-circle blockquote small:before {
	content: "";
}
.dg-testimonials-circle .pic_name {
	font-size: 20px;
	color: #fff;
	font-weight:normal;
	margin-bottom: 20px;	
}
.dg-testimonials-circle h2.testimonials-circle-title{
   margin:0 0; 
   padding:0;
}
.slider_wrapper.dg-testimonials-circle .circle_slider_nav_right.circle_slider_no_border span {  
    background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/testimonials/testimonials-circle.png") no-repeat right 8px !important;

}
.slider_wrapper.dg-testimonials-circle .circle_slider_nav_left.circle_slider_no_border span{
    background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/testimonials/testimonials-circle.png") no-repeat left 8px !important;
}
.slider_wrapper.dg-testimonials-circle span.all_around_text_span_down {
    padding: 10px 0 0 0!important;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
}
h2.testimonials-circle-title {
    font-size: 15px;
    font-style: italic;
    margin: 0;
    padding: 0 0 8px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
 .Testimonials02-tab img {  
    height: 200px;
    width: 200px;
}
.dg-testimonials-tab21 blockquote .pic,
.dg-testimonials-tab23 .pic {  
    height: 100px;  
    width: 100px;
}
.testimonials02-box {  
    padding: 20px 20px 60px 20px;
}
.Testimonials04-tab {  
    padding: 20px;
}
.dg-testimonials-tab12 .testimonials12-box {
    padding: 0;  
}
.dg-testimonials-tab12 .testimonials12-box .pic img { 
    left: 0;
    top: 0;
	position:relative;
}
.Testimonials07-tab li {  
    padding: 30px 30px 0 140px;
}
.Testimonials07-tab li.i-right {
    padding: 30px 0 0 170px;
}
 .Testimonials07-tab li.i-right .pic {
    left: 30px;
}
.Testimonials07-tab .pic{
  left:0;
}
}
@media only screen and (max-width: 768px) {
.dg-testimonials-tab01 blockquote:before {  
    font-size: 35px;
    left: 0;   
}
.dg-testimonials-tab01 blockquote:after {   
    right: 0;
	font-size: 35px;   
}
.dg-testimonials-tab01 blockquote p {   
    padding: 0 50px;
}
.dg-testimonials-tab07 .dot a img {
    width: 50px;
    height: 50px;
}
.dg-testimonials-tab07 .dot a{
  margin:0;
}
.dg-testimonials-tab07 li blockquote {
    padding: 110px 60px 70px 60px;  
}
.dg-testimonials-tab09 blockquote {  
    margin: 0 30px;
    padding: 70px 15px 50px;
}
.dg-testimonials-tab10 .last_page, 
.dg-testimonials-tab10 .next_page,
.dg-testimonials-tab13 .last_page, 
.dg-testimonials-tab13 .next_page{
  bottom:70px;
}
.dg-testimonials-tab12 .testimonials12-box .pic img{
  left:0;
  position:relative;
  top:0;
}
.dg-testimonials-tab12 .testimonials12-box {
    padding: 0 0 20px 0;
}
.Testimonials14-tab .Testimonials14-bottom {
    position: absolute;
    bottom: -35px;
}
.dg-testimonials-tab16 blockquote{
   padding:15px;
}
.dg-testimonials-tab19{
  margin:0;
}
.dg-testimonials-tab19 .icon{
  display:none;
}
.dg-testimonials-tab20 blockquote .pic {
    position: relative;
}
.dg-testimonials-tab20 blockquote { 
    padding: 0;
}
.dg-testimonials-tab20 blockquote .small-l {  
    right: 0;
	bottom:-1px;
	top:auto;
	margin:0;
}
.dg-testimonials-tab20 blockquote .small-r {
    left: 0;
    top: 0;
    margin: 0; 
}
.dg-testimonials-tab20 blockquote p {  
    padding: 30px 50px;
}
.dg-testimonials-tab21 blockquote {  
    padding: 55px 110px 55px 60px;
}
.dg-testimonials-tab21 blockquote .icon {
   left: 0;    
}
.dg-testimonials-tab21 blockquote .pic,
.dg-testimonials-tab23 .pic {  
    height: 100px;  
    width: 100px;
}
.dg-testimonials-tab24 .pic,
.dg-testimonials-tab23 .pic {   
    max-width: 100%;
	padding:0 0 0 0;
}
.dg-testimonials-tab24 blockquote {  
    padding: 0 55px; 
    width: 100%;
}
.dg-testimonials-tab23 blockquote {   
    margin: 0 30px 10px 30px;
    padding: 15pxpx;
	width:auto;
}
.dg-testimonials-tab23 .last_page, .dg-testimonials-tab23 .next_page{
  margin: -10px 4px
}
.dg-testimonials-tab23 blockquote:before{
  display:none;
}
.dg-testimonials-tab24 .pic{
  padding:0 15px;}





.Testimonials01-tab{
  margin:0 0 50px 0;
}
.testimonials02-box {  
    margin: 30px 0 48px 0;
}
.testimonials02-box {  
    padding: 30px 15px 70px 15px;   
}
.Testimonials06-tab {
    float: none;
    width: 100%;
}
.Testimonials07-tab .pic{
  left:0;
  position:relative;
  top:0;
}
.Testimonials07-tab li.i-right {
    padding: 30px 0 0 0;
	margin:0 0 20px 0;
}
.Testimonials07-tab li {  
    text-align: left;
    width: 100%;
	padding: 30px 0 0 0;
}
.Testimonials07-tab li.i-right .pic {
    left: 0;
	position:relative;
	top:0;
}
.Testimonials08-tab em.fa{
  left:15px;
}
.Testimonials08-tab {
    padding: 15px 15px 15px 77px;
}
.Testimonials07-tab li:first-child:before,
.Testimonials07-tab li:last-child:before{
  display:none;
}
.Testimonials15-tab {  
    padding: 0 0 0 120px;  
}
.Testimonials17-tab .pic {   
    left: 0;
}
.Testimonials17-tab { 
    padding: 0 0 0 110px;
}
.Testimonials18-tab .pic{
  left:10px;
}
.Testimonials18-tab {
    padding: 30px 10px 30px 115px;
}
.dg-testimonials-tab19 blockquote {  
    padding: 0 0 0 120px;
}
.Testimonials22-tab .pic img {  
    height: 80px;
    width: 80px;
}
.Testimonials22-con {   
    margin-right: 1%;
    padding: 15px;  
    width: 65%;
}
.Testimonials21-tab,
.Testimonials04-tab,
.Testimonials12-tab .Testimonials12-con{
  padding:15px;
}
.Testimonials21-tab .pic {  
    text-align: left;
    width: 100%;
}
.Testimonials21-com {
    float: none;
    margin: 0 0 15px;
    width: 100%;
}
}



	



/*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/20073-unlimitedcolorspack-055/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: 20px;
    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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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;
}
.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/20073-unlimitedcolorspack-055/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 #FF8726;
	position: absolute;
	top: 50%;
	left: 100%;
	background: #ffffff;
	color: #FF8726;
	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;
}
.loaded-list14 .progress .bar span{
  border-color:#fbc166;
}
.loaded-list14 .progress .bar.color-2{
  background-color:#b65ccd;
}
.loaded-list14 .progress .bar.color-2 span{
  border-color:#ef8494;
}
.loaded-list14 .progress .bar.color-3{
  background-color:#20a3f0;
}
.loaded-list14 .progress .bar.color-3 span{
  border-color:#20a3f0;
}
.loaded-list14 .progress .bar.color-4{
  background-color:#fbc166;
}
.loaded-list14 .progress .bar.color-4 span{
  border-color:#1bbc9b;
}
.loaded-list14 .progress .bar span {
	border:2px solid #FF8726;
	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;
	}





	



.promo-title {
	font-size:25px;
	color:#000000;
}
.promo-bg01{
	background-color:#222e33;
}
.promo-bg02{
	background-color:#20a3f0;
}
.promo-bg03{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/promo-bg03.jpg") no-repeat center center;
	background-size:cover;
}
.promo-bg04{
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/promo-bg04.jpg") no-repeat center center;
	background-size:cover;
}

.promo-box01{
	overflow:hidden;
}
.promo-box01 .promo-left{
	float:left;
	width:70%;
}
.promo-box01 .btn{
	float:right;
	border:1px solid #333333;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	display:inline-block;
	padding:18px 31px;
	font-size:13px;
	color:#333333;
	margin-top:20px;
}
.promo-box01 .btn:hover{
	color:#FFF;
	background-color:#333333;
}
.promo-box01 h3{
	font-size:20px;
	color:#000000;
	font-weight:normal;
	margin:0 0 12px;
}
@media only screen and (max-width: 767px) {
	.promo-box01 .promo-left{
		float:none;
		width:auto;
	}
	.promo-box01 .btn{
		float:none;
		margin-top:20px;
	}
}
.promo-box02{
	padding:30px ;
	background-color:#20a3f0;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	overflow:hidden;
	color:#FFF;
}
.promo-box02 .promo-left{
	float:left;
	width:70%;
}
.promo-box02 .btn{
	float:right;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	display:inline-block;
	padding:16px 31px;
	font-size:13px;
	color:#333333;
	min-width:188px;
	text-align:center;
	background-color:#ffffff;
	font-size:15px;
	font-weight:bold;
	margin-top:10px;
}
.promo-box02 .btn:hover{
	color:#FFF;
	background-color:#333333;
}
.promo-box02 h3{
	font-size:20px;
	color:#000000;
	margin:0 0 22px;
}
.promo-box02 h3 span{
	color:#FFF;
}
@media only screen and (max-width: 767px) {
	.promo-box02 .promo-left{
		float:none;
		width:auto;
	}
	.promo-box02 .btn{
		float:none;
		margin-top:20px;
	}
}
.promo-box03{
	padding:38px ;
	border-left:10px solid #20a3f0;
	overflow:hidden;
	color:#FFF;
	position:relative;
	z-index:1;
}
.promo-box03:before{
	content:"";
	border:1px solid #20a3f0;
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	opacity:0.3;
	z-index:-1;
}
.promo-box03 .promo-left{
	float:left;
	width:70%;
}
.promo-box03 .btn{
	float:right;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	display:inline-block;
	padding:17px 31px 13px;
	font-size:13px;
	color:#fff;
	min-width:188px;
	text-align:center;
	background-color:#20a3f0;
	font-size:15px;
	font-weight:bold;
	margin-top:15px;
	border-bottom:3px solid rgba(0,0,0,0.3);
}
.promo-box03 .btn:hover{
	color:#FFF;
	background-color:#333333;
}
.promo-box03 h3{
	font-size:20px;
	color:#ffffff;
	margin:0 0 19px;
	font-weight:normal;
}
.promo-box03 h3 span{
	color:#FFF;
}
@media only screen and (max-width: 767px) {
	.promo-box03 .promo-left{
		float:none;
		width:auto;
	}
	.promo-box03 .btn{
		float:none;
		margin-top:20px;
	}
}
.promo-box04 {
	border:1px solid #cfcfcf;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding:25px;
	overflow:hidden;
}
.promo-box04 .promo-icon {
	width:90px;
	height:90px;
	text-align:center;
	line-height:90px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	display:block;
	background-color:#2f2f2f;
	color:#FFF;
	font-size:20px;
	float:left;
	margin-right:40px;
}
.promo-box04 .promo-left{
	float:left;
	width:60%;
}
.promo-box04 .btn{
	float:right;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	display:inline-block;
	padding:17px 31px 13px;
	font-size:13px;
	color:#2f2f2f;
	min-width:188px;
	text-align:center;
	font-size:15px;
	margin-top:25px;
	border:1px solid #cfcfcf;
	border-bottom:3px solid #2f2f2f;
}
.promo-box04 .btn:hover{
	color:#FFF;
	background-color:#333333;
}
.promo-box04 .btn .fa{
	margin-right:5px;
	font-size:20px;
}
.promo-box04 h3{
	font-size:20px;
	color:#2f2f2f;
	margin:10px 0 19px;
}

@media only screen and (max-width: 767px) {
	.promo-box04 .promo-icon{
		float:none;
	}
	.promo-box04 .promo-left{
		float:none;
		width:auto;
	}
}
.promo-box05{
	overflow:hidden;
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/promo-box05-bg.jpg");
	padding:30px;
}
.promo-box05 .promo-left{
	float:left;
	width:70%;
}
.promo-box05 p {
	margin:0;
}
.promo-box05 .btn{
	float:right;
	background-color:#2f2f2f;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	display:inline-block;
	padding:16px 31px;
	font-size:13px;
	color:#FFF;
	margin-top:0px;
	position:relative;
}
.promo-box05 .btn:before{
	content:"";
	position:absolute;
	top:-3px;
	left:-3px;
	right:-3px;
	bottom:-3px;
	border:1px solid #2f2f2f;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}

.promo-box05 .btn:hover{
	color:#FFF;
	background-color:#333333;
}
.promo-box05 h3{
	font-size:20px;
	color:#000000;
	font-weight:normal;
	margin:0 0 12px;
}
@media only screen and (max-width: 767px) {
	.promo-box05 .promo-left{
		float:none;
		width:auto;
	}
	.promo-box05 .btn{
		float:none;
		margin-top:20px;
	}
}

.promo-box06{
	overflow:hidden;
	background:#ffffff;
	padding:30px;
}
.promo-box06 .promo-left{
	float:left;
	width:70%;
}
.promo-box06 p {
	margin:0;
}
.promo-box06 .btn{
	float:right;
	background-color:#2f2f2f;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	display:inline-block;
	padding:16px 31px;
	font-size:15px;
	color:#FFF;
	margin-top:5px;
	position:relative;
}
.promo-box06 .btn:hover{
	color:#FFF;
	background-color:#333333;
}
.promo-box06 h3{
	font-size:20px;
	color:#20a3f0;
	margin:0 0 22px;
}
.promo-box06 h3 span{
	color:#000000;
}

@media only screen and (max-width: 767px) {
	.promo-box06 .promo-left{
		float:none;
		width:auto;
	}
	.promo-box06 .btn{
		float:none;
		margin-top:20px;
	}
}
.promo-box07{
	overflow:hidden;
	border:1px solid #cfcfcf;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	padding:30px;
}
.promo-box07 .promo-left{
	float:left;
	width:70%;
}
.promo-box07 p {
	margin:0;
}
.promo-box07 .btn{
	float:right;
	background-color:#20a3f0;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	display:inline-block;
	padding:16px 31px;
	font-size:15px;
	color:#FFF;
	margin-top:5px;
	position:relative;
	font-weight:bold;
}
.promo-box07 .btn:hover{
	color:#FFF;
	background-color:#333333;
}
.promo-box07 .btn span{
	margin-right:5px;
	font-size:18px;
}
.promo-box07 h3{
	font-size:20px;
	color:#000000;
	margin:0 0 22px;
}
.promo-box07 h3 span{
	color:#20a3f0;
}

@media only screen and (max-width: 767px) {
	.promo-box07 .promo-left{
		float:none;
		width:auto;
	}
	.promo-box07 .btn{
		float:none;
		margin-top:20px;
	}
}

.promo-box08{
	overflow:hidden;
	border:1px solid #cfcfcf;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	padding:35px 30px 30px;
	text-align:center;
}
.promo-box08 .btn{
	background-color:#20a3f0;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	display:inline-block;
	padding:16px 31px;
	font-size:15px;
	color:#FFF;
	margin-top:15px;
	position:relative;
	font-weight:bold;
	min-width:195px;
}
.promo-box08 .btn:hover{
	color:#FFF;
	background-color:#333333;
}
.promo-box08 .btn span{
	margin-right:5px;
	font-size:18px;
}
.promo-box08 h3{
	font-size:20px;
	color:#000000;
	margin:0 0 22px;
}
.promo-box08 h3 span{
	color:#20a3f0;
}
.promo-box09{
	overflow:hidden;
	padding:0;
	text-align:center;
	color:#FFF;
}
.promo-box09 .btn{
	border:1px solid #ffffff;
	display:inline-block;
	padding:14px 24px;
	font-size:15px;
	color:#FFF;
	margin-top:15px;
	position:relative;
	font-weight:bold;
	min-width:170px;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	margin:0px 10px 10px;
}
.promo-box09 .btn:hover{
	color:#FFF;
	background-color:rgba(255,255,255,0.5);
	border-color:transparent;
}
.promo-box09 .btn span{
	margin-right:5px;
	font-size:18px;
}
.promo-box09 h3{
	font-size:30px;
	color:#FFF;
	margin:0 0 12px;
	line-height:1.2;
	font-weight:normal;
}
.promo-box09 h3 span{
	color:#20a3f0;
}

.promo-box10{
	overflow:hidden;
	padding:0;
	text-align:center;
}
.promo-box10 .btn{
	display:inline-block;
	padding:16px 24px 14px;
	font-size:13px;
	font-weight:bold;
	color:#FFF;
	margin-top:15px;
	position:relative;
	font-weight:bold;
	min-width:190px;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	margin:0px 10px 10px;
	background-color:#20a3f0;
	border-bottom:3px solid rgba(0,0,0,0.2);
}
.promo-box10 .btn:hover{
	background-color:#000;
}
.promo-box10 .btn span{
	margin-right:5px;
	font-size:18px;
}
.promo-box10 h3{
	font-size:25px;
	color:#666666;
	margin:0 0 12px;
	line-height:1.2;
}
.promo-box10 h3:after{
	content:"";
	width:36px;
	border-bottom:2px solid #20a3f0;
	display:block;
	margin:20px auto 24px;
}
.promo-box11{
	overflow:hidden;
	padding:0;
	text-align:center;
}
.promo-box11 .btn{
	display:inline-block;
	padding:14px 24px ;
	font-size:15px;
	font-weight:bold;
	color:#FFF;
	margin-top:15px;
	position:relative;
	font-weight:bold;
	min-width:190px;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	margin:0px 10px 10px;
	background-color:#20a3f0;
}
.promo-box11 .btn:hover{
	background-color:#353535;
}
.promo-box11 .btn span{
	margin-right:5px;
	font-size:18px;
}
.promo-box11 h4{
	font-size:25px;
	color:#ffffff;
	margin:0 0 18px;
	line-height:1.2;
}
.promo-box11 h3{
	font-size:30px;
	color:#ffffff;
	margin:0 0 50px;
	line-height:1.2;
}

.promo-box12 {
	border:1px solid #cfcfcf;
	padding:30px;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	margin-bottom:12px;
}
.promo-box12 h3{
	font-size:20px;
}
.promo-box12 .btn{
	background-color:#20a3f0;
	color:#FFF;
	font-size:15px;
	font-weight:bold;
	padding:10px 30px;
} 
.promo-box12 .btn:hover{
	background-color:#333;
} 
.promo-box13 {
	background-color:#20a3f0;
	text-align:center;
	color:#FFF;
	padding:30px;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	margin-bottom:12px;
}
.promo-box13 h3{
	font-size:20px;
	margin-bottom:10px;
	color:#FFF;
}
.promo-box13 .btn{
	background-color:#FFF;
	color:#20a3f0;
	font-size:15px;
	font-weight:bold;
	padding:10px 30px;
} 
.promo-box13 .btn:hover{
	background-color:#333;
} 
.promo-box14 {
	background-color:#353535;
	text-align:right;
	color:#FFF;
	padding:30px;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	margin-bottom:12px;
}
.promo-box14 h3{
	font-size:20px;
	margin-bottom:10px;
	color:#FFF;
}
.promo-box14 .btn{
	background-color:#7e7e7e;
	color:#FFF;
	font-size:15px;
	font-weight:bold;
	padding:10px 30px;
} 
.promo-box14 .btn:hover{
	background-color:#20a3f0;
} 
 
 
 
 
 



.flipbox-bg01 {
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/flipbox-bg01.jpg") no-repeat center center;
	background-size:cover;
}
.flipbox-bg02 {
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/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:#353535;
	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-bottom:35px;
}
.flip-box01 .back .btn {
	border:1px solid #ffffff;
	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;
}
.flip-box01 .back .btn:hover{
	background-color:#20a3f0;
	border-color:transparent;
}

.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:before {
	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 25px;
	white-space:normal;
}
.flip-box02 .front img{
	max-width:100%;
	margin-bottom:40px;
}
.flip-box02 .front h3{
	color:#363636;
	font-size:16px;
	margin-bottom:25px;
}
.flip-box02 .back {
	background-color:#20a3f0;
	text-align:center;
	padding:70px 55px;
	color:#FFF;
}
.flip-box02 .back h3{
	font-size:15px;
	color:#ffffff;
	margin-bottom:25px;
}
.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-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:#05e2ff;
	opacity:0.62;
	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:#001835;
	margin-bottom:14px;
}
.flip-box03 .front h3{
	color:#FFF;
	font-size:15px;
	margin-bottom:25px;
	font-weight:normal;
}
.flip-box03 .back {
	border:1px solid #05e2ff;
	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-bottom:25px;
}
.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-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-bottom:25px;
}
.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 32px;
}

.flip-box04 .back {
	text-align:center;
	padding:42px 18px;
	color:#FFF;
	background-color:#20a3f0;
}
.flip-box04 .back h3{
	color:#fff;
	font-size:15px;
	font-weight:normal;
	margin-bottom:25px;
}
.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 .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 .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-box04 .back p{
	max-width:80%;
	margin:auto;
}

.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:before {
	content:"";
	display:inline-block;
	vertical-align:middle;
	height:100%;
	width:0;
	overflow:hidden;
}
.flip-box05 .front .v-center {
	display:inline-block;
	vertical-align:middle;
	margin:0px 45px;
	white-space:normal;
}
.flip-box05 .front img{
	max-width:100%;
	margin-bottom:25px;
}
.flip-box05 .front h3{
	color:#252525;
	font-size:15px;
	margin-bottom:20px;
	font-weight:normal;
}
.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 25px;
	color:#FFF;
}
.flip-box05 .back h3{
	font-size:15px;
	color:#ffffff;
	margin-bottom:25px;
}
.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:#333333;
	font-size:58px;
	margin-bottom:15px;
}
.flip-box06 .front .v-center > h3{
	font-size:15px;
	color:#20a3f0;
}
.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;
}
.flip-box06 .back h3{
	color:#ffffff;
	padding:50px 0 6px;
}
.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:#2a2a2a;
	font-size:15px;
	margin-bottom:15px;
	font-weight:normal;
}
.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:#f1f1f1;
	font-size:15px;
	font-weight:normal;
	margin-bottom:25px;
}
.flip-box07 .back .btn {
	color:#f1f1f1;
}
.flip-box07 .back .btn:hover{
	color:#06abea;
}

.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;
}

.flip-box08 .front .fa{
	font-size:24px;
	margin-bottom:25px;
	color:#20a3f0;
	margin-bottom:14px;
	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:#000000;
	font-size:15px;
	margin-bottom:15px;
	font-weight:normal;
}
.flip-box08 .back {
	background-color:#20a3f0;
	text-align:center;
	padding:42px 18px;
	color:#f1f1f1;
}
.flip-box08 .back h3{
	color:#f1f1f1;
	font-size:15px;
	font-weight:normal;
	margin-bottom:25px;
}
.flip-box08 .back .btn {
	color:#f1f1f1;
}
.flip-box08 .back .btn:hover{
	color:#06abea;
}






.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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/images/dividers-03.png") left top;
    height: 5px;
    width: 100%;
    clear: both;
    display: block;
    overflow: hidden;
}




@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/bootstrap.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/shortcodes.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/accordions.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/alerts-message.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/animated-columns.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/botton.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/dg-title.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/clients.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/tabs.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/pages.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/iconbox.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/pricing.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/blog.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/portfolios.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/imagebox.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/testimonial.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/chart.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/promo-boxes.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/flip-box.css");
@import url("/Portals/_default/skins/20073-unlimitedcolorspack-055/css/dividers.css");
/* CSS Document */
html, body {
	margin: 0px;
	padding: 0px;
	font: normal 13px/1.5 'Raleway', sans-serif;
	color: #8a8989;
	height: 100%;
}
p {
	margin: 0px 0px 8px 0px;
}
header, nav, section, footer {
	display: block;
}
A, A:link {
	text-decoration: none;
	transition: color ease 300ms;
	-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; /* 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;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-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;
	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;
	transform: scale(1.15);
	-webkit-transform: scale(1.15);
}
.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;
	z-index: 904;
	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;
}
*+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: 4px;
	transition: color ease-in 200ms;
	-webkit-transition: color ease-in 200ms; /* Safari and Chrome */
}
/*sub*/
#dnngo_megamenu .dnngo_menuslide {
	display: none;
	position: absolute;
	top: 100%;
	left: 0px;
	z-index: 903;
	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;
}
#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: 7px 60px 7px 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: 7px 20px 7px 60px;
	text-align: right;
}
#dnngo_megamenu .dnngo_slide_menu li a:hover, #dnngo_megamenu .dnngo_slide_menu li.menu_hover > a {
}
#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); /* 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;
}
}



/* ********** CONTENT ************** */	
#dnn_content {
	min-height: 400px;
	position: relative;
	z-index: 4;
}
#dnn_content:before, .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;
	transform: skew(0deg, -4deg);
	transform-origin: left bottom;
	-webkit-transform-origin: left bottom;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
}
.pane-bg01:before {
	background: #b75ccd;
}
/*page Spacing*/
.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-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%;
}


/*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 {
	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;
	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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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);
	transform: translate3d(-100%, 0, 0);
}
.box-effect-1.active .left-menu {
	visibility: visible;
	-webkit-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);
	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;
	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);
	transform: translate3d(300px, 0, 0);
}
.box-effect-3.active .left-menu {
	-webkit-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0);
}
.box-effect-3 .left-menu {
	-webkit-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;
	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);
	transform: translate3d(300px, 0, 0);
}
.box-effect-4 .left-menu {
	z-index: 1;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
}
.box-effect-4.active .left-menu {
	visibility: visible;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	-webkit-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);
	transform: translate3d(300px, 0, 0);
}
.box-effect-5 .left-menu {
	z-index: 1;
	-webkit-transform: translate3d(50%, 0, 0);
	transform: translate3d(50%, 0, 0);
}
.box-effect-5.active .left-menu {
	visibility: visible;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	-webkit-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;
	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%;
	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);
	transform: translate3d(300px, 0, 0) rotateY(-15deg);
}
.box-effect-6 .left-menu {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	-webkit-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;
	transition: transform 0.5s;
	-webkit-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;
	perspective: 1500px;
	overflow: hidden;
	-webkit-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);
	transform: translate3d(300px, 0, 0);
}
.box-effect-7 .left-menu {
	-webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg);
	transform: translate3d(-100%, 0, 0) rotateY(-90deg);
	-webkit-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;
	transition: transform 0.5s;
	-webkit-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;
	perspective: 1500px;
	overflow: hidden;
	-webkit-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);
	transform: translate3d(300px, 0, 0);
}
.box-effect-8 .left-menu {
	-webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg);
	transform: translate3d(-100%, 0, 0) rotateY(90deg);
	-webkit-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;
	transition: transform 0.5s;
	-webkit-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;
	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);
	transform: translate3d(0, 0, -300px);
}
.box-effect-9 .left-menu {
	opacity: 1;
	z-index: 50;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}
.box-effect-9.active .left-menu {
	visibility: visible;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	-webkit-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;
	perspective: 1500px;
	overflow: hidden;
	-webkit-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);
	transform: translate3d(300px, 0, 0);
}
.box-effect-10 .left-menu {
	z-index: 1;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, -300px);
	transform: translate3d(0, 0, -300px);
}
.box-effect-10.active .left-menu {
	visibility: visible;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	-webkit-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;
	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);
	transform: translate3d(100px, 0, -600px) rotateY(-20deg);
}
.box-effect-11 .left-menu {
	opacity: 1;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}
.box-effect-11.active .left-menu {
	visibility: visible;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	-webkit-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;
	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%;
	transform-origin: 100% 50%;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.box-effect-12.active .rightmain {
	-webkit-transform: rotateY(-10deg);
	transform: rotateY(-10deg);
}
.box-effect-12 .left-menu {
	opacity: 1;
	z-index: 50;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}
.box-effect-12.active .left-menu {
	visibility: visible;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	-webkit-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;
	perspective: 1500px;
	-webkit-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);
	transform: translate3d(300px, 0, 0);
}
.box-effect-13 .left-menu {
	z-index: 1;
	opacity: 1;
	-webkit-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;
	transition-timing-function: ease-in-out;
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
	-webkit-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;
	perspective: 1500px;
	-webkit-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);
	transform: translate3d(300px, 0, 0);
}
.box-effect-14 .left-menu {
	-webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg);
	transform: translate3d(-100%, 0, 0) rotateY(90deg);
	-webkit-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;
	transition-delay: 0.1s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
	-webkit-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;
	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 {
	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;
	-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;
	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/20073-unlimitedcolorspack-055/images/gohome_ico.png") no-repeat center center;
	-webkit-animation: arrows 1s infinite;
	-webkit-animation-delay: 1s;
	animation: arrows 1s infinite;
	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%;
	animation-duration: 4.5s;
	-webkit-animation-duration: 4.5s;
}
#pagepiling .animation_star .star_2 {
	top: 123px;
	left: 20%;
	animation-duration: 5s;
	-webkit-animation-duration: 5s;
}
#pagepiling .animation_star .star_3 {
	top: 43px;
	left: 60%;
	animation-duration: 6s;
	-webkit-animation-duration: 6s;
}
#pagepiling .animation_star .star_4 {
	top: 440px;
	left: 90%;
	animation-duration: 10s;
	-webkit-animation-duration: 10s;
}
#pagepiling .animation_star .star_5 {
	top: 234px;
	left: 14%;
	animation-duration: 5.5s;
	-webkit-animation-duration: 5.5s;
}
#pagepiling .animation_star .star_6 {
	top: 100px;
	left: 50%;
	animation-duration: 15s;
	-webkit-animation-duration: 15s;
}
#pagepiling .animation_star .star_7 {
	top: 34px;
	left: 82%;
	animation-duration: 20s;
	-webkit-animation-duration: 20s;
}
#pagepiling .animation_star .star_8 {
	top: 120px;
	left: 34%;
	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;
	animation-duration: 15s;
	-webkit-animation-duration: 15s;
	animation-delay: 0s;
	-webkit-animation-delay: 0s;
}
#pagepiling .animation_cloud .cloud_2 {
	top: 123px;
	animation-duration: 20s;
	-webkit-animation-duration: 20s;
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
	transform: scale(0.5);
	-webkit-transform: scale(0.5);
}
#pagepiling .animation_cloud .cloud_3 {
	top: 63px;
	animation-duration: 22s;
	-webkit-animation-duration: 22s;
	animation-delay: 5s;
	-webkit-animation-delay: 5s;
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
}
#pagepiling .animation_cloud .cloud_4 {
	top: 240px;
	animation-duration: 18s;
	-webkit-animation-duration: 18s;
	animation-delay: 2s;
	-webkit-animation-delay: 2s;
	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%;
	animation-duration: 15s;
	-webkit-animation-duration: 15s;
	animation-delay: 0s;
	-webkit-animation-delay: 0s;
}
#pagepiling .animation_snowflake .snowflake_2 {
	left: 8%;
	animation-duration: 20s;
	-webkit-animation-duration: 20s;
	animation-delay: 5.1s;
	-webkit-animation-delay: 5.1s;
	transform: scale(0.5);
	-webkit-transform: scale(0.5);
}
#pagepiling .animation_snowflake .snowflake_3 {
	left: 63%;
	animation-duration: 22s;
	-webkit-animation-duration: 22s;
	animation-delay: 6s;
	-webkit-animation-delay: 6s;
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
}
#pagepiling .animation_snowflake .snowflake_4 {
	left: 82%;
	animation-duration: 18s;
	-webkit-animation-duration: 18s;
	animation-delay: 4s;
	-webkit-animation-delay: 4s;
	transform: scale(0.8);
	-webkit-transform: scale(0.8);
}
#pagepiling .animation_snowflake .snowflake_5 {
	left: 75%;
	animation-duration: 16.5s;
	-webkit-animation-duration: 16.5s;
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
}
#pagepiling .animation_snowflake .snowflake_6 {
	left: 18%;
	animation-duration: 18.5s;
	-webkit-animation-duration: 18.5s;
	animation-delay: 3s;
	-webkit-animation-delay: 3s;
	transform: scale(0.5);
	-webkit-transform: scale(0.5);
}
#pagepiling .animation_snowflake .snowflake_7 {
	left: 70%;
	animation-duration: 24.5s;
	-webkit-animation-duration: 24.5s;
	animation-delay: 7s;
	-webkit-animation-delay: 7s;
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
}
#pagepiling .animation_snowflake .snowflake_8 {
	left: 92%;
	animation-duration: 23.5s;
	-webkit-animation-duration: 23.5s;
	animation-delay: 5s;
	-webkit-animation-delay: 5s;
	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%;
	animation-duration: 16s;
	-webkit-animation-duration: 16s;
	animation-delay: 3s;
	-webkit-animation-delay: 2s;
}
#pagepiling .animation_dandelion .dandelion_2 {
	left: 40%;
	animation-duration: 12s;
	-webkit-animation-duration: 12s;
	animation-delay: 2.4s;
	-webkit-animation-delay: 2.4s;
	transform: scale(0.95);
	-webkit-transform: scale(0.95);
}
#pagepiling .animation_dandelion .dandelion_3 {
	left: 45%;
	animation-duration: 15s;
	-webkit-animation-duration: 15s;
	animation-delay: 4s;
	-webkit-animation-delay: 4s;
	transform: scale(0.8);
	-webkit-transform: scale(0.8);
}
#pagepiling .animation_dandelion .dandelion_4 {
	left: 110%;
	animation-duration: 16s;
	-webkit-animation-duration: 16s;
	animation-delay: 8s;
	-webkit-animation-delay: 8s;
	transform: scale(0.75);
	-webkit-transform: scale(0.75);
}
#pagepiling .animation_dandelion .dandelion_5 {
	left: 67%;
	animation-duration: 18s;
	-webkit-animation-duration: 18s;
	animation-delay: 6s;
	-webkit-animation-delay: 6s;
	transform: scale(0.7);
	-webkit-transform: scale(0.7);
}
#pagepiling .animation_dandelion .dandelion_6 {
	left: 74%;
	animation-duration: 20s;
	-webkit-animation-duration: 20s;
	animation-delay: 4s;
	-webkit-animation-delay: 4s;
	transform: scale(0.65);
	-webkit-transform: scale(0.65);
}
#pagepiling .animation_dandelion .dandelion_7 {
	left: 123%;
	animation-duration: 19s;
	-webkit-animation-duration: 19s;
	animation-delay: 5s;
	-webkit-animation-delay: 5s;
	transform: scale(0.68);
	-webkit-transform: scale(0.68);
}
#pagepiling .animation_dandelion .dandelion_8 {
	left: 99%;
	animation-duration: 17s;
	-webkit-animation-duration: 17s;
	animation-delay: 9.5s;
	-webkit-animation-delay: 9.5s;
	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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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;
}


@import url(https://fonts.googleapis.com/css?family=Raleway);
@import url("https://fonts.googleapis.com/css?family=Raleway");





 
/*global setting*/
#Body ,
html, 
body ,
.Head,
.SubTitle ,
.SubSubTitle ,
.Normal{
	color:#333333;
	font-size:15px;
	font-family:'Raleway';
	line-height:1.8;
	letter-spacing:0.5px;
}
html, 
button, 
input, 
select, 
textarea,
.ls-layer, 
.ls-layer *,
.uneditable-input,
.btn{
	font-family:'Raleway';
}
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:'Raleway'!important;
}

.dnn_layout,
.container  {
	width: 970px;
}
@media only screen and (min-width: 1600px) {
	.dnn_layout,
	.container {
		width: 1400px;
	}
}
@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/20073-unlimitedcolorspack-055/images/Body_bg_2.png");
											background-position:left top;
	background-attachment:scroll;
					background-repeat:repeat;
		background-size:auto ;
}


/*content style*/
	#dnn_content:before,.BannerPane:before{
		background-color:#FFFFFF;
		filter:alpha(opacity= 100 );
		opacity: 1;
	}

/*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:#640f0d;
	font-family:'Raleway';
	font-size:24px;
	line-height:28px;
	font-weight:bold;
	letter-spacing:0px;
}
 
h2 {
	color:#640f0d;
	font-family:'Raleway';
	font-size:20px;
	line-height:24px;
	font-weight:bold;
	letter-spacing:0px;
}

h3 {
	color:#333333;
	font-family:'Raleway';
	font-size:18px;
	line-height:20px;
	font-weight:bold;
	letter-spacing:0px;
}

h4 {
	color:#000000;
	font-family:'Raleway';
	font-size:16px;
	line-height:18px;
	font-weight:bold;
	letter-spacing:0px;
}

h5 {
	color:#000000;
	font-family:'Raleway';
	font-size:14px;
	line-height:16px;
	font-weight:bold;
	letter-spacing:0px;
}
h6 {
	color:#000000;
	font-family:'Raleway';
	font-size:12px;
	line-height:16px;
	font-weight:bold;
	letter-spacing:0px;
}

/*Content Style*/
a, 
a:link,
a:active,
a:visited{
	color:#640f0d;
}
a:hover{
	color:#640f0d;
}
.default_color{
	color:#333333!important;
}
.accent_color{
	color:#640f0d!important;
} 


.default-size{
	font-size:15px!important;
}
.big-size{
	font-size:18px!important;
}
.small-size{
	font-size:13px!important;
}
.default-family{
	font-family:'Raleway'!important;
}
.special-family-1{
	font-family:'Raleway'!important;
}
.special-family-2{
	font-family:'Raleway'!important;
}
.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:#640f0d;
}
 
.h2-color {
	color:#640f0d;
}

.h3-color {
	color:#333333;
}

.h4-color {
	color:#000000;
}

.h5-color {
	color:#000000;
}
.h6-color {
	color:#000000;
}





/*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:#640f0d;
} 
.galler_datail h4{
	color:#000000!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:#640f0d;
}
.Skin_03_Default.galler_datail .comment_form .submit_button .CommandButton{
	text-shadow:none;
	border-color:#640f0d;
	color:#640f0d;
	transition:background-color ease-in 200ms;
}
.Skin_03_Default.galler_datail .comment_form .submit_button .CommandButton:hover{
	background-color:#640f0d;
	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:#640f0d;
}
.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:#640f0d;
	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:#640f0d;
}
.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:#640f0d;
}
.news_detail_top .tab_right .news_detail_username a:hover,
.Theme_19_Normal .filter_navigation ul li.selected a{
	color:#640f0d!important;
	}
a.abtn.btn_white:hover, 
.banner_btn, 
.banner_btn.btn_white:hover, 
.comment_form .submit_button .CommandButton {
	border-color:#640f0d;
}
.Skin_05_timeline.news_detail .post_date a:hover,
.Skin_05_timeline.news_detail .post_author_info .author_desc{
	color:#640f0d;
}
.Skin_05_timeline.news_detail{
	background:none;
}

/*html style*/  

/*Accent Background Color */
.a_bg_c,
.btn.a_bg_c{
	background-color:#640f0d;
}
.a_bg_c_h:hover,
.btn.a_bg_c_h:hover{
	background-color:#640f0d;
}
/*Accent Color */
.a_t_c,
.btn.a_t_c{
	color:#640f0d;
}
.a_t_c_h:hover,
.btn.a_t_c_h:hover{
	color:#640f0d;
}
/*Accent Border Color */
.a_b_c,
.btn.a_b_c{
	border-color:#640f0d;
}
.a_b_c_h:hover,
.btn.a_b_c_h:hover{
	border-color:#640f0d;
}

/*anchorNav*/
#anchorNav li:hover i, 
#anchorNav li.active i,
#anchorNav li span{
	background-color:#640f0d;
}

/*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:#640f0d;
}
.photo_box.icon_tag_push .ico:before{
    border-right-color: #640f0d;
    border-top-color: #640f0d;
}
.photo_box.content_bottom_push_in .content:before{
    border-bottom-color: #640f0d;
}
/*map sytle*/

		
		#gmap01{
		height:330px
	}
	
	@media only screen and (min-width: 1600px) {
		#gmap01{
			height:330px
		}
	}
	@media only screen and (min-width: 1200px) and (max-width: 1599px) {
		#gmap01{
			height:330px
		}
	}
	@media only screen and (min-width: 768px) and (max-width: 991px) {
		#gmap01{
			height:330px
		}
	}
	 @media only screen and (max-width: 767px) {
		#gmap01{
			height:330px
		}
	}
	

		
	

		
	

		
	

		
	


/*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:#640f0d;
	border-color:#640f0d;
}
.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:#640f0d;
	color:#640f0d;
}
.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:#640f0d;
}
.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:#640f0d;
}

.gallery-carousel01 .slick-arrow:before{
	border-color:#640f0d;
}

/*Blog*/
.blog-list01 .list-btn,
.blog-tag a:hover,
.blog-list03 .list-btn,
.blog-timeline2 .list-btn{
	border-color:#640f0d;
	color:#640f0d;
}
.blog-carousel .owl-buttons .owl-prev:hover, 
.blog-carousel .owl-buttons .owl-next:hover,
.blog-list-page a:hover, 
.blog-list-page span{
	border-color:#640f0d;
	background-color:#640f0d;
}
.blog-list01 .list-date .month,
.blog-list01 .list-btn:hover,
.blog-list01 .list-linkbox,
.blog-categories > li.active > a,
.blog-list02 .list-linkbox,
.blog-list03 .list-btn:hover,
.blog-list03 .list-linkbox,
.blog-timeline .blog-date,
.blog-timeline .timeline-left  .list-post:after, 
.blog-timeline .timeline-right  .list-post:after,
.blog-timeline .list-date .month,
.blog-timeline .blog-date:after,
.blog-timeline .list-linkbox,
.blog-timeline .blog-more,
.blog-timeline2 .list-date:before,
.blog-timeline2 .list-btn:hover,
.blog-timeline2 .list-linkbox,
.blog-detail .detail-date .month,
.blog-detail .submit-but,
.blog-detail .author-social a:hover{
	background-color:#640f0d;
}
.blog-list01 .list-info a:hover,
.blog-search:before,
.blog-title01,
.blog-categories ul li.active > a,
.blog-categories ul li a:hover,
.blog-list02 .list-btn,
.blog-list02 .list-info a:hover,
.blog-list03 .list-info a:hover,
.blog-timeline .list-btn,
.blog-timeline .list-info a:hover,
.blog-timeline2 .list-info a:hover,
.blog-detail .detail-info a:hover,
.blog-detail .detail-heading,
.blog-detail .detail-relatedlist a.more, 
.blog-detail .detail-relatedlist a.more:link, 
.blog-detail .detail-relatedlist a.more:active, 
.blog-detail .detail-relatedlist a.more:visited,
.blog-categories > li > a:hover{
	color:#640f0d;
}
.blog-tab .tab-title li.active:before,
.blog-list02 .list-author,
.blog-timeline2 .list-date:after,
.blog-categories ul li > .arrow:hover:before,
.blog-categories ul li > .arrow:hover:after,
.blog-categories > li > .arrow:hover{
	border-color:#640f0d;
}
.blog-categories > li > .arrow:hover:before{
	border-top-color:#640f0d;
}
/*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:#640f0d;
}
[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{
	background-color:#640f0d;
}
.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:#640f0d;
}
.history-box .history-boxmain .history-boxcontent:before{
	border-right-color:#640f0d;
}
.ourteam01-ibox{
	border-bottom-color:#640f0d;
}
.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:#640f0d;
}
.pricing01-ibox .ico:before{
	border-left-color:#640f0d;
	border-top-color:#640f0d;
}
a.aboutus01-bnt:hover,
a.pricing01-bnt:hover{
	border-color:#640f0d;
	background-color:#640f0d;
}
.two404-bg01 a.two404-bnt,
.four404-box a.four404-bnt{
	font-family:Verdana, Geneva, sans-serif;
	border-color:#640f0d;
	background-color:#640f0d;
}
.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:#640f0d;
	border-color:#640f0d;
}



/*Short Codes*/

/*Dividers*/
.dividers-06:before,
.dividers-06 span,
.dividers-06:after,
.dividers-08{
    border-top-color:#640f0d;
}

/*icon-box*/
.dg-ibox04 .btn{
	border-color:#640f0d;
	color:#640f0d;
}
.dg-ibox04 .btn:hover{
	background-color:#640f0d;
}
.dg-ibox13 .more:before{
	border-left-color:#640f0d;
}
.dg-ibox35:before{
	border-top-color:#640f0d;
}

/*Promo-Boxes*/
.promo-box02,
.promo-box03 .btn,
.promo-bg02,
.promo-box07 .btn,
.promo-box08 .btn,
.promo-box10 .btn,
.promo-box11 .btn,
.promo-box12 .btn,
.promo-box13,
.promo-box14 .btn:hover{
	background-color:#640f0d;
}
.promo-box03{
	border-left-color:#640f0d;
}
.promo-box03:before,
.promo-box10 h3:after{
	border-color:#640f0d;
}
.promo-box06 h3,
.promo-box07 h3 span,
.promo-box08 h3 span,
.promo-box13 .btn{
	color:#640f0d;
}

/*price*/
.dg-title25 .line:before, 
.dg-title25 .line:after,
.dg-price02 .price-border:hover, 
.dg-price02 .price-border.best-value,
.dg-price03 .btn:hover,
.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-price15 .price-border:hover .btn,
.dg-price16 .price-border:hover .btn,
.dg-price18 .price-border,
.dg-price20 .best-value .price-title,
.dg-price20 .price-border:hover .price-title,
.dg-price21 .price-box,
.dg-price21 .price-border .btn,
.dg-price23 .btn,
.dg-price24 .price-border:hover .price-title,
.dg-price25 .btn,
.dg-price27 .price-border:hover .price-title,
.dg-price28 .price-border:hover .price-title, 
.dg-price28 .price-border:hover .btn,
.dg-price26 .price-border:hover .price-title, 
.dg-price26 li:hover,
.dg-price29 .price-border:hover .btn,
.dg-price30 .price-border:hover .btn{
	background-color:#640f0d;
}
.dg-title25 .line,
.dg-price02 .price-border,
.dg-price07 .price-border,
.dg-price07 .price-box,
.dg-price07 .price-border,
.dg-price23,
.dg-price27 .btn,
.dg-price27 .price-border:hover, 
.dg-price27 .price-border:hover .btn,
.dg-price29 .price-border{
	border-color:#640f0d;
}
.dg-price03 .price-title h2,
.dg-price03 .price-holder .fa,
.dg-price03 .price-title h6,
.dg-price03 .btn,
.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{
	color:#640f0d;
}
.dg-price07 .btn{
	background-color:#640f0d;
	border-color:#640f0d;
}
.dg-price20 .price-popular,
.dg-price23 .price-title em{
	color:#640f0d;
	border-color:#640f0d;
}

/* 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{
	color:#640f0d;
}
.loaded-title:before{
	border-color:#640f0d;
}
.loaded-list04 .bar,
.loaded-list05 .bar,
.loaded-list10 .progress-bar,
.loaded-list09 .progress .progress-bar,
.loaded-list08 .progress .progress-bar{
	background-color:#640f0d;
}

/*Testimonials*/
.dg-testimonials-bg08,
.Testimonials01-tab .Testimonials01-top em,
.Testimonials03-tab .btn,
.dg-testimonials-tab02 .dot a.actived, 
.dg-testimonials-tab02 .dot a:hover,
.dg-testimonials-tab04 .last_page:hover, 
.dg-testimonials-tab04 .next_page:hover,
.image_more_info span,
.dg-testimonials-tab12 .dot a.actived,
.dg-testimonials-tab14 .dot a.actived,
.dg-testimonials-tab15 .dot a.actived,
.dg-testimonials-tab17 .dot a.actived,
.Testimonials15-tab .pic,
.dg-testimonials-tab18 .last_page:hover, 
.dg-testimonials-tab18 .next_page:hover,
.dg-testimonials-tab19 .dot a.actived,
.dg-testimonials-tab20 blockquote p,
.dg-testimonials-tab22 blockquote .pic,
.dg-testimonials-tab11 .dot a:hover, 
.dg-testimonials-tab11 .dot a.actived,
.dg-testimonials-tab16 .last_page:hover, 
.dg-testimonials-tab16 .next_page:hover{
	background-color:#640f0d;
}


.dg-testimonials-tab01 .last_page:hover, 
.dg-testimonials-tab01 .next_page:hover,
.dg-testimonials-tab06 .last_page:hover, 
.dg-testimonials-tab06 .next_page:hover,
.dg-testimonials-tab21 .dot a.actived{
	border-color:#640f0d;
	background-color:#640f0d;
}
.dg-testimonials-tab02  blockquote h2:after,
.dg-testimonials-tab02  blockquote h2:before,
.dg-testimonials-tab03 blockquote span.pic img,
.dg-testimonials-tab03 .last_page:hover, 
.dg-testimonials-tab03 .next_page:hover,
.dg-testimonials-tab07 .dot a.actived,
.dg-testimonials-tab08 .dot a.actived, 
.dg-testimonials-tab08 .dot a:hover,
.dg-testimonials-tab10 .last_page:hover:before,
.dg-testimonials-tab10 .next_page:hover:before,
.dg-testimonials-tab17 .dot a,
.dg-testimonials-tab24 .last_page:hover, 
.dg-testimonials-tab24 .next_page:hover,
.dg-testimonials-tab24 .last_page:hover:before,
.dg-testimonials-tab24 .next_page:hover:before,
.dg-testimonials-tab09 .last_page:hover, 
.dg-testimonials-tab09 .next_page:hover,
.dg-testimonials-tab13 .last_page:hover:before,
.dg-testimonials-tab13 .next_page:hover:before{
	border-color:#640f0d;
}
.dg-testimonials-tab02 blockquote h2,
.dg-testimonials-tab07 li blockquote strong,
.dg-testimonials-tab09 .author,
.dg-testimonials-tab15 blockquote h2,
.Testimonials08-tab h2,
.Testimonials09-tab .bnt,
.Testimonials11-author span,
.dg-testimonials-tab16 .pic h2,
.dg-testimonials-tab17 blockquote h2,
.Testimonials13-tab p.c-font,
.dg-testimonials-tab20 blockquote .pic h2,
.dg-testimonials-tab20 blockquote .pic span,
.Testimonials17-tab .Testimonials17-com h2,
.Testimonials21-tab h2,
.Testimonials22-tab .pic span,
.dg-testimonials-tab23 blockquote h2 span{
	color:#640f0d;
}
.dg-testimonials-tab13 blockquote p{
	border-bottom-color:#640f0d;
}
.dg-testimonials-tab14 blockquote p,
.dg-testimonials-tab13 blockquote p:before{
	border-top-color:#640f0d;
}
.Testimonials08-tab em.fa{
	color:#640f0d;
	border-color:#640f0d;
}
.Testimonials10-tab,
.dg-testimonials-tab20 blockquote p:before,
.dg-testimonials-tab22 blockquote .pic:before,
.Testimonials22-con{
	border-right-color:#640f0d;
}
.dg-testimonials-circle .image_more_info span{
	background-color:#640f0d!important;
}

/*Responsive Tab*/
.dg-title16 .number,
.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:#640f0d;
}

.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:#640f0d;
}
.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,
.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:#640f0d;
}
.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:#640f0d;
}
.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:#640f0d;
}
.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:#640f0d;
}
.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:#640f0d;
}

/*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 .collapsed:hover .arrow:before,
.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:#640f0d;
}
.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:#640f0d;
}
.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-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{
	background-color:#640f0d;
}
.dg-accordion06 .panel-heading .arrow,
.dg-accordion06 .panel-heading .collapsed:hover .arrow{
	border-left-color:#640f0d;
}
.dg-accordion17 .panel-heading .panel-title a{
	background-color:#640f0d;
	border-color:#640f0d;
}

/*Animated*/
.animat-col01 li.color-01,
.animat-col05 li:hover,
.animat-col06{
	background-color:#640f0d;
}
.animat-col-title:after,
.animat-col04 h3:before{
	border-color:#640f0d;
}
.animat-col04,
.animat-col05 li{
	color:#640f0d;
}
/*Flip-Box*/
.flip-box02 .back,
.flip-box04 .back,
.flip-box04 .back,
.flip-box06 .back,
.flip-box08 .back{
	background-color:#640f0d;
}
.flip-box06 .front .v-center > h3{
	color:#640f0d;
}
.flip-box08 .front .fa{
	color:#640f0d;
	border-color:#640f0d;
}

/*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:#640f0d;
}
.clients-carousel01 .img_box:before{
	border-bottom-color:#640f0d;
}
.clients-title02 h3,
.clients-title03 h6{
	color:#640f0d;
}
.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:#640f0d;
}
/*Image Box*/
.imgbox01:hover,
.imgbox03:hover, 
.imgbox03:hover .imgbox03-con .btn,
.imgbox04:hover img{
	border-color:#640f0d;
}
.dg-title23 .line:after,
.imgbox02:hover,
.imgbox05:hover .btn,
.imgbox07:hover .imgbox07-icon span,
.imgbox10 .btn{
	background-color:#640f0d;
}
.imgbox03:hover .imgbox03-con .btn,
.imgbox05:hover .imgbox05-con h3,
.imgbox10:hover .btn{
	color:#640f0d;
}
.imgbox08 .imgbox08-con .btn:hover,
.imgbox10:hover{
	border-color:#640f0d;
	background-color:#640f0d;
}

/*icon box*/
 
.dnngo-main [class*="dg-icon-"]:hover,
.dg-ibox-hover:hover [class*="dg-icon-"]{
	color:#640f0d;
	border-color:#640f0d;
	background-color:#640f0d;
}
.dnngo-main [class*="dg-icon-"]:hover:before,
[class*="dg-icon-"]:hover .hexagon span:before,
.dg-ibox-hover:hover [class*="dg-icon-"]:before,
.dg-ibox-hover:hover .hexagon span:before{
	background-color:#640f0d;
	border-color:#640f0d;
}

.dg-ibox09:hover h3,
.dg-ibox20 h3,
.dg-ibox21 h3,
.dg-ibox24 h3,
.dg-ibox26:hover .box-title h3,
.dg-ibox27:hover .box-title h3,
.dg-ibox35 .number{
	color:#640f0d;
}
.iconbox-bg03,
.dg-ibox21:hover .btn,
.dg-ibox24 .btn,
.dg-ibox27:hover .btn,
.dg-ibox28:hover,
.dg-ibox34 h3{
	background-color:#640f0d;
}
.dg-ibox16:hover [class*="dg-icon-"] .left-line{
	border-color:#640f0d;
}
.dg-ibox17:hover{
	border-color:#640f0d;
	background-color:#640f0d;
}
.dg-ibox20,
.dg-ibox26:before{
	border-top-color:#640f0d;
}
.dg-ibox22:before,
.dg-ibox29:before,
.dg-ibox32 .number:after{
	border-bottom-color:#640f0d;
}


/*Mini-callout-box-ornamental-title*/
.dg-title01 h3,
.dg-title06 h3,
.dg-title07 h3,
.dg-title09 h3,
.dg-title13 .icon,
.dg-title29 h3,
.dg-title32 .fa{
	color:#640f0d;
}
.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:#640f0d;
}
.dg-title08 h3,
.dg-title21 h3:before, 
.dg-title21 h3:after{
	background-color:#640f0d;
}

/*player boxes */
.player_boxes .player_title,
.player_boxes .player_smalltitle{
	color:#640f0d;
}
.player_boxes .btn {
	background-color:#640f0d;
}
/*simpleanchor */
#simpleanchor a:hover,
#simpleanchor .active a{
    color: #640f0d;
    border-left-color:#640f0d;
}






 /*Menu Style*/


	/*HoverStyle_2*/
	#dnngo_megamenu > div.dnngo_gomenu > ul > li{
		margin-left:2px;
	}
	#dnngo_megamenu > div.dnngo_gomenu > ul > li > a > span {
		padding: 0px 2px;
		border:2px solid transparent;
		border-radius:0px 0px 0px 0px;
		-moz-border-radius:0px 0px 0px 0px;
		-webkit-border-radius:0px 0px 0px 0px;
	}
	#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 {
		border:2px solid #ffffff;
	}
	.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 {
		border-color:#640f0d; 
	}


	@media only screen and (min-width: 1200px) {
		#dnngo_megamenu > div.dnngo_gomenu > ul > li > a > span{
			padding: 0px 15px;
		}
	}
	@media only screen and (min-width: 1600px) {
		#dnngo_megamenu > div.dnngo_gomenu > ul > li > a > span{
			padding: 0px 20px;
		}
	}
	@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: "Raleway";
	}
	#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:47px 0 47px;
		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: 46px;
		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: 15px;
		text-transform:uppercase;
		font-weight:normal;
		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: #FFFFFF;
	}
	#dnngo_megamenu > div > ul > li.dir > a > span:after {
		border-bottom: 1px solid #FFFFFF;
		border-right: 1px solid #FFFFFF;
	}
	
	#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 #ffffff;
		border-right: 1px solid #ffffff;
	}
	#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: #ffffff;
	}

/*Sub Menu Style*/
#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,
#dnngo_megamenu .dnngo_menuslide .dnngo_boxslide a,
#dnngo_megamenu .dnngo_menuslide,
#dnngo_megamenu .dnngo_slide_menu li {
	font-size:13px;
	color:#000000;
	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_boxslide .menu_centerbox ul li li a span:before {
	border-right:1px solid #000000;
	border-bottom:1px solid #000000;
	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_boxslide .menu_centerbox ul li li a:hover span:before,
#dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li.subcurrent > a > span:before {
	border-right:1px solid #640f0d;
	border-bottom:1px solid #640f0d;
}

#dnngo_megamenu .dnngo_slide_menu li:hover > a,
#dnngo_megamenu .dnngo_slide_menu li.subcurrent > a {
	color:#FFF;
	background-color:#640f0d;
}
#dnngo_megamenu .dnngo_slide_menu li.dir:before{
	border-right:1px solid #000000;
	border-bottom:1px solid #000000;
	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_boxslide .menu_centerbox ul li li a:hover,
#dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li.subcurrent > a{
	color: #640f0d;
}
#dnngo_megamenu h2.mega_title,
#dnngo_megamenu .dnngo_boxslide .dnngo_masonrymenu > ul > li > a > span,
.social-icons5 a:hover span{
	font-size:14px!important;
	color:#640f0d!important;
}
#dnngo_megamenu .dnngo_boxslide .dnngo_masonrymenu > ul > li > a > span {
	font-size:14px;
}
#dnngo_megamenu .dnngo_slide_menu li a > span > i,
#dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li 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_boxslide .menu_centerbox ul li li a:hover > span > i,
#dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li.menu_hover > a > span > i,
#dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li.current > a > span > i,
#dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li.subcurrent > a > span > i{
	color:#640f0d;
}
#dnngo_megamenu .mega_title, 
#dnngo_megamenu .dnngo_boxslide .dnngo_masonrymenu > ul > li > a > span{
	border-color:#c2c2c2;
}
#dnngo_megamenu .dnngo_boxslide .dnngo_masonrymenu > ul:before{
	border-color:#e0e0e0;
}

/*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: #640f0d;
}
.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 #640f0d;
	border-right: 1px solid #640f0d;
}
.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:#640f0d;
}

.roll_menu.roll_activated #dnngo_megamenu > div > ul > li{
		padding:0px 0 0px;
}
.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: 40px;
	height: 40px;
}
.roll_menu.roll_activated .menuRightBox {
	margin:0;
	margin-top:0px;
	line-height: 40px;
	height: 40px;
}

.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 2 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:#000000;
		filter:alpha(opacity= 75 );
		opacity: 0.75;
	}
	/* style*/
	.nav_ico {
		font-size:20px;
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-webkit-transform: translate3d(0,0,0);
		-moz-transform: translate3d(0,0,0);
		text-align:right;
		line-height:35px;

	}
	.nav_ico .fa{
		width:25px;
		height:25px;
		line-height:25px;
		text-align:center;
		display:inline-block;
		vertical-align:middle;
		margin-left:17px;
		cursor:pointer;
		color:#FFFFFF;
		transition: 		all ease-in 200ms;
		-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	}
	.nav_ico .fa:hover,
	.nav_ico .fa.active{
		color: #640f0d;
	}
	.nav_ico .fa.active:before{
		content:"\f00d";
		color: #640f0d;
	}
	.nav_ico .searchBox,
	.nav_ico .Loginandlanguage {
		-moz-box-shadow:1px 1px 5px rgba(0,0,0,0.1);               /* For Firefox3.6+ */
		-webkit-box-shadow:1px 1px 5px rgba(0,0,0,0.1);            /* For Chrome5+, Safari5+ */
		box-shadow:1px 1px 5px rgba(0,0,0,0.1);                    /* For Latest Opera */
		background-color:#ffffff;
		padding:10px;
		min-width:300px;
		height:62px;
		position:absolute;
		top:100%;
		right:0px;
		margin-top:10px;
		display:none;
	}
	.nav_ico .searchBox #dnn_dnnSEARCH_ClassicSearch, 
	.nav_ico .searchBox #dnn_dnnSEARCH1_ClassicSearch, 
	.nav_ico .searchBox #dnn_dnnSEARCH2_ClassicSearch, 
	.nav_ico .searchBox #dnn_dnnSEARCH3_ClassicSearch{
		line-height:40px;
	}
	.nav_ico .searchBox input.NormalTextBox{
		background-color:rgba(0,0,0,0.1);
		height:40px;
		line-height:40px;
		width:240px;
		left:0px;
		top:2px;
		font-size:14px;
	}
	.nav_ico .search, 
	.nav_ico a.search:link, 
	.nav_ico a.search:active, 
	.nav_ico a.search:visited{
		left:auto;
		right:0;
		background-color:#640f0d;
		color:#FFF;
		top:2px;
		height:40px;
		line-height:40px;
		width:40px;	
	}
	.nav_ico .Loginandlanguage  {
		min-width:inherit;
		white-space:nowrap;
		padding:0px 30px;
		line-height:62px;
	}
	.nav_ico .Loginandlanguage > .languageBox,
	.nav_ico .Loginandlanguage > .Login{
		display:inline-block;
		vertical-align:top;
	}
	.nav_ico .Loginandlanguage > .Login a,
	.nav_ico .Loginandlanguage > .Login a:link,
	.nav_ico .Loginandlanguage > .Login a:active,
	.nav_ico .Loginandlanguage > .Login a:visited,
	.nav_ico .Loginandlanguage > .Login .sep{
		color:#000000;
		font-size:13px;
		vertical-align:middle;
	}
	.nav_ico .Loginandlanguage > .Login a:hover{
		color:#640f0d;
	}
	.nav_ico .Login .registerGroup li.userMessages a span, 
	.nav_ico .Login .registerGroup li.userNotifications a span{
		background-color:#640f0d;
	}
	
				.dnn_logo {
		float:none;
		margin-top:0px;
		line-height: 140px;
		height: 140px;
	}
	.menuRightBox{
		margin-top:0px;
		line-height: 140px;
		height: 140px;
	}
	
	/*right style*/
	#main_right{
		position:fixed;
		top:0;
		right:-261px;
		width:261px;
		height:100%;
		padding:40px 0;
		z-index:1000;
		visibility:hidden;
		display:block!important;
		opacity:1!important;
		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);
		transition: 		all ease-out 400ms;
		-moz-transition: 	all ease-out 400ms; /* Firefox 4 */
		-webkit-transition: all ease-out 400ms; /* Safari and Chrome */
		-o-transition: 		all ease-out 400ms; /* Opera */
		-ms-transition: 	all ease-out 400ms; /* IE9? */
	}
	#main_right.active {
		right:0;
		visibility:visible;
		opacity:1!important;
		display:block!important;
	}
	#main_right:before{
		content:"";
		top:0px;
		left:0px;
		position:absolute;
		width:100%;
		height:100%;
		display:block;
		z-index:-1;
		background-color:#1e1e1e;
		filter:alpha(opacity= 100 );
		opacity: 1;
	}
	#main_right > #rightClose {
		width:24px;
		height:24px;
		line-height:24px;
		text-align:center;
		color:#aaaaaa;
		font-size:24px;
		cursor:pointer;
		position:absolute;
		right:8px;
		top:8px;
		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? */
	}
	#main_right > #rightClose:hover {
		color:#640f0d;
	}
	
	#main_right .Login {
		position:relative;
		margin:20px 0 20px;
		padding:10px 0;
	} 
	#main_right .Login.info {
		margin:120px 0 50px;
	} 
	#main_right .Login *{
		color:#aaaaaa;
		display:inline-block;
	} 
	#main_right .Login, 
	#main_right .Login a, 
	#main_right .Login a:link, 
	#main_right .Login a:active, 
	#main_right .Login a:visited{
		color:#aaaaaa;
	}
	#main_right .Login a:hover{
		color:#640f0d;
	}
	#main_right .Login .sep{
		padding:0 10px;
	}
	
	#main_right .Login.info .userProfileImg{
		position:absolute;
		bottom:100%;
		left:50%;
		margin-left:-50px;
		width:100px;
		text-align:center;
	}
	#main_right .Login.info .userProfileImg img{
		max-height:100%;
		width:100%;
	}
	#main_right .Login .registerGroup .userMessages,
	#main_right .Login .registerGroup .userNotifications{
		position:absolute;
		top:100%;
		left:50%;
		margin-left:-33px;
	}
	#main_right .Login .registerGroup .userNotifications{
		margin-left:11px;
	}
	#main_right .Login .registerGroup .userMessages strong,
	#main_right .Login .registerGroup .userNotifications strong{
		display:none;
	}
	#main_right .Login .registerGroup .userMessages a,
	#main_right .Login .registerGroup .userNotifications a{
		font-size:20px;	
	}
	#main_right .Login .registerGroup .userNotifications a:before{
		content:"\f075";
	}
	#main_right .searchBox {
		clear:both;
		margin:0;
		height:62px;
		background-color:#1e1e1e;
		border:11px solid #000000;
	}
	#main_right .searchBox #dnn_dnnSEARCH2_ClassicSearch{
		padding:8px 5px 10px ;
		display:block;
	}
	#main_right .searchBox .search, 
	#main_right .searchBox a.search:link, 
	#main_right .searchBox a.search:active, 
	#main_right .searchBox a.search:visited{
		left:auto;
		right:0px;
		top:0px;
		width:40px;
		height:40px;
		line-height:40px;
		text-align:center;
		font-size:14px;
		background-color:#640f0d;
		color:#FFF;
	}
	#main_right .searchSkinObjectPreview a,
	#main_right .searchSkinObjectPreview a:link,
	#main_right .searchSkinObjectPreview a:active,
	#main_right .searchSkinObjectPreview a:visited,
	#main_right .searchSkinObjectPreview a:hover{
		color:#640f0d;
	}
	
	#main_right .searchBox input.NormalTextBox{
		left:5px;
		top:12px!important;
		width:180px!important;
		color:#aaaaaa;
	}
	
	#main_right .searchBox input.NormalTextBox::-webkit-input-placeholder { /* WebKit browsers */
		color:#aaaaaa;
	}
	#main_right .searchBox input.NormalTextBox:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
		color:#aaaaaa;
	}

	#main_right .searchBox input.NormalTextBox:-ms-input-placeholder { /* Internet Explorer 10+ */
		color:#aaaaaa;
	}
	#main_right .searchBox .searchInputContainer a.dnnSearchBoxClearText.dnnShow{
		right:40px!important;
		top:6px!important;
	}
	#main_right .searchBox .searchSkinObjectPreview{
		left:auto!important;
		right:0;
		top:40px;
	}
	#main_right .languageBox{
		text-align:center;
		padding:40px 0;
	}
	#main_right .languageBox img {
		width:30px;
		height:20px;
	} 
	#main_right .Login .registerGroup li.userMessages a span, 
	#main_right .Login .registerGroup li.userNotifications a span{
		border-radius:			3px;
		-moz-border-radius:		3px;
		-webkit-border-radius:	3px;
		letter-spacing:0px;
		font-size:12px;
		margin: 0 -12px -1px 0;
		font-family:Arial, Helvetica, sans-serif;
		color:#FFF!important;
		padding:2px 4px;
		background-color:#640f0d;
	}	
	#main_right .Normal,
	#main_right h1,
	#main_right h2,
	#main_right h3,
	#main_right h4,
	#main_right h5,
	#main_right h6,
	#main_right .home03-social02 {
		color:#aaaaaa;
	}
	#main_right .Normal a:hover{
		color:#640f0d;
	}
	#main_right .home03-social02 a {
		border-color:#aaaaaa;
	}
	#main_right .home03-social02 a:hover {
		color:#FFF;
		background-color:#640f0d;
		border-color:#640f0d;	
	}
	
	.roll_menu.roll_activated .nav_ico .fa{
		color:#666666;
	}
	.roll_menu.roll_activated .nav_ico .fa:hover,
	.roll_menu.roll_activated .nav_ico .fa.active{
		color: #640f0d;
	}

	@media only screen and (min-width: 768px) and (max-width: 991px) {
		.header-top,
		.header-bottom{
			display:block;
		}
		.header-left,
		.header-center,
		.header-right{
			display:block;
			text-align:center;
			white-space:normal;
		}
		.menuRightBox{
			margin:0;
		}
		.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-top,
		.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:absolute;
	}
	.roll_replace {
		position:absolute;
	}






@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%;
		}
		@media only screen and (min-width: 768px) and (max-width: 991px) {
			.dnngo-main.boxed .mobile_nav{
				width:auto;
			}
		}	
		.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:#000000;
		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:#ffffff;
		color:#ffffff;
	}
	.mobile_left_icon .fa, 
	.mobile_right_icon a{
		border-color:#ffffff;
		color:#ffffff;
	}
	.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:#640f0d;
	}
	.mobile_left_icon .fa.active,
	html.mm-opening.mm-opened .mobile_right_icon a{
		color:#640f0d;
	}
	
	#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:#640f0d;
	}
	#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:#640f0d;
	}
	#mobile_user .registerGroup li.userMessages a span, 
	#mobile_user .registerGroup li.userNotifications a span{
		background-color:#640f0d;
	}
	.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:#640f0d!important;
	}
	
	
		.mobile_menu.mm-menu a > span > i{
		display:none;
	}
		
	/*html*/
	
	.HeaderPane_mobile,
	.HeaderPaneB_mobile{
		color:#ffffff;
	}
	
	.menu_header_box div.home03-social02 a{
		color:#ffffff;
		border-color:#ffffff;
	}
	.menu_header_box div.home03-social02 a:hover{
		border-color:#640f0d;
		background-color:#640f0d;
	}
	
	.social_list_7{
		border:none;
	}
	.social_list_7 span{
		margin:0 4px;
		color:#ffffff;
		border:1px solid #ffffff;
	}
	.social_list_7 a:hover span{
		background-color:#640f0d;;
		border-color:#640f0d;
	}
	.shop_info{
		display:inline-block;
		border:none;
		color:#ffffff;
	}
	.shop_info span{
		color:#ffffff;
	}
}

@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;
	}	
}













/*Home Page 02 Style*/
.home02-banner {
	width: 100%;
	position: relative;
	z-index: 1;
	background-size: cover;
	overflow: hidden;
	color: #FFF;
}
.home02-banner .banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #000;
	opacity: 0.5;
	filter: alpha(opacity=50);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: skew(-41deg, 0deg);
	-moz-transform: skew(-41deg, 0deg);
	transform: skew(-41deg, 0deg);
	-webkit-transform-origin: right top;
	transform-origin: right top;
}
.home02-banner .banner-title {
	line-height: 1.2;
	font-size: 80px;
	margin: 200px 0 50px;
	font-weight: bold;
}
.home02-banner .banner-content {
	font-size: 20px;
	line-height: 2;
}
.home02-banner .banner-link {
	position: absolute;
	top: 76.3%;
	left: 60.7%;
	padding: 33px 60px 33px 120px;
	overflow: hidden;
	font-size: 18px;
	white-space: nowrap;
}
.home02-banner .banner-link:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #61b632;
	opacity: 0.6;
	-webkit-transform: skew(-41deg, 0deg);
	-moz-transform: skew(-41deg, 0deg);
	transform: skew(-41deg, 0deg);
	-webkit-transform-origin: right top;
	transform-origin: right bottom;
	z-index: -1;
}
.home02-banner .banner-link a {
	color: #FFF;
}
.home02-banner .banner-link .fa {
	display: inline-block;
	width: 46px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	border: 1px solid #FFF;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	vertical-align: middle;
	margin-left: 10px;
}
 @media only screen and (min-width: 1400px) {
.home02-banner .banner-title {
	font-size: 100px;
	margin: 280px 0 50px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.home02-banner {
	height: auto!important;
	min-height:inherit!important;
}
.home02-banner .banner-title {
	font-size: 60px;
	margin:100px 0 50px;
}
.home02-banner .banner-link {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transform: scale(0.7);
	-webkit-transform: scale(0.7);
	float:right;
	position:relative;
}
}
@media only screen and (max-width: 767px) {
.home02-banner .banner-title {
	font-size: 30px;
	margin: 120px 0 50px;
}
.home02-banner .banner-link {
	position: static;
	transform: scale(0.5);
	-webkit-transform: scale(0.5);
	transform-origin: left center;
	-webkit-transform-origin: left center;
	display: inline-block;
	padding: 30px 60px;
}
.home02-banner .banner-link:before {
	transform: none;
	-webkit-transform: none;
}
}
.home02-cont02 {
	text-align: center;
	position: relative;
}
.home02-cont02 img {
	max-width: 100%;
}
.home02-cont02 .text_img {
	display: inline-block;
	position: relative;
	max-width: 60%;
}
.home02-cont02 dl {
	position: absolute;
	max-width: 18%;
}
.home02-cont02 dl.text_box_1 .line, .home02-cont02 dl.text_box_2 .line {
	width: 217px;
	height: 100px;
	border-right: 1px solid #cccccc;
	border-top: 1px solid #cccccc;
	position: absolute;
	left: 100%;
	top: 50%;
	margin-left: 3px;
}
.home02-cont02 dl.text_box_1 .line:before, 
.home02-cont02 dl.text_box_2 .line:before {
	content: "";
	width: 11px;
	height: 11px;
	background-color: #61b633;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	position: absolute;
	right: -6px;
	bottom: -10px;
}
.home02-cont02 dl.text_box_2 .line {
	left: auto;
	right: 100%;
	margin-right: 4px;
	border-right: none;
	border-left: 1px solid #cccccc;
}
.home02-cont02 dl.text_box_2 .line:before {
	right: auto;
	left: -6px;
}
.home02-cont02 dl.text_box_3 .line, .home02-cont02 dl.text_box_4 .line {
	width: 115px;
	border-right: 1px solid #cccccc;
	border-top: 1px solid #cccccc;
	position: absolute;
	left: 100%;
	top: 50%;
	margin-left: 3px;
}
.home02-cont02 dl.text_box_3 .line:before, .home02-cont02 dl.text_box_4 .line:before {
	content: "";
	width: 11px;
	height: 11px;
	background-color: #ffffff;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	position: absolute;
	right: -6px;
	bottom: -5px;
}
.home02-cont02 dl.text_box_4 .line {
	left: auto;
	right: 100%;
	margin-right: 3px;
}
.home02-cont02 dl.text_box_4 .line:before {
	right: auto;
	left: -6px;
}
.home02-cont02 dl.text_box_1 {
	left: 0;
	top: 10%;
	text-align: right;
	margin-left: 5%;
	border-right: 3px solid #61b633;
	padding-right: 20px;
}
.home02-cont02 dl.text_box_2 {
	right: 0;
	top: 10%;
	text-align: left;
	margin-right: 5%;
	border-left: 3px solid #61b633;
	padding-left: 20px;
}
.home02-cont02 dl.text_box_3 {
	left: 0;
	bottom: 20%;
	text-align: right;
	border-right: 3px solid #61b633;
	padding-right: 20px;
}
.home02-cont02 dl.text_box_4 {
	right: 0;
	bottom: 20%;
	text-align: left;
	border-left: 3px solid #61b633;
	padding-left: 20px;
}
.home02-cont02 dl dt {
	color: #333333;
	font-size: 16px;
	margin-bottom: 8px;
}
.home02-cont02 dl dd {
	line-height: 1.8;
	font-size: 13px;
	color: #666666;
}
 @media only screen and (max-width: 1024px) {
	.home02-cont02 .text_img {
		max-width: inherit;
	}
	.home02-cont02 dl.text_box_1, 
	.home02-cont02 dl.text_box_2, 
	.home02-cont02 dl.text_box_3, 
	.home02-cont02 dl.text_box_4{
		position:static;
		width:auto;
		max-width:none;
		text-align:left;
		margin:0 0 20px;
		border-right:none;
		border-left-style:solid;
		border-left-width:3px;
	}
	.home02-cont02 dl.text_box_1,
	.home02-cont02 dl.text_box_3{
		padding-left:20px;
		padding-right:0;
	}
	.home02-cont02 dl .line, 
	.home02-cont02 dl .line{
		display:none;
	}

}

.home02-bg {
	background-color: #f4f4f4;
}
.home02-ibox {
	text-align: center;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	padding: 35px;
	margin-bottom: 8px;
	color: #999;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.home02-ibox > .fa, .home02-ibox > .ico {
	margin: 0 auto;
	color: #61b632;
	text-align: center;
	font-size: 50px;
	overflow: hidden;
}
.home02-ibox > .ico img {
	max-width: 100%;
	vertical-align: middle;
	margin-bottom: 4px;
}
.home02-ibox > h5 {
	font-size: 17px;
	margin-bottom: 25px;
	font-weight: normal;
	color: #333;
}
.home02-ibox:hover {
	border: 1px solid #61b632;
}
.home02-bg02 {
	background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/home02-bg02.jpg") no-repeat center center;
	background-attachment: fixed;
	background-size: cover;
	text-align: center;
	position: static;
}
.home02-bg02 > .shade {
	background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/home02-bg02-dot.png");
}
@media only screen and (max-width: 991px) {
	.home02-bg02 {
		background-attachment:scroll;
	}
}
.home02-cont02 {
	color: #ffffff;
	font-size: 20px;
	padding: 0px 10px;
}
.home02-cont02 h3 {
	font-size: 80px;
	color: #FFF;
	font-weight: bold;
	line-height: 1.2;
}
.home02-btn, a.home02-btn, a:link.home02-btn, a:active.home02-btn, a:visited.home02-btn {
	font-size: 15px;
	padding: 20px 60px;
	margin: 0 0 8px;
	border: 1px solid #ffffff;
	text-decoration: none;
	display: inline-block;
	color: #FFF;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
a.home02-btn:hover {
	border-color: #61b632;
	background-color: #61b632;
	color: #FFF!important;
	text-decoration: none;
}
.home02-ibox02 {
	padding-bottom: 30px;
}
.home02-ibox02 img {
	max-width: 100%;
}
.home02-ibox02 .title {
	padding: 30px 0;
	position: relative;
}
.home02-ibox02 .title h5 {
	color: #333333;
	font-size: 17px;
	margin-bottom: 5px;
}
.home02-ibox02 .title .love {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -10px;
}
.home02-ibox02 .title .love .fa {
	margin-right: 5px;
	font-size: 17px;
	vertical-align: middle;
}
.home02-ibox02 .img {
	position: relative;
	overflow: hidden;
	display: inline-block;
	max-width: 100%;
}
.home02-ibox02 .img .fa {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	margin: -40px 0 0 -40px;
	background-color: #61b632;
	font-size: 30px;
	color: #FFF;
	opacity: 0;
	z-index:2;
	filter: alpha(opacity=0);
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.home02-ibox02 .img:before,
.home02-ibox02 .img:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	opacity: 0;
	filter: alpha(opacity=0);
}
.home02-ibox02 .img:before{
}
.home02-ibox02 .img:after{
	background-color: rgba(0,0,0,0.4);
	transform-origin:right bottom;
	transform:rotate(37.3deg);
	width: 200%;
	height: 200%;
	left: auto;
	top: auto;
	right: 0;
	bottom: 0;
}
.home02-ibox02:hover .img .fa, 
.home02-ibox02:hover .img:before ,
.home02-ibox02:hover .img:after{
	opacity: 1;
	filter: alpha(opacity=100);
}
.home02-title {
	font-size: 26px;
	color: #333333;
	line-height: 1.2;
	white-space: normal;
	vertical-align: middle;
	font-weight: bold;
	padding: 0px;
	margin: 0px 0 35px;
	text-align: center;
}
.home02-title span {
	display: block;
	font-size: 15px;
	color: #666666;
	line-height: 1.2;
	white-space: normal;
	vertical-align: middle;
	font-weight: bold;
	padding: 10px 0 0 0;
	margin: 0px;
}
.home02-ibox03 {
	text-align: center;
	padding: 0px 25px;
}
.home02-ibox03 .decorate {
	display: inline-block;
	position: relative;
}
.home02-ibox03 .decorate .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;
}
.home02-ibox03 .number {
	font-size: 30px;
	color: #333333;
	line-height: 1.2;
	padding-top: 10px;
}
.home02-ibox03 .title {
	margin-bottom: 10px;
	font-size: 15px;
}
.home02-ibox03 .color-1 {
	color:#20a3f0;
}
.home02-ibox03 .color-2 {
	color:#7770cc;
}
.home02-ibox03 .color-3 {
	color:#b75ccd;
}
.home02-ibox03 .color-4 {
	color:#4680dd;
}

@media only screen and (max-width: 767px) {
.home02-ibox03 {
	margin-bottom: 20px;
}
}
.home02-bg03 {
	background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/home02-bg03.jpg") no-repeat center center;
	background-attachment: fixed;
	background-size: cover;
	text-align: center;
	position: static;
}
@media only screen and (max-width: 991px) {
	.home02-bg03 {
		background-attachment:scroll;
	}
}

.home02-title02 {
	font-size: 26px;
	color: #FFF;
	line-height: 1.2;
	white-space: normal;
	vertical-align: middle;
	font-weight: bold;
	padding: 0px;
	margin: 0px 0 35px;
	text-align: center;
}
.home02-Testimonials {
	min-height: inherit;
}
.home02-Testimonials ul {
	margin: 0;
}
.home02-Testimonials .mark {
	width: 100px;
	height: 100px;
	line-height: 94px;
	text-align: center;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	background-color: #FFF;
	color: #61b632;
	font-size: 38px;
	margin: auto auto -50px;
	position: relative;
	z-index: 1;
}
.home02-Testimonials li blockquote {
	background-color: rgba(255,255,255,0.2);
	padding: 80px 60px 60px;
	color: #FFF;
	font-size: 13px;
	font-style: normal;
	margin: 0px 10% 100px;
}
.home02-Testimonials .dot {
	text-align: center;
	width: 100%;
}
.home02-Testimonials .dot a img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.home02-Testimonials .dot a {
	text-indent: inherit;
	width: auto;
	height: auto;
	padding: 5px;
	border: 1px solid transparent;
}
.home02-Testimonials .dot a.actived {
	border: 1px solid #FFF;
}
.home02-Testimonials .last_page, .home02-Testimonials .next_page {
	border: none;
	text-indent: -100px;
	overflow: hidden;
	border-left: 2px solid #FFF;
	border-bottom: 2px solid #FFF;
	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: 3%;
	top: 50%;
}
.home02-Testimonials .next_page {
	left: auto;
	right: 3%;
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
@media only screen and (max-width: 767px) {
	.home02-Testimonials li blockquote {
		padding:70px 15px 20px;
	}
}
.home02-price .price_holder {
	text-align: center;
	border-top: none;
	margin: 0;
}
.home02-price .price_title {
	border: none;
	border-bottom: 5px solid #61b632;
	background-color: #333333;
	padding: 28px 20px;
	text-align: center;
}
.home02-price .price_title h2 {
	color: #FFF;
	font-size: 18px;
}
.home02-price .price_box {
	text-align: center;
	padding: 40px 0px 40px 0px;
	border-color: #dddddd
}
.home02-price .price {
	font-size: 40px;
}
.home02-price .sup {
	vertical-align: bottom;
}
.home02-price li {
	text-align: center;
	font-size: 14px;
}
.home02-price .price_holder ul li {
	border-color: #dddddd;
}
.home02-price a.btn {
	color: #FFF;
	display: inline-block;
	margin: 30px 0;
	position: relative;
	font-size: 14px;
	padding: 12px 25px;
	background-color: #61b732;
}
.home02-title03 {
	font-size: 30px;
	color: #333333;
	line-height: 1.2;
	white-space: normal;
	vertical-align: middle;
	font-weight: bold;
	padding: 0px;
	margin: 0px 0 35px;
}
.home02-title03:after {
	content: "";
	width: 50px;
	display: block;
	padding-top: 25px;
	border-bottom: 3px solid #61b632;
}
.home02-btn02, a.home02-btn02, a:link.home02-btn02, a:active.home02-btn02, a:visited.home02-btn02 {
	font-size: 15px;
	padding: 11px 29px;
	margin: 0 0 8px;
	text-decoration: none;
	display: inline-block;
	color: #ffffff;
	background-color: #61b632;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
a.home02-btn02:hover {
	background-color: #000!important;
	text-decoration: none;
}
.home02-title04 {
	font-size: 26px;
	color: #ffffff;
	line-height: 1.2;
	white-space: normal;
	vertical-align: middle;
	font-weight: bold;
	padding: 0px;
	margin: 0px 0 10px;
}
.home02-list {
	margin: 0;
	padding: 0;
}
.home02-list li {
	list-style: none;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #4d4d4d;
}
.home02-list.border li {
	border-color: #cbcbcb;
}
.home02-list li a {
	color: #999999;
}
.home02-list li:before {
	content: "\f009";
	font-family: "FontAwesome";
	font-size: 14px;
	margin-right: 10px;
	vertical-align: middle;
}
.home02-ibox04 {
	margin: 0;
	padding: 0;
	list-style: none;
}
.home02-ibox04 img {
	float: left;
	margin: 0 15px 5px 0;
}
.home02-ibox04 li {
	clear: both;
	overflow: hidden;
	margin-bottom: 40px;
}
.home02-social a {
	width: 42px;
	height: 42px;
	line-height: 42px;
	font-size: 16px;
	display: inline-block;
	background-color: #c8c8c8;
	background-color: rgba(255,255,255,0.2);
	margin: 0 5px 5px 0;
	text-align: center;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.home02-social a span {
	color: #b3b3b3;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.home02-social a:hover {
	color: #FFF;
	background-color: #21a4f0;
}
.home02-social.bg_color a {
	background-color: rgba(0,0,0,0.3);
}
.home02-social.bg_color a span {
	color: #FFF;
}
.home02-custompane{
	position:relative;
}


.home02-custompane:after{
	content:"";
	display:block;
	width:100%;
	clear:both;
}
.home02-custompane > .left {
	width: 50%;
	float:left;
	background:url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/Home02PaneA-bg.jpg") no-repeat center center;
	background-size:cover;
}
.home02-custompane > .right {
	width: 50%;
	float:right;
}
.home02-custompane [class*="Pane"] {
	margin: 0;
}
.home02-custompane .DnnModule{
	position:static;
}
.home02-gmap{
	overflow:hidden;
}
.home02-gmap:before{
	content:"";
	position:absolute;
	bottom:100%;
	left:0;
	width:100%;
	height:100px;
	box-shadow:0 0 7px rgba(0,0,0,0.4);	
	-moz-box-shadow:0 0 7px rgba(0,0,0,0.4); 	
	-webkit-box-shadow:0 0 7px rgba(0,0,0,0.4);
	z-index:333;
}

@media only screen and (min-width: 992px) {
	.home02-gmap{
		position:absolute;
		right:0;
		top:0;
		width:50%;
		height:100%!important;
	}
}
@media only screen and (max-width: 991px) {
	.home02-custompane > .left {
		width:100%;
		float:none;
	}
	.home02-custompane > .right {
		width:100%;
		float:none;
	}
	.home02-gmap{
		position:relative;
	}
}

.home02-list02{
	margin:0;
	padding:0;
	list-style:none;
}
.home02-list02 li{
	margin:0;
	padding:18px 0;
	border-bottom:1px solid rgba(255,255,255,0.2);
}
.home02-list02 li:first-child{
	padding-top:0;
}
.home02-list02 li .fa{
	font-size:16px;
	color:#50bdad;
	margin-right:15px;
	vertical-align:middle;
	margin-bottom:2px;
}
.home02-list02 li a,
.home02-list02 li a:link,
.home02-list02 li a:active,
.home02-list02 li a:visited{
	color:#666666;
}

/*Accent colour*/
.home02-banner .banner-link:before,
.home02-ibox02 .img .fa,
.home02-price a.btn,
.home02-btn02, 
a.home02-btn02, 
a:link.home02-btn02, 
a:active.home02-btn02, 
a:visited.home02-btn02,
div.Theme_Responsive_20073_home02 .form_submit .btn,
.home02-social a:hover,
.photo_box .ico span, 
.photo_box .ico em, 
.photo_box .ico i, 
.photo_box .ico .fa{
	background-color:#640f0d;
}
.home02-cont02 dl.text_box_1,
.home02-cont02 dl.text_box_2,
.home02-cont02 dl.text_box_3,
.home02-cont02 dl.text_box_4,
.home02-ibox:hover,
.home02-price .price_title,
.home02-title03:after{
	border-color:#640f0d;
}
.home02-ibox > .fa, 
.home02-ibox > .ico,
.home02-Testimonials .mark,
div.Theme_Responsive_20073_home02 .form_submit .btn:hover,
.home02-list02 li a:hover{
	color:#640f0d;
}
a.home02-btn:hover{
	border-color:#640f0d;
	background-color:#640f0d;
}
.home02-list02 li .fa{
	color:#640f0d;
}
.footer_box .home02-list02 li .fa{
	border-color:#00aec8;
}
.footer_box .home02-social a:hover{
	background-color:#00aec8;
}
.footer_box .home02-list02 li a:hover,
.footer_box .home02-list02 li .fa{
	color:#00aec8;
}















/*Home Page 04 Style*/
.home04-social {
	border-left: 1px solid rgba(0,0,0,0.1);
	padding: 5px 0px 5px 26px;
}
.home04-social .fa {
	font-size: 28px;
}
.home04-social a {
	text-decoration: none!important;
}
.home04-social .fa.color-1 {
	color: #2e54a3;
}
.home04-social .fa.color-2 {
	color: #00aded;
}
.home04-social .fa.color-3 {
	color: #0076b5;
}
.home04-banner-more {
	background-color: #50bdac;
	line-height: 56px;
	border-radius: 35px;
	-moz-border-radius: 35px;
	-webkit-border-radius: 35px;
	transition: background-color ease-in 200ms;
	-webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
	font-size: 14px;
	font-weight:bold;
	display: inline-block;
	padding: 0 40px;
}
.tp-banner .home04-banner-more, 
.tp-banner .home04-banner-more:link, 
.tp-banner .home04-banner-more:active, 
.tp-banner .home04-banner-more:visited {
	color: #FFF;
}
.tp-banner .home04-banner-more:hover {
	background-color: #444444;
}

.home04-text {
	width:50%;
	text-align:center;
	margin:auto;
	font-size:14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.home04-text {
		width:60%;
	}
}
@media only screen and (max-width: 767px) {
	.home04-text {
		width:80%;
	}
}

.home04-ibox {
	text-align: center;
}
.home04-ibox > .fa, .home04-ibox > .ico {
	height: 70px;
	line-height: 70px;
	width: 70px;
	margin: 0 auto 25px;
	background-color: #50bdad;
	color: #FFF;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	text-align: center;
	font-size: 26px;
	overflow: hidden;
}
.home04-ibox > .ico img {
	max-width: 100%;
	vertical-align: middle;
	margin-bottom: 4px;
}
.home04-ibox > h5 {
	font-size: 17px;
	margin-bottom: 25px;
	font-weight: normal;
}
.home04-bg {
	position: relative;
	overflow: hidden;
	z-index:2;
	background-color: #ececec;
}
.home04-bg .left_bg {
	position: static;
}

.home04-bg .left_bg > .img_bg {
	content: "";
	position: absolute;
	top: 0;
	left:0;
	width: 50%;
	height: 100%;
	z-index:-1;
	background-repeat:no-repeat;
	background-position:center;
}

@media only screen and (max-width: 991px) {
	.home04-bg .left_bg > .img_bg{
		position:static;
		height:350px;
		width:100%;
		margin-bottom:30px;
		background-size:cover;
	}
}

.home04-pl {
	padding-left: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.home04-pl {
	padding-left: 20px;
}
}
@media only screen and (max-width: 991px) {
.home04-pl {
	padding-left: 0px;
}
}
.home04-title {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 36px;
	white-space: nowrap;
}
.home04-title:before {
	content: "";
	border-left: 3px solid #50bdad;
	display: inline-block;
	height: 30px;
	vertical-align: middle;
	margin: 0 27px 4px 0;
}
.home04-title:after {
	content: "";
	border-right: 3px solid #50bdad;
	display: inline-block;
	height: 30px;
	vertical-align: middle;
	margin: 0 0px 4px 27px;
}
.home04-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.home04-list li {
	width: 48%;
	display: inline-block;
	vertical-align: top;
	padding: 8px 0;
}
.home04-list li .fa {
	margin-right: 10px;
	font-size: 17px;
	vertical-align: middle;
	color: #50bdad;
}
.home04-list li a, .home04-list li a:link, .home04-list li a:active, .home04-list li a:visited {
	color: #666666;
}
.home04-list li a:hover {
	color: #50bdad;
}
.home04-btn, a.home04-btn, a:link.home04-btn, a:active.home04-btn, a:visited.home04-btn {
	font-size: 14px;
	padding: 15px 45px;
	color: #FFF;
	background-color: #50bdac;
	text-decoration: none;
	display: inline-block;
	font-weight: bold;
	margin: 0 20px 8px 0;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	border-radius: 40px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
}
a.home04-btn:hover {
	background-color: #444444!important;
	text-decoration: none;
}
.home04-isotope .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;
}
.home04-isotope .photo {
	position: relative;
	margin: 5px;
}
.home04-isotope .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 */
}
.home04-isotope .photo img {
	width: 100%;
}
.home04-isotope .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 */
}
.home04-isotope .photo:hover .fa, .home04-isotope .photo:hover:before {
	filter: alpha(opacity=80);
	opacity: 0.8;
}
.home04-btn02, 
a.home04-btn02, 
a:link.home04-btn02, 
a:active.home04-btn02, 
a:visited.home04-btn02 {
	font-size: 14px;
	padding: 18px 45px;
	color: #FFF;
	text-decoration: none;
	background-color: #444444;
	display: inline-block;
	font-weight: bold;
	margin: 0 20px 8px 0;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	border-radius: 40px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
}
a.home04-btn02:hover {
	background-color: #50bdac;
	text-decoration: none;
}
.home04-bg02 {
	background-color: #f4f4f4;
}
.home04-title02 {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 10px;
	text-align: center;
	color: #000000i;
}
.home04-title02:before {
	content: "";
	border-left: 3px solid #50bdad;
	display: inline-block;
	height: 30px;
	vertical-align: middle;
	margin: 0 27px 4px 0;
}
.home04-title02:after {
	content: "";
	border-right: 3px solid #50bdad;
	display: inline-block;
	height: 30px;
	vertical-align: middle;
	margin: 0 0px 4px 27px;
}
.home04-ibox02 {
	text-align: center;
	width: 200px;
	height: 200px;
	margin: auto;
	background-color: #50bdad;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	position: relative;
	font-size: 18px;
	color: #f4f4f4;
	line-height: 1.6;
	font-weight:bold;
}
.home04-ibox02 .number {
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 18px;
	color: #FFF;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	background-color: #444444;
	display: block;
	position: absolute;
	top: 5px;
	left: 5px;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-delay: 200ms;
	-webkit-animation-delay: 200ms;
}
.home04-ibox02:hover .number {
	-webkit-animation-name: shake3;
	animation-name: shake3;
}
.home04-ibox02 .fa {
	display: block;
	text-align: center;
	font-size: 36px;
	color: #FFF;
	padding: 50px 0 10px;
}
.home04-ibox02:after {
	content: "";
	width: 100px;
	height: 12px;
	position: absolute;
	bottom: -30px;
	left: 50%;
	margin-left: -50px;
	background-image: -webkit-radial-gradient(60% 40% ellipse, rgba(0,0,0,0.3), rgba(0,0,0,0));
	background-image: radial-gradient(60% 40% ellipse, rgba(0,0,0,0.3), rgba(0,0,0,0));
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.home04-ibox02.mt {
	margin-top: 100px;
}
.home04-ibox02:before {
	content: "";
	width: 88px;
	height: 32px;
	background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/arrow_1.png") no-repeat center center;
	position: absolute;
	left: 100%;
	top: 50%;
	margin: -20px 0 0 20px;
	transform: scaleY(-1);
}
.home04-ibox02.mt:before {
	transform: scaleY(1);
}
.row > div:last-child .home04-ibox02:before {
	display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.home04-ibox02.mt {
	margin-top: 0px;
}
.home04-ibox02:before {
	display: none;
}
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.home04-ibox02 {
	margin: 0 auto 60px!important;
}
.home04-ibox02:before {
	display: none;
}
}
 @media only screen and (max-width: 767px) {
.home04-ibox02 {
	margin: 0 auto 60px!important;
}
.home04-ibox02:before {
	display: none;
}
}
.home04-bg03 {
	background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/home04-bg03.jpg") no-repeat center center;
	background-size: cover;
}
.home04-title03 {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 10px;
	text-align: center;
}
.home04-title03:before {
	content: "";
	border-left: 3px solid #FFF;
	display: inline-block;
	height: 30px;
	vertical-align: middle;
	margin: 0 27px 4px 0;
}
.home04-title03:after {
	content: "";
	border-right: 3px solid #FFF;
	display: inline-block;
	height: 30px;
	vertical-align: middle;
	margin: 0 0px 4px 27px;
}
.home04-ibox03 {
	margin: 0;
	padding: 0;
	list-style: none;
}
.home04-ibox03 li {
	position: relative;
	min-height: 100px;
	padding: 0px 0px 50px 177px;
}
.home04-ibox03 li .fa {
	height: 100px;
	width: 100px;
	line-height: 100px;
	text-align: center;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border: 1px solid #FFF;
	margin-right: 10px;
	font-size: 30px;
	vertical-align: middle;
	color: #FFF;
	position: absolute;
	left: 0;
	top: 0;
}
.home04-ibox03 li p {
	line-height: 2;
}
.home04-ibox03 li a, .home04-ibox03 li a:link, .home04-ibox03 li a:active, .home04-ibox03 li a:visited {
	color: #666666;
}
.home04-ibox03 li a:hover {
	color: #50bdad;
}
.home04-ibox03 li h3 {
	font-weight: normal;
	margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
	.home04-ibox03 li {
		padding: 0px 0px 30px 100px;
	}
	.home04-ibox03 li .fa{
	    height: 75px;
		width: 75px;
		line-height: 75px;
		font-size: 24px;
	}
}
.home4-testimonials li blockquote {
	padding: 20px 60px;
	color: #666666;
	font-size: 13px;
	font-style: normal;
	margin: 0px 10% 0px;
	text-align: center;
	text-indent: 0;
}
.home4-testimonials blockquote p {
	color: #666666;
	font-size: 13px;
	font-style: normal;
	text-indent: 0;
}
.home4-testimonials li .pic {
	width: 100px;
	height: 100px;
	margin: auto;
	display: block;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	overflow: hidden;
}
.home4-testimonials blockquote small {
	color: #333333;
	position: static;
	font-size: 14px;
	font-weight: bold;
	padding: 30px 0 0;
}
.home4-testimonials blockquote small:before {
	display: none;
}
.home4-testimonials blockquote span {
	color: #888888;
	display: block;
	text-align: center;
	font-size: 13px;
	margin-top: 5px;
	font-weight: normal;
}
.home4-testimonials .last_page, .home4-testimonials .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: 5%;
	top: 50%;
}
.home4-testimonials .next_page {
	left: auto;
	right: 5%;
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
@media only screen and (max-width: 767px) {
	.home4-testimonials li blockquote{
		padding:20px 0px;
	
	}
}


.home04-logolist {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}
.home04-logolist li {
	display: inline-block;
	padding: 8px 40px;
	border-right: 1px solid #d3d3d3;
	margin-bottom: 8px;
}
.home04-logolist li:last-child {
	border: none;
}
.home04-ibox04 {
	text-align: center;
	font-size: 18px;
	color: #333333;
	font-weight: bold;
}
.home04-ibox04 span {
	display: block;
	text-align: center;
	color: #666666;
	font-weight: normal;
	font-size: 13px;
}
.home04-ibox04 img {
	max-width: 100%;
	margin: 0px;
	transition: opacity ease-in 200ms;
	-webkit-transition: opacity ease-in 200ms; /* Safari and Chrome */
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.home04-ibox04 .pic {
	display: inline-block;
	margin: auto auto 20px;
	max-width: 100%;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	overflow: hidden;
	border:1px solid #d7d7d7;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
}
.home04-ibox04 .pic:hover img {
	opacity: 0.8
}
@media only screen and (max-width: 767px) {
	.home04-logolist li{
		border:none;
	}
}

.home04-loadlist p {
	color: #666666;
	margin-bottom: 14px;
}
.home04-loadlist .progress {
	background-color: #e2e2e2;
	height: 15px;
	overflow: visible;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	position: relative;
}
.home04-loadlist .bar {
	height: 15px;
	width: 0;
	background-color: #50bdad;
	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: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}
.home04-loadlist .bar span {
	position: absolute;
	right: 0;
	top: -35px;
	font-size: 12px;
	line-height: 1;
	padding: 5px;
	color: #666666;
	display: none;
}
.home04-bg04 {
	background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/home04-bg04.jpg") no-repeat center center;
}
.home04-cont {
	text-align: center;
	font-size: 16px;
}
.home04-cont .ico {
	width: 104px;
	height: 104px;
	text-align: center;
	border: 2px solid #FFF;
	margin: auto;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	font-size: 40px;
	color: #50bdad;
	margin-bottom: 40px;
}
.home04-cont .ico span {
	width: 90px;
	height: 90px;
	line-height: 90px;
	display: block;
	margin: 5px auto;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	background-color: #FFF;
}
.home04-cont .title {
	font-size: 40px;
	font-weight: bold;
}
.home04-btn03, a.home04-btn03, a:link.home04-btn03, a:active.home04-btn03, a:visited.home04-btn03 {
	font-size: 14px;
	padding: 15px 50px;
	color: #FFF;
	text-decoration: none;
	border: 2px solid #FFF;
	display: inline-block;
	font-weight: bold;
	margin: 0 20px 8px 0;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	border-radius: 40px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
}
a.home04-btn03:hover {
	border: 2px solid #50bdac;
	background-color: #50bdac;
	text-decoration: none;
}
.home04-list02{
	margin:0;
	padding:0;
	list-style:none;
}
.home04-list02 li{
	margin:0;
	padding:18px 0;
	border-bottom:1px solid #cbcbcb;
}
.home04-list02 li:first-child{
	padding-top:0;
}
.home04-list02 li .fa{
	font-size:16px;
	color:#50bdad;
	margin-right:15px;
	vertical-align:middle;
	margin-bottom:2px;
}
.home04-list02 li a,
.home04-list02 li a:link,
.home04-list02 li a:active,
.home04-list02 li a:visited{
	color:#666666;
}
.home4-ibox {
	margin:0;
	padding:0;
	list-style:none;
}
.home4-ibox li{
	margin:0;
	padding:0 0 40px;
}
.home4-ibox li img {
	float:left;
	margin-right:16px;
}
.home04-social02 .fa{
	width:42px;
	height:42px;
	line-height:42px;
	text-align:center;
	font-size:14px;
	display:inline-block;
	background-color:#c8c8c8;
	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? */
}
.home04-social02 a:hover .fa{
	background-color:#50bdad;
}

/*Accent colour*/
.Home04-Container01 .Home04-heading01:before,
.Home04-Container01 .Home04-heading01:after,
.home04-title:before,
.home04-title:after,
.home4-testimonials .last_page:hover, 
.home4-testimonials .next_page:hover,
.home04-title02:before,
.home04-title02:after{
	border-color:#640f0d;
}
.home04-banner-more,
.home04-ibox > .fa, 
.home04-ibox > .ico,
.home04-btn, 
a.home04-btn, 
a:link.home04-btn, 
a:active.home04-btn, 
a:visited.home04-btn,
.home04-isotope .photo:before,
a.home04-btn02:hover,
.home04-ibox02,
.home04-loadlist .bar,
.home04-social02 a:hover .fa{
	background-color:#640f0d;
}
.home04-isotope .photo .fa,
.home04-cont .ico,
.home04-list li .fa,
.home04-list li a:hover,
.home04-list02 li a:hover,
.home04-list02 li .fa{
	color:#640f0d;
}
a.home04-btn03:hover{
	background-color:#640f0d;
	border-color:#640f0d;
}
.footer_box .home04-list02 li a:hover,
.footer_box .home04-list02 li .fa{
	color:#00aec8;
}
.footer_box .home04-social02 a:hover .fa{
	background-color:#00aec8;
}















/*Home Page 06 Style*/
.home06-bg {
	background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/home06-bg.png") no-repeat center bottom;
}
.home06-ibox {
	text-align: center;
}
.home06-ibox h3 {
	margin: 30px 0;
}
.home06-bg02 {
	background-color: #f4f4f4;
}
.home06-title {
	padding: 0px 0 20px;
	text-align: center;
}
.home06-title h3 {
	display: inline-block;
	font-size: 24px;
	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;
	margin-bottom: 4px;
}
.home06-ibox02 {
	margin: 0;
	padding: 0;
	list-style: none;
}
.home06-ibox02 li {
	position: relative;
	padding: 0 0 30px 60px;
}
.home06-ibox02 li .ico {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 30px;
	color: #00aec8;
}
.home06-ibox02 li h3 {
	font-size: 15px;
	color: #333333;
	margin-bottom: 15px;
}
.home06-ibox02 li p {
	line-height: 2;
}
.home06-btn, a.home06-btn, a:link.home06-btn, a:active.home06-btn, a:visited.home06-btn {
	font-size: 14px;
	padding: 0px 50px;
	color: #FFF;
	height: 60px;
	line-height: 60px;
	background-color: #00aec8;
	border-left: 4px solid rgba(0,0,0,0.2);
	text-decoration: none;
	display: inline-block;
	margin: 0 20px 8px 0;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
a.home06-btn:hover {
	background-color: #555!important;
	text-decoration: none;
}
.home06-bg03 {
	position: relative;
	z-index: 1;
}
.home06-bg03:before {
	content: "";
	width: 100%;
	height: 100%;
	background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/home06-bg03.jpg") center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	transform: skew(0deg, -4deg);
	transform-origin: left bottom;
	-webkit-transform-origin: left bottom;
	z-index: -1;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
}
.home06-title02 {
	padding: 0px 0 20px;
	text-align: center;
}
.home06-title02 h3 {
	display: inline-block;
	font-size: 24px;
	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;
	margin-bottom: 4px;
	color: #FFF;
	border-color: #FFF;
}
.home06-ibox03 {
	border: 1px solid #FFF;
	text-align: center;
	padding: 45px;
	color: #FFF;
	margin-bottom: 10px;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.home06-ibox03 .fa {
	font-size: 40px;
	margin-bottom: 30px;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.home06-ibox03 h3 {
	color: #FFF;
	font-weight: normal;
	font-size: 16px;
	margin-bottom: 8px;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.home06-ibox03:hover {
	background-color: #FFF;
	color: #999999;
}
.home06-ibox03:hover .fa {
	color: #cccccc;
}
.home06-ibox03:hover h3 {
	color: #333333;
}
.home06-ibox04 {
	text-align: center;
	color: #666666;
	margin-bottom: 15px;
}
.home06-ibox04 img {
	max-width: 100%;
	margin-bottom: 30px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.home06-ibox04 h3 {
	color: #333333;
	font-size: 18px;
}
.home06-ibox04 .social {
	text-align: center;
}
.home06-ibox04 .social span {
	width: 33px;
	height: 33px;
	line-height: 33px;
	font-size: 13px;
	display: inline-block;
	margin: 0 2px 5px;
	text-align: center;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.home06-ibox04 .social span {
	color: #FFF;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.home06-ibox04 .social a:hover span {
	background-color: #555;
}
.home06-carousel {
}
.home06-carousel .item {
	margin: 0 15px;
	padding: 0px;
}
.home06-carousel .owl-buttons .owl-prev, .home06-carousel .owl-buttons .owl-next, .home06-carousel .owl-buttons .owl-prev:hover, .home06-carousel .owl-buttons .owl-next:hover {
	width: 61px;
	height: 61px;
	line-height: 61px;
	border: 1px solid #bcbcbc;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	background-color: transparent;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.home06-carousel .owl-buttons .owl-prev {
	left: 0px;
}
.home06-carousel .owl-buttons .owl-next {
	right: 0px;
}
.home06-carousel .owl-buttons .owl-prev:before, .home06-carousel .owl-buttons .owl-next:before {
	display: none;
}
.home06-carousel .owl-buttons .owl-prev:after, .home06-carousel .owl-buttons .owl-next:after {
	content: "\f104";
	font-family: "FontAwesome";
	font-size: 30px;
	color: #bcbcbc;
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.home06-carousel .owl-buttons .owl-next:after {
	content: "\f105";
}
.home06-carousel .owl-buttons .owl-prev:hover, .home06-carousel .owl-buttons .owl-next:hover {
	border-color: #00aec8;
}
.home06-carousel .owl-buttons .owl-prev:hover:after, .home06-carousel .owl-buttons .owl-next:hover:after {
	color: #00aec8;
}
.home06-carousel .owl-page {
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border: none;
	background-color: #cecece;
	width: 20px;
	height: 20px;
	margin: 0px 4px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.home06-carousel .owl-page:hover, .home06-carousel .owl-page.active {
	background-color: #00aec8;
}
.home06-carousel .item {
	position: relative;
}
.home06-carousel .item .content {
	background-color: #ffffff;
	padding: 45px;
	border: 1px solid #dddddd;
	border-top: none;
}
.home06-carousel .item .content p {
	color: #666666;
}
.home06-carousel .item .content h3 {
	font-size: 18px;
	color: #333333;
	font-weight: normal;
	margin-bottom: 20px;
}
.home06-carousel .item .content .info {
	color: #999999;
}
.home06-carousel .item .img_box:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #cd3637;
	opacity: 0;
	filter: alpha(opacity=0);
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.home06-carousel .item .img_box:hover:before {
	opacity: 0.7;
	filter: alpha(opacity=70);
}
.home06-carousel .owl-pagination {
	margin-top: 40px;
}
.dnngo-main.boxed .home06-carousel .owl-buttons .owl-prev {
	left: 0;
}
.dnngo-main.boxed .home06-carousel .owl-buttons .owl-next {
	right: 0;
}
@media only screen and (min-width: 1300px) {
.home06-carousel .owl-buttons .owl-prev {
	left: -65px;
}
.home06-carousel .owl-buttons .owl-next {
	right: -65px;
}
}
@media only screen and (min-width: 1640px) {
.home06-carousel .owl-buttons .owl-prev {
	left: -130px;
}
.home06-carousel .owl-buttons .owl-next {
	right: -130px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.home06-carousel .owl-item .carousel-cont {
	padding: 15px;
}
.home06-carousel .owl-item .carousel-cont.text_left {
	left: -35%;
	width: 35%;
}
.home06-carousel .owl-item .carousel-cont.text_right {
	right: -35%;
	width: 35%;
}
.home06-carousel .owl-buttons .owl-prev {
	left: 0px;
}
.home06-carousel .owl-buttons .owl-next {
	right: 0px;
}
}
 @media only screen and (max-width: 767px) {
.home06-carousel .owl-pagination {
	bottom: 3px;
}
.home06-carousel .owl-item .carousel-cont.text_left, .home06-carousel .owl-item .carousel-cont.text_right {
	height: auto;
	top: auto;
	bottom: 0px;
	padding: 8px 15px;
	width: auto;
}
.home06-carousel .owl-item .carousel-cont.text_top, .home06-carousel .owl-item .carousel-cont.text_bottom {
	padding: 8px 15px;
}
.home06-carousel .owl-item .carousel-cont p {
	display: none;
}
.home06-carousel .owl-item .carousel-cont h3 {
	font-size: 13px;
	padding: 0;
	margin: 0;
}
.home06-carousel .owl-buttons .owl-prev, .home06-carousel .owl-buttons .owl-next {
	margin: 0;
}
}
.home06-bg04 {
	position: relative;
	z-index: 1;
}
.home06-bg04:before {
	content: "";
	width: 100%;
	height: 100%;
	background: #00aec8;
	position: absolute;
	top: 0;
	left: 0;
	transform: skew(0deg, -4deg);
	transform-origin: left bottom;
	-webkit-transform-origin: left bottom;
	z-index: -1;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
}
.home06-ibox05 {
	text-align: center;
	position: relative;
}
.home06-ibox05 img {
	max-width: 100%;
}
.home06-ibox05 .text_img {
	display: inline-block;
	position: relative;
	max-width: 30%;
	text-align: center;
}
.home06-ibox05 dl {
	position: absolute;
	max-width: 28%;
}
.home06-ibox05 dl .line span {
	display: inline-block;
	width: 50px;
	height: 50px;
	background-color: #FFF;
	text-align: center;
	line-height: 50px;
	color: #00aec8;
	font-size: 16px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	position: absolute;
}
.home06-ibox05 dl.text_box_1 .line span, .home06-ibox05 dl.text_box_3 .line span {
	top: -25px;
	left: -25px;
}
.home06-ibox05 dl.text_box_1 .line, .home06-ibox05 dl.text_box_3 .line {
	width: 150px;
	height: 50px;
	border-left: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	position: absolute;
	left: 100%;
	top: 50%;
	margin-left: 60px;
	text-align: left;
}
.home06-ibox05 dl.text_box_1 .line:before, .home06-ibox05 dl.text_box_3 .line:before {
	content: "";
	width: 9px;
	height: 9px;
	background-color: #313131;
	border: 2px solid #FFFFFF;
	box-shadow: 0 0 1px #999;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	position: absolute;
	right: -5px;
	bottom: -5px;
}
.home06-ibox05 dl.text_box_2 .line span, .home06-ibox05 dl.text_box_4 .line span {
	top: -25px;
	right: -25px;
}
.home06-ibox05 dl.text_box_2 .line, .home06-ibox05 dl.text_box_4 .line {
	width: 150px;
	height: 50px;
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	position: absolute;
	right: 100%;
	top: 50%;
	margin-right: 60px;
}
.home06-ibox05 dl.text_box_2 .line:before, .home06-ibox05 dl.text_box_4 .line:before {
	content: "";
	width: 9px;
	height: 9px;
	background-color: #313131;
	border: 2px solid #FFFFFF;
	box-shadow: 0 0 1px #999;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	position: absolute;
	left: -5px;
	bottom: -5px;
}
.home06-ibox05 dl.text_box_1 {
	left: 0;
	top: 10%;
	text-align: right;
	padding-right: 20px;
}
.home06-ibox05 dl.text_box_2 {
	right: 0;
	top: 10%;
	text-align: left;
	padding-left: 20px;
}
.home06-ibox05 dl.text_box_3 {
	left: 0;
	bottom: 0%;
	text-align: right;
	padding-right: 20px;
}
.home06-ibox05 dl.text_box_4 {
	right: 0;
	bottom: 0%;
	text-align: left;
	padding-left: 20px;
}
.home06-ibox05 dl.text_box_3 .line, .home06-ibox05 dl.text_box_4 .line {
	top: 15px;
}
.home06-ibox05 dl dt {
	color: #333333;
	font-size: 16px;
	margin-bottom: 8px;
	font-weight: lighter;
	letter-spacing: 1px;
}
.home06-ibox05 dl dd {
	line-height: 1.8;
}
.home06-ibox05 dl dt {
	color: #FFF;
	font-size: 18px;
	margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.home06-ibox05 dl.text_box_1, .home06-ibox05 dl.text_box_2 {
	top: -10%;
}
.home06-ibox05 dl.text_box_3, .home06-ibox05 dl.text_box_4 {
	bottom: -22%;
}
.home06-ibox05 dl.text_box_1 .line, .home06-ibox05 dl.text_box_3 .line, .home06-ibox05 dl.text_box_2 .line, .home06-ibox05 dl.text_box_4 .line {
	width: 90px;
}
}
 @media only screen and (max-width: 991px) {
.home06-ibox05 dl.text_box_1,  .home06-ibox05 dl.text_box_2,  .home06-ibox05 dl.text_box_3,  .home06-ibox05 dl.text_box_4 {
	text-align: left;
	position: static;
	max-width: inherit;
	padding: 0;
}
.home06-ibox05 dl .line {
	display: none;
}
}
.home06-btn02, a.home06-btn02, a:link.home06-btn02, a:active.home06-btn02, a:visited.home06-btn02 {
	font-size: 14px;
	padding: 0px 50px;
	height: 60px;
	line-height: 60px;
	background-color: #FFF;
	color: #00aec8;
	border-left: 4px solid rgba(0,0,0,0.2);
	text-decoration: none;
	display: inline-block;
	margin: 0 20px 8px 0;
	font-weight: bold;
	transition: background ease-in 200ms;
	-webkit-transition: background ease-in 200ms; /* Safari and Chrome */
}
a.home06-btn02:hover {
	color: #FFF!important;
	border: 2px solid #ffffff;
	background-color: transparent;
	text-decoration: none;
	line-height: 56px;
	padding: 0px 48px 0 52px;
}
.home06-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.home06-list li {
	padding: 20px 0;
	border-bottom: 1px solid #dddddd;
}
.home06-list li .fa {
	margin-right: 18px;
	color: #a3a3a3;
	font-size: 20px;
	vertical-align: middle;
}
.home06-list li:last-child {
	border-bottom: none
}
.home06-bg05 {
	position: relative;
	z-index: 1;
}
.home06-bg05:before {
	content: "";
	width: 100%;
	height: 100%;
	background: url("/Portals/_default/skins/20073-unlimitedcolorspack-055/images/home06-bg05.jpg") center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	transform: skew(0deg, -4deg);
	transform-origin: left bottom;
	-webkit-transform-origin: left bottom;
	z-index: -1;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
}
#home06-goup {
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	color: #FFF;
	font-size: 28px;
	background-color: #00aec8;
	margin: -18px auto 0;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	cursor: pointer;
}
 @media only screen and (min-width: 1300px) {
#home06-goup {
	margin-top: -34px;
	transform: scale(1);
	-webkit-transform: scale(1);
}
}
@media only screen and (min-width: 1500px) {
#home06-goup {
	margin-top: -24px;
	transform: scale(1);
	-webkit-transform: scale(1);
}
}
 @media only screen and (min-width: 992px) and (max-width: 1199px) {
#home06-goup {
	margin-top: -42px;
	transform: scale(0.8);
	-webkit-transform: scale(0.8);
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
#home06-goup {
	margin-top: -25px;
	transform: scale(0.8);
	-webkit-transform: scale(0.8);
}
}
@media only screen and (max-width: 767px) {
#home06-goup {
	margin-top: -25px;
	transform: scale(0.8);
	-webkit-transform: scale(0.8);
}
}
.home06-img-info {
	position: relative;
	padding: 100px 0 0;
}
.home06-img-info .infobox {
	position: absolute;
	color: #FFF;
}
.home06-img-info .infobox h3 {
	color: #FFF;
	font-size: 18px;
	padding: 0px;
	margin: 0 0 10px;
}
.home06-img-info .infobox01 {
	top: 70px;
	left: 30px;
	max-width: 245px;
	text-align: right;
}
.home06-img-info .infobox02 {
	top: 20px;
	left: 620px;
	max-width: 290px;
}
.home06-img-info .infobox03 {
	top: 615px;
	left: 0px;
	max-width: 335px;
}
.home06-img-info .infobox04 {
	top: 576px;
	left: 500px;
	max-width: 335px;
}
.home06-img-info .infobox .line {
	position: absolute;
}
.home06-img-info .infobox .line:after {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	position: absolute;
}
.home06-img-info .infobox .line:before {
	content: "";
	width: 7px;
	height: 7px;
	position: absolute;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
.home06-img-info .infobox .line span:before {
	content: "";
	position: absolute;
	width: 0;
}
.home06-img-info .infobox .line span:after {
	content: "";
	position: absolute;
	height: 0px;
}
.home06-img-info .infobox01 .line {
	top: 10px;
	left: 100%;
	margin-left: 10px;
	width: 60px;
	height: 70px;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
}
.home06-img-info .infobox01 .line:after {
	background-color: #00aec8;
	top: 100%;
	right: -4px;
}
.home06-img-info .infobox01 .line:before {
	border-left: 1px solid #FFF;
	border-top: 1px solid #FFF;
	top: -4px;
	left: 0;
}
.home06-img-info .infobox01 .line span:before {
	border-left: 1px solid #00aec8;
	bottom: 0;
	right: -1px;
	height: 15px;
}
.home06-img-info .infobox02 .line {
	top: 10px;
	right: 100%;
	margin-right: 10px;
	width: 90px;
	height: 140px;
	border-top: 1px solid #FFF;
	border-left: 1px solid #FFF;
}
.home06-img-info .infobox02 .line:after {
	background-color: #00aec8;
	top: 100%;
	left: -4px;
}
.home06-img-info .infobox02 .line:before {
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	top: -4px;
	right: 0;
}
.home06-img-info .infobox02 .line span:before {
	border-left: 1px solid #00aec8;
	bottom: 0;
	left: -1px;
	height: 31px;
}
.home06-img-info .infobox03 .line {
	bottom: 100%;
	right: 100%;
	margin-bottom: -10px;
	margin-right: 10px;
	width: 50px;
	height: 85px;
	border-top: 1px solid #FFF;
	border-left: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
}
.home06-img-info .infobox03 .line:after {
	background-color: #FFF;
	top: -4px;
	right: -45px;
}
.home06-img-info .infobox03 .line:before {
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	bottom: -4px;
	right: 0;
}
.home06-img-info .infobox03 .line span:after {
	border-bottom: 1px solid #FFF;
	top: -1px;
	left: 100%;
	width: 45px;
}
.home06-img-info .infobox04 .line {
	bottom: 100%;
	right: 100%;
	margin-bottom: -10px;
	margin-right: 10px;
	width: 15px;
	height: 140px;
	border-left: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
}
.home06-img-info .infobox04 .line:after {
	background-color: #00aec8;
	top: 0px;
	left: -4px;
}
.home06-img-info .infobox04 .line:before {
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	bottom: -4px;
	right: 0;
}
.home06-img-info .infobox04 .line span:before {
	border-left: 1px solid #00aec8;
	top: 0;
	left: -1px;
	height: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
.home06-img-info .infobox01 {
	top: 70px;
	left: 30px;
}
.home06-img-info .infobox02 {
	top: 20px;
	left: 520px;
}
.home06-img-info .infobox03 {
	top: 518px;
	left: 50px;
}
.home06-img-info .infobox04 {
	top: 469px;
	left: 418px;
}
.home06-img-info .infobox04 .line {
	height: 108px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.home06-img-info .infobox01 {
	top: 61px;
	left: 224px;
}
.home06-img-info .infobox02 {
	top: 86px;
	left: 503px;
}
.home06-img-info .infobox03 {
	top: 427px;
	left: 20px;
}
.home06-img-info .infobox04 {
	top: 438px;
	left: 418px;
}
.home06-img-info .infobox01 .line {
	left: auto;
	right: 100%;
	transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	margin-right: 10px;
	width: 15px;
}
.home06-img-info .infobox02 .line {
	width: 164px;
	height: 61px;
}
.home06-img-info .infobox03 .line {
	width: 50px;
	height: 43px;
}
.home06-img-info .infobox04 .line {
	width: 86px;
	height: 128px;
}
}
 @media only screen and (max-width: 991px) {
.home06-img-info .infobox {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	max-width: inherit;
	text-align: left;
	margin-bottom: 15px;
}
.home06-img-info .infobox .line {
	display: none;
}
}
.home06-list02 {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0;
}
.home06-list02 li {
	width: 33.2%;
	display: inline-block;
	vertical-align: top;
	padding: 8px 0;
	font-size: 13px;
}
.home06-list02 li .fa {
	margin-right: 10px;
	font-size: 17px;
	vertical-align: middle;
	color: #50bdad;
	margin-bottom: 4px;
}
.home06-list02 li a, .home06-list02 li a:link, .home06-list02 li a:active, .home06-list02 li a:visited {
	color: #666666;
}
.home06-list02 li a:hover {
	color: #50bdad;
}
.home06-social {
}
.home06-social span {
	width: 35px;
	height: 35px;
	line-height: 35px;
	font-size: 13px;
	display: inline-block;
	margin: 0 2px 5px;
	text-align: center;
	border: 1px solid rgba(255,255,255,0.2);
	transition: all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	color: #666666;
}
.home06-social a:hover span {
	background-color: #00aec8;
	border: 1px solid #00aec8;
	color: #FFF;
}
.home06-linklist {
	text-align: center;
	margin-bottom: 20px;
}
.home06-linklist a, .home06-linklist a:link, .home06-linklist a:active, .home06-linklist a:visited {
	color: #999999;
	text-align: center;
	font-size: 15px;
	margin: 0px 10px;
	vertical-align: middle;
}
.home06-linklist .social a, .home06-linklist .social a:link, .home06-linklist .social a:active, .home06-linklist .social a:visited {
	color: #fcc012;
	font-size: 20px;
	vertical-align: middle;
}
.home06-linklist a:hover {
	color: #fcc012;
}

/*Accent colour*/
.home06-ibox02 li .ico,
.home06-carousel .owl-buttons .owl-prev:hover:after, 
.home06-carousel .owl-buttons .owl-next:hover:after,
.home06-ibox05 dl .line span,
.home06-btn02, 
a.home06-btn02, 
a:link.home06-btn02, 
a:active.home06-btn02, 
a:visited.home06-btn02,
.home06-list02 li .fa,
.home06-linklist a:hover{
	color:#640f0d;
}
.home06-btn, 
a.home06-btn, 
a:link.home06-btn, 
a:active.home06-btn, 
a:visited.home06-btn,
.home06-img-info .infobox01 .line:after,
.home06-img-info .infobox02 .line:after,
.home06-img-info .infobox03 .line:after,
.home06-img-info .infobox04 .line:after,
.photo_box .ico span,
.home06-carousel .owl-page:hover, 
.home06-carousel .owl-page.active,
.home06-bg04:before,
div.Theme_Responsive_20073_home06 .form_submit .btn,
#home06-goup,
div.Theme_Responsive_20073_home06-Email .form_submit .btn{
	background-color:#640f0d;
}
.home06-img-info .infobox01 .line span:before,
.home06-img-info .infobox02 .line span:before,
.home06-img-info .infobox03 .line span:before,
.home06-img-info .infobox04 .line span:before,
.home06-carousel .owl-buttons .owl-prev:hover, 
.home06-carousel .owl-buttons .owl-next:hover{
	border-color:#640f0d;
}
div.Theme_Responsive_20073_home06 .form_submit .btn:hover{
	color:#640f0d;
	border-color:#640f0d;
}
.home06-social a:hover span{
	background-color:#640f0d;
	border-color:#640f0d;
}

.footer_box #home06-goup,
.footer_box div.Theme_Responsive_20073_home06-Email .form_submit .btn{
	background-color:#00aec8;
}
.footer_box .home06-social a:hover span{
	background-color:#00aec8;
	border-color:#00aec8;
}
.footer_box .home06-list02 li .fa,
.footer_box .home06-linklist a:hover{
	color:#00aec8;
}






















/*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:#ffffff;
						background-position:center bottom;
				background-repeat:no-repeat;
										background-size:cover ;
	}
	.footer_bottom  {
		overflow:hidden;
	}
	.footer_bottom .footer_bottom_bg{
		opacity: 1;
					background-color:#1e1e1e;
				-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-webkit-transform:skew(0deg,-4deg);
		-moz-transform:skew(0deg,-4deg);
		transform:skew(0deg,-4deg);
		transform-origin:right bottom;
	}

.footer_box .Normal {
	color:#EAEAEA;
}

.footer_box a, 
.footer_box a:link, 
.footer_box a:active, 
.footer_box a:visited{
	color:#00aec8;
}
.footer_box a:hover{
	text-decoration:underline;
	color:#00aec8;
}
.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: #F6F6F6;
}
.FooterPane .foot_social_3 a:hover span{
	color: #00aec8;
}
.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: #F6F6F6;
}
.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: #00aec8;
}
.footer_bottom .social_list_5 a:hover span{
	background-color:#00aec8;
	border-color: #00aec8;
}

.footer_bottom .link_list_1  .social a:hover{
	text-decoration:underline;
}
.footer_bottom .social_list_1 a{
	border-color: #F6F6F6;
}
.footer_bottom .social_list_1 a:hover{
	background-color:#F6F6F6;
}
.footer_bottom .social_list_1 a:hover span{
	color: #00aec8;
}
.footer_box .footer_bottom  {
	padding:0 0 50px;
}
.footer_box .footer_bottom .footer_line{
	padding:50px 0 0;
			border-top:1px solid #ffffff;
	}

.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: #00aec8!important;
}
.footer_bottom .Theme_Responsive_20072_home7-Email .form_submit .btn{
	background-color:  #00aec8!important;
}
.footer_bottom .Theme_Responsive_20072_home7-Email .form_submit .btn:hover{
	background-color: #555!important;
}

.copyright_style, 
.copyright_style a,
.FooterPane {
	font-size:13px;
}




#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:#00aec8;
	border-color:#00aec8;
}

.backtop02 {
	background-color:#333333;
}
.backtop02:hover {
	background-color:#00aec8;
}
.backtop03 {
	border-color:#333333;
	color:#333333;
}
.backtop03:hover {
	border-color:#00aec8;
	background-color:#00aec8;
}
.backtop04 {
	background-color:#333333;
}
.backtop04:hover {
	background-color:#00aec8;
}









 




/* 
================================
 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:24px; 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:30px; 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:24px; 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:36px; 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:20px; 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:36px; 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:26px; 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 #640f0d;height:30px; margin:-15px 0px 4px 0; position:absolute; left:0; top:50%; }
.Home04-heading01:after							 { content:"";  border-right:3px solid #640f0d;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:24px; 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:24px; 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:24px; 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:24px; 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:24px; 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:16px; 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:24px; 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:28px;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:28px; 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:22px; 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/20073-unlimitedcolorspack-055/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/20073-unlimitedcolorspack-055/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}

.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/20073-unlimitedcolorspack-055/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;}




/* 
 * Deprecated DNN CSS class names will remain available for some time
 * before being  permanently removed. Removal will occur according to
 * the  following process:
 *
 * 1. Removal will only occur with a major (x.y) release, never
 *    with a maintenance (x.y.z) release.
 * 2. Removal will not occur less than six months after the release
 *    when it was deprecated.
 * 3. Removal will not occur until after deprecation has been noted 
 *    in at least two major releases.
 *
 *                                              |        |Planned |
 *  Name                                        |Release |Removal |
 *----------------------------------------------+--------+--------+
 * Mod{NAME}C                                     5.6.2    6.2
 *   {NAME} = sanitized version of the DesktopModule Name 
 *   Used on <div> tag surrounding Module Content, inside container
 *----------------------------------------------+--------+--------+
 */  



/* PAGE BACKGROUND */
/* background color for the header at the top of the page  */
.HeadBg {
}

/* background color for the content part of the pages */
Body
{
}

.ControlPanel {
}

/* background/border colors for the selected tab */
.TabBg {
}

.LeftPane  { 
}

.ContentPane  { 
}

.RightPane  { 
}

/* text style for the selected tab */
.SelectedTab {
}

/* hyperlink style for the selected tab */
A.SelectedTab:link {
}

A.SelectedTab:visited  {
}

A.SelectedTab:hover    {
}

A.SelectedTab:active   {
}

/* text style for the unselected tabs */
.OtherTabs {
}
    
/* hyperlink style for the unselected tabs */
A.OtherTabs:link {
}

A.OtherTabs:visited  {
}

A.OtherTabs:hover    {
}

A.OtherTabs:active   {
}

/* GENERAL */
/* style for module titles */
.Head   {
}

/* style of item titles on edit and admin pages */
.SubHead    {
}

/* module title style used instead of Head for compact rendering by QuickLinks and Signin modules */
.SubSubHead {
}

/* text style used for most text rendered by modules */
.Normal
{
}

/* text style used for textboxes in the admin and edit pages, for Nav compatibility */
.NormalTextBox
{
}

.NormalRed
{
}

.NormalBold
{
}

/* text style for buttons and link buttons used in the portal admin pages */
.CommandButton     {
}
    
/* hyperlink style for buttons and link buttons used in the portal admin pages */
A.CommandButton:link {
}

A.CommandButton:visited  {
}

A.CommandButton:hover    {
}
    
A.CommandButton:active   {
}

/* button style for standard HTML buttons */
.StandardButton     {
}

/* GENERIC */
H1  {
}

H2  {
}

H3  {
}

H4  {
}

H5, DT  {
}

H6  {
}

TFOOT, THEAD    {
}

TH  {
}

A:link  {
}

A:visited   {
}

A:hover {
}

A:active    {
}

SMALL   {
}

BIG {
}

BLOCKQUOTE, PRE {
}


UL LI   {
}

UL LI LI    {
}

UL LI LI LI {
}

OL LI   {
}

OL OL LI    {
}

OL OL OL LI {
}
OL UL LI   {
}

HR {
}

/* MODULE-SPECIFIC */
/* text style for reading messages in Discussion */    
.Message    {
}   

/* style of item titles by Announcements and events */
.ItemTitle    {
}

/* Menu-Styles */
/* Module Title Menu */
.ModuleTitle_MenuContainer {
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/* Main Menu */

.MainMenu_MenuContainer {
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/* Login Styles */
.LoginPanel{
}

.LoginTabGroup{
}

.LoginTab {
}

.LoginTabSelected{
}

.LoginTabHover{
}

.LoginContainerGroup{
}

.LoginContainer{
}

/* note: this file name must start with an underscore "_" so it wont be generated in the output */
@media all {
  /* Header */
  .co-header img {
    width: 100%; }
  /* Default Content */
  .co-content {
    margin-bottom: 30px; }
  .co-text-beside-image h1, .co-text-beside-image h2, .co-text-beside-image h3, .co-text-beside-image h4, .co-text-beside-image h5, .co-text-beside-image h6 {
    margin-top: 0; }
  .co-content-image {
    margin-bottom: 30px;
    width: 100%; }
  /* Content Navigation */
  .co-navigation.co-navigation-image h3 {
    margin-top: .3em; }
  .co-navigation.co-navigation-image a span.glyphicon {
    font-size: .6em;
    margin-right: .2em; }
  .co-navigation.co-navigation-image .co-img-placeholder {
    background: #337ab7;
    padding-bottom: 50%; }
  .co-navigation img {
    width: 100%; }
  .co-navigation .col {
    margin-bottom: 30px; }
  .co-navigation .co-img-wrapper {
    margin-bottom: 20px; }
  .co-navigation a.co-link-box {
    display: block;
    text-decoration: none;
    color: #333; }
    .co-navigation a.co-link-box .co-img-wrapper {
      background: #337ab7;
      overflow: hidden; }
      .co-navigation a.co-link-box .co-img-wrapper img {
        position: relative;
        transition: opacity .3s;
        backface-visibility: hidden; }
    .co-navigation a.co-link-box:hover {
      color: #333; }
      .co-navigation a.co-link-box:hover img {
        opacity: .4; }
  .co-navigation-icon h3 {
    margin-top: 5px; }
  .co-navigation-icon .co-icon {
    font-size: 2.8em; }
  /* Images */
  .co-img-wrapper {
    margin-bottom: 30px; }
  .co-img-wrapper.co-2colimg {
    margin-bottom: 0; }
    .co-img-wrapper.co-2colimg .col {
      margin-bottom: 30px; }
    .co-img-wrapper.co-2colimg img {
      width: 100%; }
  /* Documents and Links */
  ul.co-documents {
    padding: 0; }
    ul.co-documents, ul.co-documents li {
      list-style-type: none; }
    ul.co-documents .co-document .glyphicon {
      font-size: 17px;
      line-height: 1.2em;
      color: #337ab7; }
    ul.co-documents .co-document a, ul.co-documents .co-document a p, ul.co-documents .co-document a:link, ul.co-documents .co-document a:link p, ul.co-documents .co-document a:visited, ul.co-documents .co-document a:visited p {
      color: #333;
      text-decoration: none; }
    ul.co-documents .co-document-text {
      margin-left: 30px; }
  /* Google Maps */ }

@media all and (min-width: 992px) {
  .co-google-map-container {
    margin-top: 25px;
    margin-bottom: 25px; } }

@media all and (min-width: 768px) {
  .ly-header-pane .co-google-map-container {
    padding-bottom: 35%; } }

@media all {
  .ly-header-pane .co-google-map-container {
    margin-top: 0;
    margin-bottom: 0; }
  .googlemap-apiwarning {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0; }
  /* Kontakt Map */
  .co-contactmap address {
    line-height: 1.2;
    padding: 15px 0; }
  .co-contactmap .co-company, .co-contactmap .co-address, .co-contactmap .co-details {
    margin-bottom: 15px; }
  /* Sperating Line */
  .role-admin .co-separatingline {
    padding: 15px 0; }
  hr.ly-darkhr {
    border-color: #eee; }
  hr.ly-primaryhr {
    border-color: #337ab7; }
  /* Person */
  .co-person {
    overflow: hidden;
    margin: 30px 0; }
  .co-person-wrapper img {
    width: 100%; }
  .co-person-text {
    word-wrap: break-word; }
  .co-person-placeholder {
    background: #eee;
    padding-bottom: 128%; }
  .co-person-image-rounded img {
    border-radius: 50%; }
  .co-person-image-rounded .co-person-placeholder {
    border-radius: 50%;
    padding-bottom: 100%; } }

@media all and (max-width: 430px) {
  .co-person-wrapper .co-person-image {
    width: 50%;
    margin-bottom: 15px;
    padding-right: 19px; }
  .co-person-wrapper .co-person-text {
    width: 100%; } }

@media all {
  /* Youtube */
  .role-admin .co-youtube-video-wrapper {
    padding-top: 40px; } }

/*# sourceMappingURL=styles.css.map */


/* 2sxc Blog-App by 2sxc */

/* List */
.app-blog-item { margin:0 -15px; position:relative; overflow:hidden; box-sizing:border-box; padding:10px 0; min-height:200px;}
.app-blog-item > div { box-sizing:border-box; padding-left:15px; padding-right:15px; position: relative; float:left;}
.app-blog-link > img { padding-bottom:20px;}

.app-blog-col1 { width:70%;}
.app-blog-col2 { width:30%; }

a.app-blog-link:hover, a.app-blog-link:focus { border-radius: 6px; background-color: #eee; text-decoration:none;}
a.app-blog-link {  
    display: block;
    text-decoration: none;
    color: #666;
    background-color: #fcfcfc;
    padding: 10px;
    overflow: hidden;
    border-radius: 4px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(204,204,204,1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(204,204,204,1);
    box-shadow: 0px 0px 10px 0px rgba(204,204,204,1);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

/* Detail */
.app-blog-detail-top { overflow:hidden;}
.app-blog-description { margin-bottom:20px; }
.app-blog-detail > img { padding-bottom:20px;}
.pull-right { float:right; padding-left:15px;}

/* Small Item */
.app-blog-small .app-blog-link > img.app-blog-article-img { width:250px; float:left; padding:0 10px 10px 0;}
.app-blog-small.app-blog-detail > img {width:50%; float:left; padding:0 10px 10px 0;}

/* Time */
.app-blog time { color: #888; display: block; margin-bottom: 10px;}

/* Person */
.app-blog-person { overflow:hidden; width:100%; text-align:left; position:relative; margin-bottom:15px;}
.app-blog-person img { border-radius:100%; float:left;}
.app-blog-person h4 {margin-top:22px; margin-left:70px;}
.app-blog-person-mobile { display:none; border-radius:100%; float:right;}

/* Person on detail */
.app-blog-detail .app-blog-person { float:right; width:auto;} 
.app-blog-detail .app-blog-person img { float:right;}
.app-blog-detail .app-blog-person h4 { margin-right:70px; margin-left:0px;}

/* Tag-Cloud */
.app-blog-tagcloud { text-align:center;}
.app-blog-tags { text-align:left;}
.app-blog-tags ul, .app-blog-tagcloud ul { margin:1em 0;}
.app-blog-tags li, .app-blog-tagcloud li { padding:0; list-style:none; display:inline;}
.app-blog-tagcloud.sorted li a { margin:0 3px;}

.app-blog-tags li a, .app-blog-tagcloud li a{
	text-decoration:none;
    display:inline-block;
    text-decoration: none;
    color: #666;
    background-color: #fcfcfc;
    padding:5px;
    overflow: hidden;
    border-radius: 4px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(204,204,204,1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(204,204,204,1);
    box-shadow: 0px 0px 10px 0px rgba(204,204,204,1);
	}

.app-blog-tags li a:hover, .app-blog-tags li a:focus, .app-blog-tagcloud li a:hover, .app-blog-tagcloud li a:focus{	
	border-radius: 6px;
    background-color: #eee;
	text-decoration:none;
    color:black;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
	}		
	
.app-blog-tag1{font-size:100%;}
.app-blog-tag2{font-size:120%;}
.app-blog-tag3{font-size:140%;}
.app-blog-tag4{font-size:160%;}
.app-blog-tag5{font-size:180%;}

/* Buttons */
.app-blog-backlinks { margin-top:20px;}
.app-blog-back:before { content:"\00AB"; margin-right:5px;}
a.app-blog-btn span { font-size:140%;}
a.app-blog-btn, a .app-blog-btn{
	line-height:20px;
    margin-right:5px;
    margin-bottom:5px;
    padding: 10px;
    background: #666;
    color: white !important;
    display: inline-block;
    border-radius: 2px;
    }

a:hover .app-blog-btn, a:focus .app-blog-btn, a.app-blog-btn:hover, a.app-blog-btn:focus {
    background: #000;
	text-decoration:none;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

/* Share Buttons */
.addthis_sharing_toolbox { margin-top:20px;}

/* Mobile */
@media (max-width: 767px) {
    /* List */
    .app-blog-person-mobile { display:block; padding:0px !important;}
    .app-blog-col1 { width:100%;}
    .app-blog-col2 { display:none; }

    /* Detail */
    .app-blog-detail .app-blog-person h4 { display:none;}
}


/* Pagination */
.pagination {
  height: 36px;
  margin: 18px 0;
}
.pagination ul {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */

  *zoom: 1;
  margin-left: 0;
  margin-bottom: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.pagination li {
  display: inline;
}
.pagination a {
  float: left;
  padding: 0 14px;
  line-height: 34px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-left-width: 0;
}
.pagination a:hover,
.pagination .active a {
  background-color: #f5f5f5; text-decoration:none;
}
.pagination .active a {
  color: #999999;
  cursor: default;
}
.pagination .disabled span,
.pagination .disabled a,
.pagination .disabled a:hover {
  color: #999999;
  background-color: transparent;
  cursor: default;
}
.pagination li:first-child a {
  border-left-width: 1px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.pagination li:last-child a {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.pagination-centered {
  text-align: center;
}
.pagination-right {
  text-align: right;
}
.pager {
  margin-left: 0;
  margin-bottom: 18px;
  list-style: none;
  text-align: center;
  *zoom: 1;
}
.pager:before,
.pager:after {
  display: table;
  content: "";
}
.pager:after {
  clear: both;
}
.pager li {
  display: inline;
}
.pager a {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.pager a:hover {
  text-decoration: none;
  background-color: #f5f5f5;
}
.pager .next a {
  float: right;
}
.pager .previous a {
  float: left;
}
.pager .disabled a,
.pager .disabled a:hover {
  color: #999999;
  background-color: #fff;
  cursor: default;
}
