﻿
@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 */


.cc-window{opacity:1;transition:opacity 1s ease}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{transition:transform 1s ease}.cc-animate.cc-revoke.cc-top{transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-bottom,.cc-animate.cc-revoke.cc-active.cc-top,.cc-revoke:hover{transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;transition:max-height 1s}
.cc-link,.cc-revoke:hover{text-decoration:underline}.cc-revoke,.cc-window{position:fixed;overflow:hidden;box-sizing:border-box;font-family:Helvetica,Calibri,Arial,sans-serif;font-size:16px;line-height:1.5em;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;max-width:24em;-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner{padding:1em 1.8em;width:100%;-ms-flex-direction:row;flex-direction:row}.cc-revoke{padding:.5em}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;padding:.2em}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:focus,.cc-close:hover{opacity:1}
.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{display:block;margin-bottom:1em}.cc-window.cc-floating .cc-compliance{-ms-flex:1 0 auto;flex:1 0 auto}.cc-window.cc-banner{-ms-flex-align:center;align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{display:block;-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%;margin-right:1em}.cc-compliance{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:justify;align-content:space-between}.cc-floating .cc-compliance>.cc-btn{-ms-flex:1;flex:1}.cc-btn+.cc-btn{margin-left:.5em}
@media print{.cc-revoke,.cc-window{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-floating,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}.cc-window.cc-banner{-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner .cc-compliance{-ms-flex:1 1 auto;flex:1 1 auto}.cc-window.cc-floating{max-width:none}.cc-window .cc-message{margin-bottom:1em}.cc-window.cc-banner{-ms-flex-align:unset;align-items:unset}.cc-window.cc-banner .cc-message{margin-right:0}}
.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;-ms-flex:none;flex:none}.cc-theme-classic .cc-btn{border-radius:5px}.cc-theme-classic .cc-btn:last-child{min-width:140px}.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}
.cc-theme-edgeless.cc-window{padding:0}.cc-floating.cc-theme-edgeless .cc-message{margin:2em 2em 1.5em}.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}

/* CSS Document */
/*Common style*/

/*****************************************************************************/
/*** bootstrap.css ***/
/*****************************************************************************/

/* @import url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/bootstrap.css?v=2"); */

/*!
 * Bootstrap v3.2.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}body{margin:0;}article,aside,details,figcaption,figure,footer,header,hgroup,main,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:transparent;}a:active,a:hover{outline:0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}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 #c0c0c0;}legend{padding:0;border:0;}textarea{overflow:auto;}optgroup{font-weight:bold;}table{border-spacing:0;border-collapse:collapse;}td,th{padding:0;}@media print{*{color:#000 !important;text-shadow:none !important;background:transparent !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:"";}pre,blockquote{border:1px solid #999;page-break-inside:avoid;}thead{display:table-header-group;}tr,img{page-break-inside:avoid;}img{max-width:100% !important;}p,h2,h3{orphans:3;widows:3;}h2,h3{page-break-after:avoid;}select{background:#fff !important;}.navbar{display:none;}.table td,.table th{background-color:#fff !important;}.btn > .caret,.dropup > .btn > .caret{border-top-color:#000 !important;}.label{border:1px solid #000;}.table{border-collapse:collapse !important;}.table-bordered th,.table-bordered td{border:1px solid #ddd !important;}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}html{-webkit-tap-highlight-color:rgba(0,0,0,0);}body{}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;}a{text-decoration:none;}a:hover,a:focus{text-decoration:underline;}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}figure{margin:0;}img{vertical-align:middle;}.img-responsive,.thumbnail > img,.thumbnail a > img,.carousel-inner > .item > img,.carousel-inner > .item > a > img{display:block;width:100%;max-width:100%;height:auto;}.img-rounded{border-radius:6px;}.img-thumbnail{display:inline-block;width:100%;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;}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%;}cite{font-style:normal;}mark,.mark{padding:.2em;}.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:#428bca;}a.text-primary:hover{color:#3071a9;}.text-success{color:#3c763d;}a.text-success:hover{color:#2b542c;}.text-info{color:#31708f;}a.text-info:hover{color:#245269;}.text-warning{color:#8a6d3b;}a.text-warning:hover{color:#66512c;}.text-danger{color:#a94442;}a.text-danger:hover{color:#843534;}.bg-primary{color:#fff;background-color:#428bca;}a.bg-primary:hover{background-color:#3071a9;}.bg-success{background-color:#dff0d8;}a.bg-success:hover{background-color:#c1e2b3;}.bg-info{background-color:#d9edf7;}a.bg-info:hover{background-color:#afd9ee;}.bg-warning{background-color:#fcf8e3;}a.bg-warning:hover{background-color:#f7ecb5;}.bg-danger{background-color:#f2dede;}a.bg-danger:hover{background-color:#e4b9b9;}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee;}ul,ol{margin-top:0;margin-bottom:10px;}ul ul,ol ul,ul ol,ol ol{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;}dt,dd{line-height:1.42857143;}dt{font-weight:bold;}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[title],abbr[data-original-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 p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0;}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777;}blockquote footer:before,blockquote small: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 footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:'';}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014';}blockquote:before,blockquote:after{content:"";}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%;-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{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto;}@media (min-width:768px){.container{width:750px;}}@media (min-width:992px){.container{width:970px;}}@media (min-width:1200px){.container{width:1170px;}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto;}.row{margin-right:-15px;margin-left:-15px;}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;padding-right:15px;padding-left:15px;}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{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-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{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-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{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-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{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;}th{text-align:left;}.table{width:100%;max-width:100%;margin-bottom:20px;}.table > thead > tr > th,.table > tbody > tr > th,.table > tfoot > tr > th,.table > thead > tr > td,.table > tbody > tr > td,.table > tfoot > tr > td{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 > th,.table > colgroup + thead > tr:first-child > th,.table > thead:first-child > tr:first-child > th,.table > caption + thead > tr:first-child > td,.table > colgroup + thead > tr:first-child > td,.table > thead:first-child > tr:first-child > td{border-top:0;}.table > tbody + tbody{border-top:2px solid #ddd;}.table .table{background-color:#fff;}.table-condensed > thead > tr > th,.table-condensed > tbody > tr > th,.table-condensed > tfoot > tr > th,.table-condensed > thead > tr > td,.table-condensed > tbody > tr > td,.table-condensed > tfoot > tr > td{padding:5px;}.table-bordered{border:1px solid #ddd;}.table-bordered > thead > tr > th,.table-bordered > tbody > tr > th,.table-bordered > tfoot > tr > th,.table-bordered > thead > tr > td,.table-bordered > tbody > tr > td,.table-bordered > tfoot > tr > td{border:1px solid #ddd;}.table-bordered > thead > tr > th,.table-bordered > thead > tr > td{border-bottom-width:2px;}.table-striped > tbody > tr:nth-child(odd) > td,.table-striped > tbody > tr:nth-child(odd) > th{background-color:#f9f9f9;}.table-hover > tbody > tr:hover > td,.table-hover > tbody > tr:hover > th{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 > thead > tr > td.active,.table > tbody > tr > td.active,.table > tfoot > tr > td.active,.table > thead > tr > th.active,.table > tbody > tr > th.active,.table > tfoot > tr > th.active,.table > thead > tr.active > td,.table > tbody > tr.active > td,.table > tfoot > tr.active > td,.table > thead > tr.active > th,.table > tbody > tr.active > th,.table > tfoot > tr.active > th{background-color:#f5f5f5;}.table-hover > tbody > tr > td.active:hover,.table-hover > tbody > tr > th.active:hover,.table-hover > tbody > tr.active:hover > td,.table-hover > tbody > tr:hover > .active,.table-hover > tbody > tr.active:hover > th{background-color:#e8e8e8;}.table > thead > tr > td.success,.table > tbody > tr > td.success,.table > tfoot > tr > td.success,.table > thead > tr > th.success,.table > tbody > tr > th.success,.table > tfoot > tr > th.success,.table > thead > tr.success > td,.table > tbody > tr.success > td,.table > tfoot > tr.success > td,.table > thead > tr.success > th,.table > tbody > tr.success > th,.table > tfoot > tr.success > th{background-color:#dff0d8;}.table-hover > tbody > tr > td.success:hover,.table-hover > tbody > tr > th.success:hover,.table-hover > tbody > tr.success:hover > td,.table-hover > tbody > tr:hover > .success,.table-hover > tbody > tr.success:hover > th{background-color:#d0e9c6;}.table > thead > tr > td.info,.table > tbody > tr > td.info,.table > tfoot > tr > td.info,.table > thead > tr > th.info,.table > tbody > tr > th.info,.table > tfoot > tr > th.info,.table > thead > tr.info > td,.table > tbody > tr.info > td,.table > tfoot > tr.info > td,.table > thead > tr.info > th,.table > tbody > tr.info > th,.table > tfoot > tr.info > th{background-color:#d9edf7;}.table-hover > tbody > tr > td.info:hover,.table-hover > tbody > tr > th.info:hover,.table-hover > tbody > tr.info:hover > td,.table-hover > tbody > tr:hover > .info,.table-hover > tbody > tr.info:hover > th{background-color:#c4e3f3;}.table > thead > tr > td.warning,.table > tbody > tr > td.warning,.table > tfoot > tr > td.warning,.table > thead > tr > th.warning,.table > tbody > tr > th.warning,.table > tfoot > tr > th.warning,.table > thead > tr.warning > td,.table > tbody > tr.warning > td,.table > tfoot > tr.warning > td,.table > thead > tr.warning > th,.table > tbody > tr.warning > th,.table > tfoot > tr.warning > th{background-color:#fcf8e3;}.table-hover > tbody > tr > td.warning:hover,.table-hover > tbody > tr > th.warning:hover,.table-hover > tbody > tr.warning:hover > td,.table-hover > tbody > tr:hover > .warning,.table-hover > tbody > tr.warning:hover > th{background-color:#faf2cc;}.table > thead > tr > td.danger,.table > tbody > tr > td.danger,.table > tfoot > tr > td.danger,.table > thead > tr > th.danger,.table > tbody > tr > th.danger,.table > tfoot > tr > th.danger,.table > thead > tr.danger > td,.table > tbody > tr.danger > td,.table > tfoot > tr.danger > td,.table > thead > tr.danger > th,.table > tbody > tr.danger > th,.table > tfoot > tr.danger > th{background-color:#f2dede;}.table-hover > tbody > tr > td.danger:hover,.table-hover > tbody > tr > th.danger:hover,.table-hover > tbody > tr.danger:hover > td,.table-hover > tbody > tr:hover > .danger,.table-hover > tbody > tr.danger:hover > th{background-color:#ebcccc;}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;}.table-responsive > .table{margin-bottom:0;}.table-responsive > .table > thead > tr > th,.table-responsive > .table > tbody > tr > th,.table-responsive > .table > tfoot > tr > th,.table-responsive > .table > thead > tr > td,.table-responsive > .table > tbody > tr > td,.table-responsive > .table > tfoot > tr > td{white-space:nowrap;}.table-responsive > .table-bordered{border:0;}.table-responsive > .table-bordered > thead > tr > th:first-child,.table-responsive > .table-bordered > tbody > tr > th:first-child,.table-responsive > .table-bordered > tfoot > tr > th:first-child,.table-responsive > .table-bordered > thead > tr > td:first-child,.table-responsive > .table-bordered > tbody > tr > td:first-child,.table-responsive > .table-bordered > tfoot > tr > td:first-child{border-left:0;}.table-responsive > .table-bordered > thead > tr > th:last-child,.table-responsive > .table-bordered > tbody > tr > th:last-child,.table-responsive > .table-bordered > tfoot > tr > th:last-child,.table-responsive > .table-bordered > thead > tr > td:last-child,.table-responsive > .table-bordered > tbody > tr > td:last-child,.table-responsive > .table-bordered > tfoot > tr > td:last-child{border-right:0;}.table-responsive > .table-bordered > tbody > tr:last-child > th,.table-responsive > .table-bordered > tfoot > tr:last-child > th,.table-responsive > .table-bordered > tbody > tr:last-child > td,.table-responsive > .table-bordered > tfoot > tr:last-child > td{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:bold;}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px;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="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;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:#777;opacity:1;}.form-control:-ms-input-placeholder{color:#777;}.form-control::-webkit-input-placeholder{color:#777;}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1;}textarea.form-control{height:auto;}input[type="search"]{-webkit-appearance:none;}input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{line-height:34px;line-height:1.42857143;}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[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;}.radio,.checkbox{position:relative;display:block;min-height:20px;margin-top:10px;margin-bottom:10px;}.radio label,.checkbox label{padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer;}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-top:4px;margin-left:-20px;}.radio + .radio,.checkbox + .checkbox{margin-top:-5px;}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer;}.radio-inline + .radio-inline,.checkbox-inline + .checkbox-inline{margin-top:0;margin-left:10px;}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed;}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed;}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed;}.form-control-static{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,.form-horizontal .form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px;}select.input-sm{height:30px;line-height:30px;}textarea.input-sm,select[multiple].input-sm{height:auto;}.input-lg,.form-horizontal .form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px;}select.input-lg{height:46px;line-height:46px;}textarea.input-lg,select[multiple].input-lg{height:auto;}.has-feedback{position:relative;}.has-feedback .form-control{padding-right:42.5px;}.form-control-feedback{position:absolute;top:25px;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;}.input-lg + .form-control-feedback{width:46px;height:46px;line-height:46px;}.input-sm + .form-control-feedback{width:30px;height:30px;line-height:30px;}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{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 .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{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 .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{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.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 .input-group{display:inline-table;vertical-align:middle;}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto;}.form-inline .input-group > .form-control{width:100%;}.form-inline .control-label{margin-bottom:0;vertical-align:middle;}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle;}.form-inline .radio label,.form-inline .checkbox label{padding-left:0;}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0;}.form-inline .has-feedback .form-control-feedback{top:0;}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0;}.form-horizontal .radio,.form-horizontal .checkbox{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{top:0;right:15px;}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px;}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;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:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}.btn:hover,.btn:focus{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{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65;}.btn-default{color:#333;background-color:#fff;border-color:#ccc;}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open > .dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad;}.btn-default:active,.btn-default.active,.open > .dropdown-toggle.btn-default{background-image:none;}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc;}.btn-default .badge{color:#fff;background-color:#333;}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd;}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open > .dropdown-toggle.btn-primary{color:#fff;background-color:#3071a9;border-color:#285e8e;}.btn-primary:active,.btn-primary.active,.open > .dropdown-toggle.btn-primary{background-image:none;}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd;}.btn-primary .badge{color:#428bca;background-color:#fff;}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c;}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open > .dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439;}.btn-success:active,.btn-success.active,.open > .dropdown-toggle.btn-success{background-image:none;}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{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:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open > .dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc;}.btn-info:active,.btn-info.active,.open > .dropdown-toggle.btn-info{background-image:none;}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{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:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open > .dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512;}.btn-warning:active,.btn-warning.active,.open > .dropdown-toggle.btn-warning{background-image:none;}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{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:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open > .dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925;}.btn-danger:active,.btn-danger.active,.open > .dropdown-toggle.btn-danger{background-image:none;}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a;}.btn-danger .badge{color:#d9534f;background-color:#fff;}.btn-link{font-weight:normal;color:#428bca;cursor:pointer;border-radius:0;}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none;}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent;}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent;}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none;}.btn-lg,.btn-group-lg > .btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px;}.btn-sm,.btn-group-sm > .btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px;}.btn-xs,.btn-group-xs > .btn{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="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].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:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease;}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent;}.dropdown{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:normal;line-height:1.42857143;color:#333;white-space:nowrap;}.dropdown-menu > li > a:hover,.dropdown-menu > li > a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5;}.dropdown-menu > .active > a,.dropdown-menu > .active > a:hover,.dropdown-menu > .active > a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0;}.dropdown-menu > .disabled > a,.dropdown-menu > .disabled > a:hover,.dropdown-menu > .disabled > a:focus{color:#777;}.dropdown-menu > .disabled > a:hover,.dropdown-menu > .disabled > a:focus{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 solid;}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;}@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 > .btn,.btn-group-vertical > .btn{position:relative;float:left;}.btn-group > .btn:hover,.btn-group-vertical > .btn:hover,.btn-group > .btn:focus,.btn-group-vertical > .btn:focus,.btn-group > .btn:active,.btn-group-vertical > .btn:active,.btn-group > .btn.active,.btn-group-vertical > .btn.active{z-index:2;}.btn-group > .btn:focus,.btn-group-vertical > .btn:focus{outline:0;}.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-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 > .btn:last-child,.btn-group > .btn-group:first-child > .dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0;}.btn-group > .btn-group:last-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-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-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="radio"],[data-toggle="buttons"] > .btn > input[type="checkbox"]{position:absolute;z-index:-1;filter:alpha(opacity=0);opacity:0;}.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-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.33;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;}textarea.input-group-lg > .form-control,textarea.input-group-lg > .input-group-addon,textarea.input-group-lg > .input-group-btn > .btn,select[multiple].input-group-lg > .form-control,select[multiple].input-group-lg > .input-group-addon,select[multiple].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;}textarea.input-group-sm > .form-control,textarea.input-group-sm > .input-group-addon,textarea.input-group-sm > .input-group-btn > .btn,select[multiple].input-group-sm > .form-control,select[multiple].input-group-sm > .input-group-addon,select[multiple].input-group-sm > .input-group-btn > .btn{height:auto;}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell;}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control: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:normal;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="radio"],.input-group-addon input[type="checkbox"]{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:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child > .btn-group:not(:last-child) > .btn{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:last-child > .btn,.input-group-btn:last-child > .btn-group > .btn,.input-group-btn:last-child > .dropdown-toggle,.input-group-btn:first-child > .btn:not(:first-child),.input-group-btn:first-child > .btn-group:not(:first-child) > .btn{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:hover,.input-group-btn > .btn:focus,.input-group-btn > .btn:active{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{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:hover,.nav > li > a:focus{text-decoration:none;background-color:#eee;}.nav > li.disabled > a{color:#777;}.nav > li.disabled > a:hover,.nav > li.disabled > a:focus{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent;}.nav .open > a,.nav .open > a:hover,.nav .open > a:focus{background-color:#eee;border-color:#428bca;}.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:hover,.nav-tabs > li.active > a:focus{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:hover,.nav-tabs.nav-justified > .active > a:focus{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:hover,.nav-tabs.nav-justified > .active > a:focus{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:hover,.nav-pills > li.active > a:focus{color:#fff;background-color:#428bca;}.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:hover,.nav-tabs-justified > .active > a:focus{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:hover,.nav-tabs-justified > .active > a:focus{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-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0;}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px;}@media (max-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px;}}.container > .navbar-header,.container-fluid > .navbar-header,.container > .navbar-collapse,.container-fluid > .navbar-collapse{margin-right:-15px;margin-left:-15px;}@media (min-width:768px){.container > .navbar-header,.container-fluid > .navbar-header,.container > .navbar-collapse,.container-fluid > .navbar-collapse{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-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{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:hover,.navbar-brand:focus{text-decoration:none;}@media (min-width:768px){.navbar > .container .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 > li > a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px;}.navbar-nav .open .dropdown-menu > li > a{line-height:20px;}.navbar-nav .open .dropdown-menu > li > a:hover,.navbar-nav .open .dropdown-menu > li > a:focus{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-nav.navbar-right:last-child{margin-right:-15px;}}@media (min-width:768px){.navbar-left{float:left !important;}.navbar-right{float:right !important;}}.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 .input-group{display:inline-table;vertical-align:middle;}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto;}.navbar-form .input-group > .form-control{width:100%;}.navbar-form .control-label{margin-bottom:0;vertical-align:middle;}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle;}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0;}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{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;}}@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-form.navbar-right:last-child{margin-right:-15px;}}.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{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;}.navbar-text.navbar-right:last-child{margin-right:0;}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7;}.navbar-default .navbar-brand{color:#777;}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{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:hover,.navbar-default .navbar-nav > li > a:focus{color:#333;background-color:transparent;}.navbar-default .navbar-nav > .active > a,.navbar-default .navbar-nav > .active > a:hover,.navbar-default .navbar-nav > .active > a:focus{color:#555;background-color:#e7e7e7;}.navbar-default .navbar-nav > .disabled > a,.navbar-default .navbar-nav > .disabled > a:hover,.navbar-default .navbar-nav > .disabled > a:focus{color:#ccc;background-color:transparent;}.navbar-default .navbar-toggle{border-color:#ddd;}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{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:hover,.navbar-default .navbar-nav > .open > a:focus{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:hover,.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus{color:#333;background-color:transparent;}.navbar-default .navbar-nav .open .dropdown-menu > .active > a,.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus{color:#555;background-color:#e7e7e7;}.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus{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:hover,.navbar-default .btn-link:focus{color:#333;}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc;}.navbar-inverse{background-color:#222;border-color:#080808;}.navbar-inverse .navbar-brand{color:#777;}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent;}.navbar-inverse .navbar-text{color:#777;}.navbar-inverse .navbar-nav > li > a{color:#777;}.navbar-inverse .navbar-nav > li > a:hover,.navbar-inverse .navbar-nav > li > a:focus{color:#fff;background-color:transparent;}.navbar-inverse .navbar-nav > .active > a,.navbar-inverse .navbar-nav > .active > a:hover,.navbar-inverse .navbar-nav > .active > a:focus{color:#fff;background-color:#080808;}.navbar-inverse .navbar-nav > .disabled > a,.navbar-inverse .navbar-nav > .disabled > a:hover,.navbar-inverse .navbar-nav > .disabled > a:focus{color:#444;background-color:transparent;}.navbar-inverse .navbar-toggle{border-color:#333;}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{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:hover,.navbar-inverse .navbar-nav > .open > a:focus{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:#777;}.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus{color:#fff;background-color:transparent;}.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus{color:#fff;background-color:#080808;}.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus{color:#444;background-color:transparent;}}.navbar-inverse .navbar-link{color:#777;}.navbar-inverse .navbar-link:hover{color:#fff;}.navbar-inverse .btn-link{color:#777;}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff;}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444;}.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:#428bca;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:hover,.pagination > li > span:hover,.pagination > li > a:focus,.pagination > li > span:focus{color:#2a6496;background-color:#eee;border-color:#ddd;}.pagination > .active > a,.pagination > .active > span,.pagination > .active > a:hover,.pagination > .active > span:hover,.pagination > .active > a:focus,.pagination > .active > span:focus{z-index:2;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca;}.pagination > .disabled > span,.pagination > .disabled > span:hover,.pagination > .disabled > span:focus,.pagination > .disabled > a,.pagination > .disabled > a:hover,.pagination > .disabled > a:focus{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;}.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;}.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:hover,.pager li > a:focus{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:hover,.pager .disabled > a:focus,.pager .disabled > span{color:#777;cursor:not-allowed;background-color:#fff;}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em;}a.label:hover,a.label:focus{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]:hover,.label-default[href]:focus{background-color:#5e5e5e;}.label-primary{background-color:#428bca;}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9;}.label-success{background-color:#5cb85c;}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44;}.label-info{background-color:#5bc0de;}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5;}.label-warning{background-color:#f0ad4e;}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f;}.label-danger{background-color:#d9534f;}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c;}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#777;border-radius:10px;}.badge:empty{display:none;}.btn .badge{position:relative;top:-1px;}.btn-xs .badge{top:0;padding:1px 5px;}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer;}a.list-group-item.active > .badge,.nav-pills > .active > a > .badge{color:#428bca;background-color:#fff;}.nav-pills > li > a > .badge{margin-left:3px;}.jumbotron{padding: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{border-radius:6px;}.jumbotron .container{max-width:100%;}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px;}.container .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:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;}.thumbnail > img,.thumbnail a > img{margin-right:auto;margin-left:auto;}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca;}.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:bold;}.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:#428bca;-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-striped .progress-bar,.progress-bar-striped{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.active .progress-bar,.progress-bar.active{-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[aria-valuenow="1"],.progress-bar[aria-valuenow="2"]{min-width:30px;}.progress-bar[aria-valuenow="0"]{min-width:30px;color:#777;background-color:transparent;background-image:none;-webkit-box-shadow:none;box-shadow:none;}.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,.media-body{overflow:hidden;zoom:1;}.media,.media .media{margin-top:15px;}.media:first-child{margin-top:0;}.media-object{display:block;}.media-heading{margin:0 0 5px;}.media > .pull-left{margin-right:10px;}.media > .pull-right{margin-left:10px;}.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;}.list-group-item > .badge{float:right;}.list-group-item > .badge + .badge{margin-right:5px;}a.list-group-item{color:#555;}a.list-group-item .list-group-item-heading{color:#333;}a.list-group-item:hover,a.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5;}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:#777;background-color:#eee;}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit;}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777;}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading > small,.list-group-item.active:hover .list-group-item-heading > small,.list-group-item.active:focus .list-group-item-heading > small,.list-group-item.active .list-group-item-heading > .small,.list-group-item.active:hover .list-group-item-heading > .small,.list-group-item.active:focus .list-group-item-heading > .small{color:inherit;}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#e1edf7;}.list-group-item-success{color:#3c763d;background-color:#dff0d8;}a.list-group-item-success{color:#3c763d;}a.list-group-item-success .list-group-item-heading{color:inherit;}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6;}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d;}.list-group-item-info{color:#31708f;background-color:#d9edf7;}a.list-group-item-info{color:#31708f;}a.list-group-item-info .list-group-item-heading{color:inherit;}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3;}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f;}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3;}a.list-group-item-warning{color:#8a6d3b;}a.list-group-item-warning .list-group-item-heading{color:inherit;}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc;}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b;}.list-group-item-danger{color:#a94442;background-color:#f2dede;}a.list-group-item-danger{color:#a94442;}a.list-group-item-danger .list-group-item-heading{color:inherit;}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc;}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{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 > 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{margin-bottom:0;}.panel > .list-group .list-group-item{border-width:1px 0;border-radius:0;}.panel > .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{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px;}.panel-heading + .list-group .list-group-item:first-child{border-top-width:0;}.list-group + .panel-footer{border-top-width:0;}.panel > .table,.panel > .table-responsive > .table,.panel > .panel-collapse > .table{margin-bottom:0;}.panel > .table:first-child,.panel > .table-responsive:first-child > .table:first-child{border-top-left-radius:3px;border-top-right-radius:3px;}.panel > .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 td:first-child,.panel > .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 td:first-child,.panel > .table:first-child > thead:first-child > tr:first-child th: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 th:first-child,.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child{border-top-left-radius:3px;}.panel > .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 td:last-child,.panel > .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 td:last-child,.panel > .table:first-child > thead:first-child > tr:first-child th: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 th:last-child,.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child{border-top-right-radius:3px;}.panel > .table:last-child,.panel > .table-responsive:last-child > .table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px;}.panel > .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 td:first-child,.panel > .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 td:first-child,.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child{border-bottom-left-radius:3px;}.panel > .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 td:last-child,.panel > .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 td:last-child,.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,.panel > .table-responsive:last-child > .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{border-top:1px solid #ddd;}.panel > .table > tbody:first-child > tr:first-child th,.panel > .table > tbody:first-child > tr:first-child td{border-top:0;}.panel > .table-bordered,.panel > .table-responsive > .table-bordered{border:0;}.panel > .table-bordered > thead > tr > th:first-child,.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,.panel > .table-bordered > tbody > tr > th:first-child,.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,.panel > .table-bordered > tfoot > tr > th:first-child,.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,.panel > .table-bordered > thead > tr > td:first-child,.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,.panel > .table-bordered > tbody > tr > td:first-child,.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,.panel > .table-bordered > tfoot > tr > td:first-child,.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child{border-left:0;}.panel > .table-bordered > thead > tr > th:last-child,.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,.panel > .table-bordered > tbody > tr > th:last-child,.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,.panel > .table-bordered > tfoot > tr > th:last-child,.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,.panel > .table-bordered > thead > tr > td:last-child,.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,.panel > .table-bordered > tbody > tr > td:last-child,.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,.panel > .table-bordered > tfoot > tr > td:last-child,.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child{border-right:0;}.panel > .table-bordered > thead > tr:first-child > td,.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,.panel > .table-bordered > tbody > tr:first-child > td,.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,.panel > .table-bordered > thead > tr:first-child > th,.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,.panel > .table-bordered > tbody > tr:first-child > th,.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th{border-bottom:0;}.panel > .table-bordered > tbody > tr:last-child > td,.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,.panel > .table-bordered > tfoot > tr:last-child > td,.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,.panel > .table-bordered > tbody > tr:last-child > th,.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,.panel > .table-bordered > tfoot > tr:last-child > th,.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 > .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:#428bca;}.panel-primary > .panel-heading{color:#fff;background-color:#428bca;border-color:#428bca;}.panel-primary > .panel-heading + .panel-collapse > .panel-body{border-top-color:#428bca;}.panel-primary > .panel-heading .badge{color:#428bca;background-color:#fff;}.panel-primary > .panel-footer + .panel-collapse > .panel-body{border-bottom-color:#428bca;}.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 iframe,.embed-responsive embed,.embed-responsive object{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0;}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%;}.embed-responsive.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:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2;}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5;}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:transparent;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:translate3d(0,-25%,0);-o-transform:translate3d(0,-25%,0);transform:translate3d(0,-25%,0);}.modal.in .modal-dialog{-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,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{min-height:16.42857143px;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-size:12px;line-height:1.4;visibility:visible;filter:alpha(opacity=0);opacity:0;}.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;text-decoration:none;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{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000;}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;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;left:5px;border-width:0 5px 5px;border-bottom-color:#000;}.tooltip.bottom-right .tooltip-arrow{top:0;right: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;text-align:left;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);}.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;font-weight:normal;line-height:18px;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 > img,.carousel-inner > .item > a > img{line-height:1;}.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);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:hover,.carousel-control:focus{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9;}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block;}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px;}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px;}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;font-family:serif;}.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;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-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;font-size:30px;}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px;}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px;}.carousel-caption{right:20%;left:20%;padding-bottom:30px;}.carousel-indicators{bottom:20px;}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical > .btn-group:before,.btn-group-vertical > .btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{display:table;content:" ";}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical > .btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer: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;visibility:hidden !important;}.affix{position:fixed;-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}@-ms-viewport{width:device-width;}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important;}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important;}@media (max-width:767px){.visible-xs{display:block !important;}table.visible-xs{display:table;}tr.visible-xs{display:table-row !important;}th.visible-xs,td.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;}tr.visible-sm{display:table-row !important;}th.visible-sm,td.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;}tr.visible-md{display:table-row !important;}th.visible-md,td.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;}tr.visible-lg{display:table-row !important;}th.visible-lg,td.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;}tr.visible-print{display:table-row !important;}th.visible-print,td.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;}}/* * Glyphicons * * Special styles for displaying the icons and their classes in the docs. */.bs-glyphicons{margin:0;padding:0;padding-left:0;padding-bottom:1px;margin-bottom:20px;list-style:none;overflow:hidden;}.bs-glyphicons li{float:left;width:25%;height:100px;padding:10px;margin:0 -1px -1px 0;font-size:12px;line-height:1.4;text-align:center;border:1px solid #ddd;list-style:none;}.bs-glyphicons .glyphicons,.bs-glyphicons .social{display:block;margin:5px auto 10px;font-size:24px;}.bs-glyphicons li b,.bs-glyphicons li strong{display:block;font-weight:normal;}.bs-glyphicons li:hover{background-color:rgba(86,61,124,.1);}@media only screen and (min-width:768px){.bs-glyphicons li{width:12.5%;}}@media only screen and (min-width:768px){.bs-glyphicons li{width:12.5%;}}/*! * * Project:GLYPHICONS HALFLINGS * Author:Jan Kovarik - www.glyphicons.com * Twitter:@glyphicons * */@font-face{font-family:'Glyphicons Regular';src:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/glyphicons-regular.eot");src:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/glyphicons-regular.eot?#iefix") format('embedded-opentype'),url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/glyphicons-regular.woff") format('woff'),url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/glyphicons-regular.ttf") format('truetype'),url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/glyphicons-regular.svg#glyphiconsregular") format('svg');font-weight:normal;font-style:normal;}.glyphicons{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Regular';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;}@font-face{font-family:'Glyphicons Social Regular';src:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/glyphicons-social-regular.eot");src:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/glyphicons-social-regular.eot?#iefix") format('embedded-opentype'),url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/glyphicons-social-regular.woff") format('woff'),url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/glyphicons-social-regular.ttf") format('truetype'),url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/glyphicons-social-regular.svg#glyphicons_socialregular") format('svg');font-weight:normal;font-style:normal;}.social{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Social Regular';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;}a.social,a.social:link,a.social:active,a.social:visited{color:#777777}a.social:hover{text-decoration:none;}.glyphicons:empty,.social:empty{width:1em;}.glyphicons.glyph-glass:before{content:"\E001";}.glyphicons.glyph-leaf:before{content:"\E002";}.glyphicons.glyph-dog:before{content:"\1F415";}.glyphicons.glyph-user:before{content:"\E004";}.glyphicons.glyph-girl:before{content:"\1F467";}.glyphicons.glyph-car:before{content:"\E006";}.glyphicons.glyph-user-add:before{content:"\E007";}.glyphicons.glyph-user-remove:before{content:"\E008";}.glyphicons.glyph-film:before{content:"\E009";}.glyphicons.glyph-magic:before{content:"\E010";}.glyphicons.glyph-envelope:before{content:"\2709";}.glyphicons.glyph-camera:before{content:"\1F4F7";}.glyphicons.glyph-heart:before{content:"\E013";}.glyphicons.glyph-beach-umbrella:before{content:"\E014";}.glyphicons.glyph-train:before{content:"\1F686";}.glyphicons.glyph-print:before{content:"\E016";}.glyphicons.glyph-bin:before{content:"\E017";}.glyphicons.glyph-music:before{content:"\E018";}.glyphicons.glyph-note:before{content:"\E019";}.glyphicons.glyph-heart-empty:before{content:"\E020";}.glyphicons.glyph-home:before{content:"\E021";}.glyphicons.glyph-snowflake:before{content:"\2744";}.glyphicons.glyph-fire:before{content:"\1F525";}.glyphicons.glyph-magnet:before{content:"\E024";}.glyphicons.glyph-parents:before{content:"\E025";}.glyphicons.glyph-binoculars:before{content:"\E026";}.glyphicons.glyph-road:before{content:"\E027";}.glyphicons.glyph-search:before{content:"\E028";}.glyphicons.glyph-cars:before{content:"\E029";}.glyphicons.glyph-notes-2:before{content:"\E030";}.glyphicons.glyph-pencil:before{content:"\270F";}.glyphicons.glyph-bus:before{content:"\1F68C";}.glyphicons.glyph-wifi-alt:before{content:"\E033";}.glyphicons.glyph-luggage:before{content:"\E034";}.glyphicons.glyph-old-man:before{content:"\E035";}.glyphicons.glyph-woman:before{content:"\1F469";}.glyphicons.glyph-file:before{content:"\E037";}.glyphicons.glyph-coins:before{content:"\E038";}.glyphicons.glyph-airplane:before{content:"\2708";}.glyphicons.glyph-notes:before{content:"\E040";}.glyphicons.glyph-stats:before{content:"\E041";}.glyphicons.glyph-charts:before{content:"\E042";}.glyphicons.glyph-pie-chart:before{content:"\E043";}.glyphicons.glyph-group:before{content:"\E044";}.glyphicons.glyph-keys:before{content:"\E045";}.glyphicons.glyph-calendar:before{content:"\1F4C5";}.glyphicons.glyph-router:before{content:"\E047";}.glyphicons.glyph-camera-small:before{content:"\E048";}.glyphicons.glyph-dislikes:before{content:"\E049";}.glyphicons.glyph-star:before{content:"\E050";}.glyphicons.glyph-link:before{content:"\E051";}.glyphicons.glyph-eye-open:before{content:"\E052";}.glyphicons.glyph-eye-close:before{content:"\E053";}.glyphicons.glyph-alarm:before{content:"\E054";}.glyphicons.glyph-clock:before{content:"\E055";}.glyphicons.glyph-stopwatch:before{content:"\E056";}.glyphicons.glyph-projector:before{content:"\E057";}.glyphicons.glyph-history:before{content:"\E058";}.glyphicons.glyph-truck:before{content:"\E059";}.glyphicons.glyph-cargo:before{content:"\E060";}.glyphicons.glyph-compass:before{content:"\E061";}.glyphicons.glyph-keynote:before{content:"\E062";}.glyphicons.glyph-paperclip:before{content:"\1F4CE";}.glyphicons.glyph-power:before{content:"\E064";}.glyphicons.glyph-lightbulb:before{content:"\E065";}.glyphicons.glyph-tag:before{content:"\E066";}.glyphicons.glyph-tags:before{content:"\E067";}.glyphicons.glyph-cleaning:before{content:"\E068";}.glyphicons.glyph-ruller:before{content:"\E069";}.glyphicons.glyph-gift:before{content:"\E070";}.glyphicons.glyph-umbrella:before{content:"\2602";}.glyphicons.glyph-book:before{content:"\E072";}.glyphicons.glyph-bookmark:before{content:"\1F516";}.glyphicons.glyph-wifi:before{content:"\E074";}.glyphicons.glyph-cup:before{content:"\E075";}.glyphicons.glyph-stroller:before{content:"\E076";}.glyphicons.glyph-headphones:before{content:"\E077";}.glyphicons.glyph-headset:before{content:"\E078";}.glyphicons.glyph-warning-sign:before{content:"\E079";}.glyphicons.glyph-signal:before{content:"\E080";}.glyphicons.glyph-retweet:before{content:"\E081";}.glyphicons.glyph-refresh:before{content:"\E082";}.glyphicons.glyph-roundabout:before{content:"\E083";}.glyphicons.glyph-random:before{content:"\E084";}.glyphicons.glyph-heat:before{content:"\E085";}.glyphicons.glyph-repeat:before{content:"\E086";}.glyphicons.glyph-display:before{content:"\E087";}.glyphicons.glyph-log-book:before{content:"\E088";}.glyphicons.glyph-address-book:before{content:"\E089";}.glyphicons.glyph-building:before{content:"\E090";}.glyphicons.glyph-eyedropper:before{content:"\E091";}.glyphicons.glyph-adjust:before{content:"\E092";}.glyphicons.glyph-tint:before{content:"\E093";}.glyphicons.glyph-crop:before{content:"\E094";}.glyphicons.glyph-vector-path-square:before{content:"\E095";}.glyphicons.glyph-vector-path-circle:before{content:"\E096";}.glyphicons.glyph-vector-path-polygon:before{content:"\E097";}.glyphicons.glyph-vector-path-line:before{content:"\E098";}.glyphicons.glyph-vector-path-curve:before{content:"\E099";}.glyphicons.glyph-vector-path-all:before{content:"\E100";}.glyphicons.glyph-font:before{content:"\E101";}.glyphicons.glyph-italic:before{content:"\E102";}.glyphicons.glyph-bold:before{content:"\E103";}.glyphicons.glyph-text-underline:before{content:"\E104";}.glyphicons.glyph-text-strike:before{content:"\E105";}.glyphicons.glyph-text-height:before{content:"\E106";}.glyphicons.glyph-text-width:before{content:"\E107";}.glyphicons.glyph-text-resize:before{content:"\E108";}.glyphicons.glyph-left-indent:before{content:"\E109";}.glyphicons.glyph-right-indent:before{content:"\E110";}.glyphicons.glyph-align-left:before{content:"\E111";}.glyphicons.glyph-align-center:before{content:"\E112";}.glyphicons.glyph-align-right:before{content:"\E113";}.glyphicons.glyph-justify:before{content:"\E114";}.glyphicons.glyph-list:before{content:"\E115";}.glyphicons.glyph-text-smaller:before{content:"\E116";}.glyphicons.glyph-text-bigger:before{content:"\E117";}.glyphicons.glyph-embed:before{content:"\E118";}.glyphicons.glyph-embed-close:before{content:"\E119";}.glyphicons.glyph-table:before{content:"\E120";}.glyphicons.glyph-message-full:before{content:"\E121";}.glyphicons.glyph-message-empty:before{content:"\E122";}.glyphicons.glyph-message-in:before{content:"\E123";}.glyphicons.glyph-message-out:before{content:"\E124";}.glyphicons.glyph-message-plus:before{content:"\E125";}.glyphicons.glyph-message-minus:before{content:"\E126";}.glyphicons.glyph-message-ban:before{content:"\E127";}.glyphicons.glyph-message-flag:before{content:"\E128";}.glyphicons.glyph-message-lock:before{content:"\E129";}.glyphicons.glyph-message-new:before{content:"\E130";}.glyphicons.glyph-inbox:before{content:"\E131";}.glyphicons.glyph-inbox-plus:before{content:"\E132";}.glyphicons.glyph-inbox-minus:before{content:"\E133";}.glyphicons.glyph-inbox-lock:before{content:"\E134";}.glyphicons.glyph-inbox-in:before{content:"\E135";}.glyphicons.glyph-inbox-out:before{content:"\E136";}.glyphicons.glyph-cogwheel:before{content:"\E137";}.glyphicons.glyph-cogwheels:before{content:"\E138";}.glyphicons.glyph-picture:before{content:"\E139";}.glyphicons.glyph-adjust-alt:before{content:"\E140";}.glyphicons.glyph-database-lock:before{content:"\E141";}.glyphicons.glyph-database-plus:before{content:"\E142";}.glyphicons.glyph-database-minus:before{content:"\E143";}.glyphicons.glyph-database-ban:before{content:"\E144";}.glyphicons.glyph-folder-open:before{content:"\E145";}.glyphicons.glyph-folder-plus:before{content:"\E146";}.glyphicons.glyph-folder-minus:before{content:"\E147";}.glyphicons.glyph-folder-lock:before{content:"\E148";}.glyphicons.glyph-folder-flag:before{content:"\E149";}.glyphicons.glyph-folder-new:before{content:"\E150";}.glyphicons.glyph-edit:before{content:"\E151";}.glyphicons.glyph-new-window:before{content:"\E152";}.glyphicons.glyph-check:before{content:"\E153";}.glyphicons.glyph-unchecked:before{content:"\E154";}.glyphicons.glyph-more-windows:before{content:"\E155";}.glyphicons.glyph-show-big-thumbnails:before{content:"\E156";}.glyphicons.glyph-show-thumbnails:before{content:"\E157";}.glyphicons.glyph-show-thumbnails-with-lines:before{content:"\E158";}.glyphicons.glyph-show-lines:before{content:"\E159";}.glyphicons.glyph-playlist:before{content:"\E160";}.glyphicons.glyph-imac:before{content:"\E161";}.glyphicons.glyph-macbook:before{content:"\E162";}.glyphicons.glyph-ipad:before{content:"\E163";}.glyphicons.glyph-iphone:before{content:"\E164";}.glyphicons.glyph-iphone-transfer:before{content:"\E165";}.glyphicons.glyph-iphone-exchange:before{content:"\E166";}.glyphicons.glyph-ipod:before{content:"\E167";}.glyphicons.glyph-ipod-shuffle:before{content:"\E168";}.glyphicons.glyph-ear-plugs:before{content:"\E169";}.glyphicons.glyph-record:before{content:"\E170";}.glyphicons.glyph-step-backward:before{content:"\E171";}.glyphicons.glyph-fast-backward:before{content:"\E172";}.glyphicons.glyph-rewind:before{content:"\E173";}.glyphicons.glyph-play:before{content:"\E174";}.glyphicons.glyph-pause:before{content:"\E175";}.glyphicons.glyph-stop:before{content:"\E176";}.glyphicons.glyph-forward:before{content:"\E177";}.glyphicons.glyph-fast-forward:before{content:"\E178";}.glyphicons.glyph-step-forward:before{content:"\E179";}.glyphicons.glyph-eject:before{content:"\E180";}.glyphicons.glyph-facetime-video:before{content:"\E181";}.glyphicons.glyph-download-alt:before{content:"\E182";}.glyphicons.glyph-mute:before{content:"\E183";}.glyphicons.glyph-volume-down:before{content:"\E184";}.glyphicons.glyph-volume-up:before{content:"\E185";}.glyphicons.glyph-screenshot:before{content:"\E186";}.glyphicons.glyph-move:before{content:"\E187";}.glyphicons.glyph-more:before{content:"\E188";}.glyphicons.glyph-brightness-reduce:before{content:"\E189";}.glyphicons.glyph-brightness-increase:before{content:"\E190";}.glyphicons.glyph-circle-plus:before{content:"\E191";}.glyphicons.glyph-circle-minus:before{content:"\E192";}.glyphicons.glyph-circle-remove:before{content:"\E193";}.glyphicons.glyph-circle-ok:before{content:"\E194";}.glyphicons.glyph-circle-question-mark:before{content:"\E195";}.glyphicons.glyph-circle-info:before{content:"\E196";}.glyphicons.glyph-circle-exclamation-mark:before{content:"\E197";}.glyphicons.glyph-remove:before{content:"\E198";}.glyphicons.glyph-ok:before{content:"\E199";}.glyphicons.glyph-ban:before{content:"\E200";}.glyphicons.glyph-download:before{content:"\E201";}.glyphicons.glyph-upload:before{content:"\E202";}.glyphicons.glyph-shopping-cart:before{content:"\E203";}.glyphicons.glyph-lock:before{content:"\1F512";}.glyphicons.glyph-unlock:before{content:"\E205";}.glyphicons.glyph-electricity:before{content:"\E206";}.glyphicons.glyph-ok-2:before{content:"\E207";}.glyphicons.glyph-remove-2:before{content:"\E208";}.glyphicons.glyph-cart-out:before{content:"\E209";}.glyphicons.glyph-cart-in:before{content:"\E210";}.glyphicons.glyph-left-arrow:before{content:"\E211";}.glyphicons.glyph-right-arrow:before{content:"\E212";}.glyphicons.glyph-down-arrow:before{content:"\E213";}.glyphicons.glyph-up-arrow:before{content:"\E214";}.glyphicons.glyph-resize-small:before{content:"\E215";}.glyphicons.glyph-resize-full:before{content:"\E216";}.glyphicons.glyph-circle-arrow-left:before{content:"\E217";}.glyphicons.glyph-circle-arrow-right:before{content:"\E218";}.glyphicons.glyph-circle-arrow-top:before{content:"\E219";}.glyphicons.glyph-circle-arrow-down:before{content:"\E220";}.glyphicons.glyph-play-button:before{content:"\E221";}.glyphicons.glyph-unshare:before{content:"\E222";}.glyphicons.glyph-share:before{content:"\E223";}.glyphicons.glyph-chevron-right:before{content:"\E224";}.glyphicons.glyph-chevron-left:before{content:"\E225";}.glyphicons.glyph-bluetooth:before{content:"\E226";}.glyphicons.glyph-euro:before{content:"\20AC";}.glyphicons.glyph-usd:before{content:"\E228";}.glyphicons.glyph-gbp:before{content:"\E229";}.glyphicons.glyph-retweet-2:before{content:"\E230";}.glyphicons.glyph-moon:before{content:"\E231";}.glyphicons.glyph-sun:before{content:"\2609";}.glyphicons.glyph-cloud:before{content:"\2601";}.glyphicons.glyph-direction:before{content:"\E234";}.glyphicons.glyph-brush:before{content:"\E235";}.glyphicons.glyph-pen:before{content:"\E236";}.glyphicons.glyph-zoom-in:before{content:"\E237";}.glyphicons.glyph-zoom-out:before{content:"\E238";}.glyphicons.glyph-pin:before{content:"\E239";}.glyphicons.glyph-albums:before{content:"\E240";}.glyphicons.glyph-rotation-lock:before{content:"\E241";}.glyphicons.glyph-flash:before{content:"\E242";}.glyphicons.glyph-google-maps:before{content:"\E243";}.glyphicons.glyph-anchor:before{content:"\2693";}.glyphicons.glyph-conversation:before{content:"\E245";}.glyphicons.glyph-chat:before{content:"\E246";}.glyphicons.glyph-male:before{content:"\E247";}.glyphicons.glyph-female:before{content:"\E248";}.glyphicons.glyph-asterisk:before{content:"\002A";}.glyphicons.glyph-divide:before{content:"\00F7";}.glyphicons.glyph-snorkel-diving:before{content:"\E251";}.glyphicons.glyph-scuba-diving:before{content:"\E252";}.glyphicons.glyph-oxygen-bottle:before{content:"\E253";}.glyphicons.glyph-fins:before{content:"\E254";}.glyphicons.glyph-fishes:before{content:"\E255";}.glyphicons.glyph-boat:before{content:"\E256";}.glyphicons.glyph-delete:before{content:"\E257";}.glyphicons.glyph-sheriffs-star:before{content:"\E258";}.glyphicons.glyph-qrcode:before{content:"\E259";}.glyphicons.glyph-barcode:before{content:"\E260";}.glyphicons.glyph-pool:before{content:"\E261";}.glyphicons.glyph-buoy:before{content:"\E262";}.glyphicons.glyph-spade:before{content:"\E263";}.glyphicons.glyph-bank:before{content:"\1F3E6";}.glyphicons.glyph-vcard:before{content:"\E265";}.glyphicons.glyph-electrical-plug:before{content:"\E266";}.glyphicons.glyph-flag:before{content:"\E267";}.glyphicons.glyph-credit-card:before{content:"\E268";}.glyphicons.glyph-keyboard-wireless:before{content:"\E269";}.glyphicons.glyph-keyboard-wired:before{content:"\E270";}.glyphicons.glyph-shield:before{content:"\E271";}.glyphicons.glyph-ring:before{content:"\02DA";}.glyphicons.glyph-cake:before{content:"\E273";}.glyphicons.glyph-drink:before{content:"\E274";}.glyphicons.glyph-beer:before{content:"\E275";}.glyphicons.glyph-fast-food:before{content:"\E276";}.glyphicons.glyph-cutlery:before{content:"\E277";}.glyphicons.glyph-pizza:before{content:"\E278";}.glyphicons.glyph-birthday-cake:before{content:"\E279";}.glyphicons.glyph-tablet:before{content:"\E280";}.glyphicons.glyph-settings:before{content:"\E281";}.glyphicons.glyph-bullets:before{content:"\E282";}.glyphicons.glyph-cardio:before{content:"\E283";}.glyphicons.glyph-t-shirt:before{content:"\E284";}.glyphicons.glyph-pants:before{content:"\E285";}.glyphicons.glyph-sweater:before{content:"\E286";}.glyphicons.glyph-fabric:before{content:"\E287";}.glyphicons.glyph-leather:before{content:"\E288";}.glyphicons.glyph-scissors:before{content:"\E289";}.glyphicons.glyph-bomb:before{content:"\1F4A3";}.glyphicons.glyph-skull:before{content:"\1F480";}.glyphicons.glyph-celebration:before{content:"\E292";}.glyphicons.glyph-tea-kettle:before{content:"\E293";}.glyphicons.glyph-french-press:before{content:"\E294";}.glyphicons.glyph-coffe-cup:before{content:"\E295";}.glyphicons.glyph-pot:before{content:"\E296";}.glyphicons.glyph-grater:before{content:"\E297";}.glyphicons.glyph-kettle:before{content:"\E298";}.glyphicons.glyph-hospital:before{content:"\1F3E5";}.glyphicons.glyph-hospital-h:before{content:"\E300";}.glyphicons.glyph-microphone:before{content:"\1F3A4";}.glyphicons.glyph-webcam:before{content:"\E302";}.glyphicons.glyph-temple-christianity-church:before{content:"\E303";}.glyphicons.glyph-temple-islam:before{content:"\E304";}.glyphicons.glyph-temple-hindu:before{content:"\E305";}.glyphicons.glyph-temple-buddhist:before{content:"\E306";}.glyphicons.glyph-bicycle:before{content:"\1F6B2";}.glyphicons.glyph-life-preserver:before{content:"\E308";}.glyphicons.glyph-share-alt:before{content:"\E309";}.glyphicons.glyph-comments:before{content:"\E310";}.glyphicons.glyph-flower:before{content:"\2698";}.glyphicons.glyph-baseball:before{content:"\26BE";}.glyphicons.glyph-rugby:before{content:"\E313";}.glyphicons.glyph-ax:before{content:"\E314";}.glyphicons.glyph-table-tennis:before{content:"\E315";}.glyphicons.glyph-bowling:before{content:"\1F3B3";}.glyphicons.glyph-tree-conifer:before{content:"\E317";}.glyphicons.glyph-tree-deciduous:before{content:"\E318";}.glyphicons.glyph-more-items:before{content:"\E319";}.glyphicons.glyph-sort:before{content:"\E320";}.glyphicons.glyph-filter:before{content:"\E321";}.glyphicons.glyph-gamepad:before{content:"\E322";}.glyphicons.glyph-playing-dices:before{content:"\E323";}.glyphicons.glyph-calculator:before{content:"\E324";}.glyphicons.glyph-tie:before{content:"\E325";}.glyphicons.glyph-wallet:before{content:"\E326";}.glyphicons.glyph-piano:before{content:"\E327";}.glyphicons.glyph-sampler:before{content:"\E328";}.glyphicons.glyph-podium:before{content:"\E329";}.glyphicons.glyph-soccer-ball:before{content:"\E330";}.glyphicons.glyph-blog:before{content:"\E331";}.glyphicons.glyph-dashboard:before{content:"\E332";}.glyphicons.glyph-certificate:before{content:"\E333";}.glyphicons.glyph-bell:before{content:"\1F514";}.glyphicons.glyph-candle:before{content:"\E335";}.glyphicons.glyph-pushpin:before{content:"\1F4CC";}.glyphicons.glyph-iphone-shake:before{content:"\E337";}.glyphicons.glyph-pin-flag:before{content:"\E338";}.glyphicons.glyph-turtle:before{content:"\1F422";}.glyphicons.glyph-rabbit:before{content:"\1F407";}.glyphicons.glyph-globe:before{content:"\E341";}.glyphicons.glyph-briefcase:before{content:"\1F4BC";}.glyphicons.glyph-hdd:before{content:"\E343";}.glyphicons.glyph-thumbs-up:before{content:"\E344";}.glyphicons.glyph-thumbs-down:before{content:"\E345";}.glyphicons.glyph-hand-right:before{content:"\E346";}.glyphicons.glyph-hand-left:before{content:"\E347";}.glyphicons.glyph-hand-up:before{content:"\E348";}.glyphicons.glyph-hand-down:before{content:"\E349";}.glyphicons.glyph-fullscreen:before{content:"\E350";}.glyphicons.glyph-shopping-bag:before{content:"\E351";}.glyphicons.glyph-book-open:before{content:"\E352";}.glyphicons.glyph-nameplate:before{content:"\E353";}.glyphicons.glyph-nameplate-alt:before{content:"\E354";}.glyphicons.glyph-vases:before{content:"\E355";}.glyphicons.glyph-bullhorn:before{content:"\E356";}.glyphicons.glyph-dumbbell:before{content:"\E357";}.glyphicons.glyph-suitcase:before{content:"\E358";}.glyphicons.glyph-file-import:before{content:"\E359";}.glyphicons.glyph-file-export:before{content:"\E360";}.glyphicons.glyph-bug:before{content:"\1F41B";}.glyphicons.glyph-crown:before{content:"\1F451";}.glyphicons.glyph-smoking:before{content:"\E363";}.glyphicons.glyph-cloud-upload:before{content:"\E364";}.glyphicons.glyph-cloud-download:before{content:"\E365";}.glyphicons.glyph-restart:before{content:"\E366";}.glyphicons.glyph-security-camera:before{content:"\E367";}.glyphicons.glyph-expand:before{content:"\E368";}.glyphicons.glyph-collapse:before{content:"\E369";}.glyphicons.glyph-collapse-top:before{content:"\E370";}.glyphicons.glyph-globe-af:before{content:"\E371";}.glyphicons.glyph-global:before{content:"\E372";}.glyphicons.glyph-spray:before{content:"\E373";}.glyphicons.glyph-nails:before{content:"\E374";}.glyphicons.glyph-claw-hammer:before{content:"\E375";}.glyphicons.glyph-classic-hammer:before{content:"\E376";}.glyphicons.glyph-hand-saw:before{content:"\E377";}.glyphicons.glyph-riflescope:before{content:"\E378";}.glyphicons.glyph-electrical-socket-eu:before{content:"\E379";}.glyphicons.glyph-electrical-socket-us:before{content:"\E380";}.glyphicons.glyph-message-forward:before{content:"\E381";}.glyphicons.glyph-coat-hanger:before{content:"\E382";}.glyphicons.glyph-dress:before{content:"\1F457";}.glyphicons.glyph-bathrobe:before{content:"\E384";}.glyphicons.glyph-shirt:before{content:"\E385";}.glyphicons.glyph-underwear:before{content:"\E386";}.glyphicons.glyph-log-in:before{content:"\E387";}.glyphicons.glyph-log-out:before{content:"\E388";}.glyphicons.glyph-exit:before{content:"\E389";}.glyphicons.glyph-new-window-alt:before{content:"\E390";}.glyphicons.glyph-video-sd:before{content:"\E391";}.glyphicons.glyph-video-hd:before{content:"\E392";}.glyphicons.glyph-subtitles:before{content:"\E393";}.glyphicons.glyph-sound-stereo:before{content:"\E394";}.glyphicons.glyph-sound-dolby:before{content:"\E395";}.glyphicons.glyph-sound-5-1:before{content:"\E396";}.glyphicons.glyph-sound-6-1:before{content:"\E397";}.glyphicons.glyph-sound-7-1:before{content:"\E398";}.glyphicons.glyph-copyright-mark:before{content:"\E399";}.glyphicons.glyph-registration-mark:before{content:"\E400";}.glyphicons.glyph-radar:before{content:"\E401";}.glyphicons.glyph-skateboard:before{content:"\E402";}.glyphicons.glyph-golf-course:before{content:"\E403";}.glyphicons.glyph-sorting:before{content:"\E404";}.glyphicons.glyph-sort-by-alphabet:before{content:"\E405";}.glyphicons.glyph-sort-by-alphabet-alt:before{content:"\E406";}.glyphicons.glyph-sort-by-order:before{content:"\E407";}.glyphicons.glyph-sort-by-order-alt:before{content:"\E408";}.glyphicons.glyph-sort-by-attributes:before{content:"\E409";}.glyphicons.glyph-sort-by-attributes-alt:before{content:"\E410";}.glyphicons.glyph-compressed:before{content:"\E411";}.glyphicons.glyph-package:before{content:"\1F4E6";}.glyphicons.glyph-cloud-plus:before{content:"\E413";}.glyphicons.glyph-cloud-minus:before{content:"\E414";}.glyphicons.glyph-disk-save:before{content:"\E415";}.glyphicons.glyph-disk-open:before{content:"\E416";}.glyphicons.glyph-disk-saved:before{content:"\E417";}.glyphicons.glyph-disk-remove:before{content:"\E418";}.glyphicons.glyph-disk-import:before{content:"\E419";}.glyphicons.glyph-disk-export:before{content:"\E420";}.glyphicons.glyph-tower:before{content:"\E421";}.glyphicons.glyph-send:before{content:"\E422";}.glyphicons.glyph-git-branch:before{content:"\E423";}.glyphicons.glyph-git-create:before{content:"\E424";}.glyphicons.glyph-git-private:before{content:"\E425";}.glyphicons.glyph-git-delete:before{content:"\E426";}.glyphicons.glyph-git-merge:before{content:"\E427";}.glyphicons.glyph-git-pull-request:before{content:"\E428";}.glyphicons.glyph-git-compare:before{content:"\E429";}.glyphicons.glyph-git-commit:before{content:"\E430";}.glyphicons.glyph-construction-cone:before{content:"\E431";}.glyphicons.glyph-shoe-steps:before{content:"\E432";}.glyphicons.glyph-plus:before{content:"\002B";}.glyphicons.glyph-minus:before{content:"\2212";}.glyphicons.glyph-redo:before{content:"\E435";}.glyphicons.glyph-undo:before{content:"\E436";}.glyphicons.glyph-golf:before{content:"\E437";}.glyphicons.glyph-hockey:before{content:"\E438";}.glyphicons.glyph-pipe:before{content:"\E439";}.glyphicons.glyph-wrench:before{content:"\1F527";}.glyphicons.glyph-folder-closed:before{content:"\E441";}.glyphicons.glyph-phone-alt:before{content:"\E442";}.glyphicons.glyph-earphone:before{content:"\E443";}.glyphicons.glyph-floppy-disk:before{content:"\E444";}.glyphicons.glyph-floppy-saved:before{content:"\E445";}.glyphicons.glyph-floppy-remove:before{content:"\E446";}.glyphicons.glyph-floppy-save:before{content:"\E447";}.glyphicons.glyph-floppy-open:before{content:"\E448";}.glyphicons.glyph-translate:before{content:"\E449";}.glyphicons.glyph-fax:before{content:"\E450";}.glyphicons.glyph-factory:before{content:"\1F3ED";}.glyphicons.glyph-shop-window:before{content:"\E452";}.glyphicons.glyph-shop:before{content:"\E453";}.glyphicons.glyph-kiosk:before{content:"\E454";}.glyphicons.glyph-kiosk-wheels:before{content:"\E455";}.glyphicons.glyph-kiosk-light:before{content:"\E456";}.glyphicons.glyph-kiosk-food:before{content:"\E457";}.glyphicons.glyph-transfer:before{content:"\E458";}.glyphicons.glyph-money:before{content:"\E459";}.glyphicons.glyph-header:before{content:"\E460";}.glyphicons.glyph-blacksmith:before{content:"\E461";}.glyphicons.glyph-saw-blade:before{content:"\E462";}.glyphicons.glyph-basketball:before{content:"\E463";}.glyphicons.glyph-server:before{content:"\E464";}.glyphicons.glyph-server-plus:before{content:"\E465";}.glyphicons.glyph-server-minus:before{content:"\E466";}.glyphicons.glyph-server-ban:before{content:"\E467";}.glyphicons.glyph-server-flag:before{content:"\E468";}.glyphicons.glyph-server-lock:before{content:"\E469";}.glyphicons.glyph-server-new:before{content:"\E470";}.social.social-pinterest:before{content:"\E001";}.social.social-dropbox:before{content:"\E002";}.social.social-google-plus:before{content:"\E003";}.social.social-jolicloud:before{content:"\E004";}.social.social-yahoo:before{content:"\E005";}.social.social-blogger:before{content:"\E006";}.social.social-picasa:before{content:"\E007";}.social.social-amazon:before{content:"\E008";}.social.social-tumblr:before{content:"\E009";}.social.social-wordpress:before{content:"\E010";}.social.social-instapaper:before{content:"\E011";}.social.social-evernote:before{content:"\E012";}.social.social-xing:before{content:"\E013";}.social.social-zootool:before{content:"\E014";}.social.social-dribbble:before{content:"\E015";}.social.social-deviantart:before{content:"\E016";}.social.social-read-it-later:before{content:"\E017";}.social.social-linked-in:before{content:"\E018";}.social.social-forrst:before{content:"\E019";}.social.social-pinboard:before{content:"\E020";}.social.social-behance:before{content:"\E021";}.social.social-github:before{content:"\E022";}.social.social-youtube:before{content:"\E023";}.social.social-skitch:before{content:"\E024";}.social.social-foursquare:before{content:"\E025";}.social.social-quora:before{content:"\E026";}.social.social-badoo:before{content:"\E027";}.social.social-spotify:before{content:"\E028";}.social.social-stumbleupon:before{content:"\E029";}.social.social-readability:before{content:"\E030";}.social.social-facebook:before{content:"\E031";}.social.social-twitter:before{content:"\E032";}.social.social-instagram:before{content:"\E033";}.social.social-posterous-spaces:before{content:"\E034";}.social.social-vimeo:before{content:"\E035";}.social.social-flickr:before{content:"\E036";}.social.social-last-fm:before{content:"\E037";}.social.social-rss:before{content:"\E038";}.social.social-skype:before{content:"\E039";}.social.social-e-mail:before{content:"\E040";}.social.social-vine:before{content:"\E041";}.social.social-myspace:before{content:"\E042";}.social.social-goodreads:before{content:"\E043";}.social.social-apple:before{content:"\F8FF";}.social.social-windows:before{content:"\E045";}.social.social-yelp:before{content:"\E046";}.social.social-playstation:before{content:"\E047";}.social.social-xbox:before{content:"\E048";}.social.social-android:before{content:"\E049";}.social.social-ios:before{content:"\E050";}/*tabs Left*/.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-image:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/tab-left-active-bg.png");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:767px){.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:'Glyphicons Regular';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:"\002B";}.verticalTab_Left .resp-tab-active .resp-arrow:before{content:"\2212";}.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-image:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/tab-right-active-bg.png");background-position:left top;background-repeat:no-repeat;background-color:#69b532;margin-left:-16px;padding-left:31px !important;color:#FFF;}.verticalTab_Right h2.resp-accordion,.verticalTab_Right .resp_container{display:none;}@media only screen and (max-width:767px){.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:'Glyphicons Regular';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:"\002B";}.verticalTab_Right .resp-tab-active .resp-arrow:before{content:"\2212";}.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:767px){.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:'Glyphicons Regular';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:"\002B";}.horizontalTab_Top .resp-tab-active .resp-arrow:before{content:"\2212";}.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%}}



/*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;
}

/*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/20064-UnlimitedColorsPack-046/images/xplugin.png") no-repeat center center;
	z-index:10000;
	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;
}

/*html*/
a.btn-default, a.btn-default:link, a.btn-default:active, a.btn-default:visited {
color: #333333;
}
a.btn-primary, a.btn-primary:link, a.btn-primary:active, a.btn-primary:visited {
color: #ffffff;
}
body .pb-scroll-wrapper iframe#personaBar-iframe.ipad{
	position:fixed!important;
}



/*Fix actionMenu DNN9*/

.dnnEditState .actionMenu{
  display:block!important;
  opacity: 1!important;
}


.DNNEmptyPane{
   width:auto;
}

/*****************************************************************************/
/*** shortcodes.css ***/
/*****************************************************************************/

/* @import url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/shortcodes.css?v=3"); */

/*******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 {
}

.price-table [class*="span"] {
    margin-bottom: 15px;
}

.price_title {
    color: #444444;
    border: 1px solid #e2e2e2;
    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 .price_holder {
    border: 1px solid #E4E4E4;
    margin: 0 0 0 -1px;
    min-height: 300px;
    padding-bottom: 12px;
}


.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 #e2e2e2;
}

.price-table .price_holder ul li {
    list-style: none;
    border-top: 1px solid #e2e2e2;
    padding: 12px 0;
}

.price-table .btn {
    margin-top: 10px;
    position: relative;
    font-size: 15px;
    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;
    -moz-transition: all ease-in 200ms; /* Firefox 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 .btn:hover {
        background-color: #525252;
    }

.price-table1 {
    text-align: center;
}

    .price-table1 .col-sm-4 {
        border-left: 1px solid #ECECEC;
    }

        .price-table1 .col-sm-4:first-child {
            border-left: none;
        }

    .price-table1 .price_icon1,
    .price-table1 .price_icon2,
    .price-table1 .price_icon3 {
        margin: 0 auto;
        width: 170px;
        height: 170px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border: 1px solid #22BB75;
        color: #22BB75;
    }

        .price-table1 .price_icon1 span.glyphicons.glyph-imac,
        .price-table1 .price_icon2 span.glyphicons.glyph-imac,
        .price-table1 .price_icon3 span.glyphicons.glyph-imac {
            font-size: 48px;
            top: 50%;
            margin: -29px 0 0 0;
        }

        .price-table1 .price_icon2 span.glyphicons.glyph-iphone,
        .price-table1 .price_icon3 span.glyphicons.glyph-iphone {
            font-size: 18px;
            top: 50%;
            margin: -9px 0 0 0;
        }

        .price-table1 .price_icon3 span.glyphicons.glyph-ipad {
            font-size: 22px;
            top: 50%;
        }

    .price-table1 .price_title {
        border: none;
        color: #333;
        padding-top: 20px;
        padding-bottom: 20px;
    }

        .price-table1 .price_title h2 {
            font-size: 20px;
            text-transform: uppercase;
            color: #333;
        }

    .price-table1 .price_holder {
        border: none;
        margin: 0 30px;
    }

    .price-table1 .price_box {
        color: #22BB75;
        text-transform: uppercase;
        padding: 0 0px 25px 0px;
    }

    .price-table1 .sup {
        font-size: 50px;
        line-height: normal;
        vertical-align: baseline;
    }

    .price-table1 .price {
        font-size: 50px;
        line-height: normal;
    }

    .price-table1 .unit {
        font-size: 20px;
        line-height: normal;
    }

    .price-table1 .price_holder p {
        margin: 0px 0px 13px 0px;
        color: #666;
    }

    .price-table1 .price_holder ul {
        border-bottom: none;
    }

        .price-table1 .price_holder ul li {
            border-top: none;
            border-bottom: 1px solid #DEDEDE;
            color: #666;
        }

            .price-table1 .price_holder ul li span {
                color: #333;
            }

    .price-table1 .btn {
        background-color: #22BB75;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        padding: 10px 25px;
    }

.price-table2.row {
    margin-right: -2px;
    margin-left: -2px;
}

.price-table2 .col-md-3 {
    padding-left: 2px;
    padding-right: 2px;
}

.price-table2 {
    text-align: center;
}

    .price-table2 .price_icon {
        background-color: #535353;
        border-top: 3px solid #22BB75;
    }

        .price-table2 .price_icon span.glyphicons {
            color: #fff;
            font-size: 24px;
            padding: 20px 0 0 0;
        }

        .price-table2 .price_icon .price_title {
            border: none;
            color: #fff;
            padding-bottom: 20px;
        }

            .price-table2 .price_icon .price_title h2 {
                color: #fff;
            }

    .price-table2 .price_holder {
        border: none;
        margin: 0;
        padding-bottom: 0px;
    }

    .price-table2 .price_box {
        color: #22BB75;
        text-transform: uppercase;
        padding: 25px 0px 0px 0px;
    }

    .price-table2 .sup {
        font-size: 50px;
        line-height: normal;
        vertical-align: baseline;
    }

    .price-table2 .price {
        font-size: 50px;
        line-height: normal;
    }

    .price-table2 .unit {
        font-size: 20px;
        line-height: normal;
    }

    .price-table2 .price_holder p {
        font-size: 15px;
        color: #aaa;
        margin: 0px 0px 25px 0px;
    }

    .price-table2 .price_holder ul {
        border-bottom: none;
        margin: 0;
    }

        .price-table2 .price_holder ul li {
            font-size: 13px;
            color: #666;
            background-color: #F0F0F0;
            margin-bottom: 3px;
            border-top: none;
            padding: 20px 0;
        }

            .price-table2 .price_holder ul li span.glyphicons {
                font-size: 16px;
                color: #22BB75;
                margin: 0 2px;
            }

    .price-table2 .btn {
        margin-top: 0;
        background-color: #22BB75;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        padding: 7px 27px;
    }

.price02_table .price_title {
    color: #FFF;
    padding: 20px 0;
    margin: 0 0 0 0;
    border: none;
    background-color: #4f605e;
}

    .price02_table .price_title h2 {
        color: #FFF;
        text-align: center;
        font-size: 30px;
        line-height: 1;
    }

    .price02_table .price_title h3 {
        margin: 0;
        font-size: 18px;
        color: #FFF;
        line-height: 1;
        padding: 20px 0 0;
    }

.price02_table .price_box {
    padding: 0 0px 40px 0px;
    background-color: #4f605e;
    position: relative;
    color: #FFF;
    text-align: center;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.price02_table .price_holder ul li {
    text-align: center;
    border-bottom: 1px solid #e2e2e2;
    padding: 13px 0;
    border-top: none;
}

.price02_table .price_holder {
    border-top: none;
    text-align: center;
    margin: 0;
    border: none;
    padding-bottom: 28px;
    background-color: #fff;
}

.price02_table .btn {
    border: 2px solid transparent;
    text-transform: uppercase;
    background: #4f605e;
    padding: 10px 43px;
    margin-bottom: 10px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 15px !important;
    color: #fff !important
}

.price02_table color1.btn {
}

.price02_table a:hover.btn {
    border: 2px solid #444;
    background: transparent;
    color: #444 !important;
}

.price02_table .unit {
    font-size: 20px
}

.price02_table .best_value .price_title h2 {
    font-size: 32px;
}

.price02_table .best_value .price_title h3 {
    font-size: 20px;
}

.price02_table .best_value {
    margin-top: -20px;
    margin-bottom: -20px
}

    .price02_table .best_value .price_title {
        padding: 20px 0
    }

    .price02_table .best_value .price_holder .btn {
        margin: 10px 0 30px
    }

.price02_table.price-table .best_value .price {
    font-size: 58px;
}

.price02_table.price-table .best_value .sup {
    font-size: 26px;
    line-height: 65px;
}

.price02_table.price-table .best_value .unit {
    font-size: 14px;
}

.price02_table.price-table .best_value .prcing02_squer {
    width: 33px;
    height: 33px;
}


.price02_table.price-table .color1,
.price02_table.price-table .color2,
.price02_table.price-table .color3 {
    -moz-box-shadow: 0px 0px 2px #e7e5e5;
    -webkit-box-shadow: 0px 0px 2px #e7e5e5;
    box-shadow: 0px 0px 2px #e7e5e5;
    position: relative;
}

.price02_table.price-table .color2 {
    background-color: #33a1a5;
    padding: 6px;
}

.price02_table .color2 .price_holder {
    background: #fff;
}

.price02_table.price-table .color3 .price_box,
.price02_table.price-table .color3 .btn,
.price02_table.price-table .color3 .price_title {
    background-color: #22bb75;
}

.price02_table.price-table .color3 a:hover.btn {
    background-color: #444;
    color: #fff !important;
}


.price02_table.price-table .color2 .price_box,
.price02_table.price-table .color2 .price_title {
    background-color: #33a1a5;
}

.price02_table.price-table .color2 .btn {
    background-color: transparent;
    border: 2px solid #33a1a5;
    color: #33a1a5 !important;
}

.price02_table.price-table .color2 a:hover.btn {
    background-color: #444;
    border: 2px solid #444;
    color: #fff !important;
}


.price02_table.price-table .price {
    font-size: 54px;
    line-height: 1;
}

.price02_table.price-table .sup {
    font-size: 24px;
    line-height: 65px;
}

.price02_table.price-table .unit {
    font-size: 13px;
    display: block;
}

.price02_table.price-table .price_box {
    background: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/pricing02_02.png") repeat-x left bottom;
    height: 7px;
    background-color: #4f605e
}

.price02_table.price-table .price_holder ul {
    margin: 20px 0px 28px 0px;
    padding: 0 34px;
    border-bottom: none;
}

.prcing02_squer {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    -moz-box-shadow: 1px 2px 3px #e7e5e5 inset;
    -webkit-box-shadow: 1px 2px 3px #e7e5e5 inset;
    box-shadow: 1px 2px 3px #999 inset;
    z-index: 999;
}
/*******price-table3*******/
.price-table3 {
    padding: 30px 0 40px 0;
}

    .price-table3 [class*="col-sm-4"] {
        padding-right: 0px;
        padding-left: 0px;
    }

    .price-table3 .price_border {
        transition: box-shadow ease-in 200ms;
        -moz-transition: box-shadow ease-in 200ms; /* Firefox 4 */
        -webkit-transition: box-shadow ease-in 200ms; /* Safari and Chrome */
        -o-transition: box-shadow ease-in 200ms; /* Opera */
        -ms-transition: box-shadow ease-in 200ms; /* IE9? */
        position: relative;
        z-index: 1;
    }

        .price-table3 .price_border:hover {
            box-shadow: 0 0 13px rgba(0, 0, 0, 0.5);
            -moz-box-shadow: 0 0 13px rgba(0, 0, 0, 0.5);
            -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 2;
        }

    .price-table3 .price_title {
        background-color: #22bb75;
        border: none;
        text-align: center;
        padding: 22px 0;
        margin: 0 0 0 -1px;
        text-transform: uppercase;
    }

        .price-table3 .price_title h2 {
            font-size: 24px;
            color: #fff;
            font-weight: normal;
        }

    .price-table3 .price_holder {
        padding: 0;
        text-align: center;
        background-color: #F3F3F3;
        border: none;
    }

    .price-table3 .price_box {
        text-align: center;
        color: #222;
    }

        .price-table3 .price_box .sup,
        .price-table3 .price_box .price,
        .price-table3 .price_box .unit {
        }

        .price-table3 .price_box .sup {
            font-size: 40px;
            vertical-align: initial;
        }

        .price-table3 .price_box .price {
            font-size: 40px;
        }

        .price-table3 .price_box .unit {
            font-size: 15px;
            color: #666;
        }

    .price-table3 .price_holder ul {
        margin: 0px;
        background-color: #E5E5E5;
        border-bottom: none;
    }

        .price-table3 .price_holder ul li {
            color: #666;
            font-size: 13px;
            border-top: none;
        }

            .price-table3 .price_holder ul li:first-child {
            }

            .price-table3 .price_holder ul li:nth-child(odd) {
            }

            .price-table3 .price_holder ul li span {
                color: #333;
            }

    .price-table3 .price_holder a.btn {
        padding: 10px 25px;
        margin: 40px 0;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        font-size: 14px;
        color: #22bb75;
        border: 1px solid #22bb75;
    }

        .price-table3 .price_holder a.btn:hover {
            background-color: #22bb75;
            color: #fff;
        }

    .price-table3 .best_value {
        margin: -20px 0 0 0;
    }

        .price-table3 .best_value .price_border {
            box-shadow: 0 0 13px rgba(0, 0, 0, 0.5);
            -moz-box-shadow: 0 0 13px rgba(0, 0, 0, 0.5);
            -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 3;
        }

        .price-table3 .best_value .price_title {
            padding: 32px 0;
        }

            .price-table3 .best_value .price_title h2 {
            }

        .price-table3 .best_value .price_holder {
        }

        .price-table3 .best_value .price_box {
        }

            .price-table3 .best_value .price_box .sup,
            .price-table3 .best_value .price_box .price,
            .price-table3 .best_value .price_box .unit {
            }

        .price-table3 .best_value .price_holder ul {
        }

            .price-table3 .best_value .price_holder ul li {
            }

                .price-table3 .best_value .price_holder ul li:nth-child(even) {
                }

        .price-table3 .best_value .price_holder a.btn {
            margin: 50px 0;
        }

            .price-table3 .best_value .price_holder a.btn:hover {
            }


/*chart_list*/
.chart_list {
    text-align: center;
}

    .chart_list .percentage {
        margin: auto auto 8px;
        position: relative;
        color: #22BB75;
    }

        .chart_list .percentage .percentage_inner {
            font-size: 60px;
            left: 50%;
            top: 86px;
            position: absolute;
            text-align: center;
            width: 170px;
            height: 170px;
            border-radius: 50%;
            line-height: 1.2;
            color: #22BB75;
            margin: 0 0 0 -85px;
        }

            .chart_list .percentage .percentage_inner p {
                font-size: 13px;
            }

/*chart_list_detail02*/
.chart_list_detail02 {
    text-align: center;
}

    .chart_list_detail02 .percentage66 {
        position: relative;
        margin: 20px auto;
        width: 100px;
        height: 100px;
        line-height: 100px;
        color: #22BB75;
    }

        .chart_list_detail02 .percentage66 .percentage_inner {
            position: absolute;
            left: 0;
            top: 0;
            text-align: center;
            width: 100%;
            font-size: 30px;
            color: #333;
        }

    .chart_list_detail02 p {
        font-size: 16px;
        margin: 0 0 13px 0;
    }
/*home4Page chart_list*/
.home4_chart .chart_list {
    padding-top: 20px;
}

    .home4_chart .chart_list > div {
        padding-bottom: 30px;
        background: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/home4_chart_shadow.png") center bottom no-repeat;
    }
/*loaded_list*/
.loaded_list p {
    color: #666;
    font-size: 14px;
}

.loaded_list .progress .bar {
    position: relative;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    height: 14px;
    line-height: 14px;
    /*	box-shadow:1px 1px 0px rgba(0,0,0,0.2);	
	-moz-box-shadow:1px 1px 0px rgba(0,0,0,0.2); 	
	-webkit-box-shadow:1px 1px 0px rgba(0,0,0,0.2);
*/ 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: #22BB75;
}

.loaded_list .progress {
    overflow: visible;
    height: 14px;
    line-height: 14px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    background-color: #EEEEEE;
    box-shadow: none;
}

.loaded_list .bar span {
    position: absolute;
    right: 0px;
    bottom: 100%;
    background: #4C4C4C;
    color: #fff;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 2px 5px !important;
    line-height: normal !important;
    font-size: 12px !important;
    text-indent: 0;
    margin-bottom: 8px;
    display: none;
}

    .loaded_list .bar span:before {
        border: 5px solid transparent;
        border-top: 5px solid #4C4C4C;
        content: "";
        display: block;
        position: absolute;
        left: 50%;
        top: 100%;
        width: 0 !important;
        margin-left: -5px;
    }

.loaded_list2 p {
    color: #666;
    font-size: 13px;
}

.loaded_list2 .progressborder {
    border: 2px solid #E4E4E4;
    padding: 7px;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    margin-bottom: 20px;
}

.loaded_list2 .progress {
    overflow: visible;
    height: 20px;
    line-height: 20px;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    background-color: #F0F0F0;
    box-shadow: none;
    margin-bottom: 0px;
}

    .loaded_list2 .progress .bar {
        position: relative;
        border-radius: 25px;
        -moz-border-radius: 25px;
        -webkit-border-radius: 25px;
        height: 20px;
        line-height: 20px;
        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: #22BB75;
    }

.loaded_list2 .bar span {
    color: #fff;
    background-color: #4A4A4A;
    display: inline-block;
    border-radius: 25px 0 0 25px;
    padding: 0 7px;
}

    .loaded_list2 .bar span:before {
    }

.OurSkill {
    background: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/dividers_1.png") repeat-x left center;
    margin: 0 0 20px 0;
}

    .OurSkill span {
        font-size: 20px;
        background-color: #fff;
        color: #333;
        line-height: normal;
        text-transform: uppercase;
        padding: 0 20px 0 0;
    }


.loaded_list3 .progress {
    overflow: visible;
    width: 22px;
    height: 160px;
    margin: 50px auto;
    position: relative;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    background-color: #EEEEEE;
    box-shadow: none;
}

    .loaded_list3 .progress .bar {
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-radius: 0 0 0px 0;
        -moz-border-radius: 0 0 0px 0;
        -webkit-border-radius: 0 0 0px 0;
        height: 0px;
        width: 22px;
        transition: height ease-in 1000ms;
        -moz-transition: height ease-in 1000ms;
        -webkit-transition: height ease-in 1000ms;
        -o-transition: height ease-in 1000ms;
        -ms-transition: height ease-in 1000ms;
        background-color: #22BB75;
    }

.loaded_list3 .bar span {
    color: #f0f0f0;
    font-size: 12px;
    background-color: #333;
    display: inline-block;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    position: absolute;
    bottom: -37px;
    margin: 0 -9px;
    z-index: -1;
}

.loaded_list3 .progress_rightbox {
    margin: 50px 0;
}

    .loaded_list3 .progress_rightbox h3 {
        font-size: 26px;
        font-weight: normal;
        line-height: normal;
        color: #22BB75;
    }

    .loaded_list3 .progress_rightbox .line {
        width: 30px;
        height: 2px;
        background-color: #22BB75;
        margin: 10px 0;
    }

    .loaded_list3 .progress_rightbox p {
        color: #666;
    }

.team02_percentage {
    text-align: center;
}

    .team02_percentage .loaded_list3_team02 {
        padding: 10px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        display: inline-block;
        border: 2px solid #23bb75;
        margin: 40px 0;
    }

/*.team02_percentage .loaded_list3_team02:hover{
	border:2px solid #919191;}
	
.loaded_list3_team02:hover .percentage55{
	color: #919191;	
	background: #919191;
	}

.loaded_list3_team02:hover .border_color{
	background:#23bb75;}
*/
.loaded_list3_team02 .percentage55 {
    position: relative;
    color: #23bb75;
    margin: 0 auto;
    background: #23bb75;
    border-radius: 50%;
}

.loaded_list3_team02 .border_color {
    background: #23bb75;
}

.loaded_list3_team02 .percentage55 .percentage_inner {
    position: absolute;
    text-align: center;
    color: #fff;
    font-size: 36px;
    text-transform: uppercase;
    width: 100%;
    line-height: normal;
    height: 80px;
    top: 50%;
    margin: -40px 0 0 0;
    /* background: red; */
}

    .loaded_list3_team02 .percentage55 .percentage_inner h6 {
        font-size: 22px;
        line-height: 1.2;
        color: #fff;
        font-weight: normal;
    }
/*number_Animation*/
.number_Animation_main {
    background-color: #F0F0F0;
}

.number_Animation .number_Animation_bg {
    background-color: #EEEEEE;
}

.number_Animation {
    text-align: center;
}

    .number_Animation .glyphicons {
        font-size: 82px;
        display: block;
        margin-bottom: 10px;
        color: #22BB75;
    }

    .number_Animation .number {
        display: block;
        font-size: 70px;
        color: #333;
    }

    .number_Animation .number_name {
        font-size: 16px;
        color: #888;
        display: block;
    }

.number_Animation_aboutus02 {
    text-align: center;
}

    .number_Animation_aboutus02 .glyphicons {
        color: #22bb75;
        display: block;
        font-size: 82px;
        margin-bottom: 10px;
    }

    .number_Animation_aboutus02 .number {
        color: #b1b1b1;
        display: block;
        font-size: 60px;
    }

    .number_Animation_aboutus02 .number_name {
        color: #efefef;
        display: block;
        font-size: 16px;
    }

.number_Animation_1 {
    text-align: center;
}

    .number_Animation_1 .number_Animation_bg {
        padding: 40px 0;
    }

    .number_Animation_1 .number {
        display: block;
        font-size: 72px;
        color: #fff;
    }

    .number_Animation_1 .number_name {
        font-size: 16px;
        color: #fff;
        display: block;
        text-transform: uppercase;
    }

/*new progressBarCounters*/
/*page--ProgressBarsCounters2*/
.cono {
    padding: 0 0 0 85px;
    position: relative;
}

    .cono .sector {
        position: absolute;
        left: 0px;
        top: 0px;
        color: #22bb75;
    }

    .cono .sector_info {
        text-align: center;
        font-size: 25px;
        color: #22bb75;
    }

    .cono h3 {
        font-size: 20px;
        color: #333;
    }

    .cono .line {
        width: 30px;
        height: 2px;
        background-color: #22bb75;
        margin: 15px 0;
    }

    .cono p {
        line-height: 20px;
    }


.SectionStyles7_conbox1 .SectionStyles7_conbox2 {
    /* 20240911 (rk) */
    /*background-color: rgba(255,255,255,0.25);*/
    background-color: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 39px 0;
}

    .SectionStyles7_conbox1 .SectionStyles7_conbox2 span.number {
        display: block;
        font-size: 45px;
        color: #fff;
    }

    .SectionStyles7_conbox1 .SectionStyles7_conbox2 span.number_name {
        font-size: 15px;
        display: block;
        color: #fff;
        /* 20240911 (rk) */
        margin-top: 10px;
    }
/*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 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;
        background-color: #f2f2f2;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        text-align: center;
        color: #797979;
        font-family: Helvetica;
        top: auto;
        bottom: 14px;
        left: auto;
        right: 0;
        transition: background-color ease-in 200ms;
        -moz-transition: background-color ease-in 200ms; /* Firefox 4 */
        -webkit-transition: background-color ease-in 200ms; /* Safari and Chrome */
        -o-transition: background-color ease-in 200ms; /* Opera */
        -ms-transition: background-color ease-in 200ms; /* IE9? */
    }

    .Testimonials_tab .last_page {
        right: 32px;
    }

        .Testimonials_tab .last_page:hover,
        .Testimonials_tab .next_page:hover {
            color: #FFF;
            text-decoration: none;
        }

    .Testimonials_tab .dot {
        position: absolute;
        bottom: 0;
    }

        .Testimonials_tab .dot a {
            display: inline-block;
            width: 6px;
            height: 6px;
            border: 2px solid #606060;
            margin: 0 3px;
            border-radius: 50%;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
            font-size: 0;
            text-indent: -999px;
            vertical-align: middle;
            -webkit-box-sizing: content-box;
            -moz-box-sizing: content-box;
            box-sizing: content-box;
        }

        * + html .Testimonials_tab .dot a {
            display: inline;
        }

            .Testimonials_tab .dot a.actived {
                background: #606060;
                width: 10px;
                height: 10px;
            }
/*Testimonials_1*/
.Testimonials_1left {
    position: relative;
    width: 220px;
    height: 204px;
    background-color: #F0F0F0;
    float: left;
}

    .Testimonials_1left:before {
        position: absolute;
        content: '“';
        font-size: 300px;
        color: #22BB75;
        line-height: normal;
        font-family: Georgia, "Times New Roman", Times, serif;
        left: 50%;
        margin: 10px 0 0 -55px;
        top: 0;
        height: 100%;
    }

    .Testimonials_1left:after {
        width: 0;
        height: 0;
        content: "";
        position: absolute;
        border-style: solid;
        border-color: transparent transparent transparent #f0f0f0;
        border-width: 16px 0 16px 16px;
        right: 0;
        margin: -8px -15px 0 0;
        top: 50%;
    }

.Testimonials_1 blockquote {
    border-left: none;
    font-style: normal;
}

    .Testimonials_1 blockquote h3 {
        font-size: 18px;
        color: #22BB75;
        font-weight: normal;
        line-height: normal;
    }

    .Testimonials_1 blockquote p {
        font-size: 12px;
        color: #666666;
        font-weight: normal;
        font-style: normal;
        line-height: 20px;
    }

.Testimonials_1 small img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    margin-top: 15px;
    float: left;
    vertical-align: middle;
}

.Testimonials_1 small span {
    display: inline-block;
    font-size: 13px;
    font-weight: normal;
    margin-top: 28px;
    color: #22BB75;
    font-style: normal;
}

.Testimonials_1 small:before {
    color: #22BB75;
}

.Testimonials_1 .dot {
    right: 15px;
    bottom: 15px;
}

    .Testimonials_1 .dot a {
        width: 15px;
        height: 15px;
        background-color: #D8D8D8;
        border: none;
    }

        .Testimonials_1 .dot a.actived {
            width: 15px;
            height: 15px;
            background-color: #22bb75;
        }
/*Testimonials_2*/
.Testimonials_2main > h3 {
    font-size: 18px;
    color: #22BB75;
    font-weight: normal;
    line-height: normal;
    text-align: center;
    margin: 0 0 30px 0;
}

.Testimonials_2top .col-sm-6:nth-child(2),
.Testimonials_2topbottom .col-sm-6:nth-child(2) {
    border-left: 1px solid #E3E3E3;
}

.Testimonials_2center {
    margin: 20px -15px 30px;
}

    .Testimonials_2center .line {
        width: 90%;
        height: 1px;
        background-color: #e3e3e3;
        float: left;
    }

    .Testimonials_2center .line2 {
        width: 90%;
        height: 1px;
        background-color: #e3e3e3;
        float: right;
    }

.Testimonials_2 {
    position: relative;
}

    .Testimonials_2 li {
        padding-left: 100px;
        width: auto;
    }

    .Testimonials_2 .Pic {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        overflow: hidden;
        position: absolute;
        top: 0px;
        left: 0px;
    }

        .Testimonials_2 .Pic img {
            max-width: 100%;
        }

    .Testimonials_2 blockquote {
        padding: 0px;
        background: none;
        padding-bottom: 0px;
        position: relative;
        border-left: none;
        font-style: normal;
    }

        .Testimonials_2 blockquote p {
            font-size: 12px;
            color: #666;
            font-style: normal;
            line-height: 20px;
            font-weight: normal;
        }

        .Testimonials_2 blockquote small:before,
        .Testimonials_2 blockquote .small:before {
            content: "";
        }

    .Testimonials_2 small span {
        font-size: 13px;
        font-weight: normal;
        margin-top: 13px;
        display: block;
        color: #22BB75;
    }
/*Testimonials_3*/
.Testimonials_3 {
    overflow: visible;
}

    .Testimonials_3 .dot {
        right: 50%;
        bottom: 0;
    }

        .Testimonials_3 .dot a {
            width: 15px;
            height: 15px;
            background-color: #D8D8D8;
            border: none;
        }

            .Testimonials_3 .dot a.actived {
                width: 15px;
                height: 15px;
                background-color: #22BB75;
            }

    .Testimonials_3 blockquote {
        background: none;
        padding: 40px 50px;
        margin: 0 0 0 0;
        text-indent: 0;
        border-left: none;
        border: 1px solid #ddd;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
    }

        .Testimonials_3 blockquote:before {
            content: '“';
            line-height: 76px;
            position: absolute;
            left: 20px;
            top: 50%;
            font-size: 158px;
            color: #B3B3B3;
            font-family: Georgia, "Times New Roman", Times, serif;
            margin-top: -20px;
        }

        .Testimonials_3 blockquote:after {
            content: '”';
            line-height: 76px;
            position: absolute;
            right: 40px;
            top: 50%;
            font-size: 158px;
            color: #B3B3B3;
            font-family: Georgia, "Times New Roman", Times, serif;
            margin-top: -20px;
        }

        .Testimonials_3 blockquote p {
            text-align: center;
            padding: 0 50px;
            color: #666;
            font-size: 12px;
            font-style: normal;
            text-indent: 0;
            line-height: 20px;
            margin-bottom: 0px;
            font-weight: normal;
        }

    .Testimonials_3 small {
        position: relative;
        top: 0;
        left: 0;
        font-size: 13px;
        font-style: normal;
        padding: 24px 0 0 0px;
        text-align: center;
    }

        .Testimonials_3 small:before {
            content: "";
        }

        .Testimonials_3 small:after {
            content: "";
        }

        .Testimonials_3 small img {
            display: none;
        }

        .Testimonials_3 small span {
            display: inline-block;
            font-size: 13px;
            font-weight: normal;
            color: #22BB75;
        }
/*Testimonials_team02*/
.Testimonials_team02 {
    overflow: visible;
}

    .Testimonials_team02 .dot {
        left: 50%;
        bottom: 70px;
        margin: 0 0 0 -30px;
    }

        .Testimonials_team02 .dot a {
            width: 15px;
            height: 15px;
            background-color: #D8D8D8;
            border: none;
        }

            .Testimonials_team02 .dot a.actived {
                width: 15px;
                height: 15px;
                background-color: #22BB75;
            }

    .Testimonials_team02 blockquote {
        background: none;
        padding: 70px 50px 120px 50px;
        margin: 0 0 0 0;
        text-indent: 0;
        border-left: none;
        border: none;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        text-align: center;
    }

        .Testimonials_team02 blockquote:before {
        }

        .Testimonials_team02 blockquote:after {
        }

        .Testimonials_team02 blockquote p {
            text-align: center;
            padding: 40px 0;
            color: #fff;
            font-size: 14px;
            font-style: normal;
            text-indent: 0;
            line-height: 20px;
            margin-bottom: 0px;
            font-weight: normal;
        }

    .Testimonials_team02 small {
        position: relative;
        top: 0;
        left: 0;
        font-size: 16px;
        font-style: normal;
        padding: 20px 0 0 0px;
        text-align: center;
        color: #fff;
    }

        .Testimonials_team02 small:before {
            content: "";
        }

        .Testimonials_team02 small:after {
            content: "";
        }

        .Testimonials_team02 small img {
            display: none;
        }

        .Testimonials_team02 small span {
            display: block;
            font-size: 13px;
            font-weight: normal;
            color: #22BB75;
            font-style: italic;
        }
/*Testimonials_4*/
.Testimonials_4 {
}

    .Testimonials_4 .dot {
        left: 0px;
        bottom: 9px;
    }

        .Testimonials_4 .dot a {
            width: 15px;
            height: 15px;
            background-color: #D8D8D8;
            border: none;
        }

            .Testimonials_4 .dot a.actived {
                width: 15px;
                height: 15px;
                background-color: #22BB75;
            }

    .Testimonials_4 blockquote {
        background: none;
        padding: 1px 0px 0px;
        margin: 0px;
        text-indent: 0;
        border-left: none;
    }

        .Testimonials_4 blockquote:before {
            content: '“';
            width: 0px;
            height: 0px;
            position: absolute;
            left: 20px;
            top: 34px;
            font-size: 60px;
            color: #CACACA;
            font-family: Georgia, "Times New Roman", Times, serif;
        }

        .Testimonials_4 blockquote:after {
            content: '”';
            width: 0px;
            height: 0px;
            position: absolute;
            right: 50px;
            bottom: 65px;
            font-size: 60px;
            color: #CACACA;
            font-family: Georgia, "Times New Roman", Times, serif;
        }

        .Testimonials_4 blockquote p {
            background-color: #EEEEEE;
            border: none;
            padding: 20px;
            font-size: 12px;
            color: #666;
            font-style: normal;
            text-indent: 3em;
            line-height: 20px;
            margin-bottom: 0px;
            font-weight: normal;
        }

    .Testimonials_4 small {
        position: relative;
        top: 0;
        left: 0;
        font-size: 13px;
        color: #22BB75;
        font-style: normal;
        padding: 15px 0 0 0;
        text-align: right;
    }

        .Testimonials_4 small:before {
        }

        .Testimonials_4 small:after {
            content: " ";
            position: absolute;
            top: 0px;
            right: 55px;
            width: 0px;
            height: 0px;
            border-left: 11px solid #fff;
            border-bottom: 11px solid #fff;
            border-top: 11px solid #EEEEEE;
            border-right: 0 solid #fff;
        }

        .Testimonials_4 small img {
        }

        .Testimonials_4 small span {
            display: inline-block;
            font-size: 13px;
            font-weight: normal;
            margin-top: 13px;
        }

/*Testimonials_5*/
.Testimonials_5 {
}

    .Testimonials_5 .dot {
        left: 0px;
        bottom: 9px;
    }

        .Testimonials_5 .dot a {
            width: 15px;
            height: 15px;
            background-color: #D8D8D8;
            border: none;
        }

            .Testimonials_5 .dot a.actived {
                width: 15px;
                height: 15px;
                background-color: #22BB75;
            }

    .Testimonials_5 blockquote {
        background: none;
        padding: 1px 0px 0px;
        margin: 0px;
        text-indent: 0;
        border-left: none;
    }

        .Testimonials_5 blockquote:before {
            content: '“';
            width: 0px;
            height: 0px;
            position: absolute;
            left: 20px;
            top: 34px;
            font-size: 60px;
            color: rgba(255,255,255,0.7);
            font-family: Georgia, "Times New Roman", Times, serif;
        }

        .Testimonials_5 blockquote:after {
            content: '”';
            width: 0px;
            height: 0px;
            position: absolute;
            right: 50px;
            bottom: 65px;
            font-size: 60px;
            color: rgba(255,255,255,0.7);
            font-family: Georgia, "Times New Roman", Times, serif;
        }

        .Testimonials_5 blockquote p {
            background-color: #22BB75;
            border: none;
            padding: 20px;
            font-size: 12px;
            color: #fff;
            font-style: normal;
            text-indent: 3em;
            line-height: 20px;
            margin-bottom: 0px;
            font-weight: normal;
        }

    .Testimonials_5 small {
        position: relative;
        top: 0;
        left: 0;
        font-size: 13px;
        color: #22BB75;
        font-style: normal;
        padding: 15px 0 0 0;
        text-align: right;
    }

        .Testimonials_5 small:before {
        }

        .Testimonials_5 small:after {
            content: " ";
            position: absolute;
            top: 0px;
            right: 55px;
            width: 0px;
            height: 0px;
            border-left: 11px solid #fff;
            border-bottom: 11px solid #fff;
            border-top: 11px solid #22BB75;
            border-right: 0 solid #fff;
        }

        .Testimonials_5 small img {
        }

        .Testimonials_5 small span {
            display: inline-block;
            font-size: 13px;
            font-weight: normal;
            margin-top: 13px;
        }

/*Testimonials_6*/
.Testimonials_6 .dot {
    right: 0px;
    bottom: 15px;
}

    .Testimonials_6 .dot a {
        width: 15px;
        height: 15px;
        background-color: #DBDBDB;
        border: none;
    }

        .Testimonials_6 .dot a.actived {
            width: 15px;
            height: 15px;
            background-color: #22BB75;
        }

.Testimonials_6 blockquote {
    background: none;
    padding: 1px 0px 0px;
    margin: 0px;
    text-indent: 0;
    border-left: none;
}
    /*.Testimonials_6 blockquote:before{
	content:'"';
	width:0px;
	height:0px;
	position:absolute;
	left:20px;
	top:34px;
	font-size:60px;
	color:#9c9c9c;
	font-family:Georgia;
	}
.Testimonials_6 blockquote:after{
	content:'"';
	width:0px;
	height:0px;
	position:absolute;
	right:50px;
	bottom:90px;
	font-size:60px;
	color:#9c9c9c;
	font-family:Georgia;
	}*/
    .Testimonials_6 blockquote p {
        background-color: #F0F0F0;
        padding: 20px;
        font-size: 12px;
        color: #555;
        font-style: normal;
        line-height: 20px;
        margin-bottom: 0px;
        font-weight: normal;
        border-top: 3px solid #22BB75;
    }

.Testimonials_6 small {
    position: relative;
    top: 0;
    left: 0;
    font-size: 12px;
    color: #555;
    font-style: normal;
    padding: 24px 0 0 35px;
}

    .Testimonials_6 small:before {
        content: "";
    }

    .Testimonials_6 small:after {
        content: " ";
        position: absolute;
        top: -5px;
        left: 55px;
        width: 10px;
        height: 10px;
        background-color: #F3F3F3;
        border-left: 1px solid #ececec;
        border-bottom: 1px solid #ececec;
        transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
    }

    .Testimonials_6 small img {
        width: 70px;
        height: 70px;
        margin-right: 15px;
        float: left;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        vertical-align: middle;
    }

    .Testimonials_6 small span {
        display: inline-block;
        font-size: 14px;
        font-weight: normal;
        margin-top: 13px;
        display: block;
        color: #22BB75;
    }
/*Testimonials_7*/
.Testimonials_7 blockquote {
    background: none;
    padding: 40px 50px;
    text-indent: 0;
    border-left: none;
    margin: 0;
}

    .Testimonials_7 blockquote:before {
        content: '“';
        line-height: 76px;
        position: absolute;
        left: 20px;
        top: 50%;
        font-size: 158px;
        color: #B3B3B3;
        font-family: Georgia, "Times New Roman", Times, serif;
    }

    .Testimonials_7 blockquote:after {
        content: '”';
        line-height: 76px;
        position: absolute;
        right: 40px;
        top: 50%;
        font-size: 158px;
        color: #B3B3B3;
        font-family: Georgia, "Times New Roman", Times, serif;
    }

    .Testimonials_7 blockquote p {
        text-align: center;
        padding: 0 50px;
        color: #666;
        font-size: 12px;
        font-style: normal;
        text-indent: 0;
        line-height: 20px;
        margin-bottom: 0px;
        font-weight: normal;
    }

.Testimonials_7 small {
    position: relative;
    top: 0;
    left: 0;
    font-size: 13px;
    font-style: normal;
    padding: 24px 0 0 0px;
    text-align: center;
}

    .Testimonials_7 small:before {
        display: none;
    }

    .Testimonials_7 small span {
        display: inline-block;
        font-size: 14px;
        font-weight: normal;
        color: #22BB75;
    }
/*Testimonials_8*/
.Testimonials_8 .dot a {
    border: 1px solid #f2f2f2;
    width: 20px;
    height: 20px;
}

    .Testimonials_8 .dot a.actived {
        width: 20px;
        height: 20px;
        border: 1px solid #f2f2f2;
        background: #f2f2f2;
    }

.Testimonials_8 blockquote {
    background: none;
    padding: 1px 0px 0px 1px;
    margin: 0px;
    text-indent: 0;
    border: none;
    text-align: left;
}

    .Testimonials_8 blockquote p {
        background-color: #ffffff;
        background-color: rgba(255,255,255,0.25);
        padding: 30px;
        font-size: 13px;
        color: #ffffff;
        font-style: normal;
        text-indent: 0;
        margin-bottom: 0;
    }

    .Testimonials_8 blockquote small:before,
    .Testimonials_8 blockquote .small:before {
        content: "";
    }

.Testimonials_8 small {
    position: relative;
    top: 0;
    left: 0;
    font-size: 14px;
    color: #ffffff;
    font-style: normal;
    padding: 28px 0 0 15px;
}

    .Testimonials_8 small:after {
        content: " ";
        position: absolute;
        top: 0px;
        left: 43px;
        width: 0px;
        height: 0px;
        border-right: 13px solid transparent;
        border-bottom: 16px solid transparent;
        border-top: 13px solid #ffffff;
        border-top: 13px solid rgba(255,255,255,0.25);
        border-left: 0 solid transparent;
    }

    .Testimonials_8 small img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        margin-right: 15px;
        float: left;
        vertical-align: middle;
    }

    .Testimonials_8 small span {
        display: block;
        margin-top: 14px;
    }



/* verticalTab_Left_1*/
.verticalTab_Left_1 {
    padding-bottom: 15px;
}

    .verticalTab_Left_1 .resp-tab-content {
        border: none;
    }

    .verticalTab_Left_1 .resp_container .resp_margin {
        border-left: 1px solid #ebebeb;
        padding: 10px 20px;
        margin: 0;
    }

    .verticalTab_Left_1 ul.resp-tabs-list li span {
        padding-top: 12px;
        padding-right: 47px;
        padding-bottom: 12px;
        padding-left: 47px;
        margin: 0px;
        border: none;
        background: none;
    }

    .verticalTab_Left_1 ul.resp-tabs-list li.resp-tab-active span {
        margin: 0px;
        border: none;
        padding-right: 47px;
        background: none;
        color: #22BB75;
    }

    .verticalTab_Left_1 ul.resp-tabs-list li {
        border-top: 1px solid transparent;
        border-right: none;
        background: #FFF !important;
        padding-left: 0;
        border-left: 1px solid transparent;
        border-bottom: 1px solid transparent;
    }

    .verticalTab_Left_1 ul.resp-tabs-list {
        padding: 0px;
    }

        .verticalTab_Left_1 ul.resp-tabs-list li.resp-tab-active {
            margin-right: -1px;
            padding-left: 0px;
            border-left: 1px solid #ebebeb;
            border-bottom: 1px solid #ebebeb;
            border-top: 1px solid #ebebeb;
            border-radius: 4px 0 0 4px;
            -moz-border-radius: 4px 0 0 4px;
            -webkit-border-radius: 4px 0 0 4px;
        }

        .verticalTab_Left_1 ul.resp-tabs-list li span em.glyphicons {
            font-size: 15px;
            top: 3px;
            right: 15px;
        }

        .verticalTab_Left_1 ul.resp-tabs-list li:first-child {
            margin-top: 15px;
            border-top: 1px solid transparent;
        }

        .verticalTab_Left_1 ul.resp-tabs-list li.resp-tab-active:first-child {
            border-top: 1px solid #ebebeb;
        }

        .verticalTab_Left_1 ul.resp-tabs-list li.resp-tab-active:last-child {
        }
/*verticalTab_Left_2*/
.verticalTab_Left_2 ul.resp-tabs-list {
    padding: 0px;
}

    .verticalTab_Left_2 ul.resp-tabs-list li {
        text-align: center;
        background-color: #ebebeb;
        border-top: none;
        border-right: none;
        padding: 21px 0;
        margin-bottom: 2px;
        width: 240px;
        height: 120px;
        font-size: 15px;
        position: relative;
    }

        .verticalTab_Left_2 ul.resp-tabs-list li span {
            padding: 6px 0;
        }

        .verticalTab_Left_2 ul.resp-tabs-list li .glyphicons {
            display: inline-block;
            font-size: 30px;
        }

        .verticalTab_Left_2 ul.resp-tabs-list li.resp-tab-active {
            background-color: #22bb75;
        }

            .verticalTab_Left_2 ul.resp-tabs-list li.resp-tab-active span {
                background: transparent;
                color: #fff;
                margin: 0;
                padding: 6px 0;
            }

        .verticalTab_Left_2 ul.resp-tabs-list li:before {
            content: "";
            position: absolute;
            top: 50%;
            left: 100%;
            border-width: 8px 9px;
            border-style: solid;
            border-color: transparent transparent transparent transparent;
            margin: -8px 0 0 0;
            transition: border-color ease-in 200ms;
            -moz-transition: border-color ease-in 200ms;
            -webkit-transition: border-color ease-in 200ms;
            -o-transition: border-color ease-in 200ms;
            -ms-transition: border-color ease-in 200ms;
        }

        .verticalTab_Left_2 ul.resp-tabs-list li.resp-tab-active:before {
            border-color: transparent transparent transparent #22bb75;
        }

.verticalTab_Left_2 .resp-tabs-container {
    overflow: hidden;
}

.verticalTab_Left_2 .resp-tab-content .resp_margin {
    margin: 15px 0 0 60px;
}

.verticalTab_Left_2 .home4Tab_first_p {
    padding-bottom: 20px;
}

.verticalTab_Left_2 .resp-tabs-container ul {
    margin: 0;
    list-style: none;
}

    .verticalTab_Left_2 .resp-tabs-container ul li {
        margin-bottom: 12px;
    }

        .verticalTab_Left_2 .resp-tabs-container ul li span {
            margin-right: 10px;
            color: #22bb75;
        }

.verticalTab_Left_2 .resp-tabs-container .home4Tab_title1 {
    font-weight: normal;
}

    .verticalTab_Left_2 .resp-tabs-container .home4Tab_title1 span {
        display: inline-block;
        width: 36px;
        height: 36px;
        line-height: 36px;
        margin-right: 15px;
        font-size: 18px;
        color: #ffffff;
        background-color: #22bb75;
        text-align: center;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
    }

.verticalTab_Left_2 .resp-tabs-container .home4Tab_web {
    float: left;
    margin-right: 60px;
    text-align: center;
}

    .verticalTab_Left_2 .resp-tabs-container .home4Tab_web img {
        padding: 20px 0 16px;
    }

    .verticalTab_Left_2 .resp-tabs-container .home4Tab_web h6 {
        font-weight: normal;
    }

@media only screen and (max-width: 767px) {
    .verticalTab_Left_2 .resp-tab-active,
    .verticalTab_Left_2 .resp-tab-active:hover {
        background-color: #22bb75;
    }

    .verticalTab_Left_2 .resp-tabs-container .resp-accordion .glyphicons {
        margin-right: 5px;
    }

    .verticalTab_Left_2 .resp-tab-content .resp_margin {
        margin: 15px;
    }
}

/* verticalTab_Right_1*/
.verticalTab_Right_1 {
    padding-bottom: 15px;
}

    .verticalTab_Right_1 .resp-tab-content {
        border: none;
    }

    .verticalTab_Right_1 .resp_container .resp_margin {
        border-right: 1px solid #ebebeb;
        padding: 10px 20px;
        margin: 0;
    }

.verticalTab_Right.verticalTab_Right_1.resp-vtabs > ul.resp-tabs-list > li.resp-tab-item.resp-tab-active > span {
    padding-left: 47px !important;
}

.verticalTab_Right_1 ul.resp-tabs-list li span {
    padding: 12px 47px;
    margin: 0px;
    border: none;
    background: none;
}

.verticalTab_Right_1 ul.resp-tabs-list li.resp-tab-active span {
    margin: 0px;
    border: none;
    background: none !important;
    color: #22BB75;
}

.verticalTab_Right_1 ul.resp-tabs-list li {
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    background: #FFF !important;
}

.verticalTab_Right_1 ul.resp-tabs-list {
    padding: 0px;
}

    .verticalTab_Right_1 ul.resp-tabs-list li.resp-tab-active {
        margin-left: -1px;
        padding-left: 1px;
        border-right: 1px solid #ebebeb;
        border-bottom: 1px solid #ebebeb;
        border-top: 1px solid #ebebeb;
        border-radius: 0 4px 4px 0;
        -moz-border-radius: 0 4px 4px 0;
        -webkit-border-radius: 0 4px 4px 0;
    }

    .verticalTab_Right_1 ul.resp-tabs-list li span em.glyphicons {
        font-size: 15px;
        top: 3px;
        right: 15px;
    }

    .verticalTab_Right_1 ul.resp-tabs-list li:first-child {
        margin-top: 15px;
        border-top: 1px solid transparent;
    }

    .verticalTab_Right_1 ul.resp-tabs-list li.resp-tab-active:first-child {
        border-top: 1px solid #ebebeb;
    }

    .verticalTab_Right_1 ul.resp-tabs-list li.resp-tab-active:last-child {
    }
/* horizontalTab_Top_1*/
.horizontalTab_Top_1 {
    padding-bottom: 15px;
}

    .horizontalTab_Top_1 ul.resp-tabs-list li {
        border: 1px solid transparent;
        border-bottom: none;
        margin: 0 0 -2px 0;
    }

        .horizontalTab_Top_1 ul.resp-tabs-list li:first-child {
            border: 1px solid transparent;
            border-bottom: none;
        }

        .horizontalTab_Top_1 ul.resp-tabs-list li:hover {
            background: none;
        }

        .horizontalTab_Top_1 ul.resp-tabs-list li span {
            padding: 10px 30px;
            font-size: 13px;
        }

            .horizontalTab_Top_1 ul.resp-tabs-list li span em.glyphicons {
                font-size: 15px;
                top: 3px;
                right: 15px;
            }

        .horizontalTab_Top_1 ul.resp-tabs-list li.resp-tab-active {
            border: 1px solid #ebebeb;
            border-bottom: none;
            border-radius: 4px 4px 0 0;
            -moz-border-radius: 4px 4px 0 0;
            -webkit-border-radius: 4px 4px 0 0;
            background-color: #fff;
        }

            .horizontalTab_Top_1 ul.resp-tabs-list li.resp-tab-active span {
                background-color: transparent;
                color: #22BB75;
            }

    .horizontalTab_Top_1 .resp-tabs-container {
        border: 1px solid transparent;
        border-top: 1px solid #ebebeb;
    }

/* horizontalTab_Top_2*/
.horizontalTab_Top_2 {
    padding-bottom: 15px;
}

    .horizontalTab_Top_2 .resp-tabs-list {
        width: 100%;
        display: table;
    }

    .horizontalTab_Top_2 ul.resp-tabs-list li {
        display: table-cell;
        float: none;
        text-align: center;
        background-color: #f3f3f3;
        border-top: 1px solid #d9d9d9;
        border-right: 1px solid #d9d9d9;
        border-bottom: 1px solid #d9d9d9;
    }

        .horizontalTab_Top_2 ul.resp-tabs-list li.resp-tab-active {
            border-bottom: 1px solid transparent;
            border-top: 1px solid #22BB75;
            background-color: #fff;
        }

        .horizontalTab_Top_2 ul.resp-tabs-list li span {
            color: #333;
        }

        .horizontalTab_Top_2 ul.resp-tabs-list li.resp-tab-active span {
            color: #22BB75;
        }

    .horizontalTab_Top_2 .resp-tabs-container {
        border: 1px solid #d9d9d9;
        margin: -2px 0 0 0;
    }

    .horizontalTab_Top_2 ul.resp-tabs-list li:first-child {
        border-left: 1px solid #d9d9d9;
    }
/* horizontalTab_Top_3*/
.horizontalTab_Top_3 {
    padding-bottom: 15px;
}

    .horizontalTab_Top_3 ul.resp-tabs-list li,
    .horizontalTab_Top_3 ul.resp-tabs-list li:hover {
        margin: 0 5px 3px 0;
        border: 1px solid #d9d9d9;
    }

        .horizontalTab_Top_3 ul.resp-tabs-list li span,
        .horizontalTab_Top_3 ul.resp-tabs-list li:hover span {
            padding: 9px 26px;
            font-size: 14px;
            color: #333;
            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? */
        }

        .horizontalTab_Top_3 ul.resp-tabs-list li.resp-tab-active span {
            background-color: #22BB75;
            color: #fff;
        }

    .horizontalTab_Top_3 .resp-tabs-container {
        border: 1px solid #d9d9d9;
    }
/* horizontalTab_Top_faq*/
.horizontalTab_Top_faq.horizontalTab_Top {
    text-align: center;
}

    .horizontalTab_Top_faq.horizontalTab_Top ul.resp-tabs-list {
        display: inline-block;
    }

.horizontalTab_Top_faq .resp-tabs-container {
    text-align: left;
}

.horizontalTab_Top_faq .resp-tabs-container {
    border: none;
}

.horizontalTab_Top_faq.horizontalTab_Top ul.resp-tabs-list li.resp-tab-active span {
    background-color: #FFF;
    color: #22bb75;
}

.horizontalTab_Top_faq.horizontalTab_Top ul.resp-tabs-list li.resp-tab-active span {
    border: 1px solid #22bb75;
    margin: -1px;
}

.horizontalTab_Top_faq.horizontalTab_Top ul.resp-tabs-list li span {
    padding: 8px 40px;
    font-size: 14px;
}

.horizontalTab_Top_faq.horizontalTab_Top .resp-tab-content .resp_margin {
    margin: 25px 0 0 0;
}

.horizontalTab_Top_faq.horizontalTab_Top ul.resp-tabs-list li.resp-tab-active {
    z-index: 1000;
}

.horizontalTab_Top_faq.horizontalTab_Top ul.resp-tabs-list li {
    border: 1px solid #bdbdbd;
    border-right: 0;
}

    .horizontalTab_Top_faq.horizontalTab_Top ul.resp-tabs-list li:last-child {
        border-right: 1px solid #bdbdbd;
    }


/* horizontalTab_Top_4*/
.horizontalTab_Top_4 {
    padding-bottom: 15px;
}

    .horizontalTab_Top_4 .resp-tabs-list {
        width: 100%;
        display: table;
    }

    .horizontalTab_Top_4 ul.resp-tabs-list li {
        display: table-cell;
        float: none;
        text-align: center;
        background-color: #ebebeb;
        border-top: none;
        border-right: none;
    }

        .horizontalTab_Top_4 ul.resp-tabs-list li:hover {
            background: #ebebeb;
        }

        .horizontalTab_Top_4 ul.resp-tabs-list li.resp-tab-active {
            background-color: #22bb75;
        }

        .horizontalTab_Top_4 ul.resp-tabs-list li span {
            padding: 13px 34px;
            color: #333;
            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;
        }

        .horizontalTab_Top_4 ul.resp-tabs-list li:hover span {
            color: #333;
        }

        .horizontalTab_Top_4 ul.resp-tabs-list li span:before {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            border-width: 6px 7px;
            border-style: solid;
            border-color: transparent transparent transparent transparent;
            margin: 0 0 0 -7px;
            transition: border-color ease-in 200ms;
            -moz-transition: border-color ease-in 200ms;
            -webkit-transition: border-color ease-in 200ms;
            -o-transition: border-color ease-in 200ms;
            -ms-transition: border-color ease-in 200ms;
        }

        .horizontalTab_Top_4 ul.resp-tabs-list li.resp-tab-active span {
            background-color: transparent;
            color: #fff;
            position: relative;
        }

        .horizontalTab_Top_4 ul.resp-tabs-list li.resp-tab-active:hover span {
            color: #fff;
        }

        .horizontalTab_Top_4 ul.resp-tabs-list li.resp-tab-active span:before {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            border-width: 6px 7px;
            border-style: solid;
            border-color: #22bb75 transparent transparent transparent;
            margin: 0 0 0 -7px;
        }

        .horizontalTab_Top_4 ul.resp-tabs-list li:first-child {
            border-left: none;
        }

    .horizontalTab_Top_4 .resp-tabs-container {
        border: none;
    }

    .horizontalTab_Top_4 .resp-tab-content .resp_margin {
        margin: 0;
    }
/* horizontalTab_Top_5*/
.horizontalTab_Top_5 {
}

    .horizontalTab_Top_5 ul.resp-tabs-list {
        padding: 0;
    }

        .horizontalTab_Top_5 ul.resp-tabs-list li {
            float: left;
            width: 25%;
            text-align: center;
            background-color: #eeeeee;
            border-top: none;
            border-right: none;
            border-left: 1px solid #fff;
            margin-bottom: 0;
        }

            .horizontalTab_Top_5 ul.resp-tabs-list li:hover {
                background: #ebebeb;
            }

            .horizontalTab_Top_5 ul.resp-tabs-list li.resp-tab-active {
                background-color: #22bb75;
            }

            .horizontalTab_Top_5 ul.resp-tabs-list li span {
                font-size: 17px;
                padding: 13px 0;
                color: #333;
                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;
            }

            .horizontalTab_Top_5 ul.resp-tabs-list li:hover span {
                color: #333;
            }

            .horizontalTab_Top_5 ul.resp-tabs-list li.resp-tab-active span {
                background-color: transparent;
                color: #fff;
                position: relative;
            }

            .horizontalTab_Top_5 ul.resp-tabs-list li.resp-tab-active:hover span {
                color: #fff;
            }

            .horizontalTab_Top_5 ul.resp-tabs-list li:first-child {
                border-left: none;
            }

    .horizontalTab_Top_5 .resp-tabs-container {
        border: none;
        margin: 3px 0 0 0;
    }

    .horizontalTab_Top_5 .resp-tab-content .resp_margin {
        margin: 0;
    }
/* horizontalTab_Top_6*/
.home5Tab_color1 {
    background-color: #22bb75 !important;
}

.home5Tab_color2 {
    background-color: #cfcb1f !important;
}

.home5Tab_color3 {
    background-color: #8bc81e !important;
}

.home5Tab_color4 {
    background-color: #3cc2ae !important;
}

.horizontalTab_Top_6 ul.resp-tabs-list li {
    font-size: 20px;
    border: none;
    margin-bottom: 0;
    text-align: center;
    width: 25%;
    color: #ffffff;
    padding: 30px 0;
}

    .horizontalTab_Top_6 ul.resp-tabs-list li:first-child {
        border: none;
    }

    .horizontalTab_Top_6 ul.resp-tabs-list li span {
        padding: 6px 0;
    }

    .horizontalTab_Top_6 ul.resp-tabs-list li .glyphicons {
        display: inline-block;
        font-size: 46px;
    }

    .horizontalTab_Top_6 ul.resp-tabs-list li.resp-tab-active span {
        background: none;
        color: #ffffff;
    }

    .horizontalTab_Top_6 ul.resp-tabs-list li:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        border-width: 15px 19px;
        border-style: solid;
        border-color: transparent transparent transparent transparent;
        margin: 0 0 0 -19px;
    }

    .horizontalTab_Top_6 ul.resp-tabs-list li.home5Tab_color1.resp-tab-active:before {
        border-color: #22bb75 transparent transparent transparent;
    }

    .horizontalTab_Top_6 ul.resp-tabs-list li.home5Tab_color2.resp-tab-active:before {
        border-color: #cfcb1f transparent transparent transparent;
    }

    .horizontalTab_Top_6 ul.resp-tabs-list li.home5Tab_color3.resp-tab-active:before {
        border-color: #8bc81e transparent transparent transparent;
    }

    .horizontalTab_Top_6 ul.resp-tabs-list li.home5Tab_color4.resp-tab-active:before {
        border-color: #3cc2ae transparent transparent transparent;
    }

    .horizontalTab_Top_6 ul.resp-tabs-list li:hover {
        background: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/home5_Tab_hover.png") 0 0 repeat;
    }

    .horizontalTab_Top_6 ul.resp-tabs-list li.resp-tab-active:hover {
        background: none;
    }

    .horizontalTab_Top_6 ul.resp-tabs-list li:hover span {
        color: #ffffff;
    }

.horizontalTab_Top_6 .resp-tabs-container {
    border: none;
}

.horizontalTab_Top_6 .resp-tab-content .resp_margin {
    margin: 0;
    padding: 40px 0 0 0;
}

@media only screen and (max-width: 767px) {
    .horizontalTab_Top_3 .resp-tabs-container {
        border: none;
        border-bottom: 1px solid #d9d9d9;
    }

    .horizontalTab_Top_4 {
        border-bottom: 1px solid #e1e1e1;
        padding-bottom: 0px;
        margin-bottom: 15px;
    }
}



.home5Tab1 > div + div {
    padding-top: 40px;
}

.home5Tab1_left {
    float: left;
    padding-bottom: 30px;
    margin-right: 25px;
    background: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/home5_Tab_shadow.png") center bottom no-repeat;
}

.home5Tab_icon1 {
    border: 1px solid #22bb75;
    padding: 2px;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

    .home5Tab_icon1 span.glyphicons {
        display: block;
        width: 94px;
        height: 94px;
        line-height: 94px;
        background-color: #22bb75;
        color: #ffffff;
        font-size: 30px;
        top: 0;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
    }

.home5Tab1_right {
    overflow: hidden;
}

    .home5Tab1_right p {
        margin-bottom: 15px;
    }

.horizontalTab_Top_6 .resp-tabs-container h5 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 15px;
}

.horizontalTab_Top_6 .resp-tabs-container a {
    text-transform: uppercase;
}

.home5Tab2 {
    padding: 0 100px;
}

.home5Tab_head {
    margin-bottom: 30px;
}

    .home5Tab_head h4 {
        font-size: 20px;
        font-weight: normal;
        margin-bottom: 20px;
    }

.percentage2 {
    margin: auto auto 10px;
    position: relative;
    color: #22BB75;
    height: 94px;
    width: 94px;
}

    .percentage2 .percentage_inner {
        font-size: 18px;
        left: 0;
        top: 38px;
        position: absolute;
        text-align: center;
        width: 100%;
        border-radius: 50%;
        line-height: 1.2;
        color: #22BB75;
    }

.home5Tab2_chart h6 {
    font-weight: normal;
}

.home5Tab2_btn {
    color: #22BB75;
    border: 1px solid #22BB75;
    display: inline-block;
    width: 140px;
    height: 45px;
    line-height: 43px !important;
    margin: 15px 15px 0 15px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms; /* Firefox 4 */
    -webkit-transition: all ease-in 200ms; /* Safari and Chrome */
    -o-transition: all ease-in 200ms; /* Opera */
    -ms-transition: all ease-in 200ms; /* IE9? */
}

    .home5Tab2_btn:hover {
        color: #ffffff;
        background-color: #22BB75;
        text-decoration: none;
    }

.home5Tab_icon2 span.glyphicons {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: #22bb75;
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.home5Tab4_left {
    border-bottom: 1px dashed #aaaaaa;
    margin: 0 30px 20px 0;
    padding-bottom: 20px;
}

    .home5Tab4_left span {
        float: left;
        width: 70px;
        height: 70px;
        line-height: 64px;
        border: 3px solid #22bb75;
        color: #22bb75;
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        margin-right: 30px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
    }

    .home5Tab4_left p {
        overflow: hidden;
        padding-top: 10px;
    }

.home5Tab4_btn {
    display: inline-block;
    width: 150px;
    height: 45px;
    line-height: 45px !important;
    text-align: center;
    margin-top: 10px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

    .home5Tab4_btn:hover {
        text-decoration: none;
    }

/* **********  accordion_1  ************** */
.accordion_1 {
    margin-bottom: 0;
}

    .accordion_1 .panel-default {
        background-color: transparent;
        border: 1px solid #DDDDDD;
        border-radius: 4px;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
    }

    .accordion_1 > .panel-default > .panel-heading {
        background-color: transparent;
        padding: 0px;
        border: none !important;
        border-radius: 0px;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
    }

    .accordion_1 .panel-body {
        border: none !important;
        padding: 15px 30px !important;
    }

    .accordion_1 .panel-title a {
        color: #fff;
        display: block;
        background-color: #22BB75;
        border-bottom: 1px solid #ddd;
        padding: 16px 0px 16px 20px;
        position: relative;
        font-size: 14px;
        font-weight: normal;
        transition: color ease-in 200ms,background-color ease-in 200ms;
        -moz-transition: color ease-in 200ms,background-color ease-in 200ms; /* Firefox 4 */
        -webkit-transition: color ease-in 200ms,background-color ease-in 200ms; /* Safari and Chrome */
        -o-transition: color ease-in 200ms,background-color ease-in 200ms; /* Opera */
        -ms-transition: color ease-in 200ms,background-color ease-in 200ms; /* IE9? */
    }


        .accordion_1 .panel-title a .accordion_icon {
            border-left: 1px solid #ddd;
            background-color: #22BB75;
            width: 38px;
            height: 100%;
            position: absolute;
            right: 0px;
            top: 0px;
            text-align: center;
            color: #fff;
            transition: color ease-in 200ms,background-color ease-in 200ms;
            -moz-transition: color ease-in 200ms,background-color ease-in 200ms; /* Firefox 4 */
            -webkit-transition: color ease-in 200ms,background-color ease-in 200ms; /* Safari and Chrome */
            -o-transition: color ease-in 200ms,background-color ease-in 200ms; /* Opera */
            -ms-transition: color ease-in 200ms,background-color ease-in 200ms; /* IE9? */
        }

        .accordion_1 .panel-title a.collapsed {
            color: #333;
            border: none;
            background-color: transparent;
        }

            .accordion_1 .panel-title a.collapsed .accordion_icon {
                background-color: transparent;
                color: #777777;
            }

            .accordion_1 .panel-title a:hover,
            .accordion_1 .panel-title a.collapsed:hover {
                text-decoration: none;
                background-color: #22BB75;
                color: #fff;
            }

                .accordion_1 .panel-title a:hover .accordion_icon {
                    background-color: #22BB75;
                    color: #fff;
                }

    .accordion_1 .accordion_icon:before {
        content: "\002B";
        top: 50%;
        left: 50%;
        margin: -10px 0 0 -8px;
        position: absolute;
    }

    .accordion_1 .panel-title a .accordion_icon:before {
        content: "\2212";
        font-size: 21px;
    }

    .accordion_1 .panel-title a.collapsed .accordion_icon:before {
        content: "\002B";
        font-size: 26px;
    }

/* **********  accordion_2  ************** */
.accordion_2 {
    margin-bottom: 0;
}

    .accordion_2 .panel-default {
        background-color: transparent;
        border: 1px solid #DDDDDD;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
    }

    .accordion_2 > .panel-default > .panel-heading {
        background-color: transparent;
        padding: 0px;
        border: none !important;
        border-radius: 0px;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
    }

    .accordion_2 .panel-body {
        border: none !important;
        padding: 15px 30px !important;
    }

    .accordion_2 .panel-title a {
        color: #fff;
        display: block;
        background-color: #22BB75;
        border-bottom: 1px solid #ddd;
        border-left: 2px solid #22BB75;
        padding: 16px 0px 16px 20px;
        position: relative;
        font-size: 14px;
        font-weight: normal;
        transition: color ease-in 200ms,background-color ease-in 200ms;
        -moz-transition: color ease-in 200ms,background-color ease-in 200ms; /* Firefox 4 */
        -webkit-transition: color ease-in 200ms,background-color ease-in 200ms; /* Safari and Chrome */
        -o-transition: color ease-in 200ms,background-color ease-in 200ms; /* Opera */
        -ms-transition: color ease-in 200ms,background-color ease-in 200ms; /* IE9? */
    }


        .accordion_2 .panel-title a .accordion_icon {
            border-left: 1px solid #ddd;
            background-color: #22BB75;
            width: 38px;
            height: 100%;
            position: absolute;
            right: 0px;
            top: 0px;
            text-align: center;
            color: #fff;
            transition: color ease-in 200ms,background-color ease-in 200ms;
            -moz-transition: color ease-in 200ms,background-color ease-in 200ms; /* Firefox 4 */
            -webkit-transition: color ease-in 200ms,background-color ease-in 200ms; /* Safari and Chrome */
            -o-transition: color ease-in 200ms,background-color ease-in 200ms; /* Opera */
            -ms-transition: color ease-in 200ms,background-color ease-in 200ms; /* IE9? */
        }

        .accordion_2 .panel-title a.collapsed {
            color: #333;
            border: none;
            border-left: 2px solid #22BB75;
            background-color: transparent;
        }

            .accordion_2 .panel-title a.collapsed:hover {
                color: #fff;
            }

            .accordion_2 .panel-title a.collapsed .accordion_icon {
                background-color: transparent;
                color: #777777;
            }

        .accordion_2 .panel-title a:hover {
            text-decoration: none;
            background-color: #22BB75;
            color: #fff;
        }

            .accordion_2 .panel-title a:hover .accordion_icon {
                background-color: #22BB75;
                color: #fff;
            }

    .accordion_2 .accordion_icon:before {
        top: 50%;
        left: 50%;
        position: absolute;
        content: "";
        border-width: 5px;
        border-style: solid;
        transition: border ease-in 200ms;
        -moz-transition: border ease-in 200ms; /* Firefox 4 */
        -webkit-transition: border ease-in 200ms; /* Safari and Chrome */
        -o-transition: border ease-in 200ms; /* Opera */
        -ms-transition: border ease-in 200ms; /* IE9? */
    }

    .accordion_2 .panel-title a .accordion_icon:before,
    .accordion_2 .panel-title a:hover .accordion_icon:before {
        border-color: #fff transparent transparent transparent;
        margin: -2px 0 0 -5px;
    }

    .accordion_2 .panel-title a.collapsed .accordion_icon:before {
        border-color: transparent transparent transparent #777;
        margin: -5px 0 0 -2px;
    }

    .accordion_2 .panel-title a.collapsed:hover .accordion_icon:before {
        border-color: transparent transparent transparent #fff;
    }

/* **********  accordion_3  ************** */
.accordion_3 {
    margin-bottom: 0;
}

    .accordion_3 .panel-default {
        background-color: transparent;
        margin: 0px !important;
        border: none;
        border-bottom: 1px solid #DADADA;
        border-radius: 0px;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
    }

    .accordion_3 > .panel-default > .panel-heading {
        background-color: transparent;
        padding: 0px;
        border: none !important;
        margin: 0px 0 5px 0;
        border-radius: 0px;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
    }

    .accordion_3 .panel-body {
        border: none !important;
        padding: 15px 30px !important;
    }

    .accordion_3 .panel-title a {
        display: block;
        padding: 16px 0px 16px 35px;
        color: #333;
        position: relative;
        font-size: 14px;
        font-weight: normal;
    }


        .accordion_3 .panel-title a .accordion_icon {
            width: 27px;
            height: 27px;
            position: absolute;
            left: 0px;
            top: 50%;
            margin: -14px 0 0 0;
            line-height: 25px;
            border-radius: 50%;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
            text-align: center;
            border: 1px solid #22BB75;
            background-color: #22BB75;
            transition: border ease-in 200ms,background-color ease-in 200ms;
            -moz-transition: border ease-in 200ms,background-color ease-in 200ms; /* Firefox 4 */
            -webkit-transition: border ease-in 200ms,background-color ease-in 200ms; /* Safari and Chrome */
            -o-transition: border ease-in 200ms,background-color ease-in 200ms; /* Opera */
            -ms-transition: border ease-in 200ms,background-color ease-in 200ms; /* IE9? */
        }

        .accordion_3 .panel-title a.collapsed {
        }

            .accordion_3 .panel-title a.collapsed .accordion_icon {
                background-color: transparent;
            }

        .accordion_3 .panel-title a:hover {
            text-decoration: none;
        }

            .accordion_3 .panel-title a:hover .accordion_icon {
                background-color: #22BB75;
            }

    .accordion_3 .accordion_icon:before {
        content: "";
        top: 50%;
        left: 50%;
        margin: -4px 0 0 -5px;
        position: absolute;
        width: 7px;
        height: 7px;
        border-style: solid;
        border-width: 1px;
        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: border ease-in 200ms;
        -moz-transition: border ease-in 200ms; /* Firefox 4 */
        -webkit-transition: border ease-in 200ms; /* Safari and Chrome */
        -o-transition: border ease-in 200ms; /* Opera */
        -ms-transition: border ease-in 200ms; /* IE9? */
    }

    .accordion_3 .panel-title a .accordion_icon:before,
    .accordion_3 .panel-title a.collapsed:hover .accordion_icon:before {
        border-color: transparent #fff #fff transparent;
    }

    .accordion_3 .panel-title a.collapsed .accordion_icon:before {
        border-color: transparent #22BB75 #22BB75 transparent;
    }
/* **********  accordion_4  ************** */
.accordion_4 {
    margin-bottom: 0;
}

    .accordion_4 .panel-default {
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #DADADA;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
    }

    .accordion_4 > .panel-default > .panel-heading {
        background-color: transparent;
        padding: 0px;
        border: none !important;
        border-radius: 0px;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
    }

    .accordion_4 .panel-body {
        border: none !important;
        padding: 15px 30px !important;
    }

    .accordion_4 .panel-title a {
        color: #22BB75;
        display: block;
        padding: 16px 0px 16px 35px;
        position: relative;
        font-size: 14px;
        font-weight: normal;
        transition: color ease-in 200ms;
        -moz-transition: color ease-in 200ms; /* Firefox 4 */
        -webkit-transition: color ease-in 200ms; /* Safari and Chrome */
        -o-transition: color ease-in 200ms; /* Opera */
        -ms-transition: color ease-in 200ms; /* IE9? */
    }


        .accordion_4 .panel-title a .accordion_icon {
            width: 38px;
            height: 100%;
            position: absolute;
            right: 0px;
            top: 0px;
            text-align: center;
        }

        .accordion_4 .panel-title a.collapsed {
            background-color: transparent;
            color: #333;
        }

            .accordion_4 .panel-title a.collapsed .accordion_icon {
                background-color: transparent;
            }

        .accordion_4 .panel-title a:hover {
            text-decoration: none;
            color: #22BB75;
        }

            .accordion_4 .panel-title a:hover .accordion_icon {
            }

    .accordion_4 .accordion_icon:before {
        top: 50%;
        left: 50%;
        position: absolute;
        content: "";
        border-width: 5px;
        border-style: solid;
        transition: border ease-in 200ms;
        -moz-transition: border ease-in 200ms; /* Firefox 4 */
        -webkit-transition: border ease-in 200ms; /* Safari and Chrome */
        -o-transition: border ease-in 200ms; /* Opera */
        -ms-transition: border ease-in 200ms; /* IE9? */
    }

    .accordion_4 .panel-title a .accordion_icon:before,
    .accordion_4 .panel-title a:hover .accordion_icon:before {
        border-color: #22BB75 transparent transparent transparent;
        margin: -2px 0 0 -5px;
    }

    .accordion_4 .panel-title a.collapsed .accordion_icon:before {
        border-color: transparent transparent transparent #777;
        margin: -5px 0 0 -2px;
    }

    .accordion_4 .panel-title a.collapsed:hover .accordion_icon:before {
        border-color: transparent transparent transparent #22BB75;
    }

    .accordion_4 .panel-title a em.glyphicons {
        color: #22BB75;
        font-size: 16px;
        right: 15px;
        top: 3px;
    }
/* **********  accordion_pricing02  ************** */
.accordion_pricing02 {
    margin-bottom: 0;
}

    .accordion_pricing02 .panel-default {
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #DADADA;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
    }

    .accordion_pricing02 > .panel-default > .panel-heading {
        background-color: transparent;
        padding: 0px;
        border: none !important;
        border-radius: 0px;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
    }

    .accordion_pricing02 .panel-body {
        border: none;
        padding: 0 0 25px 82px;
        position: relative;
    }

    .accordion_pricing02 .panel-title a {
        color: #666666;
        display: block;
        padding: 20px 0px 20px 0;
        position: relative;
        font-size: 16px;
        font-weight: normal;
        transition: color ease-in 200ms;
        -moz-transition: color ease-in 200ms; /* Firefox 4 */
        -webkit-transition: color ease-in 200ms; /* Safari and Chrome */
        -o-transition: color ease-in 200ms; /* Opera */
        -ms-transition: color ease-in 200ms; /* IE9? */
    }


        .accordion_pricing02 .panel-title a .accordion_icon {
            width: 38px;
            height: 100%;
            position: absolute;
            right: 0px;
            top: 0px;
            text-align: center;
        }

        .accordion_pricing02 .panel-title a.collapsed {
            background-color: transparent;
            color: #333;
        }

            .accordion_pricing02 .panel-title a.collapsed .accordion_icon {
                background-color: transparent;
            }

        .accordion_pricing02 .panel-title a:hover {
            text-decoration: none;
            color: #22BB75;
        }

    .accordion_pricing02.panel-group .panel-heading + .panel-collapse > .panel-body {
        border-top: none;
    }

    .accordion_pricing02 .panel-title a em.glyphicons {
        color: #22BB75;
        font-size: 16px;
        right: 15px;
        top: 3px;
    }

    .accordion_pricing02 .panel-title em {
        display: inline-block;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        text-transform: uppercase;
        border-radius: 3px;
        background: #22bb75;
        font-style: normal;
        color: #fff;
        margin: 0 20px 0 0;
    }

    .accordion_pricing02 .panel-body span.pricing02_a {
        display: inline-block;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        text-transform: uppercase;
        border-radius: 3px;
        background: #c3c3c3;
        font-style: normal;
        color: #fff;
        margin: 0 53px 0 0;
        position: relative;
        position: absolute;
        left: 0;
    }

        .accordion_pricing02 .panel-body span.pricing02_a:after {
            border-bottom: 1px solid #c3c3c3;
            content: "";
            width: 25px;
            position: absolute;
            top: 50%;
            right: -45px;
        }


/*quotes*/
.quotes_1 blockquote {
    border: none;
    color: #666;
    text-indent: 0px;
    padding: 0 10px 0 100px;
    margin: 0;
    position: relative;
}

    .quotes_1 blockquote p {
        text-indent: 0px;
        color: #666;
        font-size: 13px;
        line-height: 20px;
        font-style: normal;
        font-weight: normal;
    }

    .quotes_1 blockquote small {
        position: static;
        color: #333;
        font-weight: bold;
        font-style: normal;
        padding: 2px 0 0;
        text-align: right;
        font-size: 14px;
    }

        .quotes_1 blockquote small:before,
        .quotes_1 blockquote .small:before {
            font-size: 12px;
        }

        .quotes_1 blockquote small span {
            font-weight: normal;
            color: #22BB75;
            font-size: 12px;
        }

    .quotes_1 blockquote span.mark {
        font-size: 70px;
        position: absolute;
        top: 50%;
        left: 15px;
        margin: -35px 0 0 0;
        line-height: normal;
        font-family: Georgia, "Times New Roman", Times, serif;
        font-style: normal;
        color: #fff;
        width: 70px;
        height: 70px;
        background-color: #22BB75;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        text-align: center;
    }


.quotes_2 blockquote {
    margin: 0;
    border-left: none;
    padding: 0 0 0 50%;
    font-style: normal;
    position: relative;
}

    .quotes_2 blockquote p {
        text-align: center;
        font-style: normal;
        font-size: 12px;
        color: #666;
        line-height: 20px;
        font-weight: normal;
        background: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/Quotes1.png") no-repeat center top;
        padding: 45px 30px;
        width: 270px;
        height: 192px;
        margin: 0;
    }

        .quotes_2 blockquote p.quotes_2p {
            background: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/Quotes2.png") no-repeat center top;
        }

    .quotes_2 blockquote small {
        font-size: 14px;
        color: #333;
        margin: 33px 0 0 33px;
    }

        .quotes_2 blockquote small span {
            color: #22bb75;
        }

        .quotes_2 blockquote small img {
            width: 50%;
            position: absolute;
            left: 0;
            top: 0;
        }

.quotes_3 .dividers_1 {
    margin-top: 0;
}

.quotes_3 blockquote {
    font-style: normal;
    text-align: center;
    margin: 0;
    padding: 0;
    border-left: none;
}

    .quotes_3 blockquote span.mark {
        width: 70px;
        display: inline-block;
        height: 70px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        font-size: 80px;
        padding: 13px 0 0 0;
        line-height: normal;
        background-color: #D9D9D9;
        color: #fff;
        font-family: Georgia, "Times New Roman", Times, serif;
    }

    .quotes_3 blockquote p {
        font-size: 12px;
        color: #666;
        line-height: 20px;
        font-weight: normal;
        font-style: normal;
        padding: 0 20px;
    }

    .quotes_3 blockquote small {
        font-size: 14px;
        color: #333;
    }

        .quotes_3 blockquote small span {
            font-size: 12px;
            color: #22BB75;
        }

.quotes_4 {
    position: relative;
}

    .quotes_4 blockquote {
        border: none;
        color: #666;
        text-indent: 0px;
        padding: 25px 30px 25px 100px;
        margin: 0;
        background-color: #F3F3F3;
    }

        .quotes_4 blockquote p {
            text-indent: 0px;
            color: #666;
            font-size: 13px;
            line-height: 20px;
            font-style: normal;
            font-weight: normal;
        }

        .quotes_4 blockquote small {
            position: static;
            color: #333;
            font-weight: bold;
            font-style: normal;
            padding: 2px 0 0;
            text-align: right;
            font-size: 14px;
        }

            .quotes_4 blockquote small:before,
            .quotes_4 blockquote .small:before {
                font-size: 12px;
            }

            .quotes_4 blockquote small span {
                font-weight: normal;
                color: #22BB75;
                font-size: 12px;
            }

        .quotes_4 blockquote span.mark {
            font-size: 145px;
            overflow: hidden;
            padding: 0;
            margin: 28px 0 0 0;
            position: absolute;
            line-height: 132px;
            font-family: Georgia, "Times New Roman", Times, serif;
            font-style: normal;
            color: #22BB75;
            width: 70px;
            height: 70px;
            text-align: center;
            left: 15px;
            top: 0;
        }



/*dropcaps*/
.dropcaps_1 {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    float: left;
    font-size: 40px;
    margin: 0 15px 0 0;
    color: #22BB75;
}

.dropcaps_2 {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    float: left;
    font-size: 30px;
    margin: 0 15px 0 0;
    color: #fff;
    background-color: #22BB75;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.dropcaps_3 {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    float: left;
    font-size: 30px;
    margin: 0 15px 0 0;
    color: #fff;
    background-color: #22BB75;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.dropcaps_4 {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    float: left;
    font-size: 30px;
    margin: 0 15px 0 0;
    color: #fff;
    background-color: #22BB75;
}

.dropcaps_5 {
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    float: left;
    font-size: 30px;
    margin: 0 15px 0 0;
    color: #22BB75;
    border: 2px solid #22BB75;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.dropcaps_6 {
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    float: left;
    font-size: 30px;
    margin: 0 15px 0 0;
    color: #22BB75;
    border: 2px solid #22BB75;
}

/*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;
        padding: 20px 0 0;
        position: absolute;
        top: 100%;
        left: 2;
        width: 100%;
    }

    .carousel .owl-page {
        cursor: pointer;
        width: 21px;
        height: 21px;
        border: 2px solid #2e2e2e;
        margin: 0 5px;
        display: inline-block;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
    }

        .carousel .owl-page.active {
        }

    .carousel .owl-buttons .owl-prev,
    .carousel .owl-buttons .owl-next {
        position: absolute;
        left: -30px;
        top: 50%;
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 0px;
        text-align: center;
        cursor: pointer;
        margin: -17px 0 0 0;
        border: 2px solid #2e2e2e;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
    }

    .carousel .owl-buttons .owl-next {
        left: auto;
        right: -30px;
    }

        .carousel .owl-buttons .owl-prev:before,
        .carousel .owl-buttons .owl-next:before {
            content: "";
            border-left: 2px solid #2e2e2e;
            border-bottom: 2px solid #2e2e2e;
            width: 8px;
            height: 8px;
            position: absolute;
            top: 50%;
            left: 50%;
            margin: -3px 0 0 -3px;
            font-size: 20px;
            transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            -o-transform: rotate(45deg);
        }

        .carousel .owl-buttons .owl-next:before {
            border-left: none;
            border-right: 2px solid #2e2e2e;
            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 {
    }

        .carousel .owl-buttons .owl-prev:hover:before {
        }

        .carousel .owl-buttons .owl-next:hover:before {
            border-left: none;
        }

    .carousel .grabbing {
    }

    .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%;
        margin: auto;
    }

.carousel_1h2 {
    font-weight: normal;
    line-height: normal;
    color: #333;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.carousel_1 {
    margin-bottom: 40px;
}

    /* 20240911 (rk) */
.carousel_1.margin-bottom-0 {
    margin-bottom: 0px;
}

    .carousel_1 .item {
        text-align: center;
        padding: 0 5px;
    }

        .carousel_1 .item .content_sytle_2 .shade {
            background-color: #22BB75;
        }

        .carousel_1 .item .photo_box .content {
            text-align: left;
            padding: 15px;
        }

        .carousel_1 .item .content_sytle_2 .content h3 {
            font-weight: normal;
            line-height: normal;
            color: #fff;
            font-size: 18px;
            margin: 0 0 20px 0;
        }

        .carousel_1 .item .content_sytle_2 .content p {
            padding: 0 0 20px 0;
            margin: 0;
            font-size: 12px;
            color: #fff;
        }

        .carousel_1 .item .content_sytle_2 .content a.but {
            font-size: 12px;
            margin-top: 0px;
            padding: 10px 25px 10px 32px;
            position: relative;
            transition: background-color ease-in 200ms,border ease-in 200ms;
            -moz-transition: background-color ease-in 200ms,border ease-in 200ms; /* Firefox 4 */
            -webkit-transition: background-color ease-in 200ms,border ease-in 200ms; /* Safari and Chrome */
            -o-transition: background-color ease-in 200ms,border ease-in 200ms; /* Opera */
            -ms-transition: background-color ease-in 200ms,border ease-in 200ms; /* IE9? */
        }

            .carousel_1 .item .content_sytle_2 .content a.but:hover {
                background-color: #444;
                border: 1px solid #444;
            }

            .carousel_1 .item .content_sytle_2 .content a.but:before {
                content: ">";
                position: absolute;
                left: 15px;
            }

    .carousel_1 .owl-buttons .owl-prev,
    .carousel_1 .owl-buttons .owl-next {
        left: auto;
        top: 0;
        right: 0;
        width: 25px;
        height: 25px;
        border: none;
        margin: -45px 35px 0 0;
        background-color: #878787;
        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_1 .owl-buttons .owl-next {
        right: -30px;
    }

        .carousel_1 .owl-buttons .owl-prev:before,
        .carousel_1 .owl-buttons .owl-next:before {
            border-left: 1px solid #fff;
            border-bottom: 1px solid #fff;
            margin: -4px 0 0 -2px;
        }

        .carousel_1 .owl-buttons .owl-next:before {
            border-right: 1px solid #fff;
            border-left: none;
            margin: -4px 0 0 -5px;
        }

        .carousel_1 .owl-buttons .owl-prev:hover,
        .carousel_1 .owl-buttons .owl-next:hover {
            background-color: #22BB75;
        }

.carousel_2 .item {
    text-align: center;
    padding: 0 20px;
}

    .carousel_2 .item .ico {
        display: inline-block;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        background-color: #22BB75;
    }

        .carousel_2 .item .ico span.glyphicons {
            font-size: 24px;
            color: #fff;
            line-height: 56px;
        }

    .carousel_2 .item h3 {
        font-size: 14px;
        color: #22BB75;
        line-height: 40px;
        font-weight: normal;
        margin: 0;
    }

.carousel_2 p {
    color: #666;
}

.carousel_2 .item a.Button_normal {
    color: #22BB75;
}

.carousel_2 .owl-buttons .owl-prev,
.carousel_2 .owl-buttons .owl-next {
    border: none;
    left: -27px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: -25px 0 0 0;
}

.carousel_2 .owl-buttons .owl-next {
    left: auto;
    right: -24px;
}

    .carousel_2 .owl-buttons .owl-prev:before,
    .carousel_2 .owl-buttons .owl-next:before {
        width: 20px;
        height: 20px;
        border-left: 2px solid #666;
        border-bottom: 2px solid #666;
        margin: -8px 0 0 -3px;
        transition: border ease-in 200ms;
        -moz-transition: border ease-in 200ms; /* Firefox 4 */
        -webkit-transition: border ease-in 200ms; /* Safari and Chrome */
        -o-transition: border ease-in 200ms; /* Opera */
        -ms-transition: border ease-in 200ms; /* IE9? */
    }

    .carousel_2 .owl-buttons .owl-next:before {
        border-left: none;
        border-right: 2px solid #666;
    }

    .carousel_2 .owl-buttons .owl-prev:hover:before,
    .carousel_2 .owl-buttons .owl-next:hover:before {
        border-left: 2px solid #22BB75;
        border-bottom: 2px solid #22BB75;
    }

    .carousel_2 .owl-buttons .owl-next:hover:before {
        border-left: none;
        border-right: 2px solid #22BB75;
    }

.carousel_3 .item {
    padding: 0 5px;
}

    .carousel_3 .item h3 {
        font-weight: normal;
        color: #22BB75;
        font-size: 14px;
        line-height: 40px;
        margin: 0;
    }

    .carousel_3 .item a.Button_normal {
        color: #fff;
        background-color: #22BB75;
        border-radius: 4px;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        padding: 7px 16px;
        display: inline-block;
        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_3 .item a.Button_normal:hover {
            text-decoration: none;
            background-color: #444;
        }

.carousel_3 .owl-buttons .owl-prev,
.carousel_3 .owl-buttons .owl-next {
    left: -40px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: -15px 0 0 0;
    border: 1px solid #22BB75;
}

.carousel_3 .owl-buttons .owl-next {
    left: auto;
    right: -40px;
}

    .carousel_3 .owl-buttons .owl-prev:before,
    .carousel_3 .owl-buttons .owl-next:before {
        border-left: 1px solid #22BB75;
        border-bottom: 1px solid #22BB75;
    }

    .carousel_3 .owl-buttons .owl-next:before {
        border-left: none;
        border-right: 1px solid #22BB75;
        border-bottom: 1px solid #22BB75;
    }

.carousel_4 .owl-pagination {
    top: 85%;
    right: 20px;
    width: auto;
}

.carousel_4 .owl-page {
    background-color: rgba(255,255,255,0.4);
    width: 24px;
    height: 24px;
    border: none;
}

    .carousel_4 .owl-page.active {
        background-color: #22BB75;
        border: none;
    }

.carousel_4 .owl-item .carousel_content {
    position: absolute;
    top: 0px;
    left: -30%;
    width: 30%;
    height: 100%;
    z-index: 10;
    padding: 30px;
    color: #FFF;
    opacity: 0;
    transition: all 200ms ease-out 0ms;
    -moz-transition: all 200ms ease-out 0ms; /* Firefox 4 */
    -webkit-transition: all 200ms ease-out 0ms; /* Safari and Chrome */
    -o-transition: all 200ms ease-out 0ms; /* Opera */
    -ms-transition: all 200ms ease-out 0ms; /* IE9? */
}

.carousel_4 .owl-item.synced .carousel_content,
.carousel_4 .owl-item.synced .carousel_content.text_left {
    top: 0px;
    left: 0px;
    opacity: 1;
    transition: all 400ms ease-out 800ms;
    -moz-transition: all 400ms ease-out 800ms; /* Firefox 4 */
    -webkit-transition: all 400ms ease-out 800ms; /* Safari and Chrome */
    -o-transition: all 400ms ease-out 800ms; /* Opera */
    -ms-transition: all 400ms ease-out 800ms; /* IE9? */
}

.carousel_4 .owl-item .carousel_content.text_right {
    left: auto;
    right: -30%;
    width: 30%;
    height: 100%;
}

.carousel_4 .owl-item.synced .carousel_content.text_right {
    left: auto;
    right: 0;
}

.carousel_4 .owl-item .carousel_content.text_top {
    left: 0;
    top: -100%;
    width: 100%;
    height: auto;
    max-height: 100%;
}

.carousel_4 .owl-item.synced .carousel_content.text_top {
    left: 0;
    top: 0;
}

.carousel_4 .owl-item .carousel_content.text_bottom {
    left: 0;
    top: auto;
    bottom: -100%;
    width: 100%;
    height: auto;
    max-height: 100%;
}

.carousel_4 .owl-item.synced .carousel_content.text_bottom {
    left: 0;
    top: auto;
    bottom: 0;
}

.carousel_4 .owl-item .carousel_content h3 {
    color: #FFF;
}

.carousel_4 .owl-item .carousel_content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    filter: alpha(opacity=50);
    opacity: 0.5;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 979px) {
    .carousel_4 .owl-item .carousel_content {
        padding: 15px;
    }

        .carousel_4 .owl-item .carousel_content.text_left {
            left: -35%;
            width: 35%;
        }

        .carousel_4 .owl-item .carousel_content.text_right {
            right: -35%;
            width: 35%;
        }
}

@media only screen and (max-width: 767px) {
    .carousel_4 .owl-pagination {
        bottom: 3px;
    }

    .carousel_4 .owl-item .carousel_content.text_left {
        height: auto;
        top: auto;
        padding: 8px 15px;
        width: auto;
    }

    .carousel_4 .owl-item .carousel_content.text_right {
        height: auto;
        top: auto;
        bottom: 0px;
        padding: 8px 15px;
        width: auto;
    }

    .carousel_4 .owl-item .carousel_content.text_top,
    .carousel_4 .owl-item .carousel_content.text_bottom {
        padding: 8px 15px;
    }

    .carousel_4 .owl-item .carousel_content p {
        display: none;
    }

    .carousel_4 .owl-item .carousel_content h3 {
        font-size: 13px;
        padding: 0;
        margin: 0;
    }
}
/*home5Page carousel_4*/
.home5Carousel h4 {
    font-size: 28px;
    font-weight: normal;
    line-height: 1;
}

.home5Carousel p {
    font-size: 16px;
}

.home5Carousel a {
    font-size: 13px;
    padding: 10px 25px;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

    .home5Carousel a:hover {
        text-decoration: none;
    }

.home5Carousel .owl-buttons .owl-prev:before,
.home5Carousel .owl-buttons .owl-next:before {
    border-width: 5px;
    border-color: #666666;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -5px;
}

.home5Carousel .owl-buttons .owl-next:before {
    margin-left: -9px;
}

.home5Carousel .owl-buttons .owl-prev:hover:before,
.home5Carousel .owl-buttons .owl-next:hover:before {
    border-color: #22bb75;
}

.home5Carousel .owl-buttons .owl-prev,
.home5Carousel .owl-buttons .owl-next {
    border: none;
    left: 0;
}

.home5Carousel .owl-buttons .owl-next {
    left: auto;
    right: 0;
}

.carousel_5 .content_sytle_2 .shade {
    background-color: #22BB75;
}

.carousel_5 .content_sytle_2 .content h3 {
    font-size: 20px;
    font-weight: normal;
}

.carousel_5 .content_sytle_2 .content a.but {
    padding: 4px 17px;
    transition: background-color ease-in 200ms,border ease-in 200ms;
    -moz-transition: background-color ease-in 200ms,border ease-in 200ms; /* Firefox 4 */
    -webkit-transition: background-color ease-in 200ms,border ease-in 200ms; /* Safari and Chrome */
    -o-transition: background-color ease-in 200ms,border ease-in 200ms; /* Opera */
    -ms-transition: background-color ease-in 200ms,border ease-in 200ms; /* IE9? */
}

    .carousel_5 .content_sytle_2 .content a.but:hover {
        background-color: #444;
        border: 1px solid #444;
    }

.carousel_5 .owl-buttons .owl-prev,
.carousel_5 .owl-buttons .owl-next {
    width: 41px;
    height: 65px;
    margin-top: -33px;
    border: none;
    background-color: #000;
    background-color: rgba(0,0,0,0.8);
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    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? */
}

.carousel_5 .owl-buttons .owl-prev {
    left: 0;
}

.carousel_5 .owl-buttons .owl-next {
    right: 0;
}

.carousel_5:hover .owl-buttons .owl-prev,
.carousel_5:hover .owl-buttons .owl-next {
    filter: alpha(opacity=100);
    opacity: 1;
}

.carousel_5 .owl-buttons .owl-prev:before,
.carousel_5 .owl-buttons .owl-prev:hover:before {
    border-left: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    margin: -5px 0 0 -3px;
    width: 12px;
    height: 12px;
}

.carousel_5 .owl-buttons .owl-next:before,
.carousel_5 .owl-buttons .owl-next:hover:before {
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    margin: -5px 0 0 -7px;
    width: 12px;
    height: 12px;
}

.carousel_5 .owl-buttons .owl-prev:hover,
.carousel_5 .owl-buttons .owl-next:hover {
    border: none;
    background-color: #22BB75;
}

.carousel_6 .item {
    margin: 0 15px;
    text-align: center;
    background-color: #EFEFEF;
    border-bottom: 2px solid #22BB75;
}

    .carousel_6 .item h3 {
        font-weight: normal;
        color: #22BB75;
        font-size: 14px;
        line-height: 24px;
        margin: 20px 0 10px 0;
    }

    .carousel_6 .item p {
        margin: 0 0 20px 0;
        color: #666;
    }

.carousel_6 .owl-buttons .owl-prev,
.carousel_6 .owl-buttons .owl-next {
    left: -40px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: -25px 0 0 0;
    border: 1px solid #22BB75;
}

.carousel_6 .owl-buttons .owl-next {
    left: auto;
    right: -40px;
}

    .carousel_6 .owl-buttons .owl-prev:before,
    .carousel_6 .owl-buttons .owl-next:before {
        border-left: 1px solid #22BB75;
        border-bottom: 1px solid #22BB75;
    }

    .carousel_6 .owl-buttons .owl-next:before {
        border-left: none;
        border-right: 1px solid #22BB75;
        border-bottom: 1px solid #22BB75;
    }

.carousel_6 .owl-page {
    width: 15px;
    height: 15px;
    border: none;
    background-color: #D8D8D8;
}

    .carousel_6 .owl-page.active {
        background-color: #22BB75;
    }

.carousel_7 .item {
    text-align: center;
    margin: 0 21px;
}

    .carousel_7 .item .ico {
        display: inline-block;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        background-color: #22BB75;
    }

        .carousel_7 .item .ico span.glyphicons {
            font-size: 40px;
            color: #fff;
            line-height: 120px;
        }

    .carousel_7 .item h3 {
        font-size: 18px;
        color: #333;
        line-height: 20px;
        font-weight: normal;
        margin: 20px 0 15px 0;
    }

    .carousel_7 .item a.Button_normal {
        color: #22BB75;
        font-size: 13px;
        text-transform: uppercase;
    }

        .carousel_7 .item a.Button_normal:hover {
            text-decoration: none;
        }

.carousel_7 .owl-buttons .owl-prev,
.carousel_7 .owl-buttons .owl-next {
    border: none;
    left: -35px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: -25px 0 0 0;
}

.carousel_7 .owl-buttons .owl-next {
    left: auto;
    right: 0px;
}

    .carousel_7 .owl-buttons .owl-prev:before,
    .carousel_7 .owl-buttons .owl-next:before {
        width: 20px;
        height: 20px;
        border-left: 2px solid #666;
        border-bottom: 2px solid #666;
        margin: -10px 0 0 -4px;
        transition: border ease-in 200ms;
        -moz-transition: border ease-in 200ms; /* Firefox 4 */
        -webkit-transition: border ease-in 200ms; /* Safari and Chrome */
        -o-transition: border ease-in 200ms; /* Opera */
        -ms-transition: border ease-in 200ms; /* IE9? */
    }

    .carousel_7 .owl-buttons .owl-next:before {
        border-left: none;
        border-right: 2px solid #666;
        margin: -10px 0 0 -16px;
    }

    .carousel_7 .owl-buttons .owl-prev:hover:before,
    .carousel_7 .owl-buttons .owl-next:hover:before {
        border-left: 2px solid #22BB75;
        border-bottom: 2px solid #22BB75;
    }

    .carousel_7 .owl-buttons .owl-next:hover:before {
        border-left: none;
        border-right: 2px solid #22BB75;
    }
/*homePage carousel_7*/
.conb {
    background-color: #F0F0F0;
}

    .conb .carousel_7 .item {
        margin: 0;
    }

.conba,
.conbb,
.conbc,
.conbd,
.conbe {
    text-align: center;
    cursor: pointer;
}

    .conba img,
    .conbb img,
    .conbc img,
    .conbd img,
    .conbe img {
        display: inline-block;
        padding: 20px 0;
    }

    .conba:hover img,
    .conbb:hover img,
    .conbc:hover img,
    .conbd:hover img,
    .conbe:hover img {
        filter: alpha(opacity=80);
        opacity: 0.8;
    }

.carousel_8 .item {
    background-color: #F1F1F1;
    border-bottom: 2px solid rgba(0,0,0,0.15);
    margin: 0 5px;
    text-align: center;
    cursor: pointer;
    transition: background-color ease-in 200ms,border ease-in 200ms;
    -moz-transition: background-color ease-in 200ms,border ease-in 200ms; /* Firefox 4 */
    -webkit-transition: background-color ease-in 200ms,border ease-in 200ms; /* Safari and Chrome */
    -o-transition: background-color ease-in 200ms,border ease-in 200ms; /* Opera */
    -ms-transition: background-color ease-in 200ms,border ease-in 200ms; /* IE9? */
}

    .carousel_8 .item h3 {
        font-size: 15px;
        color: #333;
        font-weight: normal;
        margin-top: 20px;
        margin-bottom: 5px;
    }

    .carousel_8 .item p {
        color: #888;
        margin: 0 0 20px 0;
    }

    .carousel_8 .item:hover {
        border-bottom: 2px solid rgba(0,0,0,0.2);
    }

        .carousel_8 .item:hover h3,
        .carousel_8 .item:hover p {
            color: #fff;
        }

.carousel_9 .item {
    text-align: center;
    padding: 20px;
}

    .carousel_9 .item .ico {
        display: inline-block;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border: 1px solid #22bb75;
    }

        .carousel_9 .item .ico span.glyphicons {
            font-size: 27px;
            color: #22bb75;
            line-height: 96px;
        }

    .carousel_9 .item h3 {
        font-size: 14px;
        color: #333;
        line-height: 40px;
        font-weight: normal;
        margin: 0;
    }

.carousel_9 p {
}

.carousel_9 .owl-pagination {
    padding: 0;
}

.carousel_9 .owl-buttons .owl-prev,
.carousel_9 .owl-buttons .owl-next {
    border: none;
    left: -27px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: -25px 0 0 0;
}

.carousel_9 .owl-buttons .owl-next {
    left: auto;
    right: -24px;
}

    .carousel_9 .owl-buttons .owl-prev:before,
    .carousel_9 .owl-buttons .owl-next:before {
        width: 20px;
        height: 20px;
        border-left: 2px solid #666;
        border-bottom: 2px solid #666;
        margin: -8px 0 0 -3px;
        transition: border ease-in 200ms;
        -moz-transition: border ease-in 200ms; /* Firefox 4 */
        -webkit-transition: border ease-in 200ms; /* Safari and Chrome */
        -o-transition: border ease-in 200ms; /* Opera */
        -ms-transition: border ease-in 200ms; /* IE9? */
    }

    .carousel_9 .owl-buttons .owl-next:before {
        border-left: none;
        border-right: 2px solid #666;
    }

    .carousel_9 .owl-buttons .owl-prev:hover:before,
    .carousel_9 .owl-buttons .owl-next:hover:before {
        border-left: 2px solid #22BB75;
        border-bottom: 2px solid #22BB75;
    }

    .carousel_9 .owl-buttons .owl-next:hover:before {
        border-left: none;
        border-right: 2px solid #22BB75;
    }

.carousel_9 .owl-page {
    width: 20px;
    height: 20px;
    border: none;
    background-color: #d2d2d2;
}

    .carousel_9 .owl-page.active {
        background-color: #22bb75;
    }


.carousel_10 .item {
    padding: 0 15px;
}

.carousel_10 .owl-buttons .owl-prev,
.carousel_10 .owl-buttons .owl-next {
    left: -20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: -15px 0 0 0;
    border: none;
}

.carousel_10 .owl-buttons .owl-next {
    left: auto;
    right: -20px;
}

    .carousel_10 .owl-buttons .owl-prev:before,
    .carousel_10 .owl-buttons .owl-next:before {
        border-left: 2px solid #969696;
        border-bottom: 2px solid #969696;
        transition: border ease-in 200ms;
        -moz-transition: border ease-in 200ms; /* Firefox 4 */
        -webkit-transition: border ease-in 200ms; /* Safari and Chrome */
        -o-transition: border ease-in 200ms; /* Opera */
        -ms-transition: border ease-in 200ms; /* IE9? */
    }

    .carousel_10 .owl-buttons .owl-next:before {
        border-left: none;
        border-right: 2px solid #969696;
        border-bottom: 2px solid #969696;
    }

    .carousel_10 .owl-buttons .owl-prev:hover:before,
    .carousel_10 .owl-buttons .owl-next:hover:before {
        border-left: 2px solid #22bb75;
        border-bottom: 2px solid #22bb75;
    }

    .carousel_10 .owl-buttons .owl-next:hover:before {
        border-left: none;
        border-right: 2px solid #22bb75;
        border-bottom: 2px solid #22bb75;
    }
/*carousel_11*/
.carousel_11 .item {
    text-align: center;
}

.carousel_11 .owl-buttons .owl-prev,
.carousel_11 .owl-buttons .owl-next {
    border: none;
}

    .carousel_11 .owl-buttons .owl-prev:before,
    .carousel_11 .owl-buttons .owl-next:before {
        border-bottom: 4px solid #ffffff;
        border-left: 4px solid #ffffff;
        width: 10px;
        height: 10px;
    }

    .carousel_11 .owl-buttons .owl-next:before {
        border-left: none;
        border-right: 4px solid #ffffff;
        margin-left: -7px;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel_11 .owl-buttons .owl-prev,
    .carousel_11 .owl-buttons .owl-next {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .carousel_11 .owl-buttons .owl-prev,
    .carousel_11 .owl-buttons .owl-next {
        display: none;
    }
}

/* 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;
}

a.Button_lightbox {
    padding: 9px 25px;
    font-size: 14px;
    display: inline-block;
    white-space: nowrap;
    color: #FFFFFF !important;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    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;
    background-color: #22BB75;
}

    a.Button_lightbox:hover {
        text-decoration: none;
        background-color: #444;
    }

/*Images*/
.photo_box {
    position: relative;
    margin: 0 0 5px 0;
    padding: 0px;
    overflow: hidden;
    line-height: 1.8;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
}

    .photo_box .pic_box {
        position: relative;
        display: inline-block;
        overflow: hidden;
        width: 100%;
        vertical-align: middle;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
    }

    .photo_box a, .photo_box a:hover {
        text-decoration: none
    }

    .photo_box .ico {
        position: absolute;
        top: 50%;
        width: 100%;
        margin-top: -25px;
        text-align: center;
        color: #FFF;
        filter: alpha(opacity=0);
        opacity: 0;
        z-index: 1;
    }

        .photo_box .ico span {
            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: #22BB75;
            border-radius: 50%;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
        }

        .photo_box .ico h3 {
            color: #FFF;
            font-size: 15px;
            margin-bottom: 5px;
        }

    .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;
    }

.vertical_center_1 {
    width: 100%;
    height: 100%;
    display: table;
}

.vertical_center_2 {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}

.photo_box .content h3 {
    color: #FFF;
    font-size: 15px;
    margin-bottom: 5px;
}

.photo_box .content p {
    color: #FFF;
    font-size: 13px;
}

.photo_box .content > .glyphicons {
    font-size: 50px;
    height: 70%;
    position: relative;
}

    .photo_box .content > .glyphicons: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 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: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(-200px,0);
    -ms-transform: translate(-200px,0);
    -webkit-transform: translate(-200px,0);
    -o-transform: translate(-200px,0);
    -moz-transform: translate(-200px,0);
}

.photo_box.ico_LeftAndRight_enter span.ico_right {
    transform: translate(200px,0);
    -ms-transform: translate(200px,0);
    -webkit-transform: translate(200px,0);
    -o-transform: translate(200px,0);
    -moz-transform: translate(200px,0);
}

.photo_box.ico_TopAndBottom_enter span.ico_top {
    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.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: #22BB75;
    filter: alpha(opacity=100);
    opacity: 1;
}

    .photo_box.ico_push_in .ico span {
        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_right_rotate .ico, .photo_box.ico_right_rotate .ico > span {
    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: #22BB75;
    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: #22BB75;
}

.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 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.content_push_in .content {
    filter: alpha(opacity=100);
    opacity: 1;
    background-color: #22BB75;
    top: auto;
    height: auto;
    bottom: 0;
    height: 60px;
    margin-bottom: -60px;
    overflow: hidden;
}

    .photo_box.content_push_in .content h3 {
        margin: 10px 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: #22BB75;
        border-top-color: #22BB75;
    }

    .photo_box.icon_tag_push .ico span {
        background: none;
        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 {
        color: #666666;
        font-size: 16px;
        margin: 0;
    }

.photo_box.content_bottom_push_in .content {
    background-color: #FFF;
    background-color: rgba(255,255,255,0.8);
    height: auto;
    padding: 10px 0;
    color: #666666;
    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:before {
        content: "";
        border: 8px solid transparent;
        border-bottom-color: #FFF;
        border-bottom-color: rgba(255,255,255,0.8);
        position: absolute;
        top: -16px;
        left: 50%;
        margin-left: -4px;
    }

    .photo_box.content_bottom_push_in .content h3 {
        color: #666666;
        font-size: 16px;
        margin: 0;
    }

    .photo_box.content_bottom_push_in .content p {
        color: #666666;
        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 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: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 {
        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 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: #22BB75;
    filter: alpha(opacity=80);
    opacity: 0.8;
}

.photo_box.entirety_bevel .pic_box:before {
    content: "";
    border-top: 0px solid #e5e5e5;
    border-right: 0px solid #FFF;
    border-left: 0px solid #e5e5e5;
    border-bottom: 0px solid #FFF;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    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:hover.entirety_bevel .pic_box:before {
    border-top: 25px solid #e5e5e5;
    border-right: 25px solid #FFF;
    border-left: 25px solid #e5e5e5;
    border-bottom: 25px solid #FFF;
}

.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;
    /* 20240911 (rk) */
    /* 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;
}

.box_bottom_shadow {
    box-shadow: 0px 8px 8px -4px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 8px 8px -4px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0px 8px 8px -4px rgba(0,0,0,0.3);
}

.box_bottom_shadow_left, .box_bottom_shadow_right {
    overflow: visible;
    position: relative;
    z-index: 1;
}

    .box_bottom_shadow_left:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100px;
        height: 15px;
        z-index: 0;
        box-shadow: 14px 14px 14px rgba(0,0,0,0.3);
        -moz-box-shadow: 14px 14px 14px rgba(0,0,0,0.3);
        -webkit-box-shadow: 14px 14px 14px rgba(0,0,0,0.3);
        margin: -24px 0 0 0;
        transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -webkit-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
    }

    .box_bottom_shadow_right:after {
        content: "";
        position: absolute;
        top: 100%;
        right: 0;
        width: 100px;
        height: 15px;
        z-index: -1;
        box-shadow: -14px 14px 14px rgba(0,0,0,0.3);
        -moz-box-shadow: -14px 14px 14px rgba(0,0,0,0.3);
        -webkit-box-shadow: -14px 14px 14px rgba(0,0,0,0.3);
        margin: -24px 0 0 0;
        transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        -moz-transform: rotate(-deg);
        -webkit-transform: rotate(5deg);
        -o-transform: rotate(5deg);
    }

.box_dotted_padding {
    border: 1px dashed #dddddd;
    padding: 3px;
}



@-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 .glyphicons {
    background: none !important;
    font-size: 30px !important;
    color: #FFF !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}


.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 {
    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 #22BB75;
        margin-bottom: -1px;
        font-size: 14px;
        color: #666666;
    }

.text_sytle_5 {
    clear: both;
    overflow: hidden;
    margin: 5px;
}

    .text_sytle_5 h3 {
        font-size: 16px;
        color: #666666;
        font-weight: bold;
        margin: 10px 8px;
    }

        .text_sytle_5 h3 span {
            float: right;
        }

.text_sytle_6 {
    padding: 30px 0 0 0;
}

    .text_sytle_6 .dateandtitle {
    }

        .text_sytle_6 .dateandtitle .date {
            font-size: 20px;
            color: #000;
            float: left;
            line-height: 20px;
        }

            .text_sytle_6 .dateandtitle .date span,
            .text_sytle_6 .dateandtitle .title span {
                font-size: 12px;
                color: #888;
                text-transform: uppercase;
            }

        .text_sytle_6 .dateandtitle .title {
            font-size: 16px;
            color: #000;
            float: left;
            line-height: 20px;
            border-left: 1px solid #CACACA;
            margin: 0 0 0 15px;
            padding: 0 0 0 15px;
        }

    .text_sytle_6 p {
        margin: 15px 0;
    }

    .text_sytle_6 .aandinfo a {
        display: inline-block;
        background-color: #22bb75;
        color: #fff;
        text-align: center;
        padding: 8px 26px;
        text-transform: uppercase;
        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? */
    }

        .text_sytle_6 .aandinfo a:hover {
            background-color: #444;
        }

    .text_sytle_6 .aandinfo .info {
        float: right;
        font-size: 15px;
        line-height: 37px;
    }

        .text_sytle_6 .aandinfo .info span.glyphicons {
            color: #BCBCBC;
            font-size: 21px;
            top: 5px;
            left: -5px;
        }
/*boxes rotate*/
/*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;
        background-color: #FFF;
        -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;
        background-color: #FFF;
        -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 {
        -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 .front,
.flip_box_1 .back {
    border: 1px solid #e2e2e2;
    padding: 25px;
    text-align: center;
}

    .flip_box_1 .front .glyphicons {
        background-color: #22BB75;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        width: 60px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        font-size: 26px;
        color: #FFF;
        margin-bottom: 20px;
    }

.flip_box_1 h3 {
    font-size: 15px;
    color: #666666;
    margin-bottom: 10px;
}

.flip_box_1 .back {
    height: auto;
}

    .flip_box_1 .back h3 {
        margin: 0px 0 15px;
    }

    .flip_box_1 .back a.but {
        padding: 6px 0px;
        color: #FFF;
        background-color: #22BB75;
        text-decoration: none;
        display: block;
        width: 120px;
        text-align: center;
        margin: 37px auto -42px
    }

.flip_box_2 .front,
.flip_box_2 .back {
    background-color: #f8f8f8;
    border: 1px solid #e2e2e2;
    padding: 25px;
    text-align: center;
}

.flip_box_2 .back {
    height: 100%;
    padding: 0 25px;
}


.flip_box_2 .front .glyphicons {
    font-size: 45px;
    color: #777777;
    margin: 8px 0 0px;
}

.flip_box_2 h3 {
    color: #666666;
    font-size: 15px;
    margin: 25px 0 15px;
}


.flip_box_3 .front {
    padding: 25px;
    text-align: center;
}

.flip_box_3 .back {
    padding: 0 25px;
    text-align: center;
    background-color: #22BB75;
    color: #FFF;
}

.flip_box_3 .back {
    height: 100%;
}


.flip_box_3 .front .glyphicons {
    font-size: 45px;
    width: 120px;
    height: 120px;
    line-height: 120px;
    background-color: #e9e9e9;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #777777;
    margin: 8px 0 0px;
}

.flip_box_3 h3 {
    color: #666666;
    font-size: 15px;
    margin: 25px 0 15px;
}

.flip_box_3 .back h3 {
    color: #FFF;
    margin: 35px 0 15px;
}

.flip_box_3 .back a.but {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    color: #ffffff;
    border: 1px solid #ffffff;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color ease-in 200ms,border ease-in 200ms;
    -moz-transition: background-color ease-in 200ms,border ease-in 200ms; /* Firefox 4 */
    -webkit-transition: background-color ease-in 200ms,border ease-in 200ms; /* Safari and Chrome */
    -o-transition: background-color ease-in 200ms,border ease-in 200ms; /* Opera */
    -ms-transition: background-color ease-in 200ms,border ease-in 200ms; /* IE9? */
}

    .flip_box_3 .back a.but:hover {
        background-color: #444;
        border: 1px solid #444;
    }


h3.flip_box_4h3 {
    text-align: center;
    font-size: 30px;
    font-weight: lighter;
    line-height: normal;
    color: #333;
    margin: 0 0 15px 0;
}

p.flip_box_4p {
    text-align: center;
    margin: 0 0 20px 0;
}

.flip_box_4 .front,
.flip_box_4 .back {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 25px;
    text-align: center;
}

.flip_box_4 .front {
    background-color: #EFEFEF;
}

.flip_box_4 .back {
}

.flip_box_4 .front .glyphicons {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 26px;
    color: #FFF;
    margin-bottom: 20px;
}

.flip_box_4 h3 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.flip_box_4 .back {
}

    .flip_box_4 .back h3 {
        margin: 0px 0 15px;
        color: #fff;
    }

    .flip_box_4 .back p {
        color: #fff;
    }

    .flip_box_4 .back a.but {
        padding: 6px 0px;
        color: #FFF;
        text-decoration: none;
        display: block;
        width: 120px;
        text-align: center;
        margin: 15px auto 0;
    }

.flip_box_5 .rotate {
    cursor: pointer;
}

.flip_box_5 .front {
    background-color: #F2F2F2;
    text-align: center;
}

    .flip_box_5 .front h3 {
        font-size: 14px;
        line-height: 22px;
        color: #333;
        font-weight: normal;
        margin: 20px 0 10px 0;
    }

    .flip_box_5 .front p {
        color: #666;
        margin: 0 0 20px 0;
        display: inline-block;
    }

.flip_box_5 .back {
    background-color: #22BB75;
    padding: 24px;
    color: #fff;
}

    .flip_box_5 .back h3 {
        font-size: 14px;
        font-weight: normal;
        line-height: 22px;
        color: #fff;
        margin: 0 0 5px 0;
    }

    .flip_box_5 .back p {
        color: #fff;
    }

    .flip_box_5 .back .line {
        width: 30px;
        height: 2px;
        background-color: #fff;
        margin: 2px 0 10px 0;
    }

    .flip_box_5 .back .backp {
        margin: 10px 0;
        display: inline-block;
    }

        .flip_box_5 .back .backp img {
            float: right;
            border-radius: 4px;
            -moz-border-radius: 4px;
            -webkit-border-radius: 4px;
            overflow: hidden;
            width: 60px;
            height: 60px;
            margin: 15px 0;
        }

    .flip_box_5 .back .back_social {
    }

        .flip_box_5 .back .back_social a {
            text-align: center;
            background-color: #22bb75;
            border: 1px solid #fff;
            width: 40px;
            height: 40px;
            padding: 9px 0;
            margin: 0 3px;
            display: inline-block;
            border-radius: 50%;
            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;
        }

            .flip_box_5 .back .back_social a span.social {
                background-color: #fff;
                font-size: 17px;
                border-radius: 50%;
                -moz-border-radius: 50%;
                -webkit-border-radius: 50%;
            }

            .flip_box_5 .back .back_social a:hover {
                background-color: #fff;
                color: #fff;
            }

                .flip_box_5 .back .back_social a:hover span.social {
                    background-color: #22bb75;
                }


.flip_box_6 .front .bottom {
    padding: 20px;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
}

.flip_box_6 .front h3 {
    font-size: 14px;
    color: #333;
    font-weight: normal;
    margin: 0;
}

.flip_box_6 .front h4 {
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

.flip_box_6 .front .Price .Priceleft {
    font-size: 15px;
    color: #E4AA0D;
    float: left;
}

    .flip_box_6 .front .Price .Priceleft span.glyphicons {
        margin: 0 2px 0 0;
    }

.flip_box_6 .front .Price .Priceright {
    font-size: 14px;
    color: #22bb75;
    text-transform: uppercase;
    font-weight: bold;
    float: right;
}

.flip_box_6 .back {
    background-color: #22bb75;
    padding: 25px;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
}

    .flip_box_6 .back h3 {
        font-size: 14px;
        color: #fff;
        font-weight: bold;
        margin: 0;
    }

    .flip_box_6 .back h4 {
        font-size: 14px;
        color: #fff;
        font-weight: bold;
        text-transform: uppercase;
    }

    .flip_box_6 .back p {
        color: #fff;
        line-height: 22px;
    }

    .flip_box_6 .back a.but {
        font-size: 12px;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        padding: 9px 28px;
        display: inline-block;
        margin: 10px 0;
        transition: background-color ease-in 200ms,border ease-in 200ms;
        -moz-transition: background-color ease-in 200ms,border ease-in 200ms; /* Firefox 4 */
        -webkit-transition: background-color ease-in 200ms,border ease-in 200ms; /* Safari and Chrome */
        -o-transition: background-color ease-in 200ms,border ease-in 200ms; /* Opera */
        -ms-transition: background-color ease-in 200ms,border ease-in 200ms; /* IE9? */
    }

        .flip_box_6 .back a.but:hover {
            background-color: #444;
            border: 1px solid transparent;
            text-decoration: none;
        }
/*sync carousel */
.sync_carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.sync_carousel .carousel_main,
.sync_carousel .carousel_nav {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
    -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);
    display: none;
    margin: 0px;
    padding: 0px;
}

.sync_carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.sync_carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

    .sync_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;
    }

.sync_carousel .owl-item {
    float: left;
}

.sync_carousel .owl-pagination {
    text-align: center;
    padding: 20px 0 0;
    position: absolute;
    top: 100%;
    left: 2;
    width: 100%;
}

.sync_carousel .owl-page {
    cursor: pointer;
    width: 21px;
    height: 21px;
    border: 2px solid #2e2e2e;
    margin: 0 5px;
    display: inline-block;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

    .sync_carousel .owl-page.active {
    }

.sync_carousel .owl-buttons .owl-prev,
.sync_carousel .owl-buttons .owl-next {
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 41px;
    height: 65px;
    line-height: 65px;
    font-size: 0px;
    text-align: center;
    cursor: pointer;
    margin: 0;
    transition: border ease-in 200ms;
    -moz-transition: border ease-in 200ms; /* Firefox 4 */
    -webkit-transition: border ease-in 200ms; /* Safari and Chrome */
    -o-transition: border ease-in 200ms; /* Opera */
    -ms-transition: border ease-in 200ms; /* IE9? */
}

.sync_carousel .owl-buttons .owl-next {
    left: auto;
    right: 0;
}

    .sync_carousel .owl-buttons .owl-prev:before,
    .sync_carousel .owl-buttons .owl-next:before {
        content: "";
        border-left: 2px solid #A6A6A6;
        border-bottom: 2px solid #A6A6A6;
        width: 24px;
        height: 24px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -12px 0 0 -12px;
        font-size: 20px;
        transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

    .sync_carousel .owl-buttons .owl-next:before {
        border-left: none;
        border-right: 2px solid #A6A6A6;
        margin: -12px 0 0 -18px;
        transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
    }

    .sync_carousel .owl-buttons .owl-prev:hover:before,
    .sync_carousel .owl-buttons .owl-next:hover:before {
        border-left: 2px solid #22BB75;
        border-bottom: 2px solid #22BB75;
    }

    .sync_carousel .owl-buttons .owl-next:hover:before {
        border-left: none;
        border-right: 2px solid #22BB75;
    }


.sync_carousel .grabbing {
}

.sync_carousel .owl-wrapper,
.sync_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);
}

.sync_carousel img {
    max-width: 100%;
}

.sync_carousel_1 .carousel_nav .item {
    cursor: pointer;
    margin: 5px 0;
    text-align: center;
    overflow: hidden;
}

    .sync_carousel_1 .carousel_nav .item .ico {
        width: 130px;
        height: 130px;
        display: inline-block;
        border: 2px solid #e8e8e8;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        position: relative;
    }

        .sync_carousel_1 .carousel_nav .item .ico span.glyphicons {
            font-size: 40px;
            color: #aaa;
            line-height: 126px;
            top: 0;
        }

        .sync_carousel_1 .carousel_nav .item .ico:before,
        .sync_carousel_1 .carousel_nav .item .ico:after {
            content: "";
            position: absolute;
            top: 50%;
            left: 100%;
            border-bottom: 2px solid #e8e8e8;
            width: 100%;
            margin: 0 2px;
        }

        .sync_carousel_1 .carousel_nav .item .ico:after {
            left: auto;
            right: 100%;
        }

.sync_carousel_1 .carousel_nav .owl-item:first-child .ico:after,
.sync_carousel_1 .carousel_nav .owl-item:last-child .ico:before {
    display: none;
}

.sync_carousel_1 .carousel_nav .synced .item .ico {
    border: 2px solid #22BB75;
}

    .sync_carousel_1 .carousel_nav .synced .item .ico span.glyphicons {
        color: #22bb75;
    }

.sync_carousel_1 .carousel_nav {
    padding: 20px 0 30px 0;
}

.sync_carousel_1 .carousel_main {
    text-align: center;
    padding: 0 50px;
}

    .sync_carousel_1 .carousel_main.left {
        text-align: left;
        padding: 0 50px;
    }

    .sync_carousel_1 .carousel_main.right {
        text-align: right;
        padding: 0 50px;
    }

    .sync_carousel_1 .carousel_main .item h4 {
        /* 20240911 (rk) */
        /*
        font-size: 16px;
        line-height: 20px;
        */
        font-size: 20px;
        line-height: 26px;
        color: #333;
        font-weight: normal;
        margin: 20px 0 20px 0;
        letter-spacing: normal;
    }
/* ---- combination filters ---- */
.isotope_grid {
    width: 100%;
    overflow: hidden;
    position: relative;
}

    .isotope_grid .isotope_main {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .isotope_grid .isotope_item {
        width: 0px;
        margin: 0px;
        position: absolute;
        left: 0;
        top: 0;
        overflow: hidden;
    }

        .isotope_grid .isotope_item .pic_box img {
            width: 100%
        }

    .isotope_grid .isotope_group {
        text-align: center;
        padding: 10px 0;
    }

        .isotope_grid .isotope_group a {
            margin: 0px 27px;
            padding: 6px 0px;
            color: #666;
            font-size: 13px;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: color ease-in 200ms,border ease-in 200ms;
            -moz-transition: color ease-in 200ms,border ease-in 200ms; /* Firefox 4 */
            -webkit-transition: color ease-in 200ms,border ease-in 200ms; /* Safari and Chrome */
            -o-transition: color ease-in 200ms,border ease-in 200ms; /* Opera */
            -ms-transition: color ease-in 200ms,border ease-in 200ms; /* IE9? */
        }

            .isotope_grid .isotope_group a:hover,
            .isotope_grid .isotope_group a.active {
                color: #22bb75;
                border-bottom: 2px solid #22bb75;
                text-decoration: none;
            }

.isotope_1 .isotope_item > div {
    margin: 30px 15px 0 15px;
}

.isotope_1 .isotope_item .photo_box .shade {
    background-color: #22bb75;
}

.isotope_1 .isotope_item .photo_box:hover .shade {
    filter: alpha(opacity=90);
    opacity: 0.9;
}

.isotope_1 .isotope_item .photo_box .ico span {
    background-color: transparent;
    border: 1px solid #fff;
}

.isotope_1 .isotope_item .photo_box .ico a:hover span {
    background-color: #fff;
    color: #22bb75;
}
/*home4Page isotope*/
.home4_isotope .isotope_group {
    padding: 0 0 30px;
}

    .home4_isotope .isotope_group a {
        padding: 6px 20px;
        margin: 0 5px;
        border: 1px solid #bbbbbb;
        display: inline-block;
        border-radius: 2px;
        -moz-border-radius: 2px;
        -webkit-border-radius: 2px;
    }

        .home4_isotope .isotope_group a:hover,
        .home4_isotope .isotope_group a.active {
            border: 1px solid #22bb75 !important;
            color: #22bb75;
        }

.home4_isotope .photo_box .ico span {
    background-color: #000000;
    opacity: 0.5;
}

.home4_isotope .photo_box .shade {
    background-color: #22bb75;
}

.home4_isotope .photo_box {
    margin: 0 0 2px 2px;
}

@media only screen and (max-width: 767px) {
    .isotope_grid .isotope_group {
        text-align: left;
    }

    .home4_isotope .isotope_group a {
        margin: 0 2px 5px;
    }

    .home4_isotope .photo_box {
        margin: 0 0 2px 0;
    }
}

/*player*/
.player .Play {
    cursor: pointer;
    display: inline-block;
}

.player.Button {
    display: block !important;
    width: auto;
    height: auto;
    box-shadow: none;
    position: absolute;
    z-index: 1000;
    background-color: #F00;
    color: #FFF;
}

.player .YTPOverlay {
    background-color: #000;
    filter: alpha(opacity=20);
    opacity: 0.2;
}

.player .Play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.player_boxes {
    padding: 50px 40px;
    text-align: center;
    background-color: rgba(255,255,255,0.6);
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

    .player_boxes.dark {
        background-color: rgba(0,0,0,0.6);
    }


    .player_boxes .player_title {
        font-size: 50px;
        font-weight: normal;
        letter-spacing: 3px;
        line-height: 1.1;
    }

    .player_boxes .player_line {
        width: 70px;
        margin: 20px auto;
    }

    .player_boxes .player_smalltitle {
        font-size: 16px;
        letter-spacing: 2px;
        margin-bottom: 20px;
        font-weight: normal;
        line-height: 1.2;
    }

    .player_boxes .player_content {
        color: #666666;
        margin: 0px 10% 30px;
    }

    .player_boxes .Button_default {
        margin-bottom: 10px;
    }

    .player_boxes.dark .player_smalltitle,
    .player_boxes.dark .player_content {
        color: #FFF;
    }


/*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;
    }


@media only screen and (min-width: 1200px) {
    .Testimonials_1left {
        width: 260px;
    }

    .carousel_1 .item .photo_box .content {
        padding: 35px;
    }

    .carousel_3 .owl-buttons .owl-prev,
    .carousel_3 .owl-buttons .owl-next,
    .carousel_10 .owl-buttons .owl-prev,
    .carousel_10 .owl-buttons .owl-next {
        left: -55px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        margin: -25px 0 0 0;
    }

    .carousel_3 .owl-buttons .owl-next,
    .carousel_10 .owl-buttons .owl-next {
        left: auto;
        right: -50px;
    }

    .carousel_7 .owl-buttons .owl-prev {
        left: -50px;
    }

    .carousel_7 .owl-buttons .owl-next {
        left: auto;
        right: -50px;
    }

    .flip_box_5 .back .backp {
        margin: 10px 0 20px 0;
    }

    .flip_box_5 .back .back_social {
        margin-top: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel_2 .owl-buttons,
    .carousel_3 .owl-buttons,
    .carousel_6 .owl-buttons,
    .carousel_7 .owl-buttons,
    .carousel_9 .owl-buttons,
    .carousel_10 .owl-buttons {
        display: none;
    }

    .Testimonials_1 .dot {
        bottom: 0;
    }

    .Testimonials_1left {
        width: 175px;
    }

    .horizontalTab_Top_3 ul.resp-tabs-list li span,
    .horizontalTab_Top_3 ul.resp-tabs-list li:hover span {
        padding: 9px 20px;
    }

    .quotes_2 blockquote {
        padding: 0;
        text-align: center;
    }

        .quotes_2 blockquote p {
            margin: 0 auto;
        }

        .quotes_2 blockquote small {
            position: relative;
        }

            .quotes_2 blockquote small img {
                width: 40px;
                left: auto;
                margin: -10px 0 0 0px;
            }

    .horizontalTab_Top_4 ul.resp-tabs-list li span {
        padding: 13px 17px;
    }

    .home5Tab1_left {
        background: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/home5_Tab_shadow1.png") center bottom no-repeat;
    }

    .home5Tab1_left {
        margin-right: 15px;
    }

    .home5Tab_icon1 span.glyphicons {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .number_Animation_1 .number_Animation_bg {
        padding: 10px 0;
    }

    .number_Animation_1 .number {
        line-height: normal;
    }

    .isotope_1 .isotope_group a {
        margin: 0px 5px;
        display: inline-block;
    }

    .text_sytle_6 .dateandtitle .title {
        margin: 0 0 0 7px;
        padding: 0 0 0 7px;
    }

    .isotope_1 .isotope_group {
        padding: 10px 0;
    }

    .isotope_1 .isotope_item > div {
        margin: 20px 0 0 0;
    }

    .price-table3 [class*="col-sm-4"] {
        padding-right: 15px;
        padding-left: 15px;
    }

    .price-table3 .best_value {
        margin: 0;
    }

    .price-table3 [class*="col-sm-4"] {
        margin-bottom: 15px;
    }

    .price-table3 .best_value .price_title {
        padding: 22px 0;
    }

    .price-table3 .best_value .price_holder a.btn {
        margin: 40px 0;
    }

    .carousel_1 .item {
        padding: 0;
    }

        .carousel_1 .item .photo_box .content {
            padding: 10px;
        }

        .carousel_1 .item .content_sytle_2 .content h3 {
            margin: 0 0 10px 0;
        }

        .carousel_1 .item .content_sytle_2 .content p {
            padding: 0 0 10px 0;
        }

    .carousel_2 .owl-buttons,
    .carousel_3 .owl-buttons,
    .carousel_6 .owl-buttons,
    .carousel_7 .owl-buttons,
    .carousel_9 .owl-buttons,
    .carousel_10 .owl-buttons {
        display: none;
    }

    .carousel_4 .owl-page {
        background-color: #aaa;
    }

    .Testimonials_1left {
        display: none;
    }

    .Testimonials_3 blockquote,
    .Testimonials_7 blockquote {
        padding: 30px;
    }

        .Testimonials_3 blockquote:before,
        .Testimonials_7 blockquote:before {
            left: -7px;
            font-size: 100px;
        }

        .Testimonials_3 blockquote:after,
        .Testimonials_7 blockquote:after {
            right: 10px;
            font-size: 100px;
        }

        .Testimonials_3 blockquote p,
        .Testimonials_7 blockquote p {
            padding: 0;
        }


    .verticalTab_Left_1 .resp-tabs-container .resp-accordion span em.glyphicons,
    .verticalTab_Right_1 .resp-tabs-container .resp-accordion span em.glyphicons,
    .horizontalTab_Top_1 .resp-tabs-container .resp-accordion span em.glyphicons {
        font-size: 15px;
        top: 3px;
        margin: 0 15px 0 0;
    }

    .verticalTab_Left_1 .resp_container .resp_margin {
        border-right: 1px solid #ebebeb;
    }

    .verticalTab_Left_1 .resp-tab-active,
    .verticalTab_Left_1 .resp-tab-active:hover,
    .verticalTab_Right_1 .resp-tab-active,
    .verticalTab_Right_1 .resp-tab-active:hover,
    .horizontalTab_Top_1 .resp-tab-active,
    .horizontalTab_Top_1 .resp-tab-active:hover,
    .horizontalTab_Top_2 .resp-tab-active,
    .horizontalTab_Top_2 .resp-tab-active:hover,
    .horizontalTab_Top_3 .resp-tab-active,
    .horizontalTab_Top_3 .resp-tab-active:hover {
        background-color: #22bb75;
    }

    .verticalTab_Right_1 .resp_container .resp_margin {
        border-left: 1px solid #ebebeb;
    }

    .horizontalTab_Top_1 .resp-tabs-container {
        border-bottom: 1px solid #e1e1e1;
    }

    .horizontalTab_Top_2 ul.resp-tabs-list,
    .horizontalTab_Top_4 ul.resp-tabs-list,
    .horizontalTab_Top_5 ul.resp-tabs-list {
        width: auto;
        display: none;
    }

    .horizontalTab_Top_2 .resp-tabs-container,
    .horizontalTab_Top_3 .resp-tabs-container
    .horizontalTab_Top_4 .resp-tabs-container,
    .horizontalTab_Top_5 .resp-tabs-container {
        border: none;
        border-bottom: 1px solid #e1e1e1;
    }

    .horizontalTab_Top_4 .resp-tab-content .resp_margin,
    .horizontalTab_Top_5 .resp-tab-content .resp_margin {
        margin: 15px;
    }

    .horizontalTab_Top_4 h2.resp-accordion.resp-tab-active,
    .horizontalTab_Top_5 h2.resp-accordion.resp-tab-active {
        background-color: #22bb75;
    }

    .horizontalTab_Top_6 .resp-tab-content .resp_margin {
        padding: 15px;
    }

    .horizontalTab_Top_6 .resp-tab-active,
    .horizontalTab_Top_6 .resp-tab-active:hover {
        background-color: #22bb75;
    }

    .horizontalTab_Top_6 .resp-tabs-container .resp-accordion .glyphicons {
        margin-right: 5px;
    }

    .horizontalTab_Top_6 .resp-tabs-container {
        border-bottom: 1px solid #e1e1e1;
    }

    .horizontalTab_Top_6 h2.resp-accordion {
        color: #666666;
    }

    .home5Tab1_left {
        background: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/home5_Tab_shadow1.png") center bottom no-repeat;
    }

    .home5Tab1_left {
        margin-right: 15px;
    }

    .home5Tab_icon1 span.glyphicons {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
    }

    .home5Tab1 > div + div {
        padding-top: 0;
    }

    .home5Tab1 > .row > div {
        padding-bottom: 15px;
    }

    .home5Tab2 {
        padding: 0;
    }

    .home5Tab3 .row > div + div {
        padding-top: 10px;
    }

    .home5Tab4_left {
        margin-right: 0;
    }

    .home5Tab4 .row > div + div {
        padding-top: 10px;
    }

    .quotes_2 blockquote {
        padding: 0;
        text-align: center;
    }

        .quotes_2 blockquote p {
            margin: 0 auto;
        }

        .quotes_2 blockquote small {
            position: relative;
        }

            .quotes_2 blockquote small img {
                width: 40px;
                left: auto;
                margin: -10px 0 0 0px;
            }

    .quotes_1 blockquote span.mark,
    .quotes_3 blockquote span.mark,
    .quotes_4 blockquote span.mark {
        display: none;
    }

    .quotes_1 blockquote,
    .quotes_3 blockquote,
    .quotes_3 blockquote p {
        padding: 0;
    }

    .quotes_4 blockquote {
        padding: 10px;
    }

    .LightBox_Content {
        max-width: 90%;
    }
}

@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
    }
}

/*print*/
@media print {
    /*	a:link:after,  article a[href^=http]:after {
		content: " ";
		}
	.navigation_mobile,
	#search2,
	#mobile_menu {
		display:none;
		}*/
    .animation {
        opacity: 1;
    }

    .animated,
    .animated .animation_item {
        -webkit-animation-name: none !important;
        -moz-animation-name: none !important;
        -o-animation-name: none !important;
        animation-name: none !important
    }
}



.chart_list_service02 {
    text-align: center;
}

.chart_list_service02 .percentage4 {
    margin: auto auto 8px;
    position: relative;
    color: #fff;
}

.chart_list_service02 .percentage4 .percentage_inner {
    font-size: 45px;
    left: 50%;
    top: 50%;
    position: absolute;
    text-align: center;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    line-height: 1.2;
    color: #fff;
    margin: -25px 0 0 -80px;
}

.chart_list_service02 .percentage4 .percentage_inner p {
    font-size: 13px;
}

.chart_list_service02 {
    color: #fff;
}

.chart_list_service02 h2 {
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    padding: 35px 0;
}

.chart_list_service02 p {
    margin: 0 0 20px 0;
}

/*****************************************************************************/
/*** css ***/
/*****************************************************************************/

#dnn_wrapper,.dnn_layout{
   max-width:100%;
}
#Body{
	color:#666666;
}
html,body{
	margin:0px; 
	height: 100%; 
	padding:0px; 
	font:normal 12px/1.6 'Open Sans', Arial; 
	color:#666666;
}
button, input, select, textarea, blockquote{
	font-family:'Open Sans';
}
p{
	margin:0px 0px 8px 0px;
}
header,nav,section,footer{
	display:block;
}
.cke_editable .animation {
	opacity: 1;
}
A,
A:link{
	text-decoration:none;
}
A:active{
	text-decoration: none; 
}
A:visited{
	text-decoration: none; 
}
A:hover{
	text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6{
	letter-spacing:normal;
	margin:0 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:inline-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;
}


/**************** Login page******************/
@media (max-width:767px) {
.loginContent .LoginPanel{
	width:100% !important;
}
.loginContent .dnnFormItem .dnnLoginRememberMe{
	white-space:nowrap;
}
 	
.loginContent .dnnFormLabel {
	 display:block !important;
	 text-align:left !important;
	}
#dnn_dnnSEARCH2_ClassicSearch .searchInputContainer ul.searchSkinObjectPreview{
	width:100%;
	}
}
#dnn_dnnSEARCH1_ClassicSearch .searchInputContainer ul.searchSkinObjectPreview{
	z-index:905;
	}
/**************** register page******************/


@media (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 (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_area {
	margin: 5px 0;
	height: 50px;
	line-height: 50px;
	background: #eee;
	border: 1px solid #ccc;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	font-size: 13px;
	font-weight: bold;
	color: #666;
	}
/* ********** Buttons Style ************** */
a.Button_blue {
	padding:12px 30px;
	margin:0px 10px;
	position:relative;
	font-size:14px;
	display:inline-block;
	white-space:nowrap;
	margin-bottom:10px;
	color:#FFFFFF !important;
	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? */
}
*+html a.Button_blue{
	display:inline;
}
a.Button_blue:hover {
	text-decoration:none;
	background:#555555;
}
a.Button_blue2{
	padding:8px 15px;
}

a.Button_blue span.glyphicons,
a.Button_blue2 span.glyphicons{
	font-size:24px;
	vertical-align:bottom; 
	margin-right:5px;
}
/* ********** Pane Style ************** */
[class*="Pane"],
.row [class*="Pane"] {
	padding:0px 0px 40px 0px;
}
.HeadPane_mobile{
	padding:0;
}

.DNNEmptyPane{
	display:none;
}
.pt40{
	padding-top:40px;
	}
.pb40{
	padding-bottom:40px;
	}
.pt0{
	padding-top:0 !important;
	}
.pb0{
	padding-bottom:0 !important;
	}
.mt40{
	margin-top:40px;
	}
.mb40{
	margin-bottom:40px;
	}
.mt0{
	margin-top:0 !important;
	}
.mb0{
	margin-bottom:0 !important;
	}
/*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;}
.pb60 {
	padding-bottom: 60px;
	}
.pt60 {
	padding-top: 60px;
	}
.mt60{
	margin-top:60px;
	}
.mb60{
	margin-bottom:60px;
	}
@media only screen and (min-width: 768px) and (max-width: 991px) {
		.pb60 {
			padding-bottom: 30px;
			}
		.pt60 {
			padding-top: 30px;
			}	
		.mt60{
			margin-top:30px;
			}
		.mb60{
			margin-bottom:30px;
			}
	}
@media only screen and (max-width: 767px) {
		.mt-40 {margin-top: 30px;}
		.mb-40 {margin-bottom: 30px;}
		.pt-40 {padding-top: 30px;}
		.pb-40 {padding-bottom: 30px;}
		.mt-50 {margin-top: 30px;}
		.mb-50 {margin-bottom: 30px;}
		.pt-50 {padding-top: 30px;}
		.pb-50 {padding-bottom: 30px;}
		.pb60 {
			padding-bottom: 20px;
			}
		.pt60 {
			padding-top: 20px;
			}	
		.mt60{
			margin-top:20px;
			}
		.mb60{
			margin-bottom:20px;
			}
	}

.BannerPane,
.top_dp .TopDPane,
.LightGreyBGPane,
.LightGreyBGPaneB,
.row .BotBGPaneA,
.row .BotBGPaneB,
.FootPane,
.ConPaneB,
.ConPaneD,
.ConPaneF,
.header2 .HeadPane,
.header3 .HeadPane,
.HeadPaneB{
	padding:0;
	}
.Full_Screen_PaneC hr.dividers_4{
	margin-top:0;
	margin-bottom:0;
	}
	
.BannerPane.DNNEmptyPane{
	display:block;
	width:100%;
	background-color:#FFF;
}
/* ********** Container Style ************** */
.Head{ 
	font-size:13px;
	font-weight:bold;
	color:#000; 
	font-family:'Open Sans', Arial;
}
.SubHead{ 
	font-size:13px;
	color:#000; 
	font-family:'Open Sans', Arial;
}
.SubSubHead{ 
	font-size:13px; 
	color:#000; 
	font-family:'Open Sans', Arial;
}
.Normal{ 
	font-size:12px;
	line-height:1.6;
	color:#666666; 
	font-family:'Open Sans', Arial;
}

/* ********** Login Style ************** */


/* ********** User Style ************** */


/* ********** Date Style ************** */
.date,
a.date:link,
a.date:active,
a.date:visited{
	color:#606060;	
	text-decoration:none;	
	font-weight:normal;	
	font-size:12px;
}
a.date:hover{
	color:#E165DD;
	}

/* ********** Footer Style ************** */
.footer,
a.footer:link,
a.footer:active,
a.footer:visited{
	font-size:12px;
	color:#bbb;
	text-decoration:none;
	font-weight:Normal;
}
a.footer:hover{
	text-decoration:none; 
	font-weight:Normal; 
	text-decoration:underline; 
}
/* ********** Privacy/Terms Style ************** */
.terms,
a.terms:link,
a.terms:active,
a.terms:visited{
	font-size:12px;	
	color:#bbb;	
	text-decoration:none;	
	font-weight: normal;	
	border-bottom:0px dotted;
}
a.terms:hover{
	text-decoration:none;
	font-weight:Normal; 
	text-decoration:underline;
}

/* ********** Links Style ************** */
.links,
a.links:link,
a.links:active,
a.links:visited{
	font-size:13px; 
	color:#9e9d9d; 
	text-decoration:none; 
	font-weight:normal;
	padding:0 0px;
}	
a.links:hover{
	color:#767676;
	text-decoration:underline;
	font-weight:normal;
}

/* ********** Breadcrumb Style ************** */
.breadcrumbicon_left{
	float:left;
	}
.breadcrumb_Pane{
	float:right;
	}






/* ********** Other Style ************** */	
.dnn_layout{
	width:964px;
	margin:0px auto;
}
.head_mid,
.content_mid,
.bottom_mid,
.footer_mid{
	padding:0 20px;
	}
/* ********** HEADER ************** */	
.languageBox {
	float: left;
	white-space: nowrap;
	height: 34px;
	line-height: 34px;
	padding: 0px 15px;	
}

.languageBox img {
	width: 20px;
}

.languageBox span img {
	margin-right: 7px;
	filter: alpha(opacity=50);
	opacity: 0.5;
	vertical-align: middle;
}

*+html .languageBox span {
	font-size: 30px;
}

.languageBox span.selected img {
	filter: alpha(opacity=100);
	opacity: 1;
}




/* ********** BANNER ************** */
.banner_title_1{
	font-size:100px;
	color:#fff;
	text-align:center;
	line-height:80px;
	font-family: Arial, Helvetica, sans-serif;
	text-transform:uppercase;
	letter-spacing:normal;
	text-shadow:1px 1px 3px rgba(0,0,0,0.7);
}
.banner_content_1{
	font-size:20px;
	color:#fff;
	text-align:center;
	line-height:80px;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing:3px;
	text-shadow:1px 1px 3px rgba(0,0,0,0.7);
}

.banner_title_2{
	font-size:100px;
	color:#444;
	text-transform:uppercase;
	letter-spacing:3px;
	line-height:80px;
	font-family:Arial, Helvetica, sans-serif;
}
.banner_content_2{
	color:#444;
	font-size:20px
	;line-height:30px;
	font-family:Arial, Helvetica, sans-serif;
	letter-spacing: 2px;
}

.homepage1_banner1line{
	width:100px;
	height:2px;
	background-color:#ffffff;
	margin:0 auto;
	}
.tp-caption a.bannerbutton{
	font-size:16px;
	line-height:20px;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding: 14px 45px;
	}
.tp-caption a.bannerbutton:hover{
	}
.BannerPane_right .tp-caption a.bannerbutton{
	margin:0 10px 0 0;
	}
.homepage1_banner2line{
	width:100px;
	height:2px;
	}

.tp-banner-container .tp-leftarrow.round,
.tp-banner-container .tp-rightarrow.round {
	width:70px;
	height:120px;
	background:none;
	background-color:rgba(0,0,0,0.4);
	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? */
	left:0 !important;
}
.tp-banner-container .tp-rightarrow.round {
	left:auto!important;
	right:0!important;
}
.tp-banner-container .tp-leftarrow:hover.round,
.tp-banner-container .tp-rightarrow:hover.round{
	background:#07c6f5;
}
.tp-banner-container .tp-leftarrow.round:before{
	width:30px;
	height:30px;
	content:"";
	position:absolute;
	right: 50%;
	top: 50%;
	margin: -15px -20px 0 0;
	border-top:5px solid #fff;
	border-right:5px solid #fff;
	-ms-transform:rotate(-135deg); /* IE 9 */
	-moz-transform:rotate(-135deg); /* Firefox */
	-webkit-transform:rotate(-135deg); /* Safari and Chrome */
	-o-transform:rotate(-135deg); /* Opera */
}
.tp-banner-container .tp-rightarrow.round:before{
	width:30px;
	height:30px;
	content:"";
	position:absolute;
	right: 50%;
	top: 50%;
	margin: -15px -10px 0 0;
	border-top:5px solid #fff;
	border-right:5px solid #fff;
	-ms-transform:rotate(45deg); /* IE 9 */
	-moz-transform:rotate(45deg); /* Firefox */
	-webkit-transform:rotate(45deg); /* Safari and Chrome */
	-o-transform:rotate(45deg); /* Opera */
}
.tp-banner-container .tp-bullets.simplebullets.round .bullet{
	width:15px;
	height:15px;
	background:#FFF;
	margin:3px;
	border:4px solid #FFF;
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
	transition: 		all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.tp-banner-container .tp-bullets.simplebullets.round .bullet.selected,
.tp-banner-container .tp-bullets.simplebullets.round .bullet:hover{
	background:#22bb75;
}
.tp-banner-container .tp-leftarrow:hover.round,
.tp-banner-container .tp-rightarrow:hover.round,
.tp-banner-container .tp-bullets.simplebullets.round .bullet.selected,
.tp-banner-container .tp-bullets.simplebullets.round .bullet:hover{
}

/* ********** NAV ************** */	
/*main menu*/
.dnn_menu {
	position: relative;
	z-index: 904;
}
/*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;
}
#dnngo_megamenu .primary_structure > li > a {
	transition: 		background-color ease-in 200ms,color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms,color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms,color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms,color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms,color ease-in 200ms; /* IE9? */

}
*+html #dnngo_megamenu .primary_structure > li > a {
	display: inline;
}


#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;
}

/*sub*/
#dnngo_megamenu .dnngo_menuslide {
	display: none;
	position: absolute;
	top: 100%;
	left: 0px;
	z-index: 991;
	margin:0;
	padding:0;
}
/*dnngo_slide_menu*/
#dnngo_megamenu .dnngo_slide_menu {
	margin: 0;
	padding:0;
	white-space:nowrap;
	box-shadow: 0 0 2px rgba(0,0,0,0.8);
	-moz-box-shadow: 0 0 2px rgba(0,0,0,0.8);
	-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.8);
}
#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;
	box-shadow: 0 0 2px rgba(0,0,0,0.8);
	-moz-box-shadow: 0 0 2px rgba(0,0,0,0.8);
	-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.8);
}
#dnngo_megamenu .dnngo_slide_menu li {
	position: relative;
	list-style: none;
}
#dnngo_megamenu .dnngo_menuslide ul li:last-child{
	border-bottom:none;	
	}
#dnngo_megamenu .dnngo_slide_menu li a {
	text-decoration:none;
	text-align:left;
	padding: 0 16px 0 0;
	line-height:45px;
	font-size:12px;
	display: block;
	color: #bbb;
	transition: 		background-color ease-in 200ms,color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms,color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms,color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms,color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms,color ease-in 200ms; /* IE9? */
}

#dnngo_megamenu .dnngo_slide_menu li a:hover,
#dnngo_megamenu .dnngo_slide_menu li.menu_hover > a {
}

#dnngo_megamenu .dnngo_slide_menu li a span{
	display: block;
	padding: 0 30px 0 17px;
	margin: 0px;
	background: none;
	width: auto;
	white-space: nowrap;
	}

#dnngo_megamenu .dnngo_slide_menu li.dir > a span:before {
	content: "\E224";
	font-family: 'Glyphicons Regular';
	font-size: 11px;
	right: 14px;
	line-height: normal;
	top: 14px;
	position: absolute;
}
#dnngo_megamenu .dnngo_slide_menu li.dir > a:hover span:before,
#dnngo_megamenu .dnngo_slide_menu li.menu_hover > a span:before{
	}
/*dnngo_boxslide*/

#dnngo_megamenu .dnngo_boxslide {
	clear: both;
	overflow: hidden;
	width: 100%;
	margin: auto;
	text-align:left;
	box-shadow: 0 0 2px rgba(0,0,0,0.8);
	-moz-box-shadow: 0 0 2px rgba(0,0,0,0.8);
	-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.8);
	box-sizing:				border-box;
	-moz-box-sizing: 		border-box;
	-webkit-box-sizing: 	border-box;
}

#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;
	padding:15px;
}

#dnngo_megamenu .dnngo_boxslide .menu_rightbox {
	float:left;
	padding:5px 15px 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: 0 0 5px 20px;
	font-size:12px;
}

#dnngo_megamenu .dnngo_boxslide .menu_centerbox > ul{
	padding:0 10px;
}  
#dnngo_megamenu .dnngo_menuslide .dnngo_slide_menu, 
#dnngo_megamenu .dnngo_slide_menu .dnngo_submenu, 
#dnngo_megamenu .dnngo_boxslide, #dnngo_megamenu .submenu_box {  
    margin-top: -2px;
    padding: 10px 0;
}
#dnngo_megamenu .dnngo_boxslide .menu_centerbox > ul > li {
	display:inline-block;
	vertical-align:top;
	margin-right:-6px;
	box-sizing:				border-box;
	-moz-box-sizing: 		border-box;
	-webkit-box-sizing: 	border-box;
	padding:0px 10px;
}

*+html #dnngo_megamenu .dnngo_boxslide .menu_centerbox > ul >li{
	display:inline;
}
#dnngo_megamenu .dnngo_boxslide .menu_centerbox > ul > li > a > span{
	font-size:14px;
	border-bottom:1px solid #666;
	margin-bottom:10px;
	padding: 5px 10px 15px 0;
	display: block;
}

#dnngo_megamenu .dnngo_boxslide .menu_centerbox > ul > li > a > span, 
#dnngo_megamenu .dnngo_boxslide .dnngo_masonrymenu > ul > li > a > span,
#dnngo_megamenu .dnngo_boxslide .mega_title {
 font-size:14px;
	border-bottom:1px solid #666;
	margin-bottom:10px;
	padding: 5px 10px 15px 0;
	display: block;  
    
}
#dnngo_megamenu .dnngo_boxslide .menu_centerbox > ul > li > a > span:before{
}
#dnngo_megamenu .dnngo_boxslide .menu_centerbox > 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 {
	font-size:13px;
	display:block;
	width:100%;
	position:relative;
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */

}
#dnngo_megamenu .dnngo_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: "\E224";
	font-family: 'Glyphicons Regular';
	font-size: 8px;
	left:-20px;
	line-height: normal;
	top:5px;
	position: absolute;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	#dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li a span:before{top:1px;}	
}
@-moz-document url-prefix() {
   #dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li a span:before{top:5px;}
}


#dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li a:hover span:before{
}

#dnngo_megamenu .dnngo_boxslide .menu_topbox {
	width: 100%;
	padding:15px;
}

#dnngo_megamenu .dnngo_boxslide .menu_bottombox {
	width: 100%;
	padding:15px;
}

#dnngo_megamenu h2.mega_title {
	font-weight:normal;
	font-size: 14px;
	border-bottom: 1px solid #666;
	margin:0 0 17px !important;
	padding: 0 10px 15px 0 !important;
	line-height:22px!important;
	line-height: normal;
	font-family: 'Open Sans'; 
}
/*roll_menu */
@-webkit-keyframes menuFlip {
	 0% {
		 -webkit-transform:perspective(1000px) rotateX(-90deg);
	}
	100% {
		 -webkit-transform:perspective(1000px) rotateX(0deg);
	}
}
@-moz-keyframes menuFlip {
	 0% {
		 -moz-transform:perspective(1000px) rotateX(-90deg);
	}
	100% {
		 -moz-transform:rotateX(0deg)
	}
}
 @-o-keyframes menuFlip {
	 0% {
		 -o-transform:perspective(1000px) rotateX(-90deg);
	}
	100% {
		 -o-transform:rotateX(0deg)
	}
}
 @keyframes menuFlip {
	 0% {
		 transform:perspective(1000px) rotateX(-90deg);
	}
	100% {
		 transform:rotateX(0deg)
	}
}
.roll_menu.roll_activated {
	top:0px!important;
	left:0;
	opacity:1!important;
	-webkit-animation-name: menuFlip;
	-moz-animation-name: menuFlip;
	-o-animation-name: menuFlip;
	animation-name: menuFlip;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-animation-duration: 0.5s;
	-moz-animation-duration: 0.5s;
	-ms-animation-duration: 0.5s;
	-o-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	-o-transform-origin: 50% 0;
	transform-origin: 50% 0;
}
/*roll_menu end*/
.about_list{
	margin:10px 0 0 0;
	padding:0;
	list-style-type:none;
	border-bottom:1px solid #424242;
	}
.about_list li{
	list-style-type:none;
	border-bottom:1px solid #424242;
	font-size: 13px;
	padding:10px 0;
	}
.about_list li:last-child{
	border-bottom:none;
	}
.about_list li span{
	font-size: 18px;
	top: 5px;
	margin: 0 15px 0 5px;
	}

/* ********** CONTENT ************** */	
/*Left Menu*/
#left_menu {
	padding: 0px 0px 0px;
	margin: 0px;
	min-height: 300px;
}
#left_menu .menu_arrow{
	display:none;
	}
#left_menu img {
	display: none;
}

#left_menu ul {
	padding: 0px;
	margin: 0px;
}

#left_menu ul li {
	list-style: none;
}

#left_menu ul li a {
	display: block;
	text-transform:capitalize;
	font-family:'Open Sans';
 	font-size:14px;
	text-decoration: none;
	padding: 13px 10px 13px 20px;
	color: #555555;
	line-height: 19px;
	margin-bottom: 7px;
	background-color:#EEEEEE;
	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? */
}

#left_menu ul li.dir > a:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 0px;
	height: 0px;
	border-style:solid;
	border-color:transparent transparent transparent #666;
	border-width:5px;
	margin:-4px 0 0 0;

}

#left_menu > .menu_main > .multi_menu > ul > li > a:hover,
#left_menu > .menu_main > .multi_menu > ul > li.current > a:hover,
#left_menu > .menu_main > .multi_menu > ul > li.current > a {
	color: #FFF;
}

#left_menu > .menu_main > .multi_menu > ul > li > a:hover:before{
	border-color:transparent transparent transparent #fff;
}

#left_menu > .menu_main > .multi_menu > ul > li.current > a:hover:before,
#left_menu > .menu_main > .multi_menu > ul > li.current > a:before{
	border-color:#fff transparent transparent transparent;
}

#left_menu ul ul {
	padding:0;
	margin:0;
	display: none;
}

#left_menu ul ul ul {
	padding: 5px 0px 0;
	display: none;
	margin-bottom: 0px;
	border: none;
	padding: 0;
	margin-bottom: 0px;
}

#left_menu ul li.current > ul {
	display: block;
}

#left_menu ul ul .current > ul {
	display: block;
}

#left_menu ul li li {
	margin: 0;
	border-bottom: none;
	padding: 0 11px;
}

#left_menu ul li li a {
	background-color:transparent;
	position: relative;
	padding: 5px 5px 5px 15px;
	line-height: 18px;
	font-size: 12px;
	border: none;
	white-space: normal;
	color: #555;
	text-transform: none;
}

#left_menu ul li li:last-child a {
}

#left_menu ul ul ul li:last-child a {
}

#left_menu .multi_menu ul ul li a:before {
	right: 5px;
}
#left_menu > .menu_main > .multi_menu > ul > li > a:hover ,
#left_menu > .menu_main > .multi_menu > ul > li.current > a:hover,
#left_menu > .menu_main > .multi_menu > ul > li.current > a {
}
#left_menu ul li li a:hover,
#left_menu ul li li.current > a {
}
#left_menu ul li li a:hover:before{
}
#left_menu ul li li.current > a:before {
}
/*--------- Left Menu End----------*/
/*anchor Nav*/
#anchorNav {
	position:fixed;
	right:50px;
	top:30%;
	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: 20px;
		height: 20px;
		border-radius: 50%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		/*	background-color:rgba(0,0,0,0.4);*/
		background-color: #93ab56;
		text-indent: -200px;
		overflow: hidden;
		transition: background-color ease-out 1000ms;
		-moz-transition: background-color ease-out 1000ms; /* Firefox 4 */
		-webkit-transition: background-color ease-out 1000ms; /* Safari and Chrome */
		-o-transition: background-color ease-out 1000ms; /* Opera */
		-ms-transition: background-color ease-out 1000ms; /* IE9? */
	}
#anchorNav li:hover i,
#anchorNav li.active i{
}
#anchorNav li span{
	position:absolute;
	right:100%;
	top:-5px;
	background-color:#7f7f7f;
	padding:9px 13px;
	white-space:nowrap;
	line-height:1;
	color:#FFF;
	margin-right:10px;
	filter:alpha(opacity=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? */
}
#anchorNav li span:after{
	content:"";
	border:5px solid transparent;
	border-left-color:#7f7f7f;
	position:absolute;
	right:-10px;
	top:50%;
	margin-top:-5px;
}
#anchorNav li:hover span{
	filter:alpha(opacity=100);
	opacity:1;
	visibility:visible;
}





/* ********** Source Code style ************** */	
/*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/20064-UnlimitedColorsPack-046/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/20064-UnlimitedColorsPack-046/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;
}
/*list*/
.list_style {
	margin:0px;
	padding:0px;
}
.list_style li {
	list-style:none;
	padding:3px 0px;
}
.list_style li .glyphicons,
.list_style li .social{
	margin-right:5px;
	color:#22bb75;
	margin:0 10px 0 0;
}
/*dividers*/
.dividers_1{
	border:none;
	background:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/dividers_1.png") repeat-x left center;
	height:5px;
	width:100%;
	clear:both;
	display:block;
	overflow:hidden;
}
.dividers_2{
	border:none;
	border-bottom:1px solid #e4e4e4;
	height:0px;
	width:100%;
	clear:both;
	display:block;
	overflow:hidden;
}
.dividers_3{
	border: none;
	border-bottom: 1px solid #e4e4e4;
	text-align: center;
	height: 0px;
	width: 100%;
	clear: both;
	display: inline-block;
	margin: 30px 0;
}
.dividers_3 span{
	font-size: 17px;
	display: inline-block;
	width: 46px !important;
	height: 46px;
	top: -23px;
	line-height: 43px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	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;
	}
.dividers_4 {
	border: none;
	background: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/line4.png") repeat-x left center;
	height: 10px;
	width: 100%;
	clear: both;
	display: block;
	overflow: hidden;
	}
.dividers_5{
	border: none;
	border-top: 1px solid #e4e4e4;
	border-bottom: 1px solid #e4e4e4;
	text-align: center;
	height: 4px;
	width: 100%;
	clear: both;
	display: inline-block;
	margin: 30px 0;
}
.dividers_5 span{
	font-size: 24px;
	display: inline-block;
	width: 56px !important;
	height: 56px;
	top: -28px;
	line-height: 56px;
	margin: 0 auto;
	background-color: #FFF;
	padding: 0;
	color: #e4e4e4;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	}
.dividers_6 {
	border: none;
    border-bottom: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb;
    clear: both;
    display: block;
    height: 4px;
    overflow: hidden;
    width: 100%;
}
.dividers_7{
	border:none;
	background:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/dividers_7.png") left center;
	height:5px;
	width:100%;
	clear:both;
	display:block;
	overflow:hidden;
}
.dividers_8{
	border: none;
	border-bottom: 1px solid #e4e4e4;
	text-align: center;
	height: 0px;
	width: 100%;
	clear: both;
	display: inline-block;
	margin: 30px 0;
}
.dividers_8 span{
	top: -20px;
	position: relative;
	font-size: 12px;
	display: inline-block;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border: 1px solid #E4E4E4;
	margin: 0 auto;
	background: #FFF;
	padding: 10px 29px;
	color: #9d9d9d;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	}
/*source_code*/
.source_code pre,
.source_code .source_box {
    display: none;
}

.source_code .source_box pre {
	display: block;
}
/*SectionStyles*/
.SectionStyles1{
	text-align:left;
	}
.SectionStyles1 h3{
	font-size:20px;
	color:#22BB75;
	font-weight: normal;
	line-height: normal;
	}
.SectionStyles1 p{
	color:#666;
	margin:0;
	}
.SectionStyles2{
	text-align:center;
	background-color:#F2F2F2;
	}
.SectionStyles2 h3{
	font-size:20px;
	color:#22BB75;
	font-weight: normal;
	margin:0 0 20px 0;
	line-height:normal;
	}
.SectionStyles2 p{
	color:#666;
	margin:0;
	}
.SectionStyles3{
	background-image:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/Sectionbg3.jpg");
	background-position:center center;
	background-attachment:fixed;
	background-size:cover;
	background-repeat:no-repeat;
	backface-visibility: hidden;
	}
.SectionStyles3_bg{
	text-align:center;
	background-image:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/Sectionbg7.png");
	background-repeat:repeat;
	}
.SectionStyles3 h3{
	font-size:36px;
	color:#fff;
	font-weight: normal;
	line-height: normal;
	margin:0 0 20px 0;
	}
.SectionStyles3 p{
	color:#fff;
	margin:0;
	}
.SectionStyles4{
	background-image:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/Sectionbg4.jpg");
	background-position:center center;
	background-attachment:fixed;
	background-size:cover;
	background-repeat:no-repeat;
	}
.SectionStyles4_bg{
	text-align:center;
	background-image:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/Sectionbg7.png");
	background-repeat:repeat;	
	}
.SectionStyles4 h3{
	font-size:36px;
	color:#fff;
	font-weight: normal;
	line-height: normal;
	margin:0 0 20px 0;
	}
.SectionStyles4 p{
	color:#fff;
	margin:0;
	}
.SectionStyles5{
	background-image: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/Sectionbg5.jpg");
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	backface-visibility: hidden;
	}
.SectionStyles5_bg{
	background-color:rgba(0,0,0,0.25);
	position:relative;
	z-index:0;
	}
.SectionStyles6{
	background-image: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/Sectionbg6.jpg");
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	backface-visibility: hidden;
	}
.SectionStyles6_bg{
	background-color:rgba(0,0,0,0.6);
	position:relative;
	z-index:0;
	}

.SectionStyles7{
	background:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/pic3.jpg") no-repeat center bottom;
	background-attachment:fixed;
	background-size:cover;
	backface-visibility: hidden;
	}

.SectionStyles7_con{
	background:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/Sectionbg7.png");
	position: relative;
	text-align:center;
	}
.SectionStyles7_con .SectionStyles7_main .SectionStyles7_conbox{
	position:relative;
	margin: 10px 0 15px 0;
	}
.SectionStyles7_con .SectionStyles7_main .SectionStyles7_conbox .icon{
	width:36px;
	height:36px;
	text-align:center;
	color:#FFF;
	border:1px solid #fff;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	margin:0 auto;
	background-position:13px -83px;
	background-repeat:no-repeat;
}
.SectionStyles7_con .SectionStyles7_main .SectionStyles7_conbox .icon span {
	width:5px;
	height:5px;
	margin-top:15px;
	border-bottom:1px solid #fff;
	border-right:1px solid #fff;
	display:inline-block;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	
}
.SectionStyles7_con .SectionStyles7_main .SectionStyles7_conbox .icon:before{
	width:106px;
	height:1px;
	position:absolute;
	background-color:#fff;
	content:"";
	top: 50%;
	left: 50%;
	margin: 0 0 0 -134px;
	}
.SectionStyles7_con .SectionStyles7_main .SectionStyles7_conbox .icon:after{
	width:106px;
	height:1px;
	position:absolute;
	background-color:#fff;
	content:"";
	top: 50%;
	left: 50%;
	margin: 0 0 0 28px;
	}

.SectionStyles7_con h3{
	font-size:24px;
	color:#fff;
	text-transform:uppercase;
	font-weight:normal;
	display: inline-block;
	margin-top: 0px;	
	}
.SectionStyles7_con p{
	color:#fff;
	padding: 0 135px;
	margin: 0 0 20px 0;
	}
	
.SectionStyles8{
	background:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/Sectionbg8.png") 0 0 repeat;;
}

.SectionStyles9{
	background-color:#dce9e3;
	position:relative;
}

/*Boxes*/
.boxes .but a.Button_default2{
	border:none;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	text-decoration: none;
	padding: 12px 24px;
	transition: background-color ease-in 200ms,border ease-in 200ms,color ease-in 200ms;
	-moz-transition: background-color ease-in 200ms,border ease-in 200ms,color ease-in 200ms;
	-webkit-transition: background-color ease-in 200ms,border ease-in 200ms,color ease-in 200ms;
	-o-transition: background-color ease-in 200ms,border ease-in 200ms,color ease-in 200ms;
	-ms-transition: background-color ease-in 200ms,border ease-in 200ms,color ease-in 200ms;
	}
.boxes_style_1,
.boxes_style_2,
.boxes_style_3,
.boxes_style_4,
.boxes_style_5,
.boxes_style_6,
.boxes_style_7,
.boxes_style_8{
	position:relative;
}
.boxes_style_2:before,
.boxes_style_3:before,
.boxes_style_5:before,
.boxes_style_7: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: -26px 0 0 -5px;
	transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	-moz-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
	-o-transform: rotate(-5deg);
}
.boxes_style_2:after,
.boxes_style_3:after,
.boxes_style_5:after,
.boxes_style_7:after{
	content: "";
	position: absolute;
	top: 100%;
	right: 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: -26px -5px 0 0;
	transform: rotate(5deg);
	-ms-transform: rotate(5deg);
	-moz-transform: rotate(5deg);
	-webkit-transform: rotate(5deg);
	-o-transform: rotate(5deg);
}
.boxes_style_1 .boxes{
	background-color:#f4f4f4;
	padding:20px 240px 20px 25px;
	z-index:1;
	position:relative;
}
.boxes_style_1 .Boxes_title {
	font-size:18px;
	font-weight:normal;
	position:relative;
	padding:5px 0px 0px;
	margin-bottom:13px;
}
.boxes_style_1 .but{
	margin:-15px auto 0;
	position:absolute;
	top:50%;
	right:25px;
}
.boxes_style_1 .but a.Button_default2{
	background-color:#fff;
	}
.boxes_style_1 .but a.Button_default2:hover{
	background-color:#444;
	border:1px solid #444;
	color:#fff;
	}
.boxes_style_2 .boxes{
	border:1px solid #DEDEDE;
	background-color:#FFF;
	padding:20px 25px;
	z-index:1;
	position:relative;
	border-radius:			3px;
	-moz-border-radius:		3px;
	-webkit-border-radius:	3px;
}
.boxes_style_2 .Boxes_title {
	font-size:20px;
	color:#333;
	font-weight:normal;
}
.boxes_style_3 .boxes{
	border:1px solid #DEDEDE;
	background-color:#F8F8F8;
	padding:20px 25px;
	z-index:1;
	position:relative;
	border-radius:			3px;
	-moz-border-radius:		3px;
	-webkit-border-radius:	3px;
}
.boxes_style_3 .Boxes_title {
	font-size:20px;
	color:#333333;
	font-weight:normal;
}
.boxes_style_4 .boxes{
	padding:20px 250px 20px 25px;
	z-index:1;
	position:relative;
}
.boxes_style_4 .boxes p{
	color:#fff;
	}
.boxes_style_4 .Boxes_title {
	font-size:20px;
	color:#ffffff;
	font-weight:normal;
	position:relative;
	padding:5px 0px 0px;
	margin-bottom:13px;
}
.boxes_style_4 .but{
	margin:-15px auto 0;
	position:absolute;
	top:50%;
	right:25px;
}
.boxes_style_4 .boxes .but a.Button_default2{
	background-color:transparent;
	border:1px solid #fff;
	color:#fff;
	}
.boxes_style_4 .boxes .but a.Button_default2:hover{
	background-color: #444;
	border: 1px solid #444;
	}
.boxes_style_4 .source_code a{
	color:#fff;
	}
.boxes_style_5 .boxes{
	border:1px solid #cccccc;
	background-color:#FFF;
	padding:20px 25px;
	z-index:1;
	position:relative;
	text-align:center;
	border-radius:			5px;
	-moz-border-radius:		5px;
	-webkit-border-radius:	5px;
}
.boxes_style_5 .Boxes_title {
	font-size:20px;
	color:#333333;
	font-weight:normal;
	position:relative;
	padding:5px 0px 18px;
	margin-bottom:0;
}
.boxes_style_5 .but{
	padding:10px 0;
}
.boxes_style_5 .boxes .but a.Button_default2{
	padding:9px 25px;
	background-color:#444;
	color:#fff;
}
.boxes_style_5 .boxes .but a.Button_default2:hover{
	color:#fff;
	}
.boxes_style_6 .boxes{
	border:1px solid #cccccc;
	background-color:#FFF;
	padding:20px 25px;
	z-index:1;
	position:relative;
	border-radius:			5px;
	-moz-border-radius:		5px;
	-webkit-border-radius:	5px;
}
.boxes_style_6 .Boxes_title {
	font-size:20px;
	color:#333333;
	font-weight:normal;
	position:relative;
	padding:5px 0px 18px;
	margin-bottom:0;
}
.boxes_style_7 .boxes{
	border:1px solid #cccccc;
	background-color:#FFF;
	padding:20px 240px 20px 25px;
	z-index:1;
	position:relative;
	border-radius:			5px;
	-moz-border-radius:		5px;
	-webkit-border-radius:	5px;
}
.boxes_style_7 .Boxes_title {
	font-size:20px;
	color:#333333;
	font-weight:normal;
	position:relative;
	padding:5px 0px 0px;
	margin-bottom:13px;
}
.boxes_style_7 .but{
	margin:-15px auto 0;
	position:absolute;
	top:50%;
	right:25px;
}
.boxes_style_7 .but a.Button_default2{
	color:#fff;
	}
.boxes_style_7 .but a.Button_default2:hover{
	background-color:#444;	
	}
.boxes_style_8 .boxes{
	background-color:#333;
	padding:20px 240px 20px 25px;
	z-index:1;
	position:relative;
	border-radius:			5px;
	-moz-border-radius:		5px;
	-webkit-border-radius:	5px;
}
.boxes_style_8 .boxes p{
	color:#aaa;
	}
.boxes_style_8 .Boxes_title {
	font-size:20px;
	color:#fff;
	font-weight:normal;
	position:relative;
	padding:5px 0px 0px;
	margin-bottom:13px;
}
.boxes_style_8 .but{
	margin:-15px auto 0;
	position:absolute;
	top:50%;
	right:25px;
}
.boxes_style_8 .but a.Button_default2{
	color:#fff;
	}
.boxes_style_8 .but a.Button_default2:hover{
	background-color:#444;	
	}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.boxes_style_1 .boxes,
	.boxes_style_4 .boxes,
	.boxes_style_7 .boxes,
	.boxes_style_8 .boxes{
		padding:20px 25px
	}
	.boxes_style_1 .but,
	.boxes_style_4 .but,
	.boxes_style_7 .but,
	.boxes_style_8 .but{
		position:static;
		padding:10px 0;
		margin:0;
	}
}	
@media only screen and (max-width: 767px) {
	.boxes_style_1 .boxes,
	.boxes_style_4 .boxes,
	.boxes_style_7 .boxes,
	.boxes_style_8 .boxes{
		padding:20px 25px
	}
	.boxes_style_1 .but,
	.boxes_style_4 .but,
	.boxes_style_7 .but,
	.boxes_style_8 .but{
		position:static;
		padding:10px 0;
		margin:0;
	}
}	


/* ********** module style ************** */	
.wrapper .Theme_Responsive_Default .form_required{
	display:none;
	}
.wrapper .Theme_Responsive_Default .form_submit .btn{
	width:100px;
	height:40px;
	border:none;
	background-image:none;
	color:#fff;
	text-shadow:none;
	font-size:13px;	
	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? */
	}
.wrapper .Theme_Responsive_Default .form_submit .btn:hover{
	background-color:#444;
	}
.banner_title{
	font-size:50px;
	color:#fff;
	font-weight:300;
	line-height:1.3 !important;
}
.banner_subtitle{
	font-size:20px;
	color:#fff;
	font-weight:bold;
	line-height:1.5 !important;
}
.banner_textbg{
	background:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/banner_bg_opacity.png");
	padding:10px 20px;
}
.banner_content{
	font-size:16px;
	color:#fff;
	line-height:1.5 !important;
}


.banner_btn{
	border-style:solid;
	border-width:1px;
	display:inline-block;
	font-size:14px;
	line-height:23px;
	padding:12px 40px;
	text-decoration:none !important;
	position:relative;
	z-index:1;
	color:#fff;
	border-radius:3px;
}
.banner_btn a{
	color:#fff !important;
}
.banner_btn:after{
	position:absolute;
	left:2px;
	right:2px;
	top:2px;
	bottom:2px;
	content:"";
	z-index:-1;
	border-radius:3px;
}
.banner_btn:hover{
}
*+html .banner_btn:hover{
	background-color:transparent;
}
.banner_btn:hover:after{
	right:100%;
}

.banner_btn.btn_white{
	border-color:#fff;
}
*+html .banner_btn.btn_white{
	background-color:transparent;
}
.banner_btn.btn_white:hover,
.banner_btn.btn_white:hover a{
	color:#fff !important;
}
.banner_btn.btn_white:after{
	right:100%;
}
.banner_btn.btn_white:hover:after{
	right:2px;
}

.banner_btn{
	transition: 		color ease-in 200ms, border-color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms, border-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition: color ease-in 200ms, border-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms, border-color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms, border-color ease-in 200ms; /* IE9? */
}
.banner_btn:after{
	transition: 		right ease-in 200ms;
	-moz-transition: 	right ease-in 200ms; /* Firefox 4 */
	-webkit-transition: right ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		right ease-in 200ms; /* Opera */
	-ms-transition: 	right ease-in 200ms; /* IE9? */
}
/* ********** html style ************** */
.wrapper{
	position:relative;
	z-index:2;
	}
a.social, 
a.social:link, 
a.social:active, 
a.social:visited{
	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? */
	}	
/*.homecontent_bg,
#dnn_bottom,
footer{
	position:relative;
	z-index:2;
	}*/
#dnn_bottom,
footer{
	position:relative;
	z-index:2;
	}
.homecontent_bg:before,
footer:before{
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;
	}
	
.top_ap{
	background-color:#22BB75;
	}
.TopAPane,
.TopAPane .Normal{
	color:#fff;
	}
.topa_left{
	font-size:14px;
	color:#fff;
	}
.topa_left h6.topa_lefttitle{
	font-size:18px;
	color:#fff;
	font-weight:normal;
	margin: 0 0 10px 0;
	line-height:1.5;
	}
.topa_right{
	font-size: 13px;
	display: inline-block;
	line-height: 48px;
	border-radius: 3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	padding: 0 20px;
	margin:30px 0 0 0;
	cursor: pointer;
	}
span.tope.glyphicons{
	font-size:23px;
	margin: 0 10px 0 0;
	top: 5px;
	}
.Button_style4{
	color: #fff;
	border: 1px solid #fff;
	white-space:nowrap;
	transition: 		background-color ease-in 200ms,border ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms,border ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms,border ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms,border ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms,border ease-in 200ms; /* IE9? */
	}
.Button_style4:hover{
	background-color:#444;
	border:1px solid #444;
	}		
.topb{
	position:relative;
	}		
.topbout{
	position:absolute;
	z-index:2;
	}
.topbout .topbout_ico{
	width: 160px;
	height: 160px;
	margin: 0 auto;
	border-radius: 50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border: 4px solid #22BB75;
	text-align: center;
	font-size:42px;
	color:#22BB75;
	background-color:#fff;
	}	
.topbout .topbout_ico span.glyphicons{
	line-height:152px;
	margin: -8px 0 0 8px;
	}
.topbline{
	position: absolute;
	top: 117px;
	z-index:1;
	}
.topbline .topbline1{
	border-top: 1px dashed #ccc;
	margin: 0 auto;
	width: 77%;
	}
.topbbox1,
.topbbox2,
.topbbox3,
.topbbox4{
	text-align:center;
	position:relative;
	}
.topbbox1,
.topbbox4{
	margin-top:145px;
	}
.topbbox2,
.topbbox3{
	margin-top:210px;
	}
.topbbox1 .topbline3,
.topbbox4 .topbline3{
	position: absolute;
	border-left: 1px dashed #CCCCCC;
	left: 50%;
	top: -65px;
	margin-left: -1px;
	height: 65px;
	transition: 		top ease-in 200ms;
	-moz-transition: 	top ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     top ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		top ease-in 200ms; /* Opera */
	-ms-transition: 	top ease-in 200ms; /* IE9? */

	}
.topbbox2 .topbline4,
.topbbox3 .topbline4{
	position: absolute;
	border-left: 1px dashed #CCCCCC;
	left: 50%;
	top: -130px;
	margin-left: -1px;
	height: 130px;
	transition: 		top ease-in 200ms;
	-moz-transition: 	top ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     top ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		top ease-in 200ms; /* Opera */
	-ms-transition: 	top ease-in 200ms; /* IE9? */

	}
.topbbox1 .topbbox_ico,
.topbbox2 .topbbox_ico,
.topbbox3 .topbbox_ico,
.topbbox4 .topbbox_ico{
	width:120px;
	height:120px;
	margin:0 auto;
	background-color:#22BB75;
	font-size:40px;
	border-radius: 50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	text-align: center;
	color:#fff;
	border: 5px solid #fff;
	box-sizing: content-box;
	transition: 		margin ease-in 200ms;
	-moz-transition: 	margin ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     margin ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		margin ease-in 200ms; /* Opera */
	-ms-transition: 	margin ease-in 200ms; /* IE9? */
	}	
.topbbox1 .topbbox_ico span.glyphicons,
.topbbox2 .topbbox_ico span.glyphicons,
.topbbox3 .topbbox_ico span.glyphicons,
.topbbox4 .topbbox_ico span.glyphicons{
	line-height:120px;
	}
.topbbox1 h3,
.topbbox2 h3,
.topbbox3 h3,
.topbbox4 h3{
	font-size:18px;
	color:#333;
	font-weight:normal;
	margin-top:15px;
	}	
.topbbox1 a,
.topbbox2 a,
.topbbox3 a,
.topbbox4 a{
	font-size:13px;
	color:#22BB75;
	text-decoration:none;
	text-transform:uppercase;
	}
.topbbox1 a:hover, 
.topbbox2 a:hover, 
.topbbox3 a:hover, 
.topbbox4 a:hover{
	text-decoration:underline;	
	}	
	
.topbout .flip_box_1 .front, 
.topbout .flip_box_1 .back{
	background-color:transparent;
	padding:0;
	border:none;
	}	
.topbout .flip_box_1 .front .glyphicons {
	background-color: transparent;
	border-radius:0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	width: 1em;
	height: inherit;
	font-size: inherit;
	color: inherit;
	}
.topbbox1:hover .topbbox_ico, 
.topbbox2:hover .topbbox_ico, 
.topbbox3:hover .topbbox_ico, 
.topbbox4:hover .topbbox_ico{
	margin:-10px auto 0;
	}
.topbbox1:hover .topbline3, 
.topbbox4:hover .topbline3{
	top: -55px;
	}
.topbbox2:hover .topbline4, 
.topbbox3:hover .topbline4{
	top: -120px;
	}
	
	
	
.top_cp{
	background-color:#F0F0F0;
	}	

.topc_left{
	position:relative;
	}
.topc_left .topc_imga{
	}
.topc_right h2{
	font-size:24px;
	font-weight:normal;
	color:#333;
	text-transform:uppercase;
	margin:0 0 20px 0;
	}
.topc_right .topc_rightline{
	width:40px;
	height:3px;
	background-color:#333;
	margin:0 0 20px 3px;
	}	
.topc_right ul.topc_righbox{
	margin-bottom:0px;
	list-style-type:none;
	}
.topc_right ul.topc_righbox li{
	margin:5px 0;
	list-style-type:none;
	}
.topc_right ul.topc_righbox .topc_righbox_icon{
	display: inline-block;
	border: 1px solid #22BB75;
	width: 45px;
	height: 45px;
	font-size: 24px;
	line-height: 43px;
	text-align: center;
	color: #22BB75;
	border-radius: 50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	font-weight:bold;
	float:left;
	margin-bottom:8px;
	}	
.topc_right ul.topc_righbox .topc_righbox_text{
	display:block;
	position: relative;
	top: 3px;
	left: 15px;
	overflow:hidden;
	margin-bottom:8px;
	}	
.topc_right ul.topc_righbox .topc_righbox_text span{
	font-size:15px;
	color:#333;
	}
.topc_right a{
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	text-decoration:none;
	padding: 10px 25px;
	display: inline-block;
	margin: 20px 0 0 0;
	font-size:14px;
	}
a.Button_default.Button_style{
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	text-decoration:none;
	padding: 10px 25px;
	display: inline-block;
	margin: 20px 0 20px 0;
	}
a.Button_default{
	color:#fff !important;
	background-color:#22BB75;
	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_default:hover{
	background-color:#444;
	}

.topd{
	padding:20px 0;
	text-align:center;
	}
.topd h4{
	font-size:16px;
	color:#333;
	font-weight:normal;
	line-height:20px;
	margin:0 0 20px 0;	
	}
.topd h4 span.glyphicons{
	color:#22BB75;
	font-size:22px;
	top: 5px;
	margin: 0 20px 0 0;
	}	
.topf{
	background-color:#EEEEEE;
	}
.topg{
	text-align:center;
	}
	.topg h3 {
		/* 20240911 (rk) */
		/*font-size: 24px;
		line-height: 20px;*/
		font-size: 24px;
		line-height: 30px;
		color: #333;
		text-transform: uppercase;
		font-weight: normal;
	}
.topg .icon{
	width: 36px;
	height: 36px;
	border: 1px solid #ccc;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	margin:15px auto;
	background-image: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/arrow-1.png");
	background-position: 13px -83px;
	background-repeat: no-repeat;
	position:relative;
	}
.topg .icon:after{
	width: 106px;
	height: 1px;
	position: absolute;
	background-color: #ccc;
	content: "";
	top: 50%;
	left: 50%;
	margin: 0 0 0 28px;
	}
.topg .icon:before{
	width: 106px;
	height: 1px;
	position: absolute;
	background-color: #ccc;
	content: "";
	top: 50%;
	left: 50%;
	margin: 0 0 0 -134px;
	}
.topg p{
	padding:0 40px;
	}
.toph{
	font-size:21px;
	}
.toph a.social{
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	overflow:hidden;
	}
.topi{
	font-size:24px;
	}
#dnn_content{
	padding:40px 0 0 0;
	min-height:300px;
	}
.cona{
	
	}		
.cona .conaleft{
	
	}	
.cona .conaright .conaday{
	font-size: 16px;
	color: #333;
	text-align: center;
	border-right: 1px solid #ebebeb;
	padding: 0 15px;
	}
.cona .conaright .conamain{
	padding:0 0 0 15px;
	color:#555;
	}
.cona .conaright .conamain span{
	font-size:16px;
	padding: 0 0 8px 0;
	display: block;
	}
.cona .conaright .conamain {
	font-size:12px; 
	}
.cona .conaright .conacenter{
	border: none;
	border-bottom: 1px solid #ebebeb;
	height: 0px;
	width: 100%;
	clear: both;
	display: block;
	overflow: hidden;
	margin-top: 15px;
	margin-bottom: 15px;
	}

.conc{
	border:1px solid #22BB75;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	text-align:center;	
	margin: 40px 0 0 0;
	cursor:pointer;
	transition: 		box-shadow ease-in 200ms;
	-moz-transition: 	box-shadow ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     box-shadow ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		box-shadow ease-in 200ms; /* Opera */
	-ms-transition: 	box-shadow ease-in 200ms; /* IE9? */
	}
.conc:hover{
	box-shadow:0 0 5px rgba(0,0,0,0.5);
	-moz-box-shadow:0 0 5px rgba(0,0,0,0.5);	
	-webkit-box-shadow:0 0 5px rgba(0,0,0,0.5);
	}	
.conc .icon{
	width:70px;
	height:70px;
	background-color:#22bb75;
	color:#fff;
	display:inline-block;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	margin: -35px 0 10px 0;
	}
.conc .icon span.glyphicons{
	font-size:28px;
	top:0;
	color:#fff;
	line-height:70px;
	}
	.conc h3 {
		/* 20240911 (rk) */
		/*font-size: 18px;
		line-height: 20px;*/
		font-size: 20px;
		line-height: 30px;

		color: #333;
		font-weight: normal;
	}
.conc p{
	padding:0 22px;
	}
.conc > a{
	font-size:12px;
	color:#22bb75;
	text-transform:uppercase;
	position:relative;	
	margin: 12px 0 20px 0;
	display: inline-block;
	}
.conc > a:hover{
	text-decoration:none;
	}
.conc > a:before{
	position: absolute;
	content: "";
	border-style: solid;
	border-width: 4px;
	right: -20px;
	top: 4px;
	border-color: transparent transparent transparent #22bb75;
	}
.cond h3{
	font-size:16px;
	color:#333;
	line-height:20px;
	font-weight:normal;
	}
.cond .line{
	width:30px;
	height:2px;
	background-color:#22bb75;
	margin:5px 0 13px 0;
	display:inline-block;
	}
.cone h3{
	font-size:20px;
	line-height:22px;
	font-weight:normal;
	margin:0 0 5px 0;
	color:#22bb75;
	letter-spacing:normal;
	}
.cone h4{
	font-size:12px;
	line-height:22px;
	font-weight:normal;
	margin:0;
	color:#666;
	letter-spacing:normal;
	}
.cone .line{
	width:30px;
	height:2px;
	background-color:#22bb75;
	margin:10px 0;
	}
.cone .cone_bottom p{
	display:inline-block;	
	margin: 10px 40px 0 0;
	position: relative;
	padding: 16px 0 16px 70px;
	}
.cone .cone_bottom p span.glyphicons{
	position:absolute;
	left:0;
	width:50px;
	height:50px;
	border:1px solid #cccccc;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	font-size:18px;
	line-height:18px;
	text-align:center;
	color:#8D8D8D;
	padding:14px 0;
	cursor:pointer;
	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? */
	}
.conf{
	position:relative;
	padding:0 0 0 145px;
	}
.conf .icon{
	position:absolute;
	left:0;
	top:0;
	width:110px;
	height:110px;
	border:1px solid #22bb75;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	text-align:center;
	}
.conf .icon span.glyphicons{
	font-size:35px;
	color:#22bb75;
	top:0;
	line-height:108px;
	}
.conf h3{
	font-size:20px;
	line-height:22px;
	font-weight:normal;
	margin:0;
	color:#22bb75;
	letter-spacing:normal;
	}
.conf .line{
	width:30px;
	height:2px;
	background-color:#22bb75;
	margin:10px 0;
	}
.cong .congleft{
	text-align: center;
	padding:25px 0 0 0;
	}
.cong .congleft span.glyphicons{
	font-size:48px;
	color:#22bb75;
	}	
.cong .congleft p{
	font-size:14px;
	color:#666;
	margin:15px 0 0 0;
	}
.cong .congleft .line{
	background-color:#22bb75;
	width:30px;
	height:2px;	
	margin: 40px 0 0 0;
	}
.cong .congright{
	border:1px solid #e3e3e3;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	padding:25px;
	position:relative;
	background-color:#fff;
	}
.cong .congright:before{
	content:"";
	background-color:#fff;
	position:absolute;
	left:0;
	top:50%;
	margin: -7px 0 0 -7px;
	border-left:1px solid #e3e3e3;
	border-top:1px solid #e3e3e3;
	width:13px;
	height:13px;
	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 */
	}
.cong .congright h4{
	font-size:14px;
	color:#333;
	line-height:20px;
	font-weight:normal;
	margin:0 0 10px 0;
	}
.cong .congright a{
	font-size: 13px;
	color: #22bb75;
	text-transform: uppercase;
	position: relative;
	margin: 12px 0 0 0;
	display: inline-block;
	}
.cong .congright a:hover{
	text-decoration:none;
	}
.cong .congright a:before {
	position: absolute;
	content: "";
	border-style: solid;
	border-width: 4px;
	right: -20px;
	top: 5px;
	border-color: transparent transparent transparent #22bb75;
	}
.conh{
	list-style-type:none;
	margin:0;
	padding:0;
	}
.conh li{
	list-style-type:none;
	}
.conh li a{
	color:#666666;
	text-decoration:none;
	border-bottom:1px dashed #CACACA;
	display:block;
	padding:10px 0 10px 30px;
	position:relative;
	transition: 		color ease-in 200ms,background-color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms,background-color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     color ease-in 200ms,background-color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms,background-color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms,background-color ease-in 200ms; /* IE9? */
	}
.conh li a:hover{
	color:#22bb75;
	}
.conh li a:before{
	font-family: 'Glyphicons Regular';
	content: "\E224";
	position:absolute;
	width:17px;
	height:17px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#B4B4B4;
	color:#fff;
	left: 0;
	top:12px;
	font-size: 8px;
	line-height:17px;	
	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? */
	}
.conh li a:hover:before{
	background-color:#22bb75;
	}
.coni{
	list-style-type:none;
	margin:0;
	padding:0;
	}
.coni li{
	list-style-type:none;
	background-color:#EDEDED;
	display:block;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	padding:20px 20px 20px 50px;
	position:relative;
	margin:0 0 5px 0;
	}
.coni li span.social{
	position:absolute;
	font-size:24px;
	color:#EDEDED;
	background-color:#22bb75;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	left: 15px;
	top: 50%;
	margin: -12px 0 0 0;
	}
.conj a{
	border:1px solid #22bb75;
	color:#22bb75;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	display:inline-block;
	padding: 10px 25px;
	margin: 15px 0 0 0;
	transition: 		background-color ease-in 200ms,border ease-in 200ms,color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms,border ease-in 200ms,color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms,border ease-in 200ms,color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms,border ease-in 200ms,color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms,border ease-in 200ms,color ease-in 200ms; /* IE9? */
	}
.conj a:hover{
	text-decoration:none;
	background-color: #444;
	border: 1px solid #444;
	color: #fff;
	}
	
.conk{
	margin:23px 0 0 0;
	}	
.conk .conk_top{
	position:relative;
	margin: 0 0 7px 0;
	}	
.conk .conk_top span.glyphicons{
	font-size:40px;
	color:#22bb75;
	position:absolute;
	left:0;
	top:0;	
	}
.conk .conk_top h3{
	font-size:14px;
	color:#333;
	line-height:40px;
	margin:0 0 0 55px;
	font-weight:normal;
	}
.conk .conk_con{
	margin:0 0 0 40px;
	background-color:#F3F3F3;
	border-left:2px solid #22bb75;
	padding:23px;	
	}
.conl{
	background-color:#F4F4F4;
	border-left:2px solid #22bb75;
	padding:30px 0;
	}
.conl .topa_left h6.topa_lefttitle{
	color:#22bb75;
	}
.conl .topa_left {
	font-size: 12px;
	color: #555;
	}
.conl .topa_right{
	border:1px solid #22bb75;
	color:#22bb75;
	background-color:#fff;
	line-height: 39px;
	margin: 28px 0 0 0;
	}
.conl .topa_right a:hover{
	text-decoration:none;
	}
.conm_left{
	text-align:center;
	background-color:#F0F0F0;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	width: 400px;
	height: 400px;
	margin: 0 auto;
	}
.conm_left span{
	font-size: 150px;
	font-weight: bold;
	line-height: 140px;
	color: #22bb75;
	vertical-align: middle;
	display: inline-block;
	margin: 100px 0 0 0;
	}
.conm_left p{
	font-size:16px;
	}
.conm_right{
	padding: 71px 0;
	}
.conm_right h3{
	font-size:20px;
	color:#333;
	font-weight:normal;
	margin-bottom: 15px;	
	}
.conm_right span{
	font-size:13px;
	color:#333;
	}
.conm_right ul{
	margin:20px 0 0 0;
	padding:0;
	list-style-type:none;
	}
.conm_right li{
	list-style-type:none;
	line-height: 30px;
	padding: 0 0 0 20px;
	position:relative;
	}
.conm_right li:before{
	position:absolute;	
	content:"";
	width:5px;
	height:5px;
	background-color:#22bb75;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	left:0px;
	top:13px;	
	}
.conm_right li a,
.conm_right li.last{
	color:#22bb75;
	}
.conn{
	
	}
.conn h4{
	font-size:14px;
	color:#333;
	font-weight:normal;
	margin: 0 0 10px 0;
	}
.conn ul{
	display:inline-block;
	margin: 20px 80px 20px 0;
	padding:0;
	list-style-type:none;
	}
.conn ul li{
	list-style-type:none;
	line-height:22px;
	}
.conn .icon a{
	color:#777;
	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? */
	}
.conn .icon a{
	width: 50px !important;
	height: 50px;
	border: 1px solid #cccccc;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	font-size: 18px;
	line-height: 18px;
	text-align: center;
	color: #8D8D8D;
	padding: 14px 0;
	margin: 0 20px 0 0;
	}
.conn a:hover{
	text-decoration:none;
	}
.conn p{
	line-height:22px;
	}

.conp{
	background-color:#F0F0F0;
	}

	
	
.sector_box {
	position:relative;
}
.sector_box div {
	float:left;
	position:relative;
	display:block;
	height:100%;	
	margin-right:20px;
}
.sector_box div span {
	position:absolute;
	bottom:0;
	left:0;
	width:100%;

}
#gmap {
	width: 100%;
	height: 438px;
	}
#gmap2{
	width: 100%;
	height:150px;
	}	
.pager{
	text-align:left;
	}	
.news_detail .post_content {
	padding: 10px 15px !important;
	}
.success,
.warning,
.info,
.bs-example .btn.btn-default,
.bs-docs-example .btn.btn-default{
	color:#444;
	}
/* *************** HomePage2 ****************** */		
.home2_topa{
	margin:0;
	list-style-type:none;
	}
.home2_topa li{
	display:inline-block;
	width:33%;
	border-left:1px solid #fff;
	position:relative;
	padding: 17px 0 17px 119px;
	}
.home2_topa li:first-child{
	border-left:none;
	}
.home2_topa li span{
	position:absolute;
	width:80px;
	height:80px;
	border:2px solid #fff;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	color:#fff;
	line-height:76px;
	font-size:40px;
	text-align:center;
	left:22px;
	top:50%;
	margin:-40px 0 0 0;
	}
.home2_topa li h3{
	font-size:20px;
	color:#fff;
	margin: 0 0 5px 0;
	}
.home2_topa li p{
	font-size:15px;
	color:#fff;
	margin:0;
	}
.home2_cona{
	position:relative;
	text-align:center;	
	}
.home2_cona .number{
	font-size:120px;
	color:#e9e8e8;
	line-height: normal;
	display: inline-block;
	background-color: #fff;
	padding: 0 45px;	
	}
.home2_cona .title{
	font-size:40px;
	color:#333333;
	line-height:normal;
	position:absolute;
	width:100%;
	text-align:center;	
	top: 50%;
	margin: -27px 0 0 0;
	}
.home2_cona .linebox{
	position:absolute;
	width:100%;
	top: 50%;
	z-index: -1;
	}	
.home2_cona .linebox .line{
	width:370px;
	height:1px;
	margin:0 auto;
	background-color:#22bb75;
	}
.home2_conb{
	text-align:center;
	padding:0 10px;
	}
.home2_conc{
	position:relative;
	padding:30px 0;
	}
.home2_conc .timebox{
	padding:0 150px;	
	}
.home2_conc .time{
	width:67px;
	height:67px;
	background-color:#22bb75;
	color:#fff;
	border:6px solid #E3E7E8;
	text-align:center;
	line-height:55px;
	font-size:12px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	margin:0 auto;
	}
.home2_conc .linebox{
	position:absolute;
	width:100%;
	height:4px;
	background-color:#ECF0F1;
	top:50%;
	margin:-2px 0 0 0;
	}
.home2_cond{
	padding: 20px 0 0 0;
	}
/*.home2_cond_left{
	position:relative;
	width:447px;
	height:374px;
	}
.home2_cond_left_center{
	position: absolute;
	top:50%;
	left:50%;
	z-index:10;
	margin:-40px 0 0 -40px;
	}
.home2_cond_left_top{
	position: absolute;
	top:0;
	left:50%;
	z-index:9;
	margin:0 0 0 -135px;
	}
.home2_cond_left_right{
	position: absolute;
	top:50%;
	right:0;
	z-index:8;
	margin:-135px 0 0 0 ;
	}
.home2_cond_left_left{
	position: absolute;
	top:50%;
	left:0;
	z-index:7;
	margin:-135px 0 0 0 ;
	}
.home2_cond_left_bottom{
	position: absolute;
	bottom:0;
	left:50%;
	z-index:6;
	margin:0 0 0 -135px;
	}*/

.home2_cond h3{
	font-size:20px;
	color:#333;
	font-weight:normal;
	margin:0;
	}
.home2_cond .line{
	width:30px;
	height:3px;
	background-color:#22bb75;
	margin:20px 0;
	}
.home2_cond_boxa,
.home2_cond_boxc{
	padding:25px 0;
	}
.home2_cond_boxb ul{
	margin:0;
	padding:0;
	list-style-type:none;
	}
.home2_cond_boxb ul li{
	list-style-type:none;
	border-top:1px solid #ddd;
	display:inline-block;
	padding:25px 0 0 0;
	}
.home2_cond_boxb ul li:first-child{
	border-top:none;
	padding:25px 0;
	}
.home2_cond_boxb ul li img{
	float:left;
	padding:0 30px 0 0;
	}
.home2_cond_boxb ul li p a{
	padding: 15px 0 0 0;
	display: inline-block;
	}
.home2_conbg_1{
	background-color:#F5F5F5;
	position:relative;
	z-index:0;
	padding: 20px 0 40px 0;
	}
.home2_conbg_1 .home2_cona .number{
	background-color:#F5F5F5;
	}
.home2_conbg_1 .home2_cona .number{
	color:#dedede;
	}
.home2_conbg_2{
	background-color:#22bb75;
	background-image:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/home2_conbg_2.png");
	}
.SectionStyles5 .home2_cona .linebox,
.SectionStyles6 .home2_cona .linebox{
	display:none;	
	}
.SectionStyles5 .home2_cona .number,
.SectionStyles6 .home2_cona .number{
	color:#222;
	color:rgba(255,255,255,0.2);
	position:relative;
	background-color:transparent;
	}	
.SectionStyles5 .home2_cona .number:before,
.SectionStyles6 .home2_cona .number:before{
	position:absolute;
	content:"";
	width:70px;
	height:1px;
	background-color:#fff;
	left: 0;
	top: 50%;
	margin: 0 0 0 -70px;
	}
.SectionStyles5 .home2_cona .number:after,
.SectionStyles6 .home2_cona .number:after{
	position:absolute;
	content:"";
	width:70px;
	height:1px;
	background-color:#fff;
	right: 0;
	top: 50%;
	margin: 0 -70px 0 0;
	}
.SectionStyles5 .home2_cona .title,
.SectionStyles6 .home2_cona .title{
	color:#fff;
	}
.SectionStyles5 .home2_conb{
	color:#fff;
	}
.ourteam_1 .team_list{
	padding:40px 0;
	}
.ourteam_1 .team_list .team_person .team_img{
	text-align:center;
	}
.ourteam_1 .team_list .team_content{
	text-align:center;
	color:#fff;
	padding:20px 0 0 0;
	}
.ourteam_1 .team_list .team_content .team_title{
	font-size:16px;
	}
.ourteam_1 .team_list .team_content .team_title2,
.ourteam_1 .team_list .team_content p{
	font-size:13px;
	}
.ourteam_1 .team_list .team_content .team_titleline{
	display:inline-block;
	width:50px;
	height:1px;
	background-color:#fff;
	margin:15px 0;
	}
.ourteam_1 .team_list .team_content .team_social a{
	width:40px;
	height:40px;
	display:inline-block;
	background-color:#fff;
	-moz-border-radius:50%;
	border-radius:50%;
	-webkit-border-radius:50%;
	text-align:center;
	margin: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? */	
	}
.ourteam_1 .team_list .team_content .team_social a:hover{
	background-color: #22bb75;
	}
.ourteam_1 .team_list .team_content .team_social a span.social{
	font-size:18px;
	color:#fff;
	background-color:#22bb75;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	margin:10px 0;
	transition: 		background-color ease-in 200ms,color ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms,color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms,color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms,color ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms,color ease-in 200ms; /* IE9? */	

	}
.ourteam_1 .team_list .team_content .team_social a:hover span.social{
	color: #22bb75;
	background-color: #fff;
	}
.home2_cone{
	text-align:center;
	padding:30px 0 0 0;
	}
.home2_cone img{
	display:inline-block;
	padding: 0 20px;
	}

.home2_conf .cono{
	margin:35px 0 0 0;
	position:relative;
	}
.home2_conf .cono:before{
	position:absolute;
	content:"";
	width:1px;
	height:100%;
	}
.home2_conf .col-sm-6:nth-child(even) .cono:before{
	background-color:#E6E6E6;
	left: -15px;
	}
.home2_conf .centerline{
	width:100%;
	height:1px;
	background-color:#e6e6e6;
	padding:0 35px 0 0;
	margin:35px 0 0 0;
	}
.home2_cong{
	padding:50px 0 60px 0;
	}
.home2_cong .home2_cong_left,
.home2_cong .home2_cong_center,
.home2_cong .home2_cong_right{
	position:relative;
	
	}
.home2_cong .home2_cong_left span.glyphicons,
.home2_cong .home2_cong_center span.glyphicons,
.home2_cong .home2_cong_right span.glyphicons{
	font-size:24px;
	width:70px;
	height:70px;
	color:#7F7F7F;
	border:1px solid #CCCCCC;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	line-height:68px;
	position: absolute;
	left:0;
	top:50%;
	margin:-35px 0 0 0;
	text-align:center;
	}
.home2_cong .home2_cong_left p,
.home2_cong .home2_cong_center p,
.home2_cong .home2_cong_right p{
	padding:0 0 0 100px;
	margin:0;
	font-size:18px;
	color:#000;
	line-height:22px;
	}
.home2_cong .home2_cong_left p span,
.home2_cong .home2_cong_center p span,
.home2_cong .home2_cong_right p span{
	font-size:13px;
	color:#666;
	}
.footicon a.social{
	font-size:22px;
	color:#ccc;
	margin:0 5px;
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */
	}

.Theme_Responsive_Home .btn{
	padding:10px 25px;
}
/* *************** HomePage3 ****************** */	
.home3topa{
	list-style-type:none;
	padding:0;
	margin:0;	
	}
.home3topa li{
	float:left;
	position:relative;
	list-style-type:none;
	padding:0 0 0 70px;
	margin:0 0 0 38px;
	line-height: normal;
	color:#999;
	font-size:13px;
	cursor:pointer;
	}
.home3topa li a{
	width:50px;
	height:50px;
	border:1px solid #ccc;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	line-height:50px;
	text-align:center;
	font-size:18px;
	position:absolute;
	top:50%;
	left:0;
	margin:-25px 0 0 0;
	transition: 		background-color ease-in 200ms,border ease-in 200ms;
	-moz-transition: 	background-color ease-in 200ms,border ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     background-color ease-in 200ms,border ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		background-color ease-in 200ms,border ease-in 200ms; /* Opera */
	-ms-transition: 	background-color ease-in 200ms,border ease-in 200ms; /* IE9? */
	}
.home3topa li a span{
	color:#999;
	transition: 		color ease-in 200ms,border ease-in 200ms;
	-moz-transition: 	color ease-in 200ms,border ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     color ease-in 200ms,border ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms,border ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms,border ease-in 200ms; /* IE9? */
	}
.home3topa li:hover a{
	background-color:#22bb75;
	border:1px solid #22bb75;
	}
.home3topa li:hover a span{
	color:#fff;
	}
.home3topa li h6{
	line-height:normal;
	font-weight:normal;
	font-size:13px;
	color:#444;
	margin:0;
	}

.home3banner_left{
	margin:0;
	padding:0;
	list-style-type:none;
	background-color:#fff;
	border:1px solid #d3d3d3;
	}
.home3banner_left li{
	padding:0 0 0 18px;
	}
.home3banner_left li:nth-child(odd){
	background-color:#F4F4F4;
	}
.home3banner_left li:first-child{
	background-color:#22bb75;
	color:#fff;
	font-size:18px;	
	line-height: 46px;
	margin:-1px;
	}
.home3banner_left li a{
	font-size:13px;
	color:#666;
	display:inline-block;
	padding:10px 0;
	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? */
	}
.home3banner_left li a span.glyphicons{
	font-size:15px;
	margin:0 12px 0 0;
	}
.home3banner_left li:first-child span.glyphicons{
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#fff;
	color:#22bb75;
	font-size:12px;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	margin: 0 12px 0 0;
	top: 0;
	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? */
	}
.home3banner_left li a:hover{
	text-decoration:none;
	color:#22bb75;
	}
.home3banner_left li a:hover span.glyphicons{
	color:#22bb75;
	}
.home3cona{
	background-color:#FAFAFA;
	border:1px solid #DDDDDD;
	padding:15px;
	position:relative;
	color:#22bb75;
	font-size:13px;
	text-transform:uppercase;
	font-weight:bold;
	line-height:23px;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
}
.home3cona h6{
	color:#666;
	font-size:24px;
	line-height:28px;
	margin:0;
	}
.home3cona span.glyphicons{
	position:absolute;
	width:50px;
	height:50px;
	top:50%;
	margin:-25px 0 0 0;
	right:15px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color:#E6E6E6;
	color:#22bb75;
	font-size:20px;
	line-height:50px;
	text-align:center;
	}
.home3conb{
	margin:0;
	padding:0;
	list-style-type:none;
	border:1px solid #DDDDDD;
	}
.home3conb li{
	float:left;
	padding:30px;
	width:25%;
	margin-top: -1px;
	border-left:1px solid #dddddd;
	border-top:1px solid #dddddd;
	position: relative;
	cursor:pointer;
	transition: 		box-shadow ease-in 200ms;
	-moz-transition: 	box-shadow ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     box-shadow ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		box-shadow ease-in 200ms; /* Opera */
	-ms-transition: 	box-shadow ease-in 200ms; /* IE9? */
	}
.home3conb li:hover{
	box-shadow: 1px 1px 7px rgba(0,0,0,0.5);
	}
.home3conb li:first-child,
.home3conb li:nth-child(5){
	border-left:none;
	}
.home3conb li .image{
	text-align:center;
	}
.home3conb li .image img{
	display:inline-block;
	width:auto;
	}
.home3conb li .tips{
	position:absolute;
	left:0px;
	top:15px;
	font-size:14px;
	color:#fff;
	text-transform:uppercase;
	padding:5px 20px 5px 15px;
	margin: 0 0 0 -1px;
	height:32px;
	}
.home3conb li:nth-child(1) .tips,
.home3conb li:nth-child(4) .tips,
.home3conb li:nth-child(5) .tips,
.home3conb li:nth-child(8) .tips{
	background-color:#E8B400;
	}
.home3conb li:nth-child(2) .tips,
.home3conb li:nth-child(6) .tips{
	background-color:#E80018;
	}
.home3conb li:nth-child(3) .tips,
.home3conb li:nth-child(7) .tips{
	background-color:#50C77D;
	}
.home3conb li .tips .tipscolor{
	}
.home3conb li .tips:before{
	position: absolute;
	content: "";
	border-width:16px;
	border-style: solid;
	border-color: transparent transparent transparent #F00;
	top: 0;
	left:100%;
	margin: 0;
}
.home3conb li:nth-child(1) .tips:before,
.home3conb li:nth-child(4) .tips:before,
.home3conb li:nth-child(5) .tips:before,
.home3conb li:nth-child(8) .tips:before{
	border-left-color:#E8B400;
}
.home3conb li:nth-child(2) .tips:before,
.home3conb li:nth-child(6) .tips:before{
	border-left-color:#E80018;
	}
.home3conb li:nth-child(3) .tips:before,
.home3conb li:nth-child(7) .tips:before{
	border-left-color:#50C77D;
}
	
	
.home3conb li h6.Model{
	margin: 20px 0 5px 0;
	font-size:14px;
	color:#333;
	font-weight:normal;
	}
.home3conb li p.name{
	font-size:14px;
	color:#999;
	text-transform:uppercase;
	margin:0;
	}
.home3conb li .line{
	width:100%;
	height:1px;
	background-color:#DDDDDD;
	margin:13px 0;	
	}
.home3conb li .Price{
	font-weight:bold;
	text-transform:uppercase;
	font-size:14px;
	}
.home3conb li .Price .Priceleft{
	color:#ccc;
	text-decoration:line-through;
	float:left;
	}
.home3conb li .Price .Priceright{
	color:#22bb75;
	float:right;
	}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.home3topa{
		margin-bottom:10px;
	}
	.home3topa li {
		padding:10px 0 10px 70px;
		text-align:left;
	}
	
}
@media only screen and (max-width: 767px) {
	.home3topa{
		margin-top:10px;
		display:inline-block;
	}
	.home3topa li {
		padding:0 0 10px 30px;
		margin:0;
		text-align:left;
		float:left;
	}
	.home3topa li a {
    width: 25px;
    height: 25px;
    border: none!important;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    line-height: 25px;
    text-align: center;
    font-size: 12px;
    position: absolute;
    top: 0%;
    left: 0;
    margin: -0 0 0 0;
  
}
  
}
	
	
	
.home3conc{
	background-image:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/home3conc.png");
	background-repeat:no-repeat;
	background-position:center bottom;
	padding: 0 0 40px 0;
	position:relative;	
	}	
.home3conc:before{
	position: absolute;
	content: "";
	border-width:20px;
	border-style: solid;
	border-color: #fff #fff transparent transparent;
	top: 0;
	right: 0;
	}
.home3conc:after{
	position: absolute;
	content: "";
	border-width:20px;
	border-style: solid;
	border-color:transparent transparent rgba(0,0,0,0.2) rgba(0,0,0,0.2);
	top: 0;
	right: 0;
	}
.home3conc .home3conc_1,
.home3conc .home3conc_2,
.home3conc .home3conc_3{
	padding:27px;
	color:#fff;
	font-size:13px;
	}
.home3conc .home3conc_1{
	background-color:#6EBE59;
	}
.home3conc .home3conc_1 .title span.glyphicons{
	color:#6EBE59;
	}
.home3conc .home3conc_2{
	background-color:#4EC19D;
	}
.home3conc .home3conc_2 .title span.glyphicons{
	color:#4EC19D;
	}
.home3conc .home3conc_3{
	background-color:#54BBCA;
	}
.home3conc .home3conc_3 .title span.glyphicons{
	color:#54BBCA;
	}
.home3conc .title{
	font-size:30px;
	color:#fff;
	margin: 0 0 20px 0;
	}
.home3conc .title span.glyphicons{
	width:20px;
	height:20px;
	background-color:#fff;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	font-size:12px;
	text-align:center;
	line-height:20px;
	margin:0 15px 0 0;
	top: -3px;
	}
.home3conc p.test{
	margin:0;
	}
.home3conc .list{
	margin:20px 0;
	padding:0;
	list-style-type:none;
	}
.home3conc .list li{
	line-height:30px;
	}
.home3conc .list li span.glyphicons{
	font-size:14px;
	margin:1px 10px 0 0;
	}
.home3conc a.link{
	display:inline-block;
	color:#fff;
	background-color:rgba(0,0,0,0.2);
	padding:9px 29px;
	text-transform:uppercase;
	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? */
	}
.home3conc a.link:hover{
	background-color:#444444;
	text-decoration:none;
	}
.home3cond{
	background-color:#E5E5E5;
	padding:40px 0 90px 0;	
	}
.home3cond h3.title{
	font-size:26px;
	color:#333;
	text-align:center;
	margin:0 0 20px 0;
	}
.home3cond .line{
	width:50px;
	height:3px;
	background-color:#22bb75;
	margin:0 auto 30px;
	}
.home3cond_box{
	padding:0 0 2px 0;
	}
.home3cond_box .home3cond_box_left{
	float:left;
	width:50%;	
	}
.home3cond_box .home3cond_box_right{
	background-color:#fff;
	float:left;
	width:50%;
	padding:16px;	
	box-shadow:2px 2px 2px rgba(0,0,0,0.2);	
	-moz-box-shadow:2px 2px 2px rgba(0,0,0,0.2); 	
	-webkit-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
	}
.home3cond_box .home3cond_box_right h3{
	font-size:14px;
	color:#333;
	font-weight:normal;
	margin:0;
	}
.home3cond_box .home3cond_box_right h4{
	font-size:14px;
	color:#999;
	font-weight:normal;
	margin:0 0 8px 0;
	}
.home3cond_box .home3cond_box_right p{
	font-size:13px;
	}
.home3cond_box .home3cond_box_right .Price .Priceleft{
	font-size:15px;
	color:#E4AA0D;
	float:left;
	}
.home3cond_box .home3cond_box_right .Price .Priceleft span.glyphicons{
	margin:0 2px 0 0;
	}
.home3cond_box .home3cond_box_right .Price .Priceright{
	font-size:14px;
	color:#22bb75;
	text-transform:uppercase;
	font-weight:bold;
	float:right;
	}
.home3cond_box .home3cond_box_right .line{
	background-color:#ddd;
	width:100%;
	height:1px;
	margin:8px 0;
	}
.home3bottoma{
	width:100px;
	height:100px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	margin:-50px auto 0;
	background-color:#22bb75;
	line-height:125px;
	text-align:center;
	}
.home3bottoma span.glyphicons{
	font-size:39px;
	color:#fff;
	}
.home3bottomb{
	margin:40px auto 0;
	background-color: #fff;
	height: 60px;
	width:830px;
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	}
.home3bottomb .home3bottomb_left{
	font-size:15px;
	background: none;
	border: none;
	float: left;
	height: 60px;
	position: relative;
	white-space: nowrap;
	display: block;
	text-align: left;
	color: #aaa;
	padding-left: 10px;
	outline-style: none;
	width:600px;
	}
.home3bottomb a.home3bottomb_right{
	text-decoration: none;
	display: inline-block;
	float: right;
	padding:18px 39px;
	overflow: hidden;
	color: #fff;
	background-color: #22bb75;
	text-align: center;
	font-family: 'Open Sans';
	font-style:normal;
	-webkit-font-smoothing: antialiased;
	font-size: 15px;
	font-weight:bold;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	-moz-border-top-right-radius: 5px;
	-moz-border-bottom-right-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	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;
	}
.home3bottomb a.home3bottomb_right:hover {
	background-color: #444444;
}
.home3bottomc{
	padding:0 0 0 90px;
	position:relative;
	}
.home3bottomc span.glyphicons{
	background-color:#4F4F4F;
	width:70px;
	height:70px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	position: absolute;
	left:0;
	top:0;
	font-size:24px;
	color:#8D8D8D;
	text-align:center;
	line-height:70px;
	}
.home3bottomc h3{
	font-size:14px;
	color:#fff;
	font-weight:normal;
	line-height:26px;
	}
.home3bottomc p{
	font-size:13px;
	color:#bbb;
	}
.home3bottomc span.date{
	font-size:13px;
	color:#22bb75;
	}
.home3bottomcline{
	width:100%;
	height:1px;
	background-color:#3C3C3C;
	margin:35px 0;
	}
/* ********** BOTTOM ************** */	
#dnn_bottom{
	}
.bottom_colors,
.bottom_colors .Normal{
	color:#bbb;
	}

.bottoma p{
	margin:0 0 20px 0;	
	}
.bottoma a{
	text-decoration:none;
	transition: 		color ease-in 200ms;
	-moz-transition: 	color ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     color ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms; /* IE9? */
	}
.bottoma a:hover{
	text-decoration: underline;
	}
.bottoma p.socialicon_footer{
	margin: 10px 0 0px 0;
	}
.bottoma p.socialicon_footer a{
	color:rgba(255,255,255,0.3);
	font-size:24px;
	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? */
	}
.bottoma p.socialicon_footer a:hover{
	color:#22BB75;
	text-decoration:none;
	}
.bottomb{
	list-style-type:none;
	margin:0;
	padding:0;
	}
.bottomb li{
	list-style-type:none;
	padding: 7px 0;
	}

.bottomb li .bottomb_left{
	width:50px;
	height:50px;
	background-color:rgba(255,255,255,0.1);
	text-align:center;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	float: left;
	margin: 6px 20px 0 0;
	}
.bottomb li .bottomb_left span.glyphicons{
	font-size:16px;
	color:#919191;
	line-height:48px;
	}
.bottomb li .bottomb_right p{
	color:#bbb;
	}
.bottomb li .bottomb_right span{
	color:#777;
	}
.bottomc a{
	display: inline-block;
	margin: 0px 6px 8px 0px;
	outline: none;
	line-height: 20px;
	padding: 7px 19px;
	color:#bbb;
	border:1px solid #888;
	text-decoration: none;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	transition: 		color ease-in 200ms,border ease-in 200ms;
	-moz-transition: 	color ease-in 200ms,border ease-in 200ms; /* Firefox 4 */
	-webkit-transition:     color ease-in 200ms,border ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms,border ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms,border ease-in 200ms; /* IE9? */
	}
.bottomc a:hover{
	color:#22BB75;
	border:1px solid #22BB75;
	}

/* ********** FOOTER ************** */		
footer{
	padding:26px 0;
	}
.copyright_style{
	float:left;
	color:#bbb;
	}
.FootPane,
.foota{
	float:right;
	color:#22BB75;
	}
.foota a{
	padding:0 5px;
	text-decoration:none;
	}
.foota a:hover{
	text-decoration:underline;
	}
.to_topmain{
	position:relative;
	z-index:2;
}
#to_top {
	width: 45px;
	height: 45px;
	font-size: 0px;
	background-color: #777;
	text-align: center;
	float: right;
	cursor: pointer;
	margin: 2px 0px 0px 0px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	position: fixed;
	bottom: 25px;
	right: 25px;
	display: none;
	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;
	}	
#to_top:before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 50%;
	left: 50%;
	border-top: 5px solid rgba(255,255,255,0.4);
	border-left: 5px solid rgba(255,255,255,0.4);
	margin: -4px 0 0 -6px;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	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;
	}
#to_top:hover:before{
	border-top: 5px solid #fff;
	border-left: 5px solid #fff;
	}
	
/*-- Loading animation --*/	

.pace_bg,
.pace-running .pace_bg {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	z-index:10100;
}
.pace-running .body_bg{
	visibility:hidden;
}
.pace-done .body_bg{
	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? */
}


@media only screen and (min-width: 1200px) {
	.dnn_layout {
		width: 1170px;
		}
	.head_mid,
	.content_mid,
	.bottom_mid,
	.footer_mid{
		padding:0 20px;
		}
	.conl{
		padding: 30px;
		}
	.topg p{
		padding:0 135px;
		}
	.home2_topa li{
		padding: 17px 40px 17px 147px;
		}
	.home2_topa li span{
		left:50px;
		}
	.home2_cond_left{
		width:490px;
		height:410px;
		}
	/*anchor Nav*/
	#anchorNav {
		right:100px;
		}
	.home3conc .home3conc_1,
	.home3conc .home3conc_2,
	.home3conc .home3conc_3{
		padding:40px;
		}
	.home3cona{
		padding:25px 30px;
		}
	.home3cona span.glyphicons{
		width:90px;
		height:90px;
		margin:-45px 0 0 0;
		right:30px;
		font-size:35px;
		line-height:90px;
		}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.topbout,
	.topbline,
	.topbline3,
	.topbline4{
		display:none;
		}
	.topbbox1, 
	.topbbox2{
		margin-top:0px;
		}
	.topbbox3, 
	.topbbox4{
		margin-top:20px;
	}
		
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
/* ********** Pane Style ************** */
	[class*="Pane"],
	.row [class*="Pane"] {
		padding:0px 0px 30px 0px;
	}
	.HeadPane_mobile{
		padding:0;
	}

	.DNNEmptyPane{
		display:none;
	}
	.pt40{
		padding-top:30px;
		}
	.pb40{
		padding-bottom:30px;
		}
	.mt40{
		margin-top:30px;
		}
	.mb40{
		margin-bottom:30px;
		}
	.BannerPane,
	.top_dp .TopDPane,
	.LightGreyBGPane,
	.LightGreyBGPaneB,
	.row .BotBGPaneA,
	.row .BotBGPaneB,
	.FootPane,
	.ConPaneB,
	.ConPaneD,
	.ConPaneF,
	.header2 .HeadPane,
	.header3 .HeadPane,
	.HeadPaneB{
			padding:0;
			}

	.dnn_layout{
		width: 750px;
		}
	#dnn_content{
		padding:30px 0 0 0;		
		}
	.head_mid,
	.content_mid,
	.bottom_mid,
	.footer_mid{
		padding:0 15px;
		}

	.topa_right{
		margin:20px 0 0 0;
		}
	.topc_right ul.topc_righbox .topc_righbox_icon{
		float:left;
		}
	.topc_right ul.topc_righbox .topc_righbox_text {
		display: block;
		top: 0;
		}
	.conf{
		padding: 0 0 0 70px;
		}
	.conf .icon{
		width: 50px;
		height: 50px;
		}
	.conf .icon span.glyphicons{
		line-height:48px;
		font-size:18px;
		}

	.conm_left{
		width: 300px;
		height: 300px;
		}
	.conm_left span{
		font-size: 120px;
		margin: 60px 0 0 0;
		}
	.conm_right {
		padding: 0px 0;
		}
	.topg p{
		padding:0;
		}
	
	.SectionStyles7_conbox1 .SectionStyles7_conbox2{
		margin:0 0 10px 0;
		}
	.home2_topa li{
		padding: 17px 0 17px 52px;
		border-left:none;
		}
	.home2_topa li span{
		width: 40px;
		height: 40px;
		line-height: 36px;
		font-size: 30px;
		left: 6px;
		margin: -20px 0 0 0;
		}
	.ourteam_1 .team_list .team_person .team_img img{
		display:inline-block;
		}
	.home2_cone img{
		max-width:43%;
		padding:0;
		}
	.home2_cona .number{
		line-height:120px;
		}
	.ourteam_1 .team_list{
		padding:30px 0;
		}
	.home2_cond_left{
		width:345px;
		height:289px;
		}
	/*anchor Nav*/
	#anchorNav {
		right:20px;
	}
	.home3cona {
	  padding: 25px 60px 25px 25px;
	}
	.home3cona h6 {
		font-size: 16px;
		line-height: 22px;
		}
	.home3conb li{
		width:50%;
		}
	.home3conb li:first-child, 
	.home3conb li:nth-child(3),
	.home3conb li:nth-child(5),
	.home3conb li:nth-child(7){
		border-left:none;
		}
	.home3bottomb{
		width:100%;
		}
	.home3bottomb .home3bottomb_left{
		width:520px;
		}
	.home3bottomc{
		padding:0;
		}
	.home3bottomc span.glyphicons{
		display:none;
	}
	.roll_menu.roll_activated .dnn_logo{
		max-width:120px;
	}	
		
		

}


@media only screen and (max-width: 767px) {
/* ********** Pane Style ************** */
	[class*="Pane"],
	.row [class*="Pane"] {
		padding:0px 0px 20px 0px;
	}
	.HeadPane_mobile{
		padding:10px 0 0;
		text-align:center;
	}
	.DNNEmptyPane{
		display:none;
	}
	.pt40{
		padding-top:20px;
		}
	.pb40{
		padding-bottom:20px;
		}
	.mt40{
		margin-top:20px;
		}
	.mb40{
		margin-bottom:20px;
		}
	.BannerPane,
	.top_dp .TopDPane,
	.LightGreyBGPane,
	.LightGreyBGPaneB,
	.row .BotBGPaneA,
	.row .BotBGPaneB,
	.FootPane,
	.ConPaneB,
	.ConPaneD,
	.ConPaneF,
	.header2 .HeadPane,
	.header3 .HeadPane,
	.HeadPaneB{
			padding:0;
			}

	.dnn_layout {
		width: auto;
	}
	#dnn_wrapper {
		min-height:100%;
		overflow:hidden;
		position:relative;
	}
	#dnn_content{
		padding:20px 0;		
		}
	.head_mid {
		padding:15px;
		min-height: 37px;
		}
	.top_mid{
		padding:0 15px;
		}
	.topa .col-md-3.col-sm-4{
		text-align:center;
		}
	.topa_right{
		margin:20px 0 0 0;
		}
	.tp-caption a.bannerbutton {
		font-size: 14px;
		padding: 5px 10px;
		}
	.SliderRevolution3D.defaultskin .tp-leftarrow.default,
	.SliderRevolution3D.defaultskin .tp-rightarrow.default,
	.topbout,
	.topbline,
	.topbline3,
	.topbline4{
		display:none;
		}
	.topbbox1, 
	.topbbox2{
		margin-top:0px;
		padding:0 15px;
		}
	.topbbox3, 
	.topbbox4{
		margin-top:20px;
		padding:0 15px;
		}
	.topc_left .topc_imga {
		text-align: center;
		margin: 0 15px 20px;
		}
	.topc_right h2,
	.topc_right p,
	.topc_right ul.topc_righbox{
		}
	.topc_right .topc_rightline{
		margin: 0 15px 20px 18px;
		}	
	.topc_right a{
		display: block;
		text-align: center;
		margin: 20px 15px 0 15px;
		}
	a.Button_default.Button_style{
		display: block;
		text-align: center;
		margin: 20px 15px;
		}
	.conl{
		padding: 30px;
		}
	.topg p{
		padding:0;
		}
	.SectionStyles1,
	.SectionStyles2,
	.SectionStyles3_bg,
	.SectionStyles4_bg{
		padding-top:20px;
		padding-left:15px;
		padding-right:15px;
		}
	.SectionStyles3 h3,
	.SectionStyles4 h3{
		font-size:20px;
		}
	.SectionStyles7_con p{
		padding:0;
		}

	.SectionStyles7_conbox1 .SectionStyles7_conbox2{
		margin:10px 0;
		}
	.boxes_style_5 .boxes .but a.Button_default2 {
		padding: 9px 20px;
		display:inline-block;
		}
	.content_mid,
	.bottom_mid,
	.footer_mid{
		padding:0 15px;
		}
	.bread_mid{
		padding-left:15px;
		padding-right:15px;
		}	
	.cona .conaleft{
		margin: 0 0 20px 0;
		}
	.conba{
		background-size:inherit;
		}
	.cone{
		margin:20px 0 0 0;
		}
	.conf{
		padding: 0 0 0 70px;
		}
	.conf .icon{
		width: 50px;
		height: 50px;
		}
	.conf .icon span.glyphicons{
		line-height:48px;
		font-size:18px;
		}
	.cong .congleft .line{
		margin:20px auto;
		}
	.cong .congright:before{
		display:none;
		}
	.conm_left{
		width: 200px;
		height: 200px;
		}
	.conm_left span{
		font-size: 70px;
		line-height: 70px;
		margin: 45px 0 0 0;
		}
	.conm_left p {
		font-size: 14px;
		}
	.home2_topa li{
		padding: 10px 0 10px 65px;
		border-left:none;
		width:100%;
		}
	.home2_topa li span{
		left:0px;
		width:50px;
		height:50px;
		line-height:46px;
		margin:-25px 0 0 0;
		}
	.home2_cona .number{
		line-height:120px;
		}
	.home2_conc .timebox {
		padding: 0;
		}
	.home2_conc .time {
		width: 46px;
		height: 46px;
		border: 3px solid #E3E7E8;
		line-height: 40px;
		}
	.home2_cona .linebox .line {
		width: 100%;
		}
	.home2_conb{
		padding:0;
		}
	.home2_cond_boxa, .home2_cond_boxc {
		padding:0;
		}
	.home2_cond_boxb ul li img{
		padding:0 10px 0 0;
		}
	.ourteam_1 .team_list{
		padding:20px 0;
		}
	.ourteam_1 .team_list .team_person .team_img img {
		display: inline-block;
		}
	.home2_cone{
		padding:10px 0 0 0;
		}
	.home2_conf .cono:before,
	.home2_conf .centerline{
		display:none;
		}
	.home2_cong {
		padding: 20px 0;
		}
	.home2_cong .home2_cong_left, 
	.home2_cong .home2_cong_center, 
	.home2_cong .home2_cong_right {
		padding: 15px 0;
		}	
	.home2_cong .home2_cong_left p, 
	.home2_cong .home2_cong_center p, 
	.home2_cong .home2_cong_right p {
		padding: 0 0 0 80px;
		}
	.home2_cond_left{
		width:270px;
		height:226px;
		}
	.home3cona{
		margin:5px 0;
		}
	.home3conb li{
		width:50%;
		}
	.home3conb li:first-child, 
	.home3conb li:nth-child(3),
	.home3conb li:nth-child(5),
	.home3conb li:nth-child(7){
		border-left:none;
		}
	.home3bottomb {
		margin: 20px auto 0;
		height: 40px;
		width: 100%;
		}
	.home3bottomb .home3bottomb_left {
		font-size: 12px;
		height: 40px;
		width: 165px;
		}
	.home3bottomb a.home3bottomb_right{
		padding: 11px 20px 10px;
		font-size: 12px;
		}
	.home3bottomc{
		padding:0;
		}
	.home3bottomc span.glyphicons{
		display:none;
		}


	.conm_right {
		padding: 20px 0;
		}
		
	.copyright_style {
		float: none;
		text-align: center;
		}
	.FootPane,
	.foota {
		float: none;
		text-align: center;
		}

	
/*--------- Mobile Menu style ----------*/
	.mobile_main{
		}
	.mobile_main .dnn_logo{
		padding: 0;
		height:40px;
		line-height:40px;
		margin:0;
		}
	.mobile_main .mobilep{
		margin:0;
		}
	.mobile_main .mobilep_top,
	.mobile_main .headp, 
	.mobile_main .search_ps{
		float:right;
		display:inline-block;
		padding:5px 0;
		}
	
	.mobile_main .headp .login_icon, 
	.mobile_main .search_ps .search_icon{
		}
	.mobile_main .headp .login_icon span.glyphicons, 
	.mobile_main .search_ps .search_icon span.glyphicons{
		}
	.mobile_main .headp.Open .login_icon span.glyphicons:before, 
	.mobile_main .search_ps.Open .search_icon span.glyphicons:before{
		content: "\E208";
		}
		
		
	.mobile_main .header_element .element_box{
		margin-top:15px;
		}
	.mobile_main .header_element .headp.Open .element_box,
	.mobile_main .header_element .search_ps.Open .element_box{
		filter: alpha(opacity=100);
		opacity: 1;
		z-index: 1000;		
		}
	.mobile_main .header_element .headp.Open .element_box.login:before, 
	.mobile_main .header_element .search_ps.Open .element_box.searchBox:before {
		filter: alpha(opacity=100);
		opacity: 1;
		z-index: 1000;
		}
	.mobile_main .header_element .element_box.login{
		right: 38px;
		text-align:center;
		}	
/*--------- Mobile Menu style ----------*/
   .mobile_icon {
    width: 30px;
    height: 30px;	
	margin:0 0 0 15px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 1px solid #666;
    text-align: center;
    cursor: pointer;
    display: inline-block;
}
	
	.mobile_menu.mm-menu{
		z-index:1024;
		width:100%;
		top:-100%;
		bottom:auto;
		height:100%;
		max-width:100%;
		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? */
		display:block!important;
	}

	
	.mm-opened .mobile_menu.mm-menu{
		-webkit-transform: translateY(100%);
		-moz-transform: translateY(100%);
		-ms-transform: translateY(100%);
		-o-transform: translateY(100%);
		transform: translateY(100%); 
	}
	html.mm-opening.mm-opened .mm-slideout {
		-webkit-transform:none!important;
		-moz-transform:none!important;
		-ms-transform:none!important;
		-o-transform:none!important;
		transform:none!important; 
		
	}
	html.mm-blocking.mm-opened  #mm-blocker{
		display:none;
	}
	.mobilemenu_close{
		display: block;
		font-size: 0;
		height: 28px;
		line-height: 28px;
		overflow: hidden;
		text-align: center;
		text-decoration: none !important;
	}
	.mobilemenu_close:before{
		content:"\E115";
		font-family:"Glyphicons Regular";
		font-size:13px;
		color:#4f4f4f;		
		text-decoration:none;
	}
	.mobile_menu .mm-close.mm-btn:before{
		content:"\E208";
		font-family:"Glyphicons Regular";
		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:"\E225";
		font-family:"Glyphicons Regular";
		font-size:15px;
		display:inline-block;
	}
	.mobile_menu .mm-next:after{
		border:none;
		transform:none;
		-webkit-transform:none;
		content:"\E224";
		font-family:"Glyphicons Regular";
		font-size:13px;
		display:inline-block;
		top: -13px;
	}

	.mobile_menu .mm-navbar .mm-btn{
		line-height:46px;
	}
	.mobile_menu .Container-3 .title3{
		color:initial;
		text-align:center;
		padding:10px 0 0;
		display:block;
	
	}

/*anchor Nav*/
	#anchorNav {
		display:none!important;
		}
}


@media only screen and (min-width: 768px) {
	.mobile_menu.mm-menu{
		display:none!important;
	}
	html.mm-opening.mm-opened .mm-slideout {
		-webkit-transform:none!important;
		-moz-transform:none!important;
		-ms-transform:none!important;
		-o-transform:none!important;
		transform:none!important; 
		
	}
}	

@media only screen and (max-width: 525px) {
	.home3conb li{
		width:100%;
		border-left:none !important;
		}
	}
@media print {
	a:link:after {
		content: " ";
	}
}
/*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;
	}
}

@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) {
	
}




/*loading*/
.main-container.loading{
  width: auto;
  height: auto;
}
.loading {
	width: 26px;
	height: 26px;
	position: relative;
}
.loading .container1 > div,
.loading .container2 > div,
.loading .container3 > div {
	width: 6px;
	height: 6px;
	background-color: #333;
	border-radius: 100%;
	position: absolute;
	-webkit-animation: bouncedelay 1.2s infinite ease-in-out;
	animation: bouncedelay 1.2s infinite ease-in-out;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	overflow:hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
}
.loading .loading-container {
	position: absolute;
	width: 100%;
	height: 100%;
}
.loading .container2 {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}
.loading .container3 {
	-webkit-transform: rotateZ(90deg);
	transform: rotateZ(90deg);
}
.loading .circle1 {
	top: 0;
	left: 0;
}
.loading .circle2 {
	top: 0;
	right: 0;
}
.loading .circle3 {
	right: 0;
	bottom: 0;
}
.loading .circle4 {
	left: 0;
	bottom: 0;
}
.loading .container2 .circle1 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}
.loading .container3 .circle1 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}
.loading .container1 .circle2 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}
.loading .container2 .circle2 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}
.loading .container3 .circle2 {
	-webkit-animation-delay: -0.7s;
	animation-delay: -0.7s;
}
.loading .container1 .circle3 {
	-webkit-animation-delay: -0.6s;
	animation-delay: -0.6s;
}
.loading .container2 .circle3 {
	-webkit-animation-delay: -0.5s;
	animation-delay: -0.5s;
}
.loading .container3 .circle3 {
	-webkit-animation-delay: -0.4s;
	animation-delay: -0.4s;
}
.loading .container1 .circle4 {
	-webkit-animation-delay: -0.3s;
	animation-delay: -0.3s;
}
.loading .container2 .circle4 {
	-webkit-animation-delay: -0.2s;
	animation-delay: -0.2s;
}
.loading .container3 .circle4 {
	-webkit-animation-delay: -0.1s;
	animation-delay: -0.1s;
}
@-webkit-keyframes 
bouncedelay {
 0%, 80%, 100% {
-webkit-transform: scale(0.0)
}
 40% {
-webkit-transform: scale(1.0)
}
}
@keyframes 
bouncedelay {
 0%, 80%, 100% {
 transform: scale(0.0);
 -webkit-transform: scale(0.0);
}
40% {
 transform: scale(1.0);
 -webkit-transform: scale(1.0);
}
}

.isotope_grid .loading {
	position:absolute;
	bottom:10px;
	left:50%;
	margin:0 0 0 -10px;
}

/***new portfolios group***/
.isotope_grid .portfolios_group{
	padding:5px 0 30px;
	position:relative;
	text-align:left;
}
.isotope_grid .portfolios_group a{
	display:inline-block;
	font-size:14px;
}
.isotope_grid .portfolios_group a:first-child{
	margin-left:0;
}
@media only screen and (max-width: 767px) {
.isotope_grid .portfolios_group a{
	margin:0 5px;
}
}
/***portfolios button***/
a.portfolios_default_btn{
	width:120px;
	line-height:36px !important;
	display:inline-block;
	font-size:12px;
	padding:0;
	text-align:center;
	text-decoration:none;
	margin-right:10px;
	margin-bottom:0;
	text-transform:uppercase;
	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? */
}
@media only screen and (max-width: 767px) {
a.portfolios_default_btn{
	margin-right:2px;
}
}
/***portfolios carousel***/
.portfolios_carousel_title{
	font-size:20px;
	color:#333333;
	padding:23px 0 15px;
}

/***Grid layouts***/
.Grid_layouts .isotope_main{
	margin-left:-15px;
}
.Grid_layouts .isotope_item .photo_box{
	margin:0 0 15px 15px;
}
.Grid_layouts .photo_box .content h3{
	font-size:16px;
	line-height:1.8;
	margin:0;
	text-transform:uppercase;
}
.Grid_layouts  .photo_box .content p{
	font-size:13px;
	margin-bottom:15px;
}
.Grid_layouts .photo_box .content a{
	font-size:14px;
	color:#ffffff;
    line-height:36px;
	border:1px solid #ffffff;
	padding:8px 45px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.Grid_layouts .photo_box .shade{
	background-color:#22bb75;
}
.Grid_layouts .photo_box:hover .shade{
	opacity:0.8;
}
@media only screen and (max-width: 767px) {
.Grid_layouts .isotope_main{
	margin-left:0;
}
.Grid_layouts .isotope_item .photo_box{
	margin:0 0 15px;
}
}

/***Classic layouts***/
.Classic_layouts .isotope_main{
	margin-left:-15px;
}
.Classic_layouts .isotope_item .photo_box{
	margin:0 0 15px 15px;
}
.Classic_layouts .photo_box .content h3{
	font-size:14px;
	line-height:20px;
	margin:0;
	text-transform:uppercase;
}
@media only screen and (max-width: 767px) {
.Classic_layouts .isotope_main{
	margin-left:0;
}
.Classic_layouts .isotope_item .photo_box{
	margin:0 0 15px;
}
}

/***Text layouts***/
.Text_layouts .isotope_main{
	margin-left:-15px;
}
.Text_layouts .isotope_item .photo_box{
	margin:0 0 15px 15px;
}
.Text_layouts .photo_box .ico span{
	width:50px!important;
	height:50px!important;
	line-height:50px!important;
	font-size:16px;
	border:1px solid #ffffff;
	background:none !important;
	transition: all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 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_layouts .photo_box a:hover span{
	color:#22bb75;
	background:#ffffff !important;
}
.Text_layouts .photo_box .shade{
	background-color:#22bb75;
}
.text_style1{
	font-size:12px;
	padding:16px 0 19px;
}
.text_style1 h3{
	font-size:15px !important;
	color:#333333;
	text-transform:uppercase;
	letter-spacing:0 !important;
	font-weight:bold !important;
}
.text_style1 a{
	font-size:13px;
	color:#22bb75;
	text-transform:uppercase;
}
.text_style2{
	font-size:13px;
	color:#666666;
	padding:20px 20px 15px;
	border-width:0 1px 1px 1px;
	border-style:solid;
	border-color:#d4d4d4;
	border-radius:0 0 5px 5px;
	-moz-border-radius:0 0 5px 5px;
	-webkit-border-radius:0 0 5px 5px;
}
.text_style2 h3{
	font-size:15px !important;
	color:#333333;
	text-transform:uppercase;
	letter-spacing:0 !important;
	font-weight:bold !important;
}
.text_style2 .info {
    float: right;
    font-size: 14px;
    padding-top: 13px;
}
.text_style2 .info span{
	margin-right:3px;
}
@media only screen and (max-width: 767px) {
.Text_layouts .isotope_main{
	margin-left:0;
}
.Text_layouts .isotope_item .photo_box{
	margin:0 0 15px;
}
}

/***List layouts***/
.List_layouts .isotope_main{
	margin-left:0;
}
.List_layouts .isotope_main .photo_box{
	margin:0;
}
.List_layouts .isotope_item{
	padding-bottom:40px;
	margin-bottom:40px;
	border-bottom:1px solid #e5e5e5; 
}
.List_layouts_text{
	font-size:12px;
}
.text_style3{
	font-size:13px;
	color:#666666;
}
.text_style3 h3{
	font-size:15px;
	color:#333333;
	margin:0 0 7px;
	text-transform:uppercase;
}
.List_layouts_text hr{
	width:60px;
	margin:20px 0;
	border-color:#22bb75;
	display:inline-block;
}
.List_layouts_text p a{
	margin-top:26px;
}
@media only screen and (max-width: 767px) {
.List_layouts .isotope_main .photo_box{
	margin:0 0 15px;
}
}

/***Sidebar layouts***/
.Sidebar_layouts{
	padding-bottom:25px;
	margin-bottom:30px;
	border-bottom:1px solid #e5e5e5; 
}
.Sidebar_layouts .text_style3{
	padding:20px 0 4px;
}
.Sidebar_layouts p a{
	margin-top:13px;
}
.Sidebar_layouts_categories{
	margin:0 0 20px;
	list-style:none;
}
.Sidebar_layouts_categories li{
	border-bottom:1px solid #d1d1d1;
	line-height:39px;
	font-size:12px;
	color:#666666;
}
.Sidebar_layouts_categories li a{
	color:#666666;
}
.Sidebar_layouts_categories .glyphicons{
	font-size:12px;
	color:#22bb75;
	margin-right:10px;
}
.categories_number{
    float:right;
}
.Sidebar_layouts_recent_news{
	font-size:13px;
	color:#888888;
	padding-bottom:20px;
	margin-bottom:20px;
	border-bottom:1px solid #d1d1d1; 
}
.Sidebar_layouts_recent_news img{
	float:left;
	padding-right:20px;
}
.Sidebar_layouts_recent_news .heading{
	font-size:14px;
	padding-top:8px;
}
.Sidebar_layouts_links{
	margin:0 0 20px;
	list-style:none;
}
.Sidebar_layouts_links li{
	border-bottom:1px solid #d1d1d1;
	line-height:39px;
}
.Sidebar_layouts_links li a{
	font-size:12px;
	color:#666666;
}
.Sidebar_layouts_links .glyphicons{
	color:#22bb75;
	margin-right:10px;
}

/***All Single layouts***/
.Single_Layouts{
	font-size:12px;
}
.Single_Layouts h3{
	font-size:15px;
	color:#333333;
	text-transform:uppercase;
	margin:20px 0 15px;
}
.Single_Layouts p{
	padding-bottom:11px;
}
/***page control***/
.page_turning a{
	font-size:12px;
	color:#666666 !important;
	margin:0 5px 5px 0;
}
a.page_control{
	display:inline-block;
	line-height:31px !important;
	width:70px;
	border:1px solid #cccccc;
	text-align:center;
	text-decoration:none;
	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? */
}
a.page_number{
	display:inline-block;
	height:30px;
	line-height:30px !important;
	width:30px;
	border:1px solid #cccccc;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	text-align:center;
	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? */
}
a.page_control:hover,a.page_number:hover{
	color:#22bb75 !important;
	border:1px solid #22bb75;
	text-decoration:none;
}
.Single_page{
	padding-bottom:30px;
	margin-bottom:40px;
	border-bottom:1px solid #d8d8d8;
}
.Single_page a{
	font-size:13px;
	color:#22bb75;
	display:inline-block;
	line-height:38px !important;
	width:100px;
	border:1px solid #22bb75;
	text-align:center;
	text-decoration:none;
	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? */
}
.Single_page a:hover{
	background-color:#22bb75;
	color:#ffffff;
}
.prev_control{
	float:left;
}
.next_control{
	float:right;
}


/***Home 4***/
.SliderRevolution3D .banner4_btn a{
	width:200px;
	height:60px;
	line-height:60px;
	font-size:16px;
	color:#ffffff;
	text-align:center;
	display:block;
	border:1px solid #ffffff;
	text-transform:uppercase;
	letter-spacing: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? */
}
.SliderRevolution3D .banner4_btn a:hover{
	background-color:#444444;
	color:#ffffff;
	border:1px solid #444444;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.SliderRevolution3D .banner4_btn a{
	width:160px;
	height:40px;
	line-height:40px;
	font-size:14px;
}
}
@media only screen and (max-width: 767px) {
.SliderRevolution3D .banner4_btn a{
	width:100px;
	height:20px;
	line-height:20px;
	font-size:12px;
}
}

.home4_serve{
	text-align:center;
}
.home4_serve .icon{
	width:110px;
	height:110px;
	border:1px solid #22bb75;
	margin:0 auto 30px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	text-align:center;
}
.home4_serve .icon span.glyphicons{
	font-size:35px;
	color:#22bb75;
	top:0;
	line-height:108px;
}
.home4_serve h4{
	font-size:18px;
	font-weight:normal;
}
.home4_serve .line{
	width:30px;
	height:2px;
	background-color:#22bb75;
	margin:20px auto 15px;
}
.home4_serve  p{
	padding:0 15px;
}
.home4_serve .Button_default{
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	text-decoration:none;
	padding:8px 21px;
	display:inline-block;
	margin:15px 0 10px 0;
	text-transform:uppercase;
}

.home4_title{
	text-align:center;
}
.home4_title h4{
	font-size:22px;
	font-weight:normal;
	line-height:1;
}
.home4_title .line{
	width:40px;
	height:3px;
	background-color:#22bb75;
	margin:25px auto;
}
.SectionStyles5 .home4_title h4{
	color:#ffffff;
}
.SectionStyles5 .home4_title .line{
	background-color:#ffffff;
}

.home4_line_bg{
	height:5px;
	background:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/home4_line.png") 0 0 repeat-x;
}

.home4_three_img{
    position:relative;
}
.home4_top_img{
	position:relative;
	z-index:2
}
.home4_top_img img{
    margin:0 auto;
    width:65.64%;
}
.home4_left_img,.home4_right_img{
	position:absolute;
	top:14%;
	left:0;
	width:40.68%;
	z-index:1;
}
.home4_right_img{
	left:auto;
	right:0;
}

.home4_foot_title{
	font-size:16px;
	color:#dddddd;
	font-weight:bold;
}
.home4_foot_title hr{
	border-color:#6a6a6a;
}
.home4_foot ul{
	margin:0;
	list-style:none;
}
.home4_foot ul li{
	margin-bottom:12px;
}
.home4_foot ul li span{
	color:#22bb75;
	margin-right:10px;
	font-size:10px;
}
.home4_foot_padding{
	padding-bottom:15px;
}
.home4_info_left,.home4_info_right{
	float:left;
}
.home4_info_left{
	padding-right:15px;
}

.foot_bottom_link{
	color:#22bb75;
}
.foot_bottom_link span{
	padding:0 5px;
}


/******Home 5******/

/*full_screen_pic*/
.full_screen_pic {
	position:relative;
	margin:0;
	padding:0;
	width:100%;
	z-index:1;
}
.full_screen_pic:before{
}
.full_screen_pic li{
	list-style:none;
	background-size:cover;
	background-position: center bottom;
}
.full_screen_pic .content{
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 50%;
	width: 100%;
	-webkit-transform:translateY(50%);
	-moz-transform: translateY(50%);
	-ms-transform: translateY(50%);
	-o-transform: translateY(50%);
	transform: translateY(50%);
}
.full_screen_pic .content .title{
	font-size:100px;
	color:#FFF;
	font-weight:bold;
	text-transform:uppercase;
	line-height:1;
}
.full_screen_pic .content .title span{
	color:#ed474a;
}
.full_screen_pic .content .line{
	width:100px;
	margin:auto;
	border-bottom:1px solid #FFF;
	margin-bottom:20px;
	opacity: 0;
	transition: transform ease-in 500ms , opacity ease-in 500ms;
	-moz-transition: -moz-transform ease-in 500ms , opacity ease-in 500ms; /* Firefox 4 */
	-webkit-transition: -webkit-transform ease-in 500ms , opacity ease-in 500ms; /* Safari and Chrome */
	-o-transition: -o-transform ease-in 500ms , opacity ease-in 500ms; /* Opera */
	-ms-transition: -ms-transform ease-in 500ms , opacity ease-in 500ms; /* IE9? */
}
.full_screen_pic.animations .content .line {
}
.full_screen_pic .animation_1{
}
.full_screen_pic.animations .animation_1 {
}
.full_screen_pic .animation_2 {
}
.full_screen_pic.animations .animation_2 {
}
.full_screen_pic .animation_3{
	font-size:24px;
	color:#FFF;
	letter-spacing:1px;
	padding:0;
	transition: transform ease-in 500ms , opacity ease-in 500ms;
	-moz-transition: -moz-transform ease-in 500ms , opacity ease-in 500ms; /* Firefox 4 */
	-webkit-transition: -webkit-transform ease-in 500ms , opacity ease-in 500ms; /* Safari and Chrome */
	-o-transition: -o-transform ease-in 500ms , opacity ease-in 500ms; /* Opera */
	-ms-transition: -ms-transform ease-in 500ms , opacity ease-in 500ms; /* IE9? */
}
.full_screen_pic.animations .animation_3  {
}
.full_screen_pic #nextPage {
	width:100px;
	height:100px;
	line-height:100px;
	font-size:15px;
	color:#ffffff;
	font-weight:bold;
	margin:20px auto ;
	position:relative;
	background-color:#000000;
	background-color:rgba(0,0,0,0.3);
	border-radius:			50%;
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
	transition:  opacity ease-in 500ms;
	-moz-transition:  opacity ease-in 500ms; /* Firefox 4 */
	-webkit-transition: opacity ease-in 500ms; /* Safari and Chrome */
	-o-transition: opacity ease-in 500ms; /* Opera */
	-ms-transition: opacity ease-in 500ms; /* IE9? */
	cursor:pointer;	
} 
.full_screen_pic #nextPage:after {
	content:"";
	border-bottom:5px solid #ffffff;
	border-right:5px solid #ffffff;
	width:15px;
	height:15px;
	display:block;
	position:absolute;
	top:50%;
	left:50%;
	margin:-7px 0 0 -7px;	
	transform:rotate(45deg);
	-ms-transform:rotate(45deg); /* IE 9 */
	-moz-transform:rotate(45deg); /* Firefox */
	-webkit-transform:rotate(45deg); /* Safari and Chrome */
	-o-transform:rotate(45deg); /* Opera */
	transition: all ease-in 0.3s;
	-moz-transition: all ease-in 0.3s; /* Firefox 4 */
	-webkit-transition: all ease-in 0.3s; /* Safari and Chrome */
	-o-transition: all ease-in 0.3s; /* Opera */
	-ms-transition: all ease-in 0.3s; /* IE9? */
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
}
.full_screen_pic.animations #nextPage {
	-webkit-transition-delay:1s;
    -moz-transition-delay:1s;
	transition-delay:1s;
}
.full_screen_pic #nextPage:hover:after {	
	top:55%;
}
.full_screen_pic .banner_socials{
	padding:20px 0;
}
.full_screen_pic .banner_socials a{
	display:inline-block;
	width:65px;
	height:65px;
	line-height:61px;
	border:1px solid #ffffff;
	margin:0 10px;
	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? */
}
.full_screen_pic .banner_socials a:hover{
	background-color:#000000;
	background-color:rgba(0,0,0,0.3);
	border-color:transparent;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.full_screen_pic .content .title{
		font-size:80px;
	}
}
@media only screen and (max-width: 767px) {
	.full_screen_pic .animation_1 img{
		width:150px;
	}
	.full_screen_pic .content .title{
		line-height:1;
		font-size:28px;
		padding-bottom:20px;
	}
	.full_screen_pic .animation_3{
		font-size:14px;
		line-height:1.2;
		padding-bottom:20px;
	}
	.full_screen_pic #nextPage{
		margin:0px auto;
		width:60px;
		height:60px;
		line-height:60px;
	}
	.full_screen_pic.animations #nextPage {
 	}
	.full_screen_pic .banner_socials a{
		width:45px;
		height:45px;
		line-height:41px;
		margin:0 5px;
	}
}

.home5_head_link{
	font-size:16px;
	color:#666666;
	text-align:center;
}
.home5_head_link a{
	display:inline-block;
	color:#666666 !important;
	width:40px;
	height:40px;
	line-height:40px;
	border:1px solid #666;
	margin:0 3px;
	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? */
}
.home5_head_link a:hover{
	color:#22bb75 !important;
	border-color:#22bb75;
}

.home5_full_left{
	width:50%;
	height:100%;
	background:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/home5_pic2.jpg") center 0 no-repeat;
	background-size:cover;
	position:absolute;
	left:0;
	top:0;
}
.home5_full_right{
	float:right;
	width:50%;
	padding:20px 60px;
}
.home5_full_right h4{
	font-size:20px;
	font-weight:normal;
}
.home5_right_infos{
	padding-top:5px;
	border-bottom:1px solid #000000;
	border-bottom:1px solid rgba(0,0,0,0.15);
}
.home5_right_infos > div{
	padding:10px 0;
	border-top:1px solid #000000;
	border-top:1px solid rgba(0,0,0,0.15);
}
.home5_right_infos .glyphicons{
	display:inline-block;
	background-color:#22bb75;
	color:#ffffff;
	width:30px;
	height:30px;
	line-height:30px;
	font-size:14px;
	margin-right:28px;
	text-align:center;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.home5_info_name{
	width:80px;
	display:inline-block;
}
.home5_full_btn a{
	display:inline-block;
	width:150px;
	height:45px;
	line-height:43px;
	text-align:center;
	margin:15px 20px 0 0;
	border:1px solid #22bb75;
	color:#22bb75;
	text-decoration:none;
	border-radius:2px;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	transition: all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
}
.home5_full_btn a:hover{
	background-color:#22bb75;
	color:#ffffff !important;
}

.home5_feature_top img{
	padding:20px 0 10px;
	max-width:100%;
}
.home5_feature_bottom ul{
	margin:0;
	list-style:none;
}
.home5_feature_bottom ul li{
	margin-bottom:5px;
}
.home5_ico{
	display:inline-block;
	width:15px;
	height:15px;
	margin-right:10px;
	background:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/arrow-3.png") center 4px no-repeat #22bb75;
	position:relative;
	top:3px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}

.home5_services{
	background-color:#ffffff;
	padding:0 45px;
	margin-top:40px;
	color:#666666;
}
.home5_services h3{
	color:#000000;
	font-size:16px;
	font-weight:normal;
	margin-top:20px;
}
.home5_services .glyphicons{
	width:80px;
	height:80px;
	line-height:70px;
	color:#ffffff;
	font-size:22px;
	border:5px solid #ffffff;
	background-color:#22bb75;
	margin-top:-40px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.home5_services div{
	padding-bottom:40px;
}
.home5_services a{
	text-transform:uppercase;
}

.home5_num_circle{
	width:230px;
	height:230px;
	border:3px solid #22bb75;
	text-align:center;
	color:#22bb75;
	font-size:16px;
	margin:30px auto;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
}
.home5_num_circle div{
	font-size:48px;
	padding-top:50px;
}

.home5_news{
	border-bottom:1px solid #5a5a5a;
	padding-bottom:20px;
	margin-bottom:20px;
}
.home5_news_left{
	float:left;
	text-align:center;
	padding:5px 20px 0 0;
}
.home5_news_left .glyphicons{
	width:49px;
	height:49px;
	line-height:49px;
	background-color:#484848;
	font-size:25px;
}
.home5_news_right{
	overflow:hidden;
}
.home5_news_accent{
	color:#22bb75;
}

.home5_touch_info{
	padding:16px 0;
}
.home5_touch_info p span{
	display:inline-block;
	width:70px;
}
.home5_touch_social a.social{
	font-size:36px;
}

.home5_bottom_img{
	position:relative;
	min-height:218px;
}
.home5_bottom_img1,.home5_bottom_img2,.home5_bottom_img3,.home5_bottom_img4{
	position:absolute;
}
.home5_bottom_img1{
	width:26.24%;
	bottom:0;
	z-index:5;
}
.home5_bottom_img2{
	width:36.67%;
	left:21.88%;
	bottom:0;
	z-index:3;
}
.home5_bottom_img3{
	width:26.24%;
	left:51.71%;
	bottom:0;
	z-index:4;
}
.home5_bottom_img4{
	width:30%;
	left:70%;
	bottom:0;
	z-index:2;
}
.BannerPane_right{
	margin-top:40px;}

@media only screen and (min-width: 1200px) {
	.home5_bottom_img{
		min-height:267px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.home5_full_right{
		padding:20px;
	}
	.home5_bottom_img{
		min-height:170px;
	}
}
@media only screen and (max-width: 767px) {
	.BannerPane_right{
	    margin-top:20px;}
	.home5_full_left{
		position:relative;
		width:100%;
		height:200px;
	}
	.home5_full_right{
		float:none;
		width:100%;
		padding-left:15px;
		padding-right:15px;
	}
	.home5_right_infos .glyphicons{
		margin-right:10px;
	}
	.home5_right_infos{
		font-size:11px;
	}
	.home5_info_name{
		width:50px;
	}
	.SectionStyles5 .row .col-sm-4{
		padding-bottom:15px;
	}
	.home5_num_circle{
		margin-bottom:0;
	}
	.home5_bottom_img{
		min-height:170px;
	}
}

/*aboutus02*/
.isotope_l,
.isotope_r{
	float:left;
	width:50%;}
	
.isotope_l .isotope_item{
	float:left;}

.width_60.height_40,
.width_40.height_40{
	width:50%;}

.isotope_grid_new_new{
	width:100%;
	overflow:hidden;
	position:relative;
}

.isotope_grid_new .isotope_item .pic_box img{
	width:100%
}

.isotope_grid_new .isotope_group{
	text-align:center;
	padding:10px 0; 
}

.isotope_grid_new .isotope_group a{
	margin:0px 27px;
	padding:6px 0px;
	color:#666;
	font-size:13px;
	text-decoration:none;
	border-bottom:2px solid transparent;
	transition: 		color ease-in 200ms,border ease-in 200ms;
	-moz-transition: 	color ease-in 200ms,border ease-in 200ms; /* Firefox 4 */
	-webkit-transition: color ease-in 200ms,border ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		color ease-in 200ms,border ease-in 200ms; /* Opera */
	-ms-transition: 	color ease-in 200ms,border ease-in 200ms; /* IE9? */
}
.isotope_grid_new .isotope_group a:hover,
.isotope_grid_new .isotope_group a.active {
	color:#22bb75;
	border-bottom:2px solid #22bb75;
	text-decoration:none;
}
.isotope_grid_new1 .isotope_item > div {
	margin: 0;
}
.isotope_grid_new1 .isotope_group {
	text-align: center;
	padding: 10px 0 30px;
}
.isotope_grid_new1 .isotope_group a {
	margin: 0px 5px 5px;
	padding: 7px 35px;
	color: #000000;
	font-size: 13px;
	display: inline-block;
	border: 1px solid #cccccc;
	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_grid_new1 .isotope_group a:hover,
.isotope_grid_new1 .isotope_group a.active {
	border: 1px solid #07c6f5;
	color: #07c6f5;
	text-decoration: none;
}
.isotope_grid_new1 .isotope_item .photo{
	width:100%;
	position:relative;
	z-index: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? */
}
.isotope_grid_new1 .isotope_item .photo img {
	width:100%;
	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? */
}
/*.isotope_grid_new1 .isotope_item:hover .photo{
	transform:scale(1.2);
	-moz-transform:scale(1.2);
	-webkit-transform:scale(1.2);
	-o-transform:scale(1.2);
	-ms-transform:scale(1.2);
}*/
.isotope_grid_new1 .isotope_item:hover{
	z-index:1000;
}
.isotope_grid_new1 .isotope_item .photo:before,
.isotope_grid_new1 .isotope_item .photo:after{
	content:"";
	position:absolute;
	width:90%;
	z-index:10;
	filter:alpha(opacity=0);
	opacity:0;
	transition: 		all ease-out 400ms,opacity ease-out 800ms;
	-moz-transition: 	all ease-out 400ms,opacity ease-out 800ms; /* Firefox 4 */
	-webkit-transition: all ease-out 400ms,opacity ease-out 800ms; /* Safari and Chrome */
	-o-transition: 		all ease-out 400ms,opacity ease-out 800ms; /* Opera */
	-ms-transition: 	all ease-out 400ms,opacity ease-out 800ms; /* IE9? */
}


.isotope_grid_new1 .isotope_item .photo .angle:before,
.isotope_grid_new1 .isotope_item .photo .angle:after{
	content:"";
	position:absolute;
	height:90%;
	z-index:10;
	filter:alpha(opacity=0);
	opacity:0;
	transition: 		all ease-out 400ms,opacity ease-out 800ms;
	-moz-transition: 	all ease-out 400ms,opacity ease-out 800ms; 
	-webkit-transition: all ease-out 400ms,opacity ease-out 800ms; 
	-o-transition: 		all ease-out 400ms,opacity ease-out 800ms; 
	-ms-transition: 	all ease-out 400ms,opacity ease-out 800ms; 
}

.isotope_grid_new1 .isotope_item .photo:before{
	border-top:1px solid #fff;
	top:8%;
	left:5%;
}
.isotope_grid_new1 .isotope_item .photo:after{	
	border-bottom:1px solid #fff;
	bottom:8%;
	left:5%;
}
.isotope_grid_new1 .isotope_item .photo .angle:before{
	border-right:1px solid #fff;
	top:5%;
	right:8%;
}

.isotope_grid_new1 .isotope_item .photo .angle:after{
	border-left:1px solid #fff;
	bottom:5%;
	left:8%;
}
.isotope_grid_new1 .isotope_item:hover .photo:before,
.isotope_grid_new1 .isotope_item:hover .photo .angle:before,
.isotope_grid_new1 .isotope_item:hover .photo:after,
.isotope_grid_new1 .isotope_item:hover .photo .angle:after{
	filter:alpha(opacity=100);
	opacity:1;
}
.aboutus02_tit01{
  text-align:center;}
  
.aboutus02_tit01 h2{
  position:relative;
  font-size:30px; 
  display:inline-block;
  color:#333333;
  font-weight:normal;
  margin:0;}

.aboutus02_tit01 h2:before {
    content: "";  
	background:#22bb75;
    width: 35px;
    position: absolute;   
	height:4px;
	top:50%;
	margin:-1px 0 0 -47px;
}

.aboutus02_tit01 h2:after {
   content: "";  
	background:#22bb75;
    width: 35px;
    position: absolute;   
	height:4px;
	top:50%;
	margin:-1px 0 0 12px;
}
.aboutus02_tit02{
  text-align:center;}
  
.aboutus02_tit02 h2{
  position:relative;
  font-size:30px; 
  display:inline-block;
  color:#fff;
  font-weight:normal;
  margin:0;}

.aboutus02_tit02 h2:before {
    content: "";  
	background:#fff;
    width: 35px;
    position: absolute;   
	height:4px;
	top:50%;
	margin:-1px 0 0 -47px;
}

.aboutus02_tit02 h2:after {
   content: "";  
	background:#fff;
    width: 35px;
    position: absolute;   
	height:4px;
	top:50%;
	margin:-1px 0 0 12px;
}
.aboutus_img01 img,
.aboutus_img02 img,
.aboutus_img03 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;
	}
.aboutus_img01{
	position:absolute;
	top:-60px;
	left:-70px;}
.aboutus_img02{
	position:absolute;
	bottom:-51px;
	right:-68px;
	}
.aboutus_img03 {
    display: inline-block;
    position: relative;
}
.aboutus02_r span{
	float:left;
	width:58px;
	height:54px;
	line-height:54px;
	text-align:center;
	color:#fff;
	background:#22bb75;
	font-size:30px;
	margin:6px 10px 0 0;
	text-transform:uppercase;}

.aboutus02_rf{
	font-size:20px;
	color:#333;
	line-height:30px;
	
	}
	
a.aboutus02_bnt01{
    color: #fff !important;
    background-color: #22BB75;
    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;
	    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    text-decoration: none;
    padding: 8px 21px;
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
}
a:hover.aboutus02_bnt01{
	 background-color: #444;	
	}

.aboutus_img_box{
	position:relative;}
	
.aboutus02_bg01{
	background:#f4f4f4;}

.aboutus02_two_box{
	text-align:center;
	position:relative;
	padding:0 0 15px 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? */
}

.aboutus02_two_box:hover .aboutus02_two_icon span{
	color:#b6b6b6;
	border:3px solid #b6b6b6;}

	
.aboutus02_two_icon span{
	display:block;
	width:195px!important;
	height:195px;
	    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	border:3px solid #22bb75;
	text-align:center;
	line-height:260px;
	font-size:40px;
	color:#22bb75;
	margin:-97px auto 0 auto;
	
	
	}
.aboutus02_two_box h2{
	position:relative;
	z-index:100;	
	height:97px;
	margin: 0 0 0;
	background-color:#f4f4f4;
	font-size:16px;
	font-weight:normal;
	color:#333;
	line-height:97px;}

.aboutus02_bg02{
	background:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/aboutus02_bg02.png") no-repeat top center ;
	background-color:#f4f4f4 ;
	}
.aboutus02_two_box > p {
    margin: 0;
    padding: 30px 0 25px;
}
.aboutus02_bg03 {
	background:#22bb75;
	color:#fff;
	position:relative;}

.aboutus02_bg03:before {
    content: "";
    position: absolute;
    left: 50%;   
	margin:0 0 -60px -30px;
    bottom: 0;
    border-width:30px;
    border-color: transparent transparent transparent #22bb75;
    border-style: solid;
    z-index: 1;
	   transform:rotate(450deg);
    -ms-transform:rotate(450deg); 
    -moz-transform:rotate(450deg); 
    -webkit-transform:rotate(450deg);
    -o-transform:rotate(450deg);
}
.aboutus02_three_box{
	position:relative;
	padding:40px 0 40px 270px;
	}
	
.aboutus02_three_img{
	position:absolute;
	left:0;
	width:200px;
	height:200px;
	 border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	
	}
.aboutus02_three_img img{
	position:absolute;
	left:0;
	width:220px;
	height:220px;
	    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	border:2px solid #22bb75;
	padding:10px;}

.aboutus02_three_box:hover .aboutus02_three_img img{
	border:2px solid #c9c9c9;
	} 

.aboutus02_three_box:hover .shade {
    filter: alpha(opacity=50);
    opacity: 0.5;
}
	
.aboutus02_three_box .shade {
	    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;
    width: 100%;
    height: 100%;
    position: absolute;  
    background-color: #000;
    filter: alpha(opacity=0);
    opacity: 0;
    z-index: 0;
	position:absolute;
	left:10px;
	top:10px;	
	    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.aboutus02_three_con h2{
	font-size:22px;
	font-weight:normal;
	color:#22bb75;
	margin:0;
	padding:0 0 20px 0;}

.aboutus02_three_con h2 span{
	display:block;
	font-style:italic;
	font-size:14px;}
	
.aboutus02_three_icon a.social {
	font-size: 18px;
    display: inline-block;
    margin: 0 10px 0 0;
    color: #8c8c8c;}
	
.aboutus02_three_icon a.social :hover.color1{
	color:#31cfe7;
	}
.aboutus02_three_icon a.social :hover.color2{
	color:#4576e6;
	}
.aboutus02_three_icon a.social :hover.color3{
	color:#ec2851;
	}
.aboutus02_three_con p{
	margin:0;
	padding:20px 0 15px 0;}

.aboutus02_bg04 {
    background-attachment: fixed;
    background-image: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/aboutus02_bg03.jpg");
    background-position: center center;
    background-repeat: no-repeat;
	background-size: cover;
	backface-visibility: hidden;
}
.outer_box {
	background: #fcfcfc;
	border: 1px solid #f0f0f0;
	padding: 30px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	position: relative;
	margin: 0 0 17px 0;
}
.outer_box span {
	display: block;
}
.home3_testimonials h3 {
	padding-bottom: 23px;
}
.member_img {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -67px;
	margin-left: 30px;
	
}
.member_img  img{
	border-radius:50%;	
	}

.member_img span {
	text-align: center;
	padding: 10px 0 0 0;
	color:#22bb75;
}
.inner_box {
	padding-left: 129px;
}
.inner_box p {
	padding: 15px 0 0 0;
}
.inner_box p span {
	padding-top: 20px;
}
.inner_box .star {
	color: #fba709;
	font-size: 14px;
}
.inner_box .star em {
	float: left;
	line-height: 1;
}
.inner_box .star .last {
	color: #8e8e8e;
	padding-left: 10px;
	font-style: normal;
}
.aboutus02_tit03 h2{
	font-size:24px;
	font-weight:normal;
	text-align:center;
	margin:0;
	color:#666;
	}

.new_aboutus02_img{
	margin:-65px 0 0 0;}

.mar_40{
	margin-top:-40px;}
.mar_b40{
	margin-bottom:-40px;}

/*our service02*/
.service02_one_box{
	border:1px solid #cccccc;
	background:#fff;
	text-align:center;
	position:relative;
	padding:45px 20px 85px 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? */
	margin:0 0 65px 0;
	}
.service02_one_box h3{
	color:#333333;
	font-size:20px;
	font-weight:normal;
	margin:0;
	padding:0 0 20px 0;	
	}
.service02_one_box p{
	margin:0;
	padding:0 0 20px 0;}
.service02_one_icon span{
	width:110px!important;
	height:110px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background:#22bb75;
	color:#fff;
	border:1px solid transparent;
	display:inline-block;
	font-size:35px;
	text-align:center;
	line-height:110px;
	margin: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? */
	}
	
.service02_one_box:hover .service02_one_icon span{
	border:1px solid #fff;}

.service02_one_box:hover{
	border:1px solid #22bb75}

.service02_one_icon{
	background:#22bb75;
	display:inline-block;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin:0 0 -65px -65px;
	position:absolute;
	bottom:0%;
	left:50%;}

.service02_two_left {
       background: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/service02_bg01.jpg") center 0 no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 50%;
}
.service02_two_box  {
    background: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/service02_bg02.jpg") left top repeat;
    position: relative;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
.service02_two_right{
    width: 50%;
    float: right;
	padding-left:50px;
	padding-right:50px;
}
.service02_two_con{
	color:#fff;}
	
.service02_two_con h2{
	font-size:30px;
	font-weight:normal;
	color:#fff;
	margin:0;
	padding:0 0 30px 0;}

.service02_two_list ul li{
	margin:0;
	padding:8px 0;
	list-style:none;}

.service02_two_list ul li a{
	color:#fff;}

.service02_two_list ul li:hover span,
.service02_two_list ul li:hover,
.service02_two_list ul li a:hover{
	color:#22BB75;
	text-decoration:none;}

.service02_two_list ul li span{
	display:inline-block;
	margin:0 15px 0 0;}

.service02_two_list ul{	
	margin:0;
	padding:0 0 0 0;}

.service02_two_list{
	padding-top:20px;
	padding-left:15px;}
	
.service02_bg03{
	background:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/service02_bg03.jpg") no-repeat bottom center #fff;}


.service02_three_box {
	position:relative;
	min-height:280px;	
	margin:40px 0 40px 30px;	
	border:1px solid #cccccc;
	     transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */}

.service02_three_box:hover{
	background:#22BB75;
	color:#fff;
	border:1px solid #22BB75;
	}
.service02_three_box:hover a.service_bnt01{
	background:#fff;
	color:#22BB75!important;}
	
.service02_three_box:hover h2{
	color:#fff;}
	
.service02_three_left{
	float:left;
	position:absolute;
	left: -30px;
    top: -30px;
}
.service02_three_right{
	float:right;
	padding:40px 0 0 275px;}
	
.service02_three_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;
	}
	
.service02_three_right h2{
	font-size:18px;
	font-weight:normal;	
	color:#333;
	margin:0;
	}

.service02_three_right p{
	margin:0;
	padding:20px 0;}

a.service_bnt01 {
    color: #fff !important;
    background-color: #22BB75;
    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;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    text-decoration: none;
    padding: 10px 25px;
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
}
a.team02_bnt01 {
    color: #fff !important;
    background-color: #22BB75;
    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;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    text-decoration: none;
    padding: 8px 40px;
    display: inline-block;
    margin: 0;
	font-size:15px;
   
}
a:hover.team02_bnt01 {
    background-color: #444;
}
.service02_bg04 {
    background-attachment: fixed;
    background-image: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/service02_bg04.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	text-align:center;
	color:#fff;
	backface-visibility: hidden;
}
.service02_four_tit {
	font-size:30px;
	line-height:1;}
	
a.service_bnt02 {
    color: #fff !important;  
    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:2px solid #fff;
    text-decoration: none;
    padding: 15px 30px;
    display: inline-block;
    margin:5px 15px;
    text-transform: uppercase;
	font-size:15px;
}
a:hover.service_bnt02{
   background-color: #22BB75;
     border:2px solid #22BB75;
	}

.service02_five_img img{
	width:60px;
	height:60px;
	  border-radius: 50%;
    -moz-border-radius:  50%;
    -webkit-border-radius:  50%;
	border:1px solid #22BB75;
	}

.service02_five_top{
	position:relative;
	padding:0 0 0 80px;}

.service02_five_top .service02_five_img{
	position:absolute;
	left:0;}

.service02_five_top h2{
	font-size:16px;
	color:#444;
	font-weight:normal;	
	}

.service02_five_top h2 span{
	display:block;
	font-size:13px;
	color:#22BB75;}

.service02_five_box{	
	padding-bottom:40px;}

.service02_five_box p{
	margin:0;
	padding:10px 0 0 0;}
	
.service02_tit01{
	text-align:center;}
	
.service02_tit01 h2{
	color:#333;
	font-size:30px;
	font-weight:normal;
	margin:0;
	}

.service02_bg05{
    background-attachment: fixed;
    background-image: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/service02_bg05.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	position:relative;
	z-index:100;
	backface-visibility: hidden;
}
.service02_bg05_top{
	position:absolute;
	left:0;	
	background:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/service02_bg05_top.png") repeat-x;
	width:100%;
	height:6px;
	top:-6px;
	z-index:100;}
	
.service02_bg05_bottom{
	position:absolute;
	left:0;	
	background:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/service02_bg05_top.png") repeat-x;
	width:100%;
	height:6px;
	bottom:-6px;
	   transform:rotate(180deg);
    -ms-transform:rotate(180deg); 
    -moz-transform:rotate(180deg); 
    -webkit-transform:rotate(180deg);
    -o-transform:rotate(180deg);}

.service02_tit02{
	text-align:center;}
	
.service02_tit02 h2{
	font-weight:normal;
	font-size:26px;
	color:#10bd6e;
	margin:0;}
/*team*/
.team02_one.photo_box:hover .shade{
	background:#22bb75;	
	filter: alpha(opacity=80);
    opacity: 0.8;
	}
.team02_one.photo_box{
	-moz-box-shadow:2px 2px 15px #999; 
-webkit-box-shadow:2px 2px 15px #999; 
box-shadow:2px 2px 3px #999;
   margin:0 0 30px 0;}
 
.team02_one.photo_box img{
	width:100%;
}
.team02_one.photo_box .back_social a{
	color:#fff;	
    font-size: 25px;
    display: inline-block;
    margin: 5px;}
	
.team02_one.photo_box .vertical_center_2 {
    /* display: table-cell; */
    width: 100%;
    vertical-align: middle;
    position: absolute;
    bottom: 20px;
}
.team02_one.photo_box .content h3{
	font-size:22px;
	line-height:1.2;
	margin:0;
	padding:0 0 12px 0;
	}
.team02_one.photo_box .content p{
	display:block;
	font-weight:normal;
	font-size:22px;
	margin:0;
	padding:0 0 12px 0;}

.team02_tit02 h2{
	font-weight:normal;
	color:#777777;
	font-size:22px;
	margin:0;
	line-height:1.2;
	padding:0 0 15px 0;}

.team02_three{
	position:relative;
	padding:15px 0 15px 100px;
	border-bottom:1px dashed #a2a2a2;}

.team02_three:last-child{
	border:none;}

.team02_three img{
	position:absolute;
	left:0;
	top:15px;	
	}
.team02_three h3{
	font-size:15px;
	font-weight:normal;
	color:#22bb75;
	margin:0;}

.team02_three_box{
	background:#f8f8f8;
	padding:20px 30px 15px 30px;}

.team02_tit03{
	border-bottom:1px solid #a2a2a2}

.team02_tit03 h2:after{
	border-bottom:3px solid #22bb75;
	position:absolute;	
	width:87px;
	content:"";
	left:0;
	bottom:-2px;}

.team02_tit03 h2{
	position:relative;
	color:#777777;
	font-size:22px;
	line-height:1.2;
	font-weight:normal;
	margin:0;
	padding:0 0 15px 0;}

.img_bor img{
	border:1px solid #a2a2a2;}

.map_bor{
	padding:9px;
	border:1px solid #a2a2a2;}

.team02_four_box{
    background-color: #e9e9e9;
    position: relative;
}
.team02_full_left {
    background: rgba(0, 0, 0, 0) url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/team02_13.jpg") no-repeat scroll center 0 / cover ;
    height: 100%;
    left: 0;   
    top: 0;
    width: 50%;
	
}
.team02_full_right  {
    float: right;
    padding: 80px 60px;
    width: 50%;
	position:absolute;
	top:0;
	right:0;
}
.team02_full_right h2{
	text-align:center;
	font-size:24px;
	color:#333333;
	font-weight:normal;
	margin:0;
	padding:0 0 25px 0;}
.team02_full_right img{
	border:1px solid #a2a2a2;
	background:#fff;}

.team02_full_right img:hover{	
	border:1px solid #22bb75;
	}

.team02_img_float{
	width:33%;
	float:left;
	padding:5px;}

.team02_tit04{
	text-align:center;}
.team02_tit04 h2{
	font-size:30px;
	color:#333333;
	font-weight:normal;
	margin:0;}
.team02_tit04 .line{
	height:2px;
	background:#22bb75;
	margin:20px auto;
	width:40px;}

.team02_01_bg {
    background-attachment: fixed;
    background-image: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/team02_01_bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
	background-size: cover;
	backface-visibility: hidden;
}
.tame02_tit01 {
    text-align: center;
	color:#999999;
}
.tame02_tit01 h2 {
    position: relative;
    font-size: 30px;   
    display: inline-block;
    color: #fff;
    font-weight: normal;
    margin: 0;
}
.tame02_tit01 h2:before {
    content: "";
    background: #22bb75;
    width: 35px;
    position: absolute;
    height: 4px;
    top: 50%;
    margin: -1px 0 0 -47px;
}
.tame02_tit01 h2:after {
    content: "";
    background: #22bb75;
    width: 35px;
    position: absolute;
    height: 4px;
    top: 50%;
    margin: -1px 0 0 12px;
}
/*FAQ*/
.faq02_one_tit{
	background:#ececec;
	line-height:40px;
	height:40px;
	position:relative;
	padding:0 0 0 60px;}

.faq02_one_tit span{
	display:inline-block;
	background:#22bb75;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	color:#fff;
	font-size:26px;
	text-transform:uppercase;
	position:absolute;
	left:0;
	}

.faq02_two_box p{
	padding:20px 20px 20px 20px;}

.faq02_bg01 {
    background-attachment: fixed;
    background-image: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/faq02_bg01.jpg");
    background-position: center center;
    background-repeat: no-repeat;
	background-size: cover;
	backface-visibility: hidden;
}
.faq02_tit01{
	text-align:center;
	color:#fff;}
.faq02_tit01 h2{
	font-size:36px;
	color:#fff;
	text-transform:uppercase;
	margin:0;
	line-height:1.2;}

.faq02_tit01 .line{
	width:40px;
	height:1px;
	background:#fff;
	margin:30px auto;	
	}
.faq02_tit01 h3{
	color:#fff;
	font-weight:normal;
	font-size:22px;
	line-height:1.2;
	margin:0;
	}
.faq02_tit01 h3 span{
	color:#22bb75;}
a:hover.faq_bnt01{
	background:#22bb75;
	border:2px solid #22bb75;
	}
a.faq_bnt01{
    color: #fff !important;   
    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-decoration: none;
    padding: 11px 35px;
    display: inline-block;
    margin: 10px 25px;
    font-size: 16px;
	border:2px solid #fff;
	display:inline-block;
}
.faq02_tit02 h2{
	font-size:35px;
	color:#333333;	
	margin:0;
	line-height:1.2;
	font-weight:normal;}

.faq02_tit02 h3{
	font-size:20px;
	color:#666666;	
	margin:25px 0;
	text-transform:uppercase;
	line-height:1.2;
	position:relative;
	display:inline-block;}

.faq02_tit02 h3:after{
	position:absolute;
	right:0;
	width:60px;
	border-bottom:2px solid #22bb75;
	content:"";
	    top: 50%;
    margin:-1px -75px 0 0;
	
	}
.faq_three_top {
    margin: -64px 0 0 -64px;
    position: absolute;
    top: 0;
    left: 50%;
    padding:4px;
    background: #fff;
    border-radius: 50%;
}
.faq_three_top span{
	display:block;}
	
.faq_three_top h2{
	width:120px;
	height:120px;
	border-radius:50%;
	border:3px solid #22bb75;
	color:#22bb75;
	text-align:center;
	margin:0 auto;
	background:#f4f4f4;
	font-weight:normal;
	font-size:26px;
	line-height: 1.2;
    padding: 26px 0;}

.faq_three_box{
	background:#e4e4e4;
	position:relative;
	padding:90px  20px 20px 20px;
	margin:90px 0 0 0;
	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? */}

.faq_three_box:hover{
	background:#22bb75;
	color:#fff;	
	}

/*FAQ end*/
/*contact02 us*/
.contactus02_tit01 h2{
	font-size:26px;
	color:#333;	
	margin:0 0;	
	line-height:1.2;
	position:relative;
	display:inline-block;
	font-weight:normal;}

.contactus02_tit01 h2:after{
	position:absolute;
	right:0;
	width:35px;
	border-bottom:4px solid #22bb75;
	content:"";
	    top: 50%;
    margin:2px -45px 0 0;	
	}

.contactus02_tit01 h3{
	font-size:16px;
	color:#22bb75;	
	margin:25px 0;	
	line-height:1.2;
	position:relative;	
	font-weight:normal;
	text-transform:uppercase;}

.contact02_one_left img{
	float:left;
	padding:0 20px 0 0;}

.contact02_one_left p{
	line-height:1.2;}

.contact02_one_left p {
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.contact02_bg01 {
    background-attachment: fixed;
    background-image: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/contact02_bg01.jpg");
    background-position: center center;
    background-repeat: no-repeat;
	background-size: cover;
	backface-visibility: hidden;
}
.contact_map {
    position: absolute;
    z-index: 1;
	border:1px solid #cdcdcd;
	padding:10px;
	width:100%;
}
#gmap2_contact {
    height: 766px;
    width: 100%;
}

#gmap2_contact img {
    max-width: none;
}
.contact02_tit02 h2{
	font-size:26px;
	color:#fff;	
	margin:0 0 30px 0;	
	line-height:1.2;
	position:relative;	
	font-weight:normal;
	}
.contact_two_box{
	position:relative;
	padding:0 0 0 65px;
	color:#aaa;
	}	
.contact_two_box:hover span,
.contact_two_box:hover h3{
	color:#23bb75;	
	}

.contact_two_box span{
	position:absolute;
	font-size:25px;
	color:#fff;
	left: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? */}

.contact_two_box h3{
	font-size:14px;
	color:#fff;	
	margin:5px 0;	
	line-height:1.2;
	position:relative;	
	font-weight:normal;
	  transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */
	}
	
.contact_two_line .contact_two_box:before{	
	border-bottom:1px solid #5e5e5e;
	position:absolute;
	content:"";
	width:100%;
	left:0;
	bottom:-30px;
	}
	
.contact_two_line{
	margin-bottom:60px;}
	
.contact_two_line:first-child{
	border-right:1px solid #5e5e5e;	
	}

.contact_two_line02{
	border-left:1px solid #5e5e5e;
	
	}
.contact02_tit03{
	text-align:center;}
	
.contact02_tit03 h2{
	font-size:36px;
	color:#000;	
	margin:0 0;	
	line-height:1.2;
	position:relative;	
	font-weight:normal;}

.contact02_tit03 .line{
	 width:50px;
	 text-align:center;
	 margin:30px auto;
	 height:2px;
	 background:#23bb75;
	}

.contact_bg02{
	background:#eaeaea;
	}

.contact_four_box img{
	padding:10px 0;}

.no_img_contact {
    display:none;
 }
.contact_four_box a:hover .block_img_contact{
    display:none;
    }
.contact_four_box a:hover .no_img_contact {
   display:block;
}
/*Time_Line02*/
a.timeline_bnt{
    color: #fff !important;
    background-color: #22BB75;
    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;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    text-decoration: none;
    padding: 10px 25px;
    display: inline-block;
    margin: 10px 0 0 0;
    text-transform: uppercase;
}

a.timeline_bnt:hover {
    background-color: #444;
}
a:hover.timeline_bnt{
	 background-color: #eeeeee;
	 color: #22BB75;
	}
.Time_Line02{
	position:relative;
	z-index:1;
	margin:30px 0;
	}
.Time_Line02 .Time_Line02_top {
    display: block;
    left: 50%;
    margin: -70px 0 0 -70px;
    position: absolute;
    text-align: center;
    top: 50%;
	border:1px solid #23bb75;
	padding:9px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color: #fff;
	width:140px;
	height:140px;
}
.timeline02_year{
	position:relative;}
.Time_Line02 .Time_Line02_top .Time_Line02_top_time{
	display:inline-block;
	background-color:#fff;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	text-align:center;	
	font-size:16px;
	width:120px;
	height:120px;	
	position:relative;
	overflow:hidden;
	}
.timline02_year_top{	
	background:#22bb75;
	width:120px;
    height:60px;
	font-size:20px;
	color:#fff;
	line-height:1;
	padding:30px 0 0 0;
	}

.timline02_year_bottom{
	height:60px;
	width:120px;	
	background:#eeeeee;
	font-size:30px;
	color:#22bb75;
	line-height:60px;
	}
.Time_Line02 .Time_Line02_top .Time_Line02_top_time span.glyphicons{
	font-size:18px;
	
	}
.Time_Line02 .Time_Line02_left{
	width:50%;
	float:left;
	margin:40px 0;
	}
.Time_Line02 .Time_Line02_left .Time_Line02_leftmain{
	margin:0 85px 0 0;
	padding:0 0 0 0;	
	text-align:left;
	position:relative;
	}
.Time_Line02 .Time_Line02_left .Time_Line02_leftmain.leftmain_01{
	padding:50px 0 0 0;
}
.Time_Line02 .Time_Line02_left .Time_Line02_leftmain.leftmain_02{
	padding:50px 0 0 0;
}
.Time_Line02 .Time_Line02_left .Time_Line02_leftmain.leftmain_03{
	padding:50px 0 0 0;
}
.Time_Line02 .Time_Line02_right .Time_Line02_rightmain.rightmain_01{
	padding:60px 0 0 0;
}
.Time_Line02 .Time_Line02_right .Time_Line02_rightmain.rightmain_02{
	padding:70px 0 0 0;
}
.Time_Line02 .Time_Line02_right .Time_Line02_rightmain.rightmain_03{
	padding:60px 0 0 0;
}
	
	
.Time_Line02 .Time_Line02_left .Time_Line02_leftmain h3,
.Time_Line02 .Time_Line02_right .Time_Line02_rightmain h3{
	font-size:20px;
	color:#333;
	margin:0 0 20px 0;
	}	
.Time_Line02 .Time_Line02_left .Time_Line02_leftmain a{
	text-decoration:none;
	}	
.Time_Line02 .Time_Line02_left .Time_Line02_leftmain .dot{
	position:absolute;
	top:15%;
	left:100%;
	white-space:nowrap;
	margin:0 0 0 51px;
	}	
.Time_Line02 .Time_Line02_left .Time_Line02_leftmain .dot:before{
	content:"";
	width:20px;
	height:20px;
	display:inline-block;
	padding:1px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border-width:5px;
	border-color:#fff;
	border-style:double;
	position: relative;
	top: 5px;
	margin:0 5px 0 0;
	}
.Time_Line02 .Time_Line02_left .Time_Line02_leftmain .triangle{
	position:absolute;
	top:20%;
	left:100%;
	width:12px;
	height:12px;
	border-top:1px solid #e5e4e4;
	border-right:1px solid #e5e4e4;
	background-color:#fff;
	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 */
	margin:0 0 0 -5px;
	}	
	
.Time_Line02 .Time_Line02_right{
	width:50%;
	float:right;
	margin:40px 0;
	}
.Time_Line02 .Time_Line02_right .Time_Line02_rightmain{
	margin:0 0 0 85px;
	padding:0;	
	position:relative;
	}

.Time_Line02 .photo_box{
	padding:10px;
	border:1px solid #e0e0e0;
	    transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 4 */
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-o-transition: 		all ease-in 200ms; /* Opera */
	-ms-transition: 	all ease-in 200ms; /* IE9? */}	

.Time_Line02:hover .photo_box{
	border:1px solid #22bb75;}	

.Time_Line02 .Time_Line02_right .Time_Line02_rightmain a{
	text-decoration:none;
	}	
.Time_Line02 .Time_Line02_right .Time_Line02_rightmain .dot{
	position:absolute;
	top:15%;
	right:100%;
	white-space:nowrap;
	margin:0 51px 0 0;
	}
.Time_Line02 .Time_Line02_right .Time_Line02_rightmain .dot:after{
	content:"";
	width:20px;
	height:20px;
	display:inline-block;
	padding:1px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border-width:5px;
	border-color:#fff;
	border-style:double;
	position: relative;
	top: 5px;
	margin:0 0 0 5px;
	}	
.Time_Line02 .Time_Line02_right .Time_Line02_rightmain .triangle{
	position:absolute;
	top:20%;
	right:100%;
	width:12px;
	height:12px;
	border-bottom:1px solid #e5e4e4;
	border-left:1px solid #e5e4e4;
	background-color:#fff;
	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 */
	margin:0 -5px 0 0;
	}		
	
.Time_Line02 .Time_Line02_line{
	position:absolute;
	z-index:-1;
	left:50%;
	width:2px;
	height:100%;
	top:0px;
	margin-left: -1px;
	overflow:hidden;
	border-left:2px solid #23bb75;
	}

.Time_Line02_rightmain p,
.Time_Line02_leftmain p{
	margin:0 0 20px 0;}

.back_bottom:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-top: 2px solid #FFF;
    border-left: 2px solid #FFF;
    margin: -3px 0 0 -8px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.back_bottom {
    width: 50px;
    height: 50px;
    float: right;
    margin-top: 10px;
    text-align: center;
    font-size: 24px;
    z-index: 1000;
    cursor: pointer;
    position:absolute;
    left:50%;
    bottom: -50px;
	margin:0 0 0 -25px;  
    background-color: #22bb75;
    border-radius: 50%;
    -moz-border-radius:50%;
    -webkit-border-radius: 50%;
    transition: background ease-in 200ms;
    -moz-transition: background ease-in 200ms;
    -webkit-transition: background ease-in 200ms;
    -o-transition: background ease-in 200ms;
    -ms-transition: background ease-in 200ms;
}
.back_bottom:hover,.back_top:hover{
	  background-color: #444;}
.back_top {
    width: 50px;
    height: 50px;
    float: right;
    margin-top: 10px;
    text-align: center;
    font-size: 24px;
    z-index: 1000;
    cursor: pointer;
    position:absolute;
    left:50%;
    top: -50px;
	margin:0 0 0 -25px;  
    background-color: #22bb75;
    border-radius: 50%;
    -moz-border-radius:50%;
    -webkit-border-radius: 50%;
    transition: background ease-in 200ms;
    -moz-transition: background ease-in 200ms;
    -webkit-transition: background ease-in 200ms;
    -o-transition: background ease-in 200ms;
    -ms-transition: background ease-in 200ms;
}
.back_top:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-top: 2px solid #FFF;
    border-left: 2px solid #FFF;
    margin: -10px 0 0 -8px;
    transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
}
/*teamdetial02*/
.detail02_one_box{
	text-align:center;}
	
.detail02_one_box > h2{
	font-size:30px;
	color:#22bb75;	
	margin:0 0;	
	line-height:1;
	position:relative;	
	font-weight:normal;
	text-align:center;
	}

.detail02_one_box > h3{
	font-size:16px;
	color:#333;	
	margin:25px 0 0  0;	
	line-height:1;
	position:relative;	
	font-weight:normal;
	text-align:center;
	} 

.detail02_one_img img{
	height:250px;
	width:250px;
	border-radius:50%;
	margin:0 auto;
	overflow:hidden;
	margin:18px auto;
	padding:0;}

.detail02_one_img{
	border:2px solid #22bb75;	
	width:290px;
	height:290px;
	border-radius:50%;
	margin:0 auto;
	
	}

.vertical_line{
	border-left:1px dashed #22bb75;	
	height:103px;
	display:inline-block;}

.detail02_one_box .line{
	height:4px;
	width:30px;
	background:#22bb75;
	margin:10px auto 15px auto;	
	
	}
.teamdetail_social span{
	font-size:25px;
	display:inline-block;
	margin:10px
	
	}
.teamdetail_social span.c537bbd{color:#537bbd}
.teamdetail_social span.cc72d2b{color:#c72d2b}
.teamdetail_social span.c78cdf0{color:#78cdf0}
.teamdetail_social span.c3fc0f0{color:#3fc0f0}
.teamdetail_social span.cc72d2b{color:#c72d2b}
.teamdetail_social span.cd97ca6{color:#d97ca6}


.detail02_two_bg  {
    background-attachment: fixed;
    background-image: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/teamdetail02_bg01.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	color:#fff;
	backface-visibility: hidden;
}
.detail02_two_l{}
.detail02_two_l h2{
	font-size:30px;
	color:#fff;	
	margin:0 0 0  0;	
	line-height:1;
	position:relative;	
	font-weight:normal;	
	}

.detail02_list{
	margin:0;	
	padding:0}

.detail02_list li{
	padding:10px 0 10px 50px;
	margin:25px 0;
	list-style:none;
	position:relative;
	min-height:40px;}

.detail02_list li span{
	width:40px!important;
	height:40px;
	background:#22bb75;
	color:#fff;
	border-radius:50%;
	position:absolute;
	left:0;
	display:inline-block;
	text-align:center;
	line-height:40px;}

.detail02_two_r .photo_box .shade{
	background:#959595;}

.detail02_two_r .photo_box:hover .shade {
    filter: alpha(opacity=90);
    opacity: 0.9;
}

.detail02_two_r .photo_box .ico span {
    background-color: transparent;
	border:2px solid #fff;
	line-height:45px!important;	
}
.detail02_two_r .photo_box .ico h3 {
    color: #FFF;
    font-size: 16px;
    margin-bottom: 5px;
	font-weight:normal;
	margin-top:30px;
}
.detail02_two_r .photo_box{
	margin:0 0 30px 0;}
.detail02_two_r .photo_box .ico span{
	margin:0 13px;
	}

.detail02_two_r .photo_box .ico {  
    margin-top: -50px;}

.detail02_three_top,
.detail02_three_bottom{
	text-align:center;}

.detail02_three_center{
	background:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/teamdetail02_06.png") no-repeat left center;
	height:75px;}

.detail02_three_center_s{
	width:15px;
	height:15px;
	border-radius:50%;
	background:#22bb75;
	margin:0 auto;}

.detail02_three_center_s.pos_01{
	margin:5px auto auto auto;}
.detail02_three_center_s.pos_02{
	margin:9px auto auto auto;}
.detail02_three_center_s.pos_03{
	margin:54px auto auto auto;}
.detail02_three_center_s.pos_04{
	margin:54px auto auto auto;}

.detail02_three_year{
	width:84px;
	height:56px;
	background:#22bb75;
	border-radius:5px;
	text-align:center;
	margin:0 auto;
	line-height:56px;
	color:#fff;
	font-size:22px;
	position:absolute;
	    left: 50%;
    margin: 0 0 0 -37px;
	}

.detail02_three_year:after {
    border: 6px solid transparent;
    border-top: 25px solid #22bb75;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    margin: -6px 0 0 -8px;
    transform: rotate(385deg);
    -ms-transform: rotate(385deg);
    -moz-transform: rotate(385deg);
    -webkit-transform: rotate(385deg);
    -o-transform: rotate(385deg);
	
}
.detail02_three_year.year03:before,
.detail02_three_year.year04:before{
    border: 6px solid transparent;
    border-top: 25px solid #22bb75;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    margin: -25px 0 0 -10px;
    transform: rotate(385deg);
    -ms-transform: rotate(385deg);
    -moz-transform: rotate(385deg);
    -webkit-transform: rotate(518deg);
    -o-transform: rotate(385deg);
    top: 0;	
	}
.detail02_three_year.year03:after,
.detail02_three_year.year04:after{
	  border: 0 solid transparent;
    border-top: 0 solid #22bb75;	
	}

.detail02_three_year.year03,
.detail02_three_year.year04{
	margin:0 0 0 -32px;
	}
.detail02_three_year.year01{    margin-top: -5px;}
.detail02_three_year.year02{margin-top:40px;}
.detail02_three_year.year03{    margin-top: -55px;}
.detail02_three_year.year04{margin-top:-7px;}


.detail02_four_box  .photo_box .content h3 {
      color: #FFF;
    font-size: 28px;
    margin-bottom: 30px;
    /* margin-top: 10px; */
    line-height: 1;
    font-weight: normal;
}
.detail02_four_box  .photo_box img{
	 max-width: 100%;}
.detail02_four_box .photo_box .content p {
    color: #FFF;
    font-size: 16px;
	padding:0 20px;
}
.detail02_four_box .photo_box .ico span {
    background-color: transparent;
    font-size: 60px;
    color:#22bb75;
}
.detail02_four_box .photo_box .content .ico {
    position: static;
    margin: 0 0 25px;
}
/*Pricing02*/
.prcing02_one_box h2{
	color: #555555;
    font-size: 36px;
    margin: 0;   
    line-height: 1;
    font-weight: normal;
	text-align:center;
	}
.prcing02_one_box {
    text-align: center;
}
.prcing02_one_box .line{
	border-left:1px dashed #22bb75;	
	height:103px;
	display:inline-block;}

.prcing02_bg01 {  
    background-image: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/pricing02_bg01.jpg");
    background-position:center bottom;
    background-repeat: no-repeat;   
}
.prcing02_tit01 h2{
	color: #FFF;
    font-size: 39px;  
       line-height: 1;
    font-weight: normal;
	text-transform:uppercase;
	text-align:center;
	
	}

.pricing02_table .table-striped > tbody > tr:nth-child(even) > td, 
.pricing02_table .table-striped > tbody > tr:nth-child(even) > th {
    background-color: #fff;
}
.pricing02_table .table-striped > thead > tr > th{
    background-color: #fff;
}
.pricing02_table .table > thead > tr > th {  
    border-bottom: none;
	font-size:15px;
	color:#272727;
}
.pricing02_table .table > thead > tr > th span{
	color:#22bb75;}

.pricing02_table .table > thead > tr > th, 
.pricing02_table .table > tbody > tr > th, 
.pricing02_table .table > tfoot > tr > th, 
.pricing02_table .table > thead > tr > td, 
.pricing02_table .table > tbody > tr > td, 
.pricing02_table .table > tfoot > tr > td{
	border:none;
	padding:15px 8px;
	text-align:center;
	line-height:1;
	vertical-align:middle;}



.pricing02_table .table > thead > tr > th:first-child,
.pricing02_table .table > tbody > tr > td:first-child{
	padding:15px 8px 15px 40px;
	text-align:left;}

.squer_table{
	width:26px;
	height:26px;
	border:2px solid #dcdcdc;
	border-radius:50%;	
	display:inline-block;
	margin:0 auto;
	}

.pricing02_table .table > tbody > tr > td span.glyphicons {
	font-size:26px;}

.pricing02_table .table > tbody > tr > td span.glyphicons.squer_table_grey {
	color:#5c5c5c;}

.pricing02_table .table > tbody > tr > td span.glyphicons.squer_table_blue {
	color:#33a1a5;}

.pricing02_table .table > tbody > tr > td span.glyphicons.squer_table_red {
	color:#d51e0e;}

.no_img{
    display:none;
 }
.hover_img a:hover .block_img{
    display:none;
    }
.hover_img a:hover .no_img{
   display:block;
}
.hover_img img{}


.prcing02_bg02{
    background-attachment: fixed;
    background-image: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/pricing02_bg02.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	text-align:center;
	backface-visibility: hidden;
}

.hover_img img {
    padding: 10px;
    border: 1px solid #ccc;
	  transition: 		all ease-in 200ms;
	-moz-transition: 	all ease-in 200ms; /* Firefox 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_img img:hover{  
    border: 1px solid #68e8ae;
}
.prcing02_tit02{
	text-align:center;
	color:#bbbbbb;}
.prcing02_tit02 h2{
	color: #fff;
    font-size: 30px;
    margin: 0;   
    line-height: 1;
    font-weight: normal;
	text-align:center;
	
	}

a.pricing02_bnt {
    color: #fff !important;
    background-color: #22BB75;
    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;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    text-decoration: none;
    padding: 8px 50px;
    display: inline-block;
    margin: 0;   
	font-size:20px;
	border: 1px solid transparent;
}
a:hover.pricing02_bnt{
	border: 1px solid #22BB75;
	background: transparent;
	}
.hover_img > div{
	margin-bottom:10px;
	margin-top:10px;}

.prcing02_tit03 h2{
	color: #22BB75;
    font-size: 24px;
    margin: 0 0 10px 0;   
    line-height: 1;
    font-weight: 300;
	}

	

@media only screen and (min-width: 768px) and (max-width: 991px){
.service02_two_right { 
    padding-left: 15px;
    padding-right: 15px;
}
.service02_five_box{	
	padding-left:15px;}

.service02_three_box {
    position: relative;
    min-height: auto;
    margin: 15px 0 15px 0;  
}
.service02_three_left {
    float: none;
    position: inherit;
    left: 0;
    top: 0;
}
.service02_three_right {
    float: none;
    padding: 15px;
}
.aboutus02_three_box {
    position: relative;
    padding: 40px 0 40px 110px;
}
.aboutus02_three_img img {
    width: 100px;
    height: 100px;   
}
.aboutus02_three_img{
	width:80px;
	height:80px;}
.new_aboutus02_img {
    margin: -0 0 0 0;
}
.team02_three_box {  
    padding: 10px;
}
.team02_three {   
    padding: 15px 0 15px 60px;   
}
.team02_three img {
    height: 50px;  
    top: 10px;
    width: 50px;
}
.Testimonials_team02 blockquote {   
    padding: 30px 15px 80px 15px;}

.Testimonials_team02 .dot {   
    bottom: 30px;
}
.contact_two_line02 {
    border-left: none;
}
.contact_two_line .contact_two_box:before,
.contact_two_line:first-child{
	border:none;}
.contact_two_line {
    margin-bottom: 0;
}
.contact_two_box {  
    padding: 0 0 15px 40px;    
}
.contact_two_box span {  
    left: 0;
}

.detail02_three_center_s,
.detail02_three_year,
.detail02_three_center{
	display:none;}
	
/*price02_table*/
.price02_table .best_value {
    margin-top: 0;
    margin-bottom: 0;
}

/*time_line02*/
.Time_Line02 .Time_Line02_left .Time_Line02_leftmain {   
    padding: 0;  
}
.Time_Line02 .Time_Line02_left .Time_Line02_leftmain.leftmain_01{
	padding:0 0 0 0;
}
.Time_Line02 .Time_Line02_left .Time_Line02_leftmain.leftmain_02{
	padding:0 0 0 0;
}
.Time_Line02 .Time_Line02_left .Time_Line02_leftmain.leftmain_03{
	padding:0 0 0 0;
}
.Time_Line02 .Time_Line02_right .Time_Line02_rightmain.rightmain_01{
	padding:0 0 0 0;
}
.Time_Line02 .Time_Line02_right .Time_Line02_rightmain.rightmain_02{
	padding:0 0 0 0;
}
.Time_Line02 .Time_Line02_right .Time_Line02_rightmain.rightmain_03{
	padding:0 0 0 0;
}
/*service02 */
.chart_list_service02 h2 {   
    padding: 5px 0;
}
.faq_three_box {  
    padding:60px 10px 20px 10px;
    margin: 50px 0 0 0;   
}
.faq_three_top {
    margin: -40px 0 0 -40px;   
}
.faq_three_top h2 {
    width: 80px;
    height: 80px;  
    font-size: 15px; 
}
}


@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {   
 .member_img span {
    text-align: left;  
} 
.member_img {
    position: relative;
    left: 0;
    top: 0;
    margin-top: 0;
    margin-left: 0;
    margin: 0 auto;
	text-align:center;
}
.inner_box {
    padding-left: 0;
}
#gmap2_contact {
    height: 495px;
    width: 100%;
}
.contact02_bg01 .row > .col-sm-6{
	width:100%;}

.contact02_bg01 .row > .col-sm-6 .row .col-sm-12{
	width:50%;}
} 
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {   
  .service02_three_left {
    float: none;
    position: inherit;
    left: 0;
    top: 0;
}
.service02_three_right {
    float: none;
    padding: 15px;
}
.aboutus02_three_img img {
    width: 100px;
    height: 100px;
}
.aboutus02_three_box {
    position: relative;
    padding: 40px 0 40px 110px;
}
.team02_three_box {  
    padding: 15px;
}
.team02_three {  
    padding: 15px 0 15px 75px;   
}
.team02_three img {  
    width: 60px;
    height: 60px;
}
}
@media only screen and (max-width: 767px) {
.mar_40{
	margin-top:-20px;}
.mar_b40{
	margin-bottom:-40px;}

.isotope_l,
.isotope_r{
	float:none;
	width:100%;}

/*service02 */
.chart_list_service02 h2 {   
    padding: 5px 0;
}
.service02_two_left {  
    height: 300px;
    left: 0;
    position: inherit;
    top: 0;
    width: 100%;
}
.service02_two_right {
    width: 100%;
    float: none;
    padding-left: 15px;
    padding-right: 15px;
}
.service02_five_box{	
	padding-left:15px;}

.service02_three_box {
    position: relative;
    min-height: auto;
    margin: 15px 0 15px 0;  
}
.service02_three_left {
    float: none;
    position: inherit;
    left: 0;
    top: 0;
}
.service02_three_right {
    float: none;
    padding: 15px;
}
.chart_list_service02 h2 {
    padding: 5px 0;
}
.service02_one_box {  
    padding: 20px 10px 70px 10px;
	margin:0 0 90px 0}
/*service02 end*/
.new_aboutus02_img {
    margin: -40px 0 0 0;
}
.aboutus02_three_box {
    position: relative;
    padding: 40px 0 40px 110px;
}
.aboutus02_three_img img {
    width: 100px;
    height: 100px;   
}
.aboutus02_three_img{
	width:80px;
	height:80px;}
	
.outer_box {    
    padding: 15px;
   
}
.member_img {   
    margin-left: 15px;
}
.inner_box {
    padding-left: 120px;
}
.aboutus02_three_box {
    position: relative;
    padding: 40px 0 40px 60px;
}
.aboutus02_three_img img {
    width: 50px;
    height: 50px;   
}
.aboutus02_three_img{
	width:50px;
	height:50px;
	padding:0;}
.new_aboutus02_img {
    margin: -0 0 0 0;
}
.team02_three_box {  
    padding: 10px;
}
.team02_three {   
    padding: 15px 0 15px 60px;   
}
.team02_three img {
    height: 50px;  
    top: 15px;
    width: 50px;
}
.Testimonials_team02 blockquote {  
    padding: 30px 15px 70px 15px;}

.team02_full_left {  
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.team02_full_right {
    float: none;   
    width: 100%;
    position: inherit;
    top: 0;
    right: 0;
}
.Testimonials_team02 .dot {
    left: 50%;
    bottom: 30px;
    margin: 0 0 0 -30px;
}
.Testimonials_team02 blockquote p {  
    padding: 20px 0;}

.team02_full_right {
    float: none;
    padding: 30px 15px;
}
.contact_map {
    position:relative;	
}
#gmap2_contact{
	height:300px;}

.contact_two_line02 {
    border-left: none;
}
.contact_two_line .contact_two_box:before,
.contact_two_line:first-child{
	border:none;}
.contact_two_line {
    margin-bottom: 0;
}
.contact_two_box {  
    padding: 0 0 15px 40px;    
}
.contact_two_box span {  
    left: 0;
}
.detail02_three_center_s,
.detail02_three_year,
.detail02_three_center{
	display:none;}

.detail02_one_img img{
    height: 110px;
    width: 110px;  
	margin:8px auto; 
}
.detail02_one_img {
	height: 130px;
    width: 130px;  
	}

.horizontalTab_Top_faq.horizontalTab_Top .resp-tab-content .resp_margin {
    margin: 15px;
}
.horizontalTab_Top .resp-tabs-container .resp-tab-active, 
.horizontalTab_Top .resp-tabs-container .resp-tab-active:hover{
	background: #22bb75;}

.horizontalTab_Top .resp-tab-active, 
.horizontalTab_Top .resp-tab-active:hover{
	background:none;}
/*price02_table*/
.price02_table .best_value {
    margin-top: 20px;
    margin-bottom: 0;
}
.pricing02_table .table > thead > tr > th:first-child, 
.pricing02_table .table > tbody > tr > td:first-child {
    padding: 15px 8px 15px 8px;
    text-align: left;
}
.pricing02_table .table > tbody > tr > td span.glyphicons {
    font-size: 15px;
}
.squer_table {
    width: 15px;
    height: 15px;   
}
.table-responsive.pricing02_table{
	margin:30px 0 0 0}

.aboutus02_tit01 h2 {  
    font-size: 20px;  
}

.horizontalTab_Top_faq.horizontalTab_Top ul.resp-tabs-list li {
    border: 1px solid #bdbdbd;
   border-right: 1px solid #bdbdbd;
    margin: 0 5px 5px 5px;
}
.horizontalTab_Top_faq .resp-tabs-container {  
    border-bottom: 1px solid #bdbdbd;
}
/*timeline02*/
.back_top { 
    float: none;
    margin-top: 0;
    text-align: center;
    font-size: 24px;
    z-index: 1000;
    cursor: pointer;
    position: relative;
    left: 50%;
    top: 0;
    margin: 0 0 20px -25px;   
}
.Time_Line02 .Time_Line02_top {
    display: block;
    left: 50%;
    margin: 0 0 0 -70px;
    position: relative;
    text-align: center;
    top: 50%;
    border: 1px solid #23bb75;
    padding: 10px; 
    width: 140px;
    height: 140px;
}
.Time_Line02 .Time_Line02_left {
    width: 100%;
    float: none;
    margin: 15px 0;
}
.Time_Line02 .Time_Line02_right {
    width: 100%;
    float: none;
    margin: 15px 0;
}
.Time_Line02 .Time_Line02_right .Time_Line02_rightmain {
    margin: 0;
    padding: 0;
    position: relative;
}
.Time_Line02 .Time_Line02_line{	
	display:none;}

.Time_Line02 .Time_Line02_left .Time_Line02_leftmain {
    margin: 0 00 0;
    padding: 0;
    text-align: left;
    position: relative;
}
.horizontalTab_Top.horizontalTab_Top_faq ul.resp-tabs-list{
	display:none!important;}

}
@media only screen and (max-width: 991px) {
[class*="SectionStyles"],
.aboutus02_bg04,
.service02_bg04,
.service02_bg05,
.team02_01_bg,
.detail02_two_bg,
.faq02_bg01,
.prcing02_bg02,
.contact02_bg01 {
    background-attachment: scroll
}

	}


/*pane name*/
.dnnModuleManager:before{
	opacity: 1!important;
}

























@import url(https://fonts.googleapis.com/css?family=Open+Sans);
/*****************************************************************************/
/*** dark.css ***/
/*****************************************************************************/

/* @import url("https://fonts.googleapis.com/css?family=Open+Sans"); */

/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  /* src: url("https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4taVIGxA.woff2") format('woff2'); */
  src: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4taVIGxA.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  /*src: url("https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4kaVIGxA.woff2") format('woff2');*/
  src: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4kaVIGxA.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  /* src: url("https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4saVIGxA.woff2") format('woff2'); */
  src: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4saVIGxA.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  /* src: url("https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4jaVIGxA.woff2") format('woff2'); */
  src: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4jaVIGxA.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  /* src: url("https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4iaVIGxA.woff2") format('woff2'); */
  src: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4iaVIGxA.woff2") format('woff2');
  unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  /* src: url("https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B5caVIGxA.woff2") format('woff2'); */
  src: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B5caVIGxA.woff2") format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0330, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2034-2037, U+2057, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2102, U+210A-210E, U+2110-2112, U+2115, U+2119-211D, U+2124, U+2128, U+212C-212D, U+212F-2131, U+2133-2138, U+213C-2140, U+2145-2149, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B6, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  /* src: url("https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B5OaVIGxA.woff2") format('woff2'); */
  src: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B5OaVIGxA.woff2") format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8B1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA88, U+1FA90-1FABD, U+1FABF-1FAC5, U+1FACE-1FADB, U+1FAE0-1FAE8, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  /* src: url("https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4vaVIGxA.woff2") format('woff2'); */
  src: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4vaVIGxA.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  /* src: url("https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVIGxA.woff2") format('woff2'); */
  src: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVIGxA.woff2") format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  /* src: url("https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVI.woff2") format('woff2'); */
  src: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/fonts/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVI.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*****************************************************************************/
/*** dark.css ***/
/*****************************************************************************/

/* @import url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/dark.css?v=1"); */

	/*dnn style*/
	.contactus02_tit01 h2,
	.contact02_tit03 h2,
	.prcing02_one_box h2,
	.accordion_pricing02 .panel-title a.collapsed,
	.accordion_pricing02 .panel-title a,
	.aboutus02_tit01 h2,
	.faq02_tit02 h3,
	.faq02_tit02 h2,
	.Time_Line02 .Time_Line02_left .Time_Line02_leftmain h3, 
	.Time_Line02 .Time_Line02_right .Time_Line02_rightmain h3,
	.aboutus02_tit01 h2,
	.chart_list_detail02 .percentage66 .percentage_inner,
	.aboutus02_rf,
	.service02_one_box h3,
	.service02_three_right h2,
	.service02_five_top h2,
	.team02_tit02 h2,
	.team02_tit03 h2,
	.team02_tit04 h2,
	.aboutus02_tit03 h2,
	.service02_tit01 h2,
	.detail02_one_box > h3,
	.aboutus02_two_box h2{
		color:#eee		
		}
	
	.price02_table .price_holder ul li,
	.pricing02_table .table-striped > tbody > tr:nth-child(even) > td, 
	.pricing02_table .table-striped > tbody > tr:nth-child(even) > th,
	.faq_three_box{
		color:#444}
	
	.faq02_one_tit{
		background:#444}
	
	.aboutus02_bg01.dark_bg{
		background:#444!important;}
	
	.horizontalTab_Top_faq.horizontalTab_Top ul.resp-tabs-list li.resp-tab-active span,
	.Theme_Responsive_20064_faq select, .Theme_Responsive_20064_faq textarea, 
	.Theme_Responsive_20064_faq input[type="text"], 
	.Theme_Responsive_20064_faq input[type="password"], 
	.Theme_Responsive_20064_faq input[type="datetime"], 
	.Theme_Responsive_20064_faq input[type="datetime-local"], 
	.Theme_Responsive_20064_faq input[type="date"], 
	.Theme_Responsive_20064_faq input[type="month"], 
	.Theme_Responsive_20064_faq input[type="time"], 
	.Theme_Responsive_20064_faq input[type="week"], 
	.Theme_Responsive_20064_faq input[type="number"], 
	.Theme_Responsive_20064_faq input[type="email"], 
	.Theme_Responsive_20064_faq input[type="url"], 
	.Theme_Responsive_20064_faq input[type="search"], 
	.Theme_Responsive_20064_faq input[type="tel"], 
	.Theme_Responsive_20064_faq input[type="color"], 
	.Theme_Responsive_20064_faq .uneditable-input,
	.outer_box,
	.service02_one_box{
    background-color: transparent;   
}

.team02_three_box {
    background: transparent;  
    border: 1px solid #eee;
}

	.RadTreeView .rtIn ,
	h2.dnnFormSectionHead a,
	h2.dnnFormSectionHead a.dnnSectionExpanded,
	h2 .Head,
	h2.dnnFormSectionHead{
		color:#FFF;
	}
	.console-mouseon h3{
		color:#555;
	}
	.dnnModuleDigitalAssetsBackground{
		background-color:rgba(255,255,255,0.9)
	}
	.reToolbarWrapper,
	td.reToolCell,
	.reCenter_top, 
	.reLeftVerticalSide, 
	.reRightVerticalSide, 
	.reToolZone, 
	.reCenter_bottom,
	.dnnTextPanelView {
		background-color: rgba(255, 255, 255, 0.9)!important;
	}
	.dnnTextPanelView {
		background-color: #e6e6e6;
		height:auto!important;
		margin: 0;
	}
	.dnntitle h3{
		color:#FFF;
	}
	.thumbnail{
		border-color:#3a3a3a;
		background-color:transparent;
	}
	.thumbnail .caption{
		color:inherit;
	}	
	
	
	/*bootstrap*/
	pre{
		color:inherit;
	}
	.table-bordered,
	.table-bordered > thead > tr > th, 
	.table-bordered > tbody > tr > th, 
	.table-bordered > tfoot > tr > th, 
	.table-bordered > thead > tr > td, 
	.table-bordered > tbody > tr > td, 
	.table-bordered > tfoot > tr > td,
	pre {
		border-color:#444 
	}
	.table-striped > tbody > tr:nth-child(odd) > td, 
	.table-striped > tbody > tr:nth-child(odd) > th,
	pre,
	.table-hover > tbody > tr:hover > td, 
	.table-hover > tbody > tr:hover > th{
		background-color:#3a3a3a;
	}
	code{
		background-color:#424242;
	}
	
	.btn-default:hover, 
	.btn-default:focus, 
	.btn-default:active, 
	.btn-default.active, 
	.open > .dropdown-toggle.btn-default,
	.btn-default {
		color:inherit;
		background-color:#fff ;
		border-color:#ccc;
	}
	.popover-title {
		background-color: #3a3a3a;
		border-bottom-color:#444;
		margin:-1px;
	}
	.popover{
		background-color:#272727;
		border-color:#444;
	}
	.popover.right > .arrow:after{
		border-right-color:#272727;
	}
	.popover.right > .arrow{
		border-right-color:#444;
	}
	.popover.left > .arrow:after{
		border-left-color:#272727;
	}
	.popover.left > .arrow{
		border-left-color:#444;
	}
	.popover.top > .arrow:after{
		border-top-color:#272727;
	}
	.popover.top > .arrow{
		border-top-color:#444;
	}
	.popover.bottom > .arrow:after{
		border-bottom-color:#3a3a3a;
	}
	.popover.bottom > .arrow{
		border-bottom-color:#444;
	}
	.table > thead > tr > th{
		border-bottom-color:#444;
	}
	.table > thead > tr > th, 
	.table > tbody > tr > th, 
	.table > tfoot > tr > th, 
	.table > thead > tr > td, 
	.table > tbody > tr > td, 
	.table > tfoot > tr > td{
		border-top-color:#444;
	}
	.bs-glyphicons li,
	.box_border_padding{
		border-color:#444;
	}



	/*title*/
	.topbbox1 h3, 
	.topbbox2 h3, 
	.topbbox3 h3, 
	.topbbox4 h3,
	.topc_right h2,
	.topc_right ul.topc_righbox .topc_righbox_text span,
	.Container-20064-1 .title1,
	.Container-20064-2 .title2,
	.Container-20064-3 .title3,
	.cona .conaright .conaday,
	.carousel_1h2,
	.price-table1 .price_title h2,
	.price-table1 .price_holder ul li span,
	.number_Animation .number,
	.cono h3,
	.OurSkill span,
	.verticalTab_Left_1 ul.resp-tabs-list li:hover span,
	.verticalTab_Right_1 ul.resp-tabs-list li:hover span,
	.horizontalTab_Top_1 ul.resp-tabs-list li:hover span,
	.horizontalTab_Top_2 ul.resp-tabs-list li span,
	.horizontalTab_Top_3 ul.resp-tabs-list li span,
	.accordion_1 .panel-title a.collapsed,
	.accordion_2 .panel-title a.collapsed,
	.accordion_3 .panel-title a,
	.accordion_4 .panel-title a.collapsed,
	.quotes_1 blockquote small,
	.quotes_2 blockquote small,
	.quotes_3 blockquote small,
	.quotes_4 blockquote small,
	.carousel_7 .item h3,
	.topg h3,
	.topd h4,
	.sync_carousel_1 .carousel_main .item h4,
	.conc h3,
	.cond h3,
	.flip_box_5 .front h3,
	.cong .congright h4,
	.conk .conk_top h3,
	.conm_right h3,
	.conm_right span,
	.boxes_style_2 .Boxes_title,
	.boxes_style_3 .Boxes_title,
	.boxes_style_5 .Boxes_title,
	.boxes_style_6 .Boxes_title,
	.boxes_style_7 .Boxes_title,
	.text_sytle_1 h3,
	.text_sytle_3 h3,
	.text_sytle_4 h3 span,
	.text_sytle_5 h3,
	.flip_box_1 h3,
	.flip_box_2 h3,
	.flip_box_2 .front .glyphicons,
	.flip_box_3 h3,
	.home2_cond h3,
	.carousel_9 .item h3,
	.home3topa li h6,
	.Container-20064-7 .title7,
	.Theme_Responsive_20064_faq label{
		color:#eee !important;
		}
	.topc_right .topc_rightline{
		background-color:#eee !important;
		}

	/* 20240911 (rk) */
	.home2_cona .title{		
    color: #93ab56 !important;
    text-transform: uppercase;
    font-weight: bold;
	}

	.isotope_grid .isotope_group,
	.isotope_grid .isotope_group a,
	.text_sytle_6 .dateandtitle .date,
	.text_sytle_6 .dateandtitle .title,
	.text_sytle_6 .dateandtitle .date span, 
	.text_sytle_6 .dateandtitle .title span,
	.text_sytle_6 .aandinfo .info,
	.text_style1 h3,
	.text_style2,
	.text_style2 h3,
	.text_style2 .info,
	.text_style3,
	.text_style3 h3,
	.Single_Layouts h3,
	.portfolios_carousel_title,
	.Sidebar_layouts_categories li a,
	.Sidebar_layouts_links li a,
	.home2_cong .home2_cong_left span.glyphicons, 
	.home2_cong .home2_cong_center span.glyphicons, 
	.home2_cong .home2_cong_right span.glyphicons,
	.home2_cong .home2_cong_left p, 
	.home2_cong .home2_cong_center p, 
	.home2_cong .home2_cong_right p,
	.home2_cong .home2_cong_left p span, 
	.home2_cong .home2_cong_center p span, 
	.home2_cong .home2_cong_right p span{
		color:#aaa;
		}
	
	.page_turning a{
		color:#aaaaaa !important;
	}
	
	.loading .container1 > div,
	.loading .container2 > div,
	.loading .container3 > div{
		background-color:#aaaaaa;
	}

	.top_cp{
		background-color:#282828;
		}
	.cona .conaright .conaday{
		border-right: 1px solid #5c5c5c;
		}
	.cona .conaright .conacenter {
		border-bottom: 1px solid #5c5c5c;
		}
	.cong .congright{
		border: 1px solid #5c5c5c;
		}
	.cong .congright:before{
		border-left: 1px solid #5c5c5c;
		border-top: 1px solid #5c5c5c;
		}
	.conp{
		background-color:#282828;
		}
	.Testimonials_6 blockquote p,
	.Testimonials_4 blockquote p,
	.quotes_4 blockquote,
	.quotes_3 blockquote span.mark{
		background-color:#222222;
		}
	.Testimonials_6 small:after{
		background-color: #222222;
		border-left: 1px solid #222222;
		border-bottom: 1px solid #222222;
		}

	.loaded_list2 .progressborder {
		border: 2px solid #555555;
		}
	.loaded_list2 .progress{
		background-color:#555555;
		}
	.loaded_list2 .bar span {
		color: #333;
		background-color: #fff;
		}
	.boxes_style_1 .but a.Button_default2{
		background-color:#111;
		}
	.flip_box_1 .front, 
	.flip_box_1 .back,	
	.flip_box_2 .front, 
	.flip_box_2 .back{
		border:1px solid #222;
		}
	.dividers_3 span,
	.boxes_style_1 .boxes,
	.boxes_style_5 .boxes,
	.boxes_style_6 .boxes,
	.boxes_style_7 .boxes,
	.price-table2 .price_holder ul li,
	.flip_box_1 .front,
	.flip_box_1 .back,
	.flip_box_2 .front,
	.flip_box_2 .back,
	.flip_box_3 .front{
		background-color:#222;
		}

	.boxes_style_2 .boxes{
		background-color:#353535;
		}
	.boxes_style_3 .boxes{
		background-color:#424242;
		}
	.conb{
		background-color:rgba(0,0,0,0.4);
		}
	.number_Animation_main,
	.number_Animation .number_Animation_bg,
	.topf{
		background-color: #000;
		}
	.loaded_list3 .bar span {
		color: #333;
		background-color: #eee;
		}

	.horizontalTab_Top_2 ul.resp-tabs-list li,
	.horizontalTab_Top_2 ul.resp-tabs-list li:hover {
		background-color: #5A5A5A;
		}
	.flip_box_5 .front,
	.cong .congright,
	.cong .congright:before,
	.conk .conk_con,
	.coni li,
	.conl,
	.conm_left,
	.conl .topa_right{
		background-color:#222;
		}
	.coni li span.social{
		color:#222;
		}
	.conn h4{
		color: #fff;
	}
	.Container-20064-3{
		background-color:#222!important;
		}

	#to_top {
		background-color:#000;
		}
	.home2_conbg_1,
	.home2_conbg_1 .home2_cona .number {
		background-color: #222;
		}
	.home2_cona .number,
	.home2_conbg_1 .home2_cona .number{
		color:#444444;
		color:rgba(102,102,102,0.3);
		}

	/***home3***/
	.home3cona {
		background-color: #282828;
		border: 1px solid #444444;
		}
	.home3cona span.glyphicons{
		background-color:#3E3E3E;
		}
	.horizontalTab_Top_5 ul.resp-tabs-list li{
		background-color:#1B1B1B;
		border-left:1px solid #2E2E2E;
		}
	.horizontalTab_Top_5 ul.resp-tabs-list li span{
		color:#aaa;
		}
	.horizontalTab_Top_5 ul.resp-tabs-list li:hover {
		background: #1B1B1B;
		}
	.horizontalTab_Top_5 ul.resp-tabs-list li:hover span{
		color:#aaa;
		}
	.home3cond h3.title{
		color: #aaa;
		}
	.home3conb{
		border: 1px solid #555555;
		}
	.home3conb li{
		border-left: 1px solid #555555;
		border-top: 1px solid #555555;
		}
	.home3conb li .line{
		background-color: #DDDDDD;
		}
	.home3cond{
		background-color: #282828;
		}
	/***home4***/
	.verticalTab_Left_2 ul.resp-tabs-list li{
		background-color:#555555;
	}
	/***home5***/
	.SectionStyles9{
		background-color:#444444;
	}
	@media only screen and (max-width: 767px) {
	.horizontalTab_Top_6 h2.resp-accordion{
		color:#aaaaaa;
	}
	}


	/* ********** banner module style ************** */
	.Theme_21_LinkAndZoom_Default li{
		background-image:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/List_bg.png") !important
	}
	.Theme_19_Normal .filter_block{
		border-bottom-color:#424242!important;
	}
	.Theme_19_Normal .filter_navigation ul li{
		background-color:transparent!important;
	}
	.Theme_19_Normal .filter_navigation ul li a{
		border-color:#424242!important;
		color:#CCC!important;
	}
	.Theme_19_Normal .filter_navigation ul li.selected a{
		background-color:#444!important;
	}
	/* ********** module style ************** */
	.Skin_01_Default.galler_datail .gallery_title,
	.Skin_03_Default.galler_datail .gallery_title{
		color:#FFF;
	}
	.Skin_01_Default.galler_datail .single_meta li,
	.Skin_03_Simple.simple_list .single_meta li,
	.Skin_03_Simple.news_detail .single_meta li{
		background-color:#444;
	}
	.Skin_01_Default.galler_datail .single_meta li span, 
	.Skin_01_Default.galler_datail .single_meta a,
	.Skin_02_Default.galler_datail .single_meta li span, 
	.Skin_02_Default.galler_datail .single_meta a,
	.Skin_03_Default.galler_datail .single_meta li span, 
	.Skin_03_Default.galler_datail .single_meta a,
	.Skin_03_Simple.simple_list .single_meta li span, 
	.Skin_03_Simple.simple_list .single_meta a,
	.Skin_03_Simple.news_detail .single_meta li span, 
	.Skin_03_Simple.news_detail .single_meta a{
		color:#FFF; 
	}
	.Skin_01_Default.galler_datail .single_meta [class^="icon-"], 
	.Skin_01_Default.galler_datail .single_meta [class*=" icon-"],
	.Skin_02_Default.galler_datail .single_meta [class^="icon-"], 
	.Skin_02_Default.galler_datail .single_meta [class*=" icon-"],
	.Skin_03_Default.galler_datail .single_meta [class^="icon-"], 
	.Skin_03_Default.galler_datail .single_meta [class*=" icon-"],
	.Skin_03_Simple.simple_list .single_meta [class^="icon-"], 
	.Skin_03_Simple.simple_list .single_meta [class*=" icon-"],
	.Skin_03_Simple.news_detail .single_meta [class^="icon-"], 
	.Skin_03_Simple.news_detail .single_meta [class*=" icon-"]{
		background-image:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/glyphicons-halflings.png")!important
	}
	.Skin_02_Default.galler_datail .prev_next a:hover,
	.Skin_03_Default.galler_datail .prev_next a:hover,
	.Skin_03_Simple.news_detail .prev_next a:hover{
		color:#FFF;
	}
	.Skin_02_Default.filter_Box .filter_block ul,
	.Skin_03_Default.filter_Box .filter_block ul,
	.Skin_03_Default.filter_Box .view-tenth,
	.Skin_01_Default.news_list .post_thum,
	.Skin_03_Simple.simple_list .post_thum,
	.Skin_01_Default.news_detail .post_thum,
	.Skin_02_Default.news_detail .post_thum,
	.Skin_03_Simple.news_detail .post_thum,
	.Skin_03_Default.galler_datail .single_meta{
		border-color:#444;
	}
	.Skin_02_Default.filter_Box .filter_block li,
	.Skin_03_Default.filter_Box .filter_block li,
	.Skin_03_Default.galler_datail .single_meta li{
		border-left-color:#444;
	}
	.Skin_01_Default.news_list .post_categories,
	.Skin_03_Simple.simple_list .news_post,
	.Skin_05_timeline.news_list .news_more_box .line span:last-child,
	.Skin_01_Default.news_detail .post_categories{
		border-bottom-color:#444;
	}
	.Skin_05_timeline.news_list .news_date_box,
	.Skin_05_timeline.news_list .news_more_box,
	.Skin_05_timeline.news_list .news_more_box .line span{
		border-top-color:#444;
	}
	.Skin_05_timeline.news_list .news_post_box .news_line,
	.Skin_05_timeline.news_list .news_more_box .line{
		background-color:#444;
	}
	.Skin_01_Default.galler_datail .comment_form .form_row input, 
	.Skin_01_Default.galler_datail .comment_form .form_row textarea,
	.Skin_02_Default.galler_datail .comment_form .form_row input, 
	.Skin_02_Default.galler_datail .comment_form .form_row textarea,
	.Skin_03_Default.galler_datail .comment_form .form_row input, 
	.Skin_03_Default.galler_datail .comment_form .form_row textarea,
	.Skin_01_Default.news_detail .comment_form .form_row input, 
	.Skin_01_Default.news_detail .comment_form .form_row textarea,
	.Skin_03_Simple.news_detail .comment_form .form_row input, 
	.Skin_03_Simple.news_detail .comment_form .form_row textarea,
	.Skin_04_Box.news_detail .comment_form .form_row input, 
	.Skin_04_Box.news_detail .comment_form .form_row textarea,
	.Skin_05_timeline.news_detail .comment_form .form_row input, 
	.Skin_05_timeline.news_detail .comment_form .form_row textarea,
	.Skin_01_Default.news_detail .post_author_info h4,
	.Skin_01_Default.news_detail .comment_form h4,
	.Skin_04_Box.news_detail .comment_form h4,
	.Skin_05_timeline.news_detail .comment_form h4{
		background-color:#303030;
		border-color:#424242;
		color:#FFF;
	}
	.Skin_04_Box.news_list .news_post,
	.Skin_04_Box.news_detail,
	.Skin_05_timeline.news_detail{
		background-color:transparent;
		border-color:#444;
	}
	.Skin_04_Box.news_list .post_box,
	.Skin_04_Box.news_detail .post_content{
		border-top-color:#444;
	}
	.Skin_04_Box.news_list .post_date,
	.Skin_04_Box.news_detail .post_date,
	.Skin_05_timeline.news_detail .post_date,
	.Skin_05_timeline.news_detail .post_sharing,
	.Skin_05_timeline.news_detail .post_author_info{
		border-bottom-color:#444;
	}
	.Skin_04_Box.news_detail .post_categories a{
		color:#848484;
		border-color:#848484;
	}
	.Skin_05_timeline.news_detail .news_detail_top .tab_left{
		border-right-color:#444;
	}
	
	
	.Skin_03_Simple.news_detail h2.news_title,
	.Skin_03_Simple.simple_list h2.news_title a,
	.Skin_04_Box.news_detail h2.news_title,
	.Skin_04_Box.news_list h2.news_title a{
		color:#ffffff;
	}
	.comment_form .form_row label{
		color:#ffffff!important;
	}
	
	.Skin_02_Default.filter_Box #filters li a,
	.Skin_02_Default.filter_Box .sort_box li a,
	.Skin_03_Default.filter_Box #filters li a,
	.Skin_03_Default.filter_Box .sort_box li a{
		color:#ffffff;
	}
	.Skin_02_Default.filter_Box .portfolio_categories,
	.Skin_02_Default.filter_Box .portfolio_categories span, 
	.Skin_02_Default.filter_Box .portfolio_categories a:link, 
	.Skin_02_Default.filter_Box .portfolio_categories a:active, 
	.Skin_02_Default.filter_Box .portfolio_categories a:visited, 
	.Skin_02_Default.filter_Box .portfolio_descr .name a:link, 
	.Skin_02_Default.filter_Box .portfolio_descr .name a:active, 
	.Skin_02_Default.filter_Box .portfolio_descr .name a:visited,
	.Skin_03_Default.filter_Box .portfolio_categories,
	.Skin_03_Default.filter_Box .portfolio_categories span, 
	.Skin_03_Default.filter_Box .portfolio_categories a:link, 
	.Skin_03_Default.filter_Box .portfolio_categories a:active, 
	.Skin_03_Default.filter_Box .portfolio_categories a:visited, 
	.Skin_03_Default.filter_Box .portfolio_descr .name a:link, 
	.Skin_03_Default.filter_Box .portfolio_descr .name a:active, 
	.Skin_03_Default.filter_Box .portfolio_descr .name a:visited,
	.Skin_03_Default.filter_Box .portfolio_descr .name a:hover,
	.Skin_04_Box.news_list .post_date,
	.Skin_04_Box.news_list .post_date span, 
	.Skin_04_Box.news_list .post_date a:link, 
	.Skin_04_Box.news_list .post_date a:active, 
	.Skin_04_Box.news_list .post_date a:visited,
	.Skin_04_Box.news_detail .post_date,
	.Skin_04_Box.news_detail .post_date span, 
	.Skin_04_Box.news_detail .post_date a:link, 
	.Skin_04_Box.news_detail .post_date a:active, 
	.Skin_04_Box.news_detail .post_date a:visited,
	.Skin_05_timeline.news_detail .post_date a, 
	.Skin_05_timeline.news_detail .post_date a:link, 
	.Skin_05_timeline.news_detail .post_date a:active, 
	.Skin_05_timeline.news_detail .post_date a:visited,
	.Skin_05_timeline.news_detail .news_detail_top .tab_left{
		color:#ffffff;
	}
	.Skin_01_Default.news_list .post_categories a, 
	.Skin_01_Default.news_list .post_more a,
	.Skin_01_Default.news_detail .post_categories a, 
	.Skin_01_Default.news_detail .post_more a,
	.Skin_05_timeline.news_detail .news_detail_top .news_detail_username a, 
	.Skin_05_timeline.news_detail .news_detail_top .news_detail_username a:link, 
	.Skin_05_timeline.news_detail .news_detail_top .news_detail_username a:active, 
	.Skin_05_timeline.news_detail .news_detail_top .news_detail_username a:visited{
		color:#919191;
	}
	.Skin_04_Box.news_list .news_post{
		color:#919191;
	}
	.Skin_04_Box.news_detail,
	.Skin_05_timeline.news_detail ,
	.Skin_05_timeline.news_detail .news_detail_top .tab_left span{
		color:#919191;
	}
	.Archive_Default .archive_list li a,
	.Category_Default .category_list li a{
		color:#ccc!important;
	}
	.Archive_Default .archive_list li,
	.Category_Default .category_list li a{
		border-bottom-color:#666!important;
	}


	

	
	
	


















.Skin_01_Portfolio.filter_Box .filter_block .filters, 
.Skin_01_Portfolio.filter_Box .filter_block .filters a, .Skin_01_Portfolio.filter_Box .filter_block ul.sort_box, .Skin_01_Portfolio.filter_Box .filter_block li:first-child {
    border-color: #424242;
    color: #8f8f8f !important;
}
.Skin_01_Portfolio.filter_Box .filters a.active, .Skin_01_Portfolio.filter_Box .filters a:hover {
    color: #fff !important;
}
.Skin_01_Portfolio.filter_Box .pho-isotope_item .pho-photo {
    background-color: #444 !important;
}
.Skin_01_Portfolio.filter_Box .pho-isotope_item .content .ViewSummary {
    color: #8f8f8f !important;
}
.Skin_01_Portfolio.filter_Box .pho-photo .content h3 a, .Skin_01_Portfolio.filter_Box .pho-isotope_item .date {
    color: #fff !important;
}
.Skin_01_Portfolio.filter_Box .sort_box li a {
    color: #8f8f8f;
}
.Skin_01_Portfolio.filter_Box .pho-isotope_item .sep, .Skin_01_Portfolio.filter_Box .pho-isotope_item .categorie, .Skin_01_Portfolio.filter_Box .pho-isotope_item .categorie a {
    color: #fff !important;
}
.Skin_01_Portfolio.galler_datail .single_meta li span, .Skin_01_Portfolio.galler_datail .single_meta a, .Skin_01_Portfolio.galler_datail .prev_next .btn-small {
    color: #8f8f8f;
}
.Skin_01_Portfolio.galler_datail .prev_next .btn-small:hover {
    color: #8f8f8f;
}
.Skin_01_Portfolio.galler_datail .gallery_tags a {
    border: 1px solid #272727;
}
.Skin_01_Portfolio.galler_datail .comment_form .form_row input, .Skin_01_Portfolio.galler_datail .comment_form .form_row textarea {
    background-color: #444 !important;
    border: 1px solid #272727 !important;
    color: #fff;
}
.Skin_01_Portfolio.galler_datail .single_meta li {
    background-color: #939393 !important;
    color: #fff;
}
.Skin_01_Portfolio.galler_datail .single_meta li span, .Skin_01_Portfolio.galler_datail .single_meta li a {
    color: #000;
}
.Skin_02_Default.gallery_list .nav_category {
    border-color: #424242;
}
.Skin_02_Default.gallery_list .categorie_nav a {
    color: #8f8f8f !important;
}
.Skin_02_Default.gallery_list .list_one, .Skin_02_Default.gallery_list .list_two, .Skin_02_Default.gallery_list .list_three, .Skin_02_Default.gallery_list .photo_rss {
    background-color: #444;
}
.Skin_02_Default.gallery_list .column_one .gallery_item {
    border-color: #424242;
}
.Skin_02_Default.gallery_list .filters a.active, .Skin_02_Default.gallery_list .filters a:hover {
    color: #fff;
}
.Skin_02_Default.galler_datail .gallery_title {
    color: #fff;
}
.Skin_02_Default.galler_datail .prev_next a {
    color: #fff;
}
.Skin_02_Default.galler_datail .single_meta li {
    background-color: #494848;
}
.Skin_02_Default.gallery_list .galley_page .button {
    background-color: #494848;
    border-color: #494848;
    color: #fff !important;
}
.filter_block li {
    border-left:none!important;}

/*****************************************************************************/
/*** pacestyle/Big-counter.css ***/
/*****************************************************************************/

/* @import url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/pacestyle/Big-counter.css?v=1"); */

/* This is a compiled file, you should be editing the file in the templates directory */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace.pace-inactive .pace-progress {
  display: none;
}

.pace .pace-progress {
  position: fixed;
  z-index: 20000;
  top: 50%;
  left:50%;
  height: 50px;
  width: 110px;
  margin:-25px 0 0 -55px;
  text-align:center;
  background-color:transparent!important;

  -webkit-transform: translate3d(0, 0, 0) !important;
  -ms-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}

.pace .pace-progress:after {
  display: block;
  position: absolute;
  top: 0;
  left:0;
  right:0;
  content: attr(data-progress-text);
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 100;
  font-size: 5rem;
  line-height: 1;
  text-align:center;
  color: #2299dd;
  opacity:0.5;
}

/*****************************************************************************/
/*** css ***/
/*****************************************************************************/

.pace-running-ie .pace_bg {
    background-image: url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/Thumbnails/loader1.gif");
    background-position: center center;
    background-repeat: no-repeat;
}

	.pace_bg,
	.pace-running .pace_bg {
		background-color:#FFFFFF;
	}
	.pace .pace-progress:after {
		color: #93ab56;
	}
	.pace .pace-progress {
		background-color:#93ab56;
		border-color:#93ab56;
	}
	.pace {
		border-color:#93ab56;
	}
	.pace .pace-activity {
		background-color:#93ab56;
		border-color:#93ab56;
	}
	.pace .pace-activity:after,
	.pace .pace-activity:before {
		border-color:#93ab56;
	}
	.pace .pace-progress:before {
		background-color:#93ab56;
	}
	.pace .pace-progress-inner {
		box-shadow: 0 0 10px #93ab56, 0 0 5px #93ab56;
	}
	.pace .pace-activity {
		box-shadow: inset 0 0 0 2px #93ab56, inset 0 0 0 7px #FFF;
	}

	/*HTML*/
	.homecontent_bg{
		background-color:#333333;
		}
	.topbout .topbout_ico,
	.aboutus02_bg02,
	.aboutus02_two_box h2,
	.aboutus02_bg01,
	.service02_bg03{
		background-color:#333333;
		} 
		
	.service02_bg03{
		background:#333333;
		}
	.topbbox1 .topbbox_ico, 
	.topbbox2 .topbbox_ico, 
	.topbbox3 .topbbox_ico, 
	.topbbox4 .topbbox_ico{
		border: 5px solid #333333;
		}

	.Testimonials_4 small:after {
		border-left: 11px solid #333333;
		border-bottom: 11px solid #333333;
		border-top: 11px solid #222;
		border-right: 0 solid #333333;
		}
	.Testimonials_5 small:after{
		border-left: 11px solid #333333;
		border-bottom: 11px solid #333333;
		border-right: 0 solid #333333;
		}

	.dividers_5 span{
		background-color:#333333;
		}

	.OurSkill span,
	.horizontalTab_Top_1 ul.resp-tabs-list li.resp-tab-active,
	.horizontalTab_Top_1 ul.resp-tabs-list li.resp-tab-active span,
	.horizontalTab_Top_2 ul.resp-tabs-list li.resp-tab-active,
	.horizontalTab_Top_2 ul.resp-tabs-list li.resp-tab-active span,
	.horizontalTab_Top_3 ul.resp-tabs-list li,
	.horizontalTab_Top_3 ul.resp-tabs-list li:hover{
		background-color:#333333;
		}
	.verticalTab_Left_1 ul.resp-tabs-list li,
	.verticalTab_Right_1 ul.resp-tabs-list li,
	.Container-20064-2 .title2{
		background-color:#333333!important;
		}
	.horizontalTab_Top_2 ul.resp-tabs-list li.resp-tab-active{
		border-bottom: 1px solid #333333;
		}

	#left_menu ul li li a{
		color:#aaaaaa;
		}




#Body,
html,
body,
.Head,
.SubHead,
.SubSubHead,
.Normal {
	color: #aaaaaa;
	font-family: 'Open Sans';

	/* 20240911 (rk) */
	font-size: 16px;
	line-height: 24px;
/*font-size: 13px;
line-height: 1.6;
*/

}
html, button, input, select, textarea{
	font-family:'Open Sans';
}
h1 {
	color:#93ab56;
	font-family:'Open Sans';
	font-size:24px;
	line-height:26px;
	font-weight:bold;
} 
h2 {
	color:#93ab56;
	font-family:'Open Sans';
	font-size:22px;
	line-height:24px;
	font-weight:bold;
}
h3 {
	color:#93ab56;
	font-family:'Open Sans';
	font-size:20px;
	line-height:22px;
	font-weight:bold;
}
h4 {
	color:#ffffff;
	font-family:'Open Sans';
	font-size:18px;
	line-height:20px;
	font-weight:bold;
}
h5 {
	color:#ffffff;
	font-family:'Open Sans';
	font-size:16px;
	line-height:18px;
	font-weight:bold;
}
h6 {
	color:#ffffff;
	font-family:'Open Sans';
	font-size:14px;
	line-height:16px;
	font-weight:bold;
}
/*Content Style*/
a, 
a:link,
a:active,
a:visited{
	color:#93ab56;
}
a:hover{
	color:#93ab56;
}

.cona .conaright .conamain,
.Testimonials_6 blockquote p,
.Testimonials_6 small,
.loaded_list2 p,
.SectionStyles1 p,
.price-table1 .price_holder p,
.price-table1 .price_holder ul li,
.price-table2 .price_holder ul li,
.loaded_list p,
.loaded_list3 .progress_rightbox p,
.Testimonials_1 blockquote p,
.Testimonials_2 blockquote p,
.Testimonials_3 blockquote p,
.Testimonials_4 blockquote p,
.Testimonials_7 blockquote p,
.quotes_1 blockquote p,
.quotes_3 blockquote p,
.quotes_4 blockquote p,
.carousel_2 p,
.flip_box_5 .front p,
.cone h4,
.cong .congleft p,
.conh li a,
.conl .topa_left{
	color:#aaaaaa;
}
.topbbox1 h3, 
.topbbox2 h3, 
.topbbox3 h3, 
.topbbox4 h3,
.topc_right h2,
.topc_right ul.topc_righbox .topc_righbox_text span,
.Container-20064-1 .title1,
.Container-20064-2 .title2,
.Container-20064-3 .title3,
.cona .conaright .conaday,
.carousel_1h2,
.price-table1 .price_title h2,
.price-table1 .price_holder ul li span,
.number_Animation .number,
.cono h3,
.OurSkill span,
.verticalTab_Left_1 ul.resp-tabs-list li:hover span,
.verticalTab_Right_1 ul.resp-tabs-list li:hover span,
.horizontalTab_Top_1 ul.resp-tabs-list li:hover span,
.horizontalTab_Top_2 ul.resp-tabs-list li span,
.horizontalTab_Top_3 ul.resp-tabs-list li span,
.accordion_1 .panel-title a.collapsed,
.accordion_2 .panel-title a.collapsed,
.accordion_3 .panel-title a,
.accordion_4 .panel-title a.collapsed,
.quotes_1 blockquote small,
.quotes_2 blockquote small,
.quotes_3 blockquote small,
.quotes_4 blockquote small,
.carousel_7 .item h3,
.topg h3,
.topd h4,
.sync_carousel_1 .carousel_main .item h4,
.conc h3,
.cond h3,
.flip_box_5 .front h3,
.cong .congright h4,
.conk .conk_top h3,
.conm_right h3,
.conm_right span{
	color:#333;
	}
.topc_right .topc_rightline{
	background-color:#333;
	}
.body_bg {
								background-image:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/Body_bg_2.png");
											background-position:center top;
	background-attachment:scroll;
					background-repeat:repeat;
		background-size:auto ;
}

.homecontent_bg{
	background-color:#333333;
}
footer:before{
	background-color:#3C3C3C;
	filter:alpha(opacity= 100 ); /* TODO */
	opacity: 1;
}

	#dnn_wrapper{width:auto;}

/* ********** BANNER ************** */
.tp-caption a.bannerbutton{
	}
.homepage1_banner2line{
	background-color:#93ab56;
	}
.SliderRevolution3D.defaultskin .tp-leftarrow.default:hover{
	background-color:#93ab56;
	}
.SliderRevolution3D.defaultskin .tp-rightarrow.default:hover{
	background-color:#93ab56;
	}
.tp-banner-container .tp-leftarrow:hover.round,
.tp-banner-container .tp-rightarrow:hover.round,
.tp-banner-container .tp-bullets.simplebullets.round .bullet.selected,
.tp-banner-container .tp-bullets.simplebullets.round .bullet:hover{
	background-color: #93ab56;
	}
/* **********pages02 ************** */
.contactus02_tit01 h3,
.contact_two_box:hover span, 
.contact_two_box:hover h3,
.pricing02_table .table > thead > tr > th span,
.prcing02_tit03 h2,
.accordion_pricing02 .panel-title a:hover,
.horizontalTab_Top_faq.horizontalTab_Top ul.resp-tabs-list li.resp-tab-active span,
.faq02_tit01 h3 span,
.faq_three_top h2,
.timline02_year_bottom,
.detail02_one_box > h2,
.chart_list_detail02 .percentage66,
.detail02_four_box .photo_box .ico span,
.loaded_list3_team02 .percentage55,
.team02_three h3,
.Testimonials_team02 small span,
.service02_five_top h2 span,
.service02_tit02 h2,
.aboutus02_two_icon span,
.aboutus02_three_con h2,
.number_Animation_aboutus02 .glyphicons,
.service02_two_list ul li:hover span, 
.service02_two_list ul li:hover, 
.service02_two_list ul li a:hover,
.member_img span{
	color:#93ab56;
}
.service02_three_box:hover a.service_bnt01 {
    
    color:#93ab56!important;
}
.contact02_tit03 .line,
.aboutus02_bg03,
.accordion_pricing02 .panel-title em,
.aboutus02_tit01 h2:before,
.aboutus02_tit01 h2:after,
.faq02_one_tit span,
a:hover.faq_bnt01,
.faq_three_box:hover,
.timline02_year_top,
.detail02_list li span,
.detail02_three_year,
.detail02_three_center_s,
.team02_one.photo_box:hover .shade,
.tame02_tit01 h2:after,
.tame02_tit01 h2:before,
.detail02_one_box .line,
.loaded_list3_team02 .percentage55,
.team02_tit04 .line,
.service02_one_icon span,
.service02_three_box:hover,
.loaded_list3_team02 .border_color,
.aboutus02_r span,
.service02_one_icon,
.horizontalTab_Top .resp-tabs-container .resp-tab-active, 
.horizontalTab_Top .resp-tabs-container .resp-tab-active:hover{ 
    background:#93ab56;
}
.Theme_Responsive_20064_contact .btn:hover,
.Theme_Responsive_20064_prcing02 .btn,
.Theme_Responsive_20064_faq .btn{   
    background-color: #93ab56!important;
}
.Theme_Responsive_20064_faq .btn:hover,
.Theme_Responsive_20064_prcing02 .btn:hover {
    background: #444!important;  
}
.price02_table.price-table .color3 .price_box, 
.price02_table.price-table .color3 .btn, 
.price02_table.price-table .color3 .price_title,
a.pricing02_bnt,
.back_top,
a.timeline_bnt,
.back_bottom,
a.team02_bnt01,
.Testimonials_team02 .dot a.actived,
a.service_bnt01,
a:hover.service_bnt02,
a.aboutus02_bnt01{
    background-color:#93ab56;
}
.prcing02_one_box .line,
.vertical_line {
    border-left: 1px dashed #93ab56;
}
.Time_Line02 .Time_Line02_line {   
    border-left: 2px solid #93ab56;
}
.aboutus02_bg03:before {   
    border-color: transparent transparent transparent #93ab56;
}
.faq02_tit02 h3:after {    
    border-bottom: 2px solid #93ab56;
}
.hover_img img:hover,
a:hover.pricing02_bnt,
.horizontalTab_Top_faq.horizontalTab_Top ul.resp-tabs-list li.resp-tab-active span,
.Time_Line02 .Time_Line02_top,
.Time_Line02:hover .photo_box,
.team02_full_right img:hover,
.service02_three_box:hover,
.service02_five_img img,
.service02_one_box:hover{
    border: 1px solid #93ab56;
}
a:hover.faq_bnt01,
.detail02_one_img,
.team02_percentage .loaded_list3_team02,
a:hover.service_bnt02,
.aboutus02_three_img img{   
    border: 2px solid #93ab56;
}
.faq_three_top h2,
.aboutus02_two_icon span {  
    border: 3px solid #93ab56;
}
.team02_tit03 h2:after{
    border-bottom: 3px solid #93ab56;
}
.contactus02_tit01 h2:after {   
    border-bottom: 4px solid #93ab56;
}
.detail02_three_year.year03:before, 
.detail02_three_year.year04:before,
.detail02_three_year:after { 
    border-top: 25px solid #93ab56;
}


/* ********** Source Code style ************** */	
/*list*/
.list_style li .glyphicons,
.list_style li .social{
	color:#93ab56;
}
/*SectionStyles*/
.SectionStyles1 h3{
	color:#93ab56;
	}
.SectionStyles2 h3{
	color:#93ab56;
	}
/*Boxes*/
.boxes_style_1 .boxes,
.boxes_style_7 .boxes{
	border-left:3px solid #93ab56;
	}
.boxes_style_1 .Boxes_title {
	color:#93ab56;
	}
.boxes_style_1 .but a.Button_default2{
	border:1px solid #93ab56;
	color:#93ab56;
	}
.boxes_style_4 .boxes,
.boxes_style_5 .boxes .but a.Button_default2:hover,
.boxes_style_7 .but a.Button_default2,
.boxes_style_8 .but a.Button_default2{
	background-color:#93ab56;
	}
.boxes_style_5 .boxes {
	border-top: 3px solid #93ab56;
	}
.boxes_style_6 .boxes {
	border-bottom: 3px solid #93ab56;
	}
/*******price*******/
.price-table1 .price_icon1,
.price-table1 .price_icon2,
.price-table1 .price_icon3{
	border:1px solid #93ab56;
	color:#93ab56;
	}
.price-table1 .price_box {
	color: #93ab56;
	}
.price-table1 .btn{
	background-color:#93ab56;
	}
.price-table2 .price_icon{
	border-top:3px solid #93ab56;
	}
.price-table2 .price_box {
	color: #93ab56;
	}
.price-table2 .price_holder ul li span.glyphicons{
	color:#93ab56;
	}
.price-table2 .btn{
	background-color:#93ab56;
	}
/*chart_list*/
.chart_list .percentage {
	color:#93ab56;
}
.chart_list .percentage .percentage_inner {
	color:#93ab56;
}
/*loaded_list*/
.loaded_list .progress .bar{
	background-color:#93ab56;
}
.loaded_list2 .progress .bar{
	background-color:#93ab56;
}
.loaded_list3 .progress .bar {
	background-color:#93ab56;
	}
.loaded_list3 .progress_rightbox h3{
	color:#93ab56;
	}
.loaded_list3 .progress_rightbox .line{
	background-color:#93ab56;
	}
/*number_Animation*/
.number_Animation .glyphicons {
	color:#93ab56;
	}
/*Testimonials_1*/	

.Testimonials_1left:before{
	color: #93ab56;
	}
.Testimonials_1 blockquote h3{
	color:#93ab56;
	}
.Testimonials_1 small span {
	color:#93ab56;
	}
.Testimonials_1 small:before {
	color:#93ab56;
	}

.Testimonials_1 .dot a.actived {
	background-color: #93ab56;
	}
/*Testimonials_2*/
.Testimonials_2main > h3{
	color:#93ab56;
	}
.Testimonials_2 small span {
	color: #93ab56;
	}
/*Testimonials_3*/
.Testimonials_3 .dot a.actived{
	background-color:#93ab56;
}
.Testimonials_3 small span,
.Testimonials_7 small span {
	color:#93ab56;
}
/*Testimonials_4*/
.Testimonials_4 .dot a.actived{
	background-color:#93ab56;
}
.Testimonials_4 small{
	color:#93ab56;
}
/*Testimonials_5*/
.Testimonials_5 .dot a{
	background-color:#D8D8D8;
}
.Testimonials_5 .dot a.actived{
	background-color:#93ab56;
}
.Testimonials_5 blockquote p{
	background-color:#93ab56;
}
.Testimonials_5 small{
	color:#93ab56;
}
.Testimonials_5 small:after{
	border-top: 11px solid #93ab56;
}	
/*Testimonials_6*/
.Testimonials_6 .dot a.actived{
	background-color:#93ab56;
}
.Testimonials_6 blockquote p{
	border-top:3px solid #93ab56;
}
.Testimonials_6 small span {
	color:#93ab56;
}
/* verticalTab_Left_1*/
.verticalTab_Left_1 ul.resp-tabs-list li.resp-tab-active span{
	color:#93ab56;
}
/* verticalTab_Right_1*/

.verticalTab_Right_1 ul.resp-tabs-list li.resp-tab-active span{
	color:#93ab56;
}

/* horizontalTab_Top_1*/
.horizontalTab_Top_1 ul.resp-tabs-list li.resp-tab-active span{
	color:#93ab56;
	}
/* horizontalTab_Top_2*/
.horizontalTab_Top_2 ul.resp-tabs-list li:hover{
	background-color:#333333;
	}
.horizontalTab_Top_2 ul.resp-tabs-list li.resp-tab-active {
	border-top: 1px solid #93ab56;
	}
.horizontalTab_Top_2 ul.resp-tabs-list li span{
	}
.horizontalTab_Top_2 ul.resp-tabs-list li.resp-tab-active span{
	color:#93ab56;
	}
/* horizontalTab_Top_3*/
.horizontalTab_Top_3 ul.resp-tabs-list li:hover{
	background-color:#333333;
	}
.horizontalTab_Top_3 ul.resp-tabs-list li.resp-tab-active span {
	background-color: #93ab56;
}
/* **********  accordion_1  ************** */
.accordion_1 .panel-title a {
	background-color:#93ab56;
}
.accordion_1 .panel-title a .accordion_icon{
	background-color:#93ab56;
}
.accordion_1 .panel-title a:hover, 
.accordion_1 .panel-title a.collapsed:hover{
	background-color:#93ab56;
}
.accordion_1 .panel-title a:hover .accordion_icon {
	background-color:#93ab56;
}
/* **********  accordion_2  ************** */
.accordion_2 .panel-title a {
	background-color:#93ab56;
	border-left:2px solid #93ab56;
}
.accordion_2 .panel-title a .accordion_icon{
	background-color:#93ab56;
}
.accordion_2 .panel-title a.collapsed{
	border-left:2px solid #93ab56;
}
.accordion_2 .panel-title a:hover{
	background-color:#93ab56;
}
.accordion_2 .panel-title a:hover .accordion_icon {
	background-color:#93ab56;
}
/* **********  accordion_3  ************** */
.accordion_3 .panel-title a .accordion_icon{
	border:1px solid #93ab56;
	background-color:#93ab56;
}
.accordion_3 .panel-title a:hover .accordion_icon {
	background-color:#93ab56;
}
.accordion_3 .panel-title a.collapsed .accordion_icon:before {
	border-color:transparent #93ab56 #93ab56 transparent;
}
/* **********  accordion_4  ************** */
.accordion_4 .panel-title a {
	color:#93ab56;
}

.accordion_4 .panel-title a:hover{
	color:#93ab56;
}
.accordion_4 .panel-title a .accordion_icon:before,
.accordion_4 .panel-title a:hover .accordion_icon:before {
	border-color:#93ab56 transparent transparent transparent;
}
.accordion_4 .panel-title a.collapsed:hover .accordion_icon:before{
	border-color:transparent transparent transparent #93ab56;
	}

.accordion_4 .panel-title a em.glyphicons{
	color:#93ab56;
	}
/*quotes*/
.quotes_1 blockquote span.mark{
	background-color:#93ab56;
	}
.quotes_1 blockquote small span{
	color:#93ab56;
	}
.quotes_2 blockquote small span {
	color:#93ab56;
	}
.quotes_3 blockquote small span{
	color:#93ab56;
	}
.quotes_4 blockquote small span{
	color:#93ab56;
	}
.quotes_4 blockquote span.mark{
	color: #93ab56;
	}
/*dropcaps*/
.dropcaps_1{
	color:#93ab56;
}
.dropcaps_2{
	background-color:#93ab56;
}
.dropcaps_3{
	background-color:#93ab56;
}
.dropcaps_4{
	background-color:#93ab56;
}
.dropcaps_5{
	color:#93ab56;
	border:2px solid #93ab56;
}
.dropcaps_6{
	color:#93ab56;
	border:2px solid #93ab56;
}	
	
/*Core Owl Carousel CSS File*/
/* display none until init */
.carousel_1 .item .content_sytle_2 .shade{
	background-color:#93ab56;	
	}

.carousel_1 .owl-buttons .owl-prev:hover, 
.carousel_1 .owl-buttons .owl-next:hover {
	background-color: #93ab56;
	}
.carousel_2 .item .ico{
	background-color:#93ab56;
	}
.carousel_2 .item h3{
	color:#93ab56;
	}
.carousel_2 .item a.Button_normal{
	color:#93ab56;
	}
.carousel_2 .owl-buttons .owl-prev:hover:before, 
.carousel_2 .owl-buttons .owl-next:hover:before{
	border-left: 2px solid #93ab56;
	border-bottom: 2px solid #93ab56;
	}
.carousel_2 .owl-buttons .owl-next:hover:before {
	border-left:none;
	border-right: 2px solid #93ab56;
	}	
.carousel_3 .item h3{
	color:#93ab56;
	}	
.carousel_3 .item a.Button_normal{
	background-color:#93ab56;
	}	
.carousel_3 .owl-buttons .owl-prev, 
.carousel_3 .owl-buttons .owl-next{
	border: 1px solid #93ab56;
	}
.carousel_3 .owl-buttons .owl-prev:before, 
.carousel_3 .owl-buttons .owl-next:before{
	border-left: 1px solid #93ab56;
	border-bottom: 1px solid #93ab56;
	}
.carousel_3 .owl-buttons .owl-next:before {
	border-left:none;
	border-right: 1px solid #93ab56;
	border-bottom: 1px solid #93ab56;
	}
.carousel_4 .owl-page.active{
	background-color:#93ab56;
	}
.carousel_5 .content_sytle_2 .shade {
	background-color: #93ab56;
	}
.carousel_5 .owl-buttons .owl-prev:hover,
.carousel_5 .owl-buttons .owl-next:hover{
	background-color:#93ab56;
}	
.carousel_6 .item{
	border-bottom:2px solid #93ab56;	
	}
.carousel_6 .item h3{
	color:#93ab56;
	}
.carousel_6 .owl-buttons .owl-prev, 
.carousel_6 .owl-buttons .owl-next{
	border: 1px solid #93ab56;
	}
.carousel_6 .owl-buttons .owl-prev:before, 
.carousel_6 .owl-buttons .owl-next:before{
	border-left: 1px solid #93ab56;
	border-bottom: 1px solid #93ab56;
	}
.carousel_6 .owl-buttons .owl-next:before {
	border-left:none;
	border-right: 1px solid #93ab56;
	border-bottom: 1px solid #93ab56;
	}
.carousel_6 .owl-page.active {
	background-color:#93ab56;
	}
.carousel_7 .item .ico{
	background-color:#93ab56;
	}
.carousel_7 .item a.Button_normal{
	color:#93ab56;
	}
.carousel_7 .owl-buttons .owl-prev:hover:before, 
.carousel_7 .owl-buttons .owl-next:hover:before{
	border-left: 2px solid #93ab56;
	border-bottom: 2px solid #93ab56;
	}
.carousel_7 .owl-buttons .owl-next:hover:before {
	border-left:none;
	border-right: 2px solid #93ab56;
	}
.carousel_8 .item:hover{
	background-color:#93ab56;
	}
 /*iLightBox*/
a.Button_lightbox {
	background-color: #93ab56;
	}
/*Images*/
.photo_box .ico span {
	background-color: #93ab56;
}
.photo_box.ico_push_in .ico {
	background-color: #93ab56;
}
.photo_box.content_top_increment .content h3 {
	background-color: #93ab56;
}
.content_sytle_2 .shade {
	background-color: #93ab56;
}
.photo_box.content_push_in .content {
	background-color: #93ab56;
}
.photo_box.icon_tag_push .ico:before {
	border-right-color: #93ab56;
	border-top-color: #93ab56;
}
.photo_box:hover.entirety_bevel .shade {
	background-color: #93ab56;
}
.text_sytle_4 h3 span {
	border-bottom: 1px solid #93ab56;
}
/*boxes rotate*/
/*flip box*/
.flip_box_1 .front .glyphicons{
	background-color:#93ab56;
}
.flip_box_1 .back a.but{
	background-color:#93ab56;
}
.flip_box_3 .back{
	background-color:#93ab56;
}
.flip_box_5 .back{
	background-color:#93ab56;
	}
.flip_box_5 .back .back_social a {
	color:#93ab56;
	background-color: #93ab56;
	}
.flip_box_5 .back .back_social a:hover span.social {
	background-color: #93ab56;
	}
/*sync carousel */
.sync_carousel .owl-buttons .owl-prev:hover:before,
.sync_carousel .owl-buttons .owl-next:hover:before{
	border-left:2px solid #93ab56;
	border-bottom:2px solid #93ab56;
}
.sync_carousel .owl-buttons .owl-next:hover:before{
	border-left:none;
	border-right:2px solid #93ab56;
	}
.sync_carousel_1 .carousel_nav .synced .item .ico{
	border:2px solid #93ab56;
	}
.sync_carousel_1 .carousel_nav .synced .item .ico span.glyphicons{
	color:#93ab56;
	}
/*player*/
.player_boxes h1.player_title{
	color:#93ab56;
	}
.player_boxes .player_line {
	border-top-color:#93ab56;
	}
.player_boxes .player_line {
	border-bottom: 2px solid #93ab56;
	}
a.Button_blue{
	background-color:#93ab56;
	}
/*DNN LATEST PROJECTS*/
.Theme_21_LinkAndZoom_Normal .next:hover,
.Theme_21_LinkAndZoom_Normal .prev:hover,
.Theme_21_LinkAndZoom_Normal .pager a.selected,
.Theme_21_LinkAndZoom_Default .next:hover,
.Theme_21_LinkAndZoom_Default .prev:hover,.Theme_21_LinkAndZoom_Default .pager a.selected{
	background-color:#93ab56!important;
}
/*DNN PORTFOLIOS*/
.Theme_19_Normal .filter_navigation ul li.selected a,
.Theme_19_Normal .filter_navigation ul li a:hover{
	color:#93ab56!important;
}
.Theme_19_Default .filter_navigation ul ul li.selected a, 
.Theme_19_Default .filter_navigation ul ul li a:hover,
.Theme_19_Default .view-tenth .mask{
	background-color:#93ab56!important;
}
/* new portfolio */
.Text_layouts .photo_box a:hover span,
.Sidebar_layouts_categories .glyphicons,
.Sidebar_layouts_links .glyphicons{
	color:#93ab56;
}
.List_layouts_text hr{
	border-color:#93ab56;
}
.Single_page a{
	color:#93ab56;
	border-color:#93ab56;
}
a.page_control:hover,
a.page_number:hover{
	color:#93ab56 !important;
	border-color:#93ab56;
}
.Grid_layouts .photo_box .shade,
.Text_layouts .photo_box .shade,
.Single_page a:hover{
	background-color:#93ab56;
}
/* ********** 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:#333333;
}
.Skin_03_Simple.simple_list h2.news_title a:hover{
	color:#93ab56;
} 
.galler_datail h4{
	color:#ffffff!important;
}
.Skin_02_Default.filter_Box .portfolio_categories a:hover,  
.Skin_02_Default.filter_Box .portfolio_descr .name a:hover,
.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,
.Skin_02_Default.filter_Box .portfolio_descr .name a:hover,
.Skin_02_Default.filter_Box .portfolio_categories a:hover{
	color:#93ab56;
}
/*.Skin_02_Default.galler_datail .comment_form .submit_button .CommandButton,*/
.Skin_03_Default.galler_datail .comment_form .submit_button .CommandButton{
	text-shadow:none;
	border-color:#93ab56;
	color:#93ab56;
	transition:background-color ease-in 200ms;
}
.Skin_02_Default.galler_datail .comment_form .submit_button .CommandButton:hover,
.Skin_03_Default.galler_datail .comment_form .submit_button .CommandButton:hover{
	background-color:#93ab56;
	color:#FFF;
}
.Skin_03_Simple.news_detail .heading span{
	background-color:#333333;
}
.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:#93ab56;
}
.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:#93ab56;
	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:#93ab56;
}
.Skin_03_Default #filters li a:hover,
.Skin_03_Default .sort_box li a:hover,
.validationEngineContainer .galler_datail .single_meta a:hover,
.Skin_02_Default #filters li a:hover,
.Skin_02_Default .sort_box li 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{
	color:#93ab56;
}
.news_detail_top .tab_right .news_detail_username a:hover,
.news_detail .post_date a:hover{
	color:#93ab56!important;
}
.Skin_05_timeline .news_detail_top h2.news_title{
	color:#93ab56;
}
.Theme_19_Normal .filter_navigation ul li.selected a{
	color:#93ab56!important;
	}
a.abtn.btn_white:hover, 
.banner_btn, 
.banner_btn.btn_white:hover, 
.comment_form .submit_button .CommandButton {
	border-color:#93ab56;
}
/* ********** html style ************** */
.Container-20064-2 .title2{
	background-color:#333333;
	}		
a.social:hover{
	color:#93ab56;
	}
.top_ap{
	background-color:#93ab56;
	}
.topbout .topbout_ico{
	border: 4px solid #93ab56;
	color:#93ab56;
	}	
.topbbox1 .topbbox_ico,
.topbbox2 .topbbox_ico,
.topbbox3 .topbbox_ico,
.topbbox4 .topbbox_ico{
	background-color:#93ab56;
	}	
.topbbox1 a,
.topbbox2 a,
.topbbox3 a,
.topbbox4 a{
	color:#93ab56;
	}	
.topc_right ul.topc_righbox .topc_righbox_icon{
	border: 1px solid #93ab56;
	color: #93ab56;
	}	
a.Button_default{
	background-color:#93ab56;
	}
.topd h4 span.glyphicons{
	color:#93ab56;
	}
.conc{
	border:1px solid #93ab56;
	}
.conc .icon{
	background-color:#93ab56;
	}
.conc > a{
	color:#93ab56;
	}
.conc > a:before{
	border-color: transparent transparent transparent #93ab56;
	}
.cond .line{

	background-color:#93ab56;
	}
.cone h3{
	color:#93ab56;
	}
.cone .line{
	background-color:#93ab56;
	}
.cone .cone_bottom p span.glyphicons:hover{
	color:#93ab56;
	}
.conf .icon{
	border:1px solid #93ab56;
	}
.conf .icon span.glyphicons{
	color:#93ab56;
	}
.conf h3{
	color:#93ab56;
	}
.conf .line{
	background-color:#93ab56;
	}
.cong .congleft span.glyphicons{
	color:#93ab56;
	}	
.cong .congleft .line{
	background-color:#93ab56;
	}
.cong .congright a{
	color: #93ab56;
	}
.cong .congright a:hover{
	text-decoration:none;
	}
.cong .congright a:before {
	border-color: transparent transparent transparent #93ab56;
	}
.conh li a:hover{
	color:#93ab56;
	}
.conh li a:hover:before{
	background-color:#93ab56;
	}
.coni li span.social{
	background-color:#93ab56;
	}
.conj a{
	border:1px solid #93ab56;
	color:#93ab56;
	}
.conk .conk_top span.glyphicons{
	color:#93ab56;
	}
.conk .conk_con{
	border-left:2px solid #93ab56;
	}
.conl{
	border-left:2px solid #93ab56;
	}
.conl .topa_left h6.topa_lefttitle{
	color:#93ab56;
	}
.conl .topa_right{
	border:1px solid #93ab56;
	color:#93ab56;
	}
.conm_left span{
	color: #93ab56;
	}
.conm_right li:before{
	background-color:#93ab56;
	}
.conm_right li a,
.conm_right li.last{
	color:#93ab56;
	}
.cono .sector{
	color:#93ab56;
	}
.conn a:hover{
	color:#93ab56;
	}
.cono .sector_info{
	color: #93ab56;
	}
.cono .line{
	background-color:#93ab56;
	}
/* *** HomePage2 *** */	
.home2_cona .number{
	background-color:#333333;
	}
.carousel_9 .item .ico span.glyphicons,
.isotope_1 .isotope_item .photo_box .ico a:hover span,
.price-table3 .price_holder a.btn,
.ourteam_1 .team_list .team_content .team_social a:hover span.social{
	color:#93ab56;
	}
.home2_cona .linebox .line,
.home2_conc .time,
.home2_cond .line,
.horizontalTab_Top_4 ul.resp-tabs-list li.resp-tab-active,
.carousel_9 .owl-page.active,
.home2_conbg_2,
.isotope_1 .isotope_item .photo_box .shade,
.text_sytle_6 .aandinfo a,
.ourteam_1 .team_list .team_content .team_social a span.social,
.ourteam_1 .team_list .team_content .team_social a:hover,
.price-table3 .price_title,
.price-table3 .price_holder a.btn:hover,
#anchorNav li:hover i, 
#anchorNav li.active i{
	background-color:#93ab56;
	}
.horizontalTab_Top_4 ul.resp-tabs-list li.resp-tab-active span:before{
	border-color:#93ab56 transparent transparent transparent;
	}
.carousel_9 .item .ico,
.price-table3 .price_holder a.btn{
	border:1px solid #93ab56;
	}
.carousel_9 .owl-buttons .owl-prev:hover:before, .carousel_9 .owl-buttons .owl-next:hover:before {
	border-left: 2px solid #93ab56;
	border-bottom: 2px solid #93ab56;
	}
.carousel_9 .owl-buttons .owl-next:hover:before {
	border-left: none;
	border-right: 2px solid #93ab56;
	}
.isotope_grid .isotope_group a:hover, 
.isotope_grid .isotope_group a.active {
	color:#93ab56;
	border-bottom: 2px solid #93ab56;
	}
/* *** HomePage3 *** */
.home3banner1_title1,
.home3cona,
.home3cona span.glyphicons,
.home3conb li .Price .Priceright,
.flip_box_6 .front .Price .Priceright,
.home3bottomc span.date{
	color:#93ab56;
	}
.horizontalTab_Top_5 ul.resp-tabs-list li.resp-tab-active,
.home3cond .line,
.flip_box_6 .back,
.home3bottoma,
.home3bottomb a.home3bottomb_right,
.Container-20064-4 .line{
	background-color:#93ab56;
	}
.carousel_10 .owl-buttons .owl-prev:hover:before, 
.carousel_10 .owl-buttons .owl-next:hover:before{
	border-left:2px solid #93ab56;
	border-bottom:2px solid #93ab56;
	}
.carousel_10 .owl-buttons .owl-next:hover:before {
	border-left: none;
	}
	.home3conb li .tips .tipscolor:before,
	.home3conc:before{
		border-color: #333333 #333333 transparent transparent;
		}
	.home3conb li .tips .tipscolor:after{
		border-color: transparent #333333 #333333 transparent;
		}
		
.Theme_Responsive_Bottom .form_submit input{
	background-color:#93ab56;
}
/****** HomePage4 ******/
.home4_serve .icon{
	border-color:#93ab56;
}
.home4_isotope .isotope_group a:hover,
.home4_isotope .isotope_group a.active{
	border-color:#93ab56 !important;
}
.verticalTab_Left_2 ul.resp-tabs-list li.resp-tab-active:before{
	border-color:transparent transparent transparent #93ab56;
}
.home4_serve .icon span.glyphicons,
.verticalTab_Left_2 .resp-tabs-container ul li span{
	color:#93ab56;
}
.home4_serve .line,
.home4_title .line,
.home4_isotope .photo_box .shade,
.verticalTab_Left_2 ul.resp-tabs-list li.resp-tab-active,
.verticalTab_Left_2 .resp-tab-active,
.verticalTab_Left_2 .resp-tab-active:hover,
.verticalTab_Left_2 .resp-tabs-container .home4Tab_title1 span{
	background-color:#93ab56;
}

.home4_foot ul li span{
	color:#93ab56; 
}		
/****** HomePage5 ******/
.home5Tab_icon1,
.home5Tab2_btn,
.home5Carousel .owl-buttons .owl-prev:hover:before,
.home5Carousel .owl-buttons .owl-next:hover:before{
	border-color:#93ab56;
}
.home5Tab_icon1 span.glyphicons,
.home5Tab2_btn:hover,
.home5Tab_icon2 span.glyphicons,
.home5_ico,
.home5_services .glyphicons,
.horizontalTab_Top_6 .resp-tab-active,
.horizontalTab_Top_6 .resp-tab-active:hover,
.home5_right_infos .glyphicons,
.home5_full_btn a:hover{
	background-color:#93ab56;
}
.percentage2,
.percentage2 .percentage_inner,
a.home5Tab2_btn{
	color:#93ab56;
}
.home5Tab4_left span,
.home5_full_btn a,
.home5_num_circle{
	border-color:#93ab56;
	color:#93ab56;
}

.home5_news_accent,
.home5_touch_social a.social:hover{
	color:#93ab56; 
}
.home5_touch_social a.social,
#dnn_bottom .Container-20064-6 .title5{
	color:#bbbbbb; 
}
#dnn_bottom .Theme_Responsive_20064_home5 .form_submit input{
	background-color:#93ab56; 
}
#dnn_bottom .Theme_Responsive_20064_home5 .form_submit input:hover{
	background-color:#444444;
}
/*container*/
.Container-20064-H4-line .line{
	background-color:#93ab56 !important;
}

@media only screen and (max-width: 768px) {
	.verticalTab_Left_1 .resp-tab-active, 
	.verticalTab_Left_1 .resp-tab-active:hover,
	.verticalTab_Right_1 .resp-tab-active, 
	.verticalTab_Right_1 .resp-tab-active:hover,
	.horizontalTab_Top_1 .resp-tab-active, 
	.horizontalTab_Top_1 .resp-tab-active:hover,
	.horizontalTab_Top_2 .resp-tab-active, 
	.horizontalTab_Top_2 .resp-tab-active:hover,
	.horizontalTab_Top_3 .resp-tab-active, 
	.horizontalTab_Top_3 .resp-tab-active:hover,
	.horizontalTab_Top_4 h2.resp-accordion.resp-tab-active,
	.horizontalTab_Top_4 .resp-tab-active:hover,
	.horizontalTab_Top_5 h2.resp-accordion.resp-tab-active,
	.horizontalTab_Top_5 .resp-tab-active:hover{
		background-color: #93ab56;
		}

}
.roll_replace {
	position:absolute;
}



/***element***/
@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;
	}	
}
[class^="Theme_Responsive"] select,
[class^="Theme_Responsive"] textarea,
[class^="Theme_Responsive"] input[type="text"],
[class^="Theme_Responsive"] input[type="password"],
[class^="Theme_Responsive"] input[type="datetime"],
[class^="Theme_Responsive"] input[type="datetime-local"],
[class^="Theme_Responsive"] input[type="date"],
[class^="Theme_Responsive"] input[type="month"],
[class^="Theme_Responsive"] input[type="time"],
[class^="Theme_Responsive"] input[type="week"],
[class^="Theme_Responsive"] input[type="number"],
[class^="Theme_Responsive"] input[type="email"],
[class^="Theme_Responsive"] input[type="url"],
[class^="Theme_Responsive"] input[type="search"],
[class^="Theme_Responsive"] input[type="tel"],
[class^="Theme_Responsive"] input[type="color"],
.uneditable-input{
	font-family:'Open Sans', Arial !important;
}
.Theme_Responsive_20064_home2 .form_submit .btn,
.Theme_Responsive_20064_home3 .form_submit .btn,
.Theme_Responsive_20064_home5 .form_submit .btn{
	background:#93ab56;
}

#dnn_bottom .Theme_Responsive_20064_home2 .form_submit .btn,
#dnn_bottom .Theme_Responsive_20064_home3 .form_submit .btn,
#dnn_bottom .Theme_Responsive_20064_home5 .form_submit .btn,
#dnn_bottom .Theme_Responsive_20064_Subscribe .btn{
	background:#93ab56;
}


#dnn_bottom .home3bottoma,
#dnn_bottom a.home3bottomb_right,
#dnn_bottom .Container-20064-4 .line{
	background:#93ab56;
}
#dnn_bottom .home3bottomc span.date{
	 color:#93ab56;
}



/*map sytle*/

		
	

		
	

		
	

		
	

		
	







/*--------- Header1 begin ----------*/
.head_top{
	position:absolute;
	width:100%;
	z-index:903;
	}
.header1{
	position:relative;
	}
.header1:before{
	content:"";
	background-color:#ffffff;
	filter:alpha(opacity= 0 ); /* TODO */
	opacity: 0;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	z-index:-1;
	}
	
	.dnn_logo{
	float:left;
	padding:10px 0;
	box-sizing:content-box;
	-moz-box-sizing:content-box;
	-webkit-box-sizing:content-box;
	line-height: 80px;
	height: 80px;
	}
.dnn_logo img{
	max-height:100%;
	max-width:100%;
	}
.headp,
.search_ps{
	float:right;
	}
.searchandlogin {
	position: absolute;
	right: 0;
	top: 50%;
	margin: -15px 0 0 0;
	}
.headp .login_icon,
.search_ps .search_icon{
	width:30px;
	height:30px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border:1px solid #333333;
	text-align:center;
	margin: 0 0 0 15px;
	cursor:pointer;
	}
.headp .login_icon span.glyphicons,
.search_ps .search_icon span.glyphicons{
	color:#333333;
	font-size:13px;
	padding: 7px 0 7px 0;
	}
.headp.Open .login_icon span.glyphicons:before,
.search_ps.Open  .search_icon span.glyphicons:before{
	content: "\E208";
	}
.header_element {
	position: relative;
	}
.header_element .element_box {
	position: absolute;
	right: -7px;
	top: 100%;
	background-color:#272C2C;
	filter: alpha(opacity=0);
	opacity: 0;
	z-index: -1;
	white-space: nowrap;
	margin-top: 10px;
	border: none;
	transition: all ease-in 100ms;
	-moz-transition: all ease-in 100ms;
	-webkit-transition: all ease-in 100ms;
	-o-transition: all ease-in 100ms;
	-ms-transition: all ease-in 100ms;
	}
.header_element .element_box.login:before,
.header_element .element_box.searchBox:before{
	border-style:solid;
	border-width:7px;
	border-color:transparent transparent #272C2C transparent;
	width:0px;
	height:0px;
	position:absolute;
	content:"";
	top: -14px;
	right: 15px;
	filter: alpha(opacity=0);
	opacity: 0;
	z-index: -1;
	transition: all ease-in 100ms;
	-moz-transition: all ease-in 100ms;
	-webkit-transition: all ease-in 100ms;
	-o-transition: all ease-in 100ms;
	-ms-transition: all ease-in 100ms;
	}
.header_element.Open .element_box.login:before,
.header_element.Open .element_box.searchBox:before{
	filter: alpha(opacity=100);
	opacity: 1;
	z-index: 1000;
	}
.header_element.Open .element_box{
	filter: alpha(opacity=100);
	opacity: 1;
	z-index: 1000;
	height:40px;
	}


.login {
	float: left;
}

.login .loginGroup,
.login .registerGroup {
	display: inline-block;
	vertical-align: middle;
	padding: 0px 10px 0px 5px;
	margin: 0px;
	height: 40px;
	line-height:40px;
}
.login .registerGroup {
	padding:0 0 0 5px;
	}
.login .sep{
	display:none;
	vertical-align:middle;
}
.login img {
	vertical-align:middle;
	margin-top:-2px;
}
.login .glyphicons {
	display: inline-block;
	vertical-align: middle;
}

.login .registerGroup ul,
.login .registerGroup li{
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-block;
}

.login .registerGroup .userProfileImg img {
	max-width:26px!important;

}
.login ,
.login a,
.login a:link,
.login a:active,
.login a:visited {
	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? */
	color: #aaa;
	text-decoration:none;
}

.login a:hover {
	color:#93ab56;
	text-decoration: none;
}

.login .registerGroup li.userMessages,

.login .registerGroup li.userNotifications {
	font-size: 0;
	overflow: hidden;
	vertical-align: middle;
	font-family: 'Glyphicons Regular';
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	position: relative;
	padding: 0px 10px 0 5px;
	height: 40px;
	line-height: 40px;
	text-align:right;
	margin: 0;
}
.login .registerGroup li.userDisplayName {
	padding: 0 5px;
}

.login .registerGroup li.userMessages {
	padding-left: 4px;
}

.login .registerGroup li.userMessages:empty,
.login .registerGroup li.userNotifications:empty {
	width: 1em;
}

.login .registerGroup li.userMessages:before {
	content: "\2709";
	font-size: 14px;
	z-index: 0;
	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? */
}

.login .registerGroup li.userNotifications:before {
	content: "\E196";
	font-size: 14px;
	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? */
}

.login .registerGroup li.userMessages:hover:before,
.login .registerGroup li.userNotifications:hover:before {
	color:#93ab56;
}
.login .registerGroup li.userMessages:after, 
.login .registerGroup li.userNotifications:after{
}

.login .registerGroup li.userMessages a,
.login .registerGroup li.userNotifications a {
	display: block!important;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index:11;	
}

*+html .login .loginGroup,
*+html .login .registerGroup,
*+html .login .glyphicons,
*+html .login .registerGroup ul,
*+html .login .registerGroup li {
	display: inline;
}

.login .registerGroup li.userMessages a strong,
.login .registerGroup li.userNotifications a strong {
	display: none;
}
.login .registerGroup li.userMessages a span {
	position:absolute;
	top:0px;
	right:0px;
	font-size:12px;
	display:block;
	background-color:#93ab56;
	padding:0px 3px;
	height:14px;
	line-height:1;
	color:#FFF;
	border-radius:			3px;
	-moz-border-radius:		3px;
	-webkit-border-radius:	3px;
	font-weight:normal;
}


.searchBox {
  	margin-top: 3px;
	background: #666;
	float:left;
	padding: 5px;
	box-shadow: 0 0 2px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 0 2px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.2);
	overflow: inherit !important;
	height: 32px !important;
	z-index: 905;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
}

.searchBox #dnn_dnnSEARCH_ClassicSearch,
.searchBox #dnn_dnnSEARCH1_ClassicSearch,
.searchBox #dnn_dnnSEARCH2_ClassicSearch,
.searchBox #dnn_dnnSEARCH3_ClassicSearch {
	background: none;
	border: none;
	float: none;
	height: 22px;
	position: relative;
	white-space: nowrap;
	width: 235px;
	display: block;
	text-align: left;
	color: #777;
}

.SearchIcon {
	display: none;
}

.search,
a.search:link,
a.search:active,
a.search:visited {
	text-decoration: none;
	display: block;
	position: absolute;
	right: -4px;
	top: -4px;
	width: 40px;
	height: 30px;
	line-height:30px;
	overflow: hidden;
	padding: 0px;
	color: #FFF;
	text-align: center;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	font-size: 13px;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	background-color:#93ab56;
}

a.search:before {
	content: "GO";
}

 
.searchBox input.NormalTextBox {
	width: 165px;
	text-align: left;
	height: 18px;
	line-height:18px;	
	padding: 0px 3px 0px 3px;
	background: none;
	border: none;
	display: block;
	position: absolute;
	left: 4px;
	top: 2px;
	outline: 0;
	border-radius: 0px 0px 0px 0px;
	-webkit-appearance: none;
	color: #aaa;
}

.searchBox .searchInputContainer {
	position: static !important;
}

.searchBox .searchInputContainer a.dnnSearchBoxClearText.dnnShow {
	top: -5px !important;
	left: auto;
	right: 35px !important;
}

.searchBox.searchSkinObjectPreview {
	right: inherit;
	left: auto;
	right: 0px;
}



.dnnSearchBoxPanel,
.dnnSearchResultPanel {
	width: 100%;
	max-width: none;
	padding: 10px 0px !important;
}

.dnnSearchResultPanel {
	padding: 10px 0px 7px 0px !important;
}
ul.searchSkinObjectPreview{
	margin:6px 0 0 0 !important;
	}

.languageBox {
	float:none;
	vertical-align: middle;
	display: inline-block;
	white-space: nowrap;
	height: 40px;
	line-height: 40px;
	padding: 0 0 0 10px;
	}
@media only screen and (min-width: 1200px) {
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.dnn_logo {
		float: none;
		text-align: center;
		line-height: 40px;
		height: 40px;
		padding: 5px 0;
		}
	.headp .login_icon, 
	.search_ps .search_icon{
		margin: 0 0 0 5px;
		}
	}

/* ********** Main Menu ************** */	
.dnn_menu{
	float:right;
	padding: 0 75px 0 0;
	}
/*top_menu*/
#dnngo_megamenu > div > ul {
	display: inline-block;
	vertical-align: middle;
	font-family:'Open Sans';
}
*+html #dnngo_megamenu > div > ul {
	display: inline;
}
#dnngo_megamenu > div > ul > li {
	position: relative;
	display: block;
	float: left;
	list-style: none;
	padding: 0;
	margin: 0px;
}
	#dnngo_megamenu > div > ul > li > a{
	display:block;
	position:relative;
	float:none;
	color:#333333;
	white-space:normal; 
	font-size:13px;
	line-height: 100px;
	height: 100px;
	padding: 0 22px;
	font-weight:normal; 
	cursor:pointer;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:1px;
	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? */

}
#dnngo_megamenu > div > ul > li.dir > a > span{
	white-space:nowrap;
}
#dnngo_megamenu > div > ul > li.dir > a > span:after{
}

#dnngo_megamenu > div > ul > li > a:hover,
#dnngo_megamenu > div > ul > li.menu_hover > a,
#dnngo_megamenu > div > ul > li.current > a{
	background-color:rgba(255,255,255,0.5);
    color:#333333;
	border-bottom:3px solid #93ab56;

}
/*sub*/
#dnngo_megamenu .dnngo_slide_menu,
#dnngo_megamenu .dnngo_slide_menu .dnngo_submenu,
#dnngo_megamenu .dnngo_boxslide{
	background-color:#333333;
	}


#dnngo_megamenu .dnngo_slide_menu,
#dnngo_megamenu .dnngo_boxslide{
	border-top:3px solid #93ab56;
	margin: -3px 0 0 0;
	}
	
	
#dnngo_megamenu .dnngo_slide_menu li a:hover,
#dnngo_megamenu .dnngo_slide_menu li.menu_hover > a {
	color:#fff;
	background-color:#93ab56;
}
#dnngo_megamenu .dnngo_slide_menu li.dir > a:hover span:before,
#dnngo_megamenu .dnngo_slide_menu li.menu_hover > a span:before{
	}
#dnngo_megamenu .dnngo_slide_menu li a,
#dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li a{
	color:#bbbbbb;
	}
#dnngo_megamenu .dnngo_boxslide .menu_centerbox > ul > li > a > span{
	color:#93ab56;
}
#dnngo_megamenu .dnngo_boxslide .menu_centerbox > ul > li > a > span:before{
	}
#dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li a span:before{
	}
#dnngo_megamenu .dnngo_boxslide .menu_centerbox ul li li a:hover{
	color:#93ab56;
}
#dnngo_megamenu .dnngo_boxslide .menu_topbox,
#dnngo_megamenu .dnngo_boxslide .menu_leftbox,
#dnngo_megamenu .dnngo_boxslide .menu_rightbox,
#dnngo_megamenu .dnngo_boxslide .menu_bottombox,
#dnngo_megamenu .dnngo_boxslide .menu_topbox .Normal,
#dnngo_megamenu .dnngo_boxslide .menu_leftbox .Normal,
#dnngo_megamenu .dnngo_boxslide .menu_rightbox .Normal,
#dnngo_megamenu .dnngo_boxslide .menu_bottombox .Normal{
	color:#bbbbbb;
	}
#dnngo_megamenu .dnngo_boxslide .menu_topbox a,
#dnngo_megamenu .dnngo_boxslide .menu_leftbox a,
#dnngo_megamenu .dnngo_boxslide .menu_rightbox a,
#dnngo_megamenu .dnngo_boxslide .menu_bottombox a,
#dnngo_megamenu .dnngo_boxslide .menu_topbox .Normal a,
#dnngo_megamenu .dnngo_boxslide .menu_leftbox .Normal a,
#dnngo_megamenu .dnngo_boxslide .menu_rightbox .Normal a,
#dnngo_megamenu .dnngo_boxslide .menu_bottombox .Normal a{
	color:#93ab56;
	}
#dnngo_megamenu h2.mega_title {
	color:#93ab56;
	}

@media only screen and (min-width: 1200px) {
	#dnngo_megamenu > div > ul > li > a{
		padding: 0 25px;
		}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.dnn_menu{
		padding:10px 0;
		float:none;
		}
	#dnngo_megamenu > div > ul > li > a{
		line-height:30px;
		height:30px;
		}
	.roll_menu.roll_activated #dnngo_megamenu > div > ul > li > a{
		padding:0 18px;
		}
}
/*roll_menu */
.roll_menu .dnn_logo{
	}
.roll_menu.roll_activated {
	position:fixed;
	width:100%;
	z-index:991;
	box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	}
.roll_menu.roll_activated .header1:before{
	filter:alpha(opacity=100);
	opacity:1;
}
.roll_menu.roll_activated .nav_box{
	margin:0;
	}
.roll_menu.roll_activated .dnn_logo{
	display:block;
	margin: 5px 0px 5px 0px;
	height: 50px;
	line-height:50px;
	float: left;
	padding:0;
	}
.roll_menu.roll_activated .dnn_logo img{
	max-height:100%;
	max-width:100%;
	}
.roll_menu.roll_activated .dnn_menu{
	float:right;
	margin:0;
	padding:0;
	}
.roll_menu.roll_activated .search_ps,
.roll_menu.roll_activated .headp{
	display:none;
	}
.roll_menu.roll_activated #dnngo_megamenu > div > ul > li > a{
	height:60px;
	line-height:60px;
	}
.roll_menu.roll_activated #dnngo_megamenu .dnngo_menuslide {
	}
/*--------- Header1 end ----------*/


























@media only screen and (max-width: 767px) {	
.HeadPane_mobile a,
.HeadPane_mobile{	
	color:#333333;
	}

.HeadPane_mobile a:hover{
	color:#93ab56;
	}

   .mobile_main .header_element .element_box.login {
    right: 0;
    width: 100%;
	margin:15px 0 0 0;
}
	.headp .login_icon,
	.search_ps .search_icon{
		width:30px;
		height:30px;
		border-radius:50%;
		-moz-border-radius:50%;
		-webkit-border-radius:50%;	
		text-align:center;
		margin: 0 0 0 15px;
		cursor:pointer;
	}
	.headp .login_icon span.glyphicons,
	.search_ps .search_icon span.glyphicons{	
		font-size:13px;
		padding: 7px 0 7px 0;
	}
	.mobile_icon{
	
	}
	.mobile_icon span.glyphicons{
	
	}
	.header_element {
		position: relative;
	}
	.header_element .element_box {
		position: absolute;
		right: -7px;
		top: 100%;
		background-color:#272C2C;
		filter: alpha(opacity=0);
		opacity: 0;
		z-index: -1;
		white-space: nowrap;
		margin-top: 10px;
		border: none;
		transition: all ease-in 100ms;
		-moz-transition: all ease-in 100ms;
		-webkit-transition: all ease-in 100ms;
		-o-transition: all ease-in 100ms;
		-ms-transition: all ease-in 100ms;
	}
	.header_element .element_box.login:before,
	.header_element .element_box.searchBox:before{
		border-style:solid;
		border-width:7px;
		border-color:transparent transparent #272C2C transparent;
		width:0px;
		height:0px;
		position:absolute;
		content:"";
		top: -14px;
		right: 60px;
		filter: alpha(opacity=0);
		opacity: 0;
		z-index: -1;
		transition: all ease-in 100ms;
		-moz-transition: all ease-in 100ms;
		-webkit-transition: all ease-in 100ms;
		-o-transition: all ease-in 100ms;
		-ms-transition: all ease-in 100ms;
	}
	.header_element .element_box.login:before{
		right:100px;			
			}
	.header_element.Open .element_box.login:before,
	.header_element.Open .element_box.searchBox:before{
		filter: alpha(opacity=100);
		opacity: 1;
		z-index: 1000;
	}
	.header_element.Open .element_box{
		filter: alpha(opacity=100);
		opacity: 1;
		z-index: 1000;
		height:40px;
	}
	.languageBox {
		float:none;
		vertical-align: middle;
		display: inline-block;
		white-space: nowrap;
		height: 40px;
		line-height: 40px;
		padding: 0 0 0 10px;
		margin:0;
	}
	.login .loginGroup,
	.login .registerGroup {
		display: inline-block;
		vertical-align: middle;
		padding: 0px 10px 0px 5px;
		margin: 0px;
		height: 40px;
		line-height:40px;
	}
	.login .registerGroup {
		padding:0 0 0 5px;
	}
	.login .sep{
		display:none;
		vertical-align:middle;
	}
	.login img {
		vertical-align:middle;
		margin-top:-2px;
	}
	.login .glyphicons {
		display: inline-block;
		vertical-align: middle;
	}
	.login .registerGroup ul,
	.login .registerGroup li{
		list-style: none;
		margin: 0;
		padding: 0;
		display: inline-block;
	}
	.login .registerGroup .userProfileImg img {
		max-width:26px!important;
	}
	.login ,
	.login a,
	.login a:link,
	.login a:active,
	.login a:visited {
		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? */
		color: #aaa;
		text-decoration:none;
	}
	.login a:hover {		
		text-decoration: none;
	}
	.login .registerGroup li.userMessages,
	.login .registerGroup li.userNotifications {
		font-size: 0;
		overflow: hidden;
		vertical-align: middle;
		font-family: 'Glyphicons Regular';
		font-style: normal;
		font-weight: normal;
		-webkit-font-smoothing: antialiased;
		position: relative;
		padding: 0px 10px 0 5px;
		height: 40px;
		line-height: 40px;
		text-align:right;
		margin: 0;
	}
	.login .registerGroup li.userDisplayName {
		padding: 0 5px;
	}
	.login .registerGroup li.userMessages {
		padding-left: 4px;
	}
	.login .registerGroup li.userMessages:empty,
	.login .registerGroup li.userNotifications:empty {
		width: 1em;
	}
	.login .registerGroup li.userMessages:before {
		content: "\2709";
		font-size: 14px;
		z-index: 0;
		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? */
	}
	.login .registerGroup li.userNotifications:before {
		content: "\E196";
		font-size: 14px;
		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? */
	}
	.login .registerGroup li.userMessages:hover:before,
	.login .registerGroup li.userNotifications:hover:before {	
	}
	.login .registerGroup li.userMessages:after, 
	.login .registerGroup li.userNotifications:after{
	}
	.login .registerGroup li.userMessages a,
	.login .registerGroup li.userNotifications a {
		display: block!important;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0px;
		left: 0px;
		z-index:11;	
	}
	*+html .login .loginGroup,
	*+html .login .registerGroup,
	*+html .login .glyphicons,
	*+html .login .registerGroup ul,
	*+html .login .registerGroup li {
		display: inline;
	}
	.login .registerGroup li.userMessages a strong,
	.login .registerGroup li.userNotifications a strong {
		display: none;
	}
	.login .registerGroup li.userMessages a span {
		position:absolute;
		top:0px;
		right:0px;
		font-size:12px;
		display:block;		
		padding:0px 3px;
		height:14px;
		line-height:1;
		color:#FFF;
		border-radius:			3px;
		-moz-border-radius:		3px;
		-webkit-border-radius:	3px;
		font-weight:normal;
	}
	.searchBox {
		margin: 3px 0 0;
		background: #666;
		float:left;
		padding: 5px;
		box-shadow: 0 0 2px rgba(0,0,0,0.2);
		-moz-box-shadow: 0 0 2px rgba(0,0,0,0.2);
		-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.2);
		height: 32px !important;
		border-radius: 15px;
		-moz-border-radius: 15px;
		-webkit-border-radius: 15px;
	}
	.searchBox #dnn_dnnSEARCH_ClassicSearch,
	.searchBox #dnn_dnnSEARCH1_ClassicSearch,
	.searchBox #dnn_dnnSEARCH2_ClassicSearch,
	.searchBox #dnn_dnnSEARCH3_ClassicSearch {
		height: 22px;
		color: #777;
		margin-top:0;
	}
	.search,
	a.search:link,
	a.search:active,
	a.search:visited {
		right: -4px;
		top: -4px;
		width: 40px;
		color: #FFF;
		font-family: 'Open Sans';
		-webkit-font-smoothing: antialiased;
		font-size: 13px;
		border-radius: 15px;
		-moz-border-radius: 15px;
		-webkit-border-radius: 15px;		
	}
	a.search:before {
		content: "GO";
	}
	.searchBox input.NormalTextBox {
		height: 18px;
		line-height:18px;
		top: 2px;
		color: #aaa;
	}
	.searchBox .searchInputContainer a.dnnSearchBoxClearText.dnnShow {
		top: -4px !important;
		left: auto;
		right: 36px !important;
	}
	ul.searchSkinObjectPreview{
		margin:6px 0 0 0 !important;
	}



	.mobile_main{
		background:#FFFFFF;
	}
	.mobile_main .headp .login_icon, 
	.mobile_main .search_ps .search_icon,
	.mobile_main .mobile_icon{
		opacity:0.8;
		border: 1px solid #333333;
	}
	.mobile_main .headp .login_icon span.glyphicons, 
	.mobile_main .search_ps .search_icon span.glyphicons,
	.mobile_main .mobile_icon span.glyphicons,
	.mobilemenu_close:before{
		color:#333333;
	}
	.mobile_main .headp.Open .login_icon, 
	.mobile_main .search_ps.Open .search_icon,
	.mobile_main .Open .mobile_icon{
		opacity:1;
	}
	.mobile_main .header_element .element_box.login:before, 
	.mobile_main .header_element .element_box.searchBox:before{
		border-bottom-color:#272C2C;
	}
	.mobile_main .header_element .element_box{
		background:#272C2C;
	}
	.mobile_main .mobilep .searchBox input.NormalTextBox,
	.mobile_main .mobilep .login, 
	.mobile_main .mobilep .login a, 
	.mobile_main .mobilep .login a:link, 
	.mobile_main .mobilep .login a:active, 
	.mobile_main .mobilep .login a:visited{
		color:#aaaaaa;
	}
	.mobile_main .mobilep .login a:hover,
	.mobile_main .login .registerGroup li.userMessages:hover:before, 
	.mobile_main .login .registerGroup li.userNotifications:hover:before{
		color:#93ab56;
	}
	.mobile_main .mobilep .search, 
	.mobile_main .mobilep a.search:link, 
	.mobile_main .mobilep a.search:active, 
	.mobile_main .mobilep a.search:visited{
		border-radius: 15px;
		-moz-border-radius: 15px;
		-webkit-border-radius: 15px;
		background:#93ab56;
  	}
	.login .registerGroup li.userMessages a span{
		background:#93ab56;
	}
	.header6 .HeadPane_mobile .Normal{
		color:#333333;	
		}
	.header6 .HeadPane_mobile .Normal a{
		color:#333333;	
		}
	.header6 .HeadPane_mobile .Normal a:hover{
		color:#93ab56;
		}
	.home3topa li{
		color:#333333;	
		}
	.home3topa li a{
		border:1px solid #333333;	
		}
	.home3topa li a span{
		color:#333333;
		}
	.home3topa li:hover a {
		background-color:#93ab56;
		border: 1px solid #93ab56;
	}
	.mm-listview > li > a, .mm-listview > li > span{
	  font-size: 13px;	
	}	
	.mobile_menu.mm-menu{
		background-color:#f3f3f3;
	}	
		.mobile_menu .right_social a span{
		color:#f3f3f3;
	}
	.mobile_menu .right_social a span{
		background-color:#333333;
	}
	.mobile_menu,
	.mobile_menu .Normal,
	.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,
	.mobile_menu .Container-3 .title3{
		color:#333333;
	}
	.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{
		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:hover > a:not(.mm-next){
		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:hover > a:not(.mm-next),
	.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: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:hover > .mm-next:after{
		color:#93ab56;
	}
}







/* ********** BOTTOM ************** */
#dnn_bottom{
						background-image:url("/Portals/_default/Skins/20064-UnlimitedColorsPack-046/images/foot_bg_1.jpg");	
														background-attachment:scroll;
	background-position:center top;
						background-repeat:repeat;
		background-size:auto ;
}

.bottom_colors, 
.bottom_colors .Normal,
.bottomb li .bottomb_right p,
.bottomc a{
	color:#bbbbbb;
	}
.bottoma a,	
.bottoma p.socialicon_footer a:hover{
	color:#93ab56;
	}
.bottomc a:hover{
	color:#93ab56;
	border:1px solid #93ab56;
	}
.lightgrey_title .Container-20064-1 .line{
	background-color:#93ab56;
	}

/* ********** FOOTER ************** */
.copyright_style,
.footicon a.social,
.footer, 
a.footer:link, 
a.footer:active, 
a.footer:visited,
.terms, 
a.terms:link, 
a.terms:active, 
a.terms:visited{
	color:#bbbbbb;
  }
.footicon a.social:hover{
	color:#93ab56;
  }
/* ********** Footer Style ************** */
a.footer:hover{
	color:#93ab56; 
  }
#to_top:hover {
	background-color:#93ab56;
  }
/* ********** Privacy/Terms Style ************** */
a.terms:hover{
	color:#93ab56;
  }	
.FootPane,
.FootPane a,
.foota,
.foota a{
   color:#93ab56;
 }









/* ********** FOOTER ************** */
.FootPane,
.copyright_style{
	float:none;
	text-align:center;
	}
.copyright_style{
	margin:10px 0 0 0;
	}




/* ********** FOOTER ************** */

.home2_cona.anchorTag {
	background-color: #93ab56;
	padding-top: 20px;
}

.home2_cona.anchorTag img {
	filter: brightness(60%);
}


/* ********** flyzeit ************** */

.fz-text-container {
	padding-top: 100px;
	padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {

	.fz-text-container {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

.fz-text-container .topg {
	margin-top: 100px;
}

.fz-spacer.large {
	margin-top: 100px;
}

.fz-spacer.medium {
	margin-top: 50px;
}

.fz-spacer.small {
	margin-top: 25px;
}

/* ********** flyzeit overwrites ************** */

/*** bootstrap ***/
@media only screen and (max-width: 768px) {

	.fz-image-container img {
		max-width: initial;
		height: 200px;
	}
}

/*** skin.css ***/
@media only screen and (max-width: 768px) {

	.fz-text-container .conc {
		margin: 60px 0 0 0;
	}
}





/*-----------------------------------------------------------------------------

-	Revolution Slider 5.0 Layer Style Settings -

Screen Stylesheet

version:   	5.0.0
date:      	18/03/15
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.tp-caption.Twitter-Content a,.tp-caption.Twitter-Content a:visited
{
	color:#0084B4!important;
}

.tp-caption.Twitter-Content a:hover
{
	color:#0084B4!important;
	text-decoration:underline!important;
}

.tp-caption.medium_grey,.medium_grey
{
	background-color:#888;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:20px;
	font-weight:700;
	line-height:20px;
	margin:0;
	padding:2px 4px;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.small_text,.small_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:14px;
	font-weight:700;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.medium_text,.medium_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:20px;
	font-weight:700;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.large_text,.large_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:40px;
	font-weight:700;
	line-height:40px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.very_large_text,.very_large_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:60px;
	font-weight:700;
	letter-spacing:-2px;
	line-height:60px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.very_big_white,.very_big_white
{
	background-color:#000;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:60px;
	font-weight:800;
	line-height:60px;
	margin:0;
	padding:1px 4px 0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.very_big_black,.very_big_black
{
	background-color:#fff;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:Arial;
	font-size:60px;
	font-weight:700;
	line-height:60px;
	margin:0;
	padding:1px 4px 0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_fat,.modern_medium_fat
{
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans", sans-serif;
	font-size:24px;
	font-weight:800;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_fat_white,.modern_medium_fat_white
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans", sans-serif;
	font-size:24px;
	font-weight:800;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_light,.modern_medium_light
{
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans", sans-serif;
	font-size:24px;
	font-weight:300;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_big_bluebg,.modern_big_bluebg
{
	background-color:#4e5b6c;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans", sans-serif;
	font-size:30px;
	font-weight:800;
	letter-spacing:0;
	line-height:36px;
	margin:0;
	padding:3px 10px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.modern_big_redbg,.modern_big_redbg
{
	background-color:#de543e;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans", sans-serif;
	font-size:30px;
	font-weight:300;
	letter-spacing:0;
	line-height:36px;
	margin:0;
	padding:1px 10px 3px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.modern_small_text_dark,.modern_small_text_dark
{
	border-style:none;
	border-width:0;
	color:#555;
	font-family:Arial;
	font-size:14px;
	line-height:22px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.boxshadow,.boxshadow
{		
	box-shadow:0 0 20px rgba(0,0,0,0.5);
}

.tp-caption.black,.black
{
	color:#000;
	text-shadow:none;
}

.tp-caption.noshadow,.noshadow
{
	text-shadow:none;
}

.tp-caption.thinheadline_dark,.thinheadline_dark
{
	background-color:transparent;
	color:rgba(0,0,0,0.85);
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:30px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.thintext_dark,.thintext_dark
{
	background-color:transparent;
	color:rgba(0,0,0,0.85);
	font-family:"Open Sans";
	font-size:16px;
	font-weight:300;
	line-height:26px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largeblackbg,.largeblackbg
{
	
	
	background-color:#000;
	border-radius:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largepinkbg,.largepinkbg
{
	
	
	background-color:#db4360;
	border-radius:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largewhitebg,.largewhitebg
{
	
	
	background-color:#fff;
	border-radius:0;
	color:#000;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largegreenbg,.largegreenbg
{
	
	
	background-color:#67ae73;
	border-radius:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.excerpt{
	background-color:rgba(0,0,0,1);
	border-color:#fff;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:36px;
	font-weight:700;
	height:auto;
	letter-spacing:-1.5px;
	line-height:36px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
	white-space:normal!important;
	width:150px;
}

.tp-caption.large_bold_grey,.large_bold_grey
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Open Sans";
	font-size:60px;
	font-weight:800;
	line-height:60px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.medium_thin_grey,.medium_thin_grey
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:30px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.small_thin_grey,.small_thin_grey
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#757575;
	font-family:"Open Sans";
	font-size:18px;
	font-weight:300;
	line-height:26px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.lightgrey_divider,.lightgrey_divider
{
	background-color:rgba(235,235,235,1);
	background-position:initial;
	background-repeat:initial;
	border-color:#222;
	border-style:none;
	border-width:0;
	height:3px;
	text-decoration:none;
	width:370px;
}

.tp-caption.large_bold_darkblue,.large_bold_darkblue
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#34495e;
	font-family:"Open Sans";
	font-size:58px;
	font-weight:800;
	line-height:60px;
	text-decoration:none;
}

.tp-caption.medium_bg_darkblue,.medium_bg_darkblue
{
	background-color:#34495e;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.medium_bold_red,.medium_bold_red
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#e33a0c;
	font-family:"Open Sans";
	font-size:24px;
	font-weight:800;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.medium_light_red,.medium_light_red
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#e33a0c;
	font-family:"Open Sans";
	font-size:21px;
	font-weight:300;
	line-height:26px;
	padding:0;
	text-decoration:none;
}

.tp-caption.medium_bg_red,.medium_bg_red
{
	background-color:#e33a0c;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.medium_bold_orange,.medium_bold_orange
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#f39c12;
	font-family:"Open Sans";
	font-size:24px;
	font-weight:800;
	line-height:30px;
	text-decoration:none;
}

.tp-caption.medium_bg_orange,.medium_bg_orange
{
	background-color:#f39c12;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.grassfloor,.grassfloor
{
	background-color:rgba(160,179,151,1);
	border-color:#222;
	border-style:none;
	border-width:0;
	height:150px;
	text-decoration:none;
	width:4000px;
}

.tp-caption.large_bold_white,.large_bold_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:58px;
	font-weight:800;
	line-height:60px;
	text-decoration:none;
}

.tp-caption.medium_light_white,.medium_light_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:36px;
	padding:0;
	text-decoration:none;
}

.tp-caption.mediumlarge_light_white,.mediumlarge_light_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:40px;
	padding:0;
	text-decoration:none;
}

.tp-caption.mediumlarge_light_white_center,.mediumlarge_light_white_center
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:40px;
	padding:0;
	text-align:center;
	text-decoration:none;
}

.tp-caption.medium_bg_asbestos,.medium_bg_asbestos
{
	background-color:#7f8c8d;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.medium_light_black,.medium_light_black
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:36px;
	padding:0;
	text-decoration:none;
}

.tp-caption.large_bold_black,.large_bold_black
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans";
	font-size:58px;
	font-weight:800;
	line-height:60px;
	text-decoration:none;
}

.tp-caption.mediumlarge_light_darkblue,.mediumlarge_light_darkblue
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#34495e;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:40px;
	padding:0;
	text-decoration:none;
}

.tp-caption.small_light_white,.small_light_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:17px;
	font-weight:300;
	line-height:28px;
	padding:0;
	text-decoration:none;
}

.tp-caption.roundedimage,.roundedimage
{
	border-color:#222;
	border-style:none;
	border-width:0;
}

.tp-caption.large_bg_black,.large_bg_black
{
	background-color:#000;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:40px;
	font-weight:800;
	line-height:40px;
	padding:10px 20px 15px;
	text-decoration:none;
}

.tp-caption.mediumwhitebg,.mediumwhitebg
{
	background-color:#fff;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:30px;
	padding:5px 15px 10px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.maincaption,.maincaption
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#212a40;
	font-family:roboto;
	font-size:33px;
	font-weight:500;
	line-height:43px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_title_60px,.miami_title_60px
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Source Sans Pro";
	font-size:60px;
	font-weight:700;
	letter-spacing:1px;
	line-height:60px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_subtitle,.miami_subtitle
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.65);
	font-family:"Source Sans Pro";
	font-size:17px;
	font-weight:400;
	letter-spacing:2px;
	line-height:24px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.divideline30px,.divideline30px
{
	background:#fff;
	background-color:#fff;
	border-color:#222;
	border-style:none;
	border-width:0;
	height:2px;
	min-width:30px;
	text-decoration:none;
}

.tp-caption.Miami_nostyle,.Miami_nostyle
{
	border-color:#222;
	border-style:none;
	border-width:0;
}

.tp-caption.miami_content_light,.miami_content_light
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Source Sans Pro";
	font-size:22px;
	font-weight:400;
	letter-spacing:0;
	line-height:28px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_title_60px_dark,.miami_title_60px_dark
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#333;
	font-family:"Source Sans Pro";
	font-size:60px;
	font-weight:700;
	letter-spacing:1px;
	line-height:60px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_content_dark,.miami_content_dark
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Source Sans Pro";
	font-size:22px;
	font-weight:400;
	letter-spacing:0;
	line-height:28px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.divideline30px_dark,.divideline30px_dark
{
	background-color:#333;
	border-color:#222;
	border-style:none;
	border-width:0;
	height:2px;
	min-width:30px;
	text-decoration:none;
}

.tp-caption.ellipse70px,.ellipse70px
{
	background-color:rgba(0,0,0,0.14902);
	border-color:#222;
	border-radius:50px 50px 50px 50px;
	border-style:none;
	border-width:0;
	cursor:pointer;
	line-height:1px;
	min-height:70px;
	min-width:70px;
	text-decoration:none;
}

.tp-caption.arrowicon,.arrowicon
{
	border-color:#222;
	border-style:none;
	border-width:0;
	line-height:1px;
}

.tp-caption.MarkerDisplay,.MarkerDisplay
{
	background-color:transparent;
	border-color:#000;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	font-family:"Permanent Marker";
	font-style:normal;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Restaurant-Display,.Restaurant-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:120px;
	font-style:normal;
	font-weight:700;
	line-height:120px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Cursive,.Restaurant-Cursive
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Nothing you could do";
	font-size:30px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-ScrollDownText,.Restaurant-ScrollDownText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:17px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Description,.Restaurant-Description
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Price,.Restaurant-Price
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:30px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Menuitem,.Restaurant-Menuitem
{
	background-color:rgba(0,0,0,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:17px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Furniture-LogoText,.Furniture-LogoText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(230,207,163,1.00);
	font-family:Raleway;
	font-size:160px;
	font-style:normal;
	font-weight:300;
	line-height:150px;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Furniture-Plus,.Furniture-Plus
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:30px 30px 30px 30px;
	border-style:none;
	border-width:0;
	box-shadow:rgba(0,0,0,0.1) 0 1px 3px;
	color:rgba(230,207,163,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:6px 7px 4px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Furniture-Title,.Furniture-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:700;
	letter-spacing:3px;
	line-height:20px;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Furniture-Subtitle,.Furniture-Subtitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:300;
	line-height:20px;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Gym-Display,.Gym-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:80px;
	font-style:normal;
	font-weight:900;
	line-height:70px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Gym-Subline,.Gym-Subline
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:100;
	letter-spacing:5px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Gym-SmallText,.Gym-SmallText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:300;
	line-height:22;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Fashion-SmallText,.Fashion-SmallText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:12px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:20px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Fashion-BigDisplay,.Fashion-BigDisplay
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:60px;
	font-style:normal;
	font-weight:900;
	letter-spacing:2px;
	line-height:60px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Fashion-TextBlock,.Fashion-TextBlock
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:40px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Sports-Display,.Sports-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:130px;
	font-style:normal;
	font-weight:100;
	letter-spacing:13px;
	line-height:130px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Sports-DisplayFat,.Sports-DisplayFat
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:130px;
	font-style:normal;
	font-weight:900;
	line-height:130px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Sports-Subline,.Sports-Subline
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:32px;
	font-style:normal;
	font-weight:400;
	letter-spacing:4px;
	line-height:32px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Instagram-Caption,.Instagram-Caption
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:20px;
	font-style:normal;
	font-weight:900;
	line-height:20px;
	padding:0;
	text-decoration:none;
}

.tp-caption.News-Title,.News-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:70px;
	font-style:normal;
	font-weight:400;
	line-height:60px;
	padding:0;
	text-decoration:none;
}

.tp-caption.News-Subtitle,.News-Subtitle
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:15px;
	font-style:normal;
	font-weight:300;
	line-height:24px;
	padding:0;
	text-decoration:none;
}

.tp-caption.News-Subtitle:hover,.News-Subtitle:hover
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,0.65);
	text-decoration:none;
}

.tp-caption.Photography-Display,.Photography-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:80px;
	font-style:normal;
	font-weight:100;
	letter-spacing:5px;
	line-height:70px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-Subline,.Photography-Subline
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(119,119,119,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover,.Photography-ImageHover
{
	background-color:transparent;
	border-color:rgba(255,255,255,0);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-size:20px;
	font-style:normal;
	font-weight:400;
	line-height:22;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover:hover,.Photography-ImageHover:hover
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Photography-Menuitem,.Photography-Menuitem
{
	background-color:rgba(0,0,0,0.65);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:2px;
	line-height:20px;
	padding:3px 5px 3px 8px;
	text-decoration:none;
}

.tp-caption.Photography-Menuitem:hover,.Photography-Menuitem:hover
{
	background-color:rgba(0,255,222,0.65);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Photography-Textblock,.Photography-Textblock
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:300;
	letter-spacing:2px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-Subline-2,.Photography-Subline-2
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.35);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover2,.Photography-ImageHover2
{
	background-color:transparent;
	border-color:rgba(255,255,255,0);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Arial;
	font-size:20px;
	font-style:normal;
	font-weight:400;
	line-height:22;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover2:hover,.Photography-ImageHover2:hover
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.WebProduct-Title,.WebProduct-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(51,51,51,1.00);
	font-family:Raleway;
	font-size:90px;
	font-style:normal;
	font-weight:100;
	line-height:90px;
	padding:0;
	text-decoration:none;
}

.tp-caption.WebProduct-SubTitle,.WebProduct-SubTitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(153,153,153,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:0;
	text-decoration:none;
}

.tp-caption.WebProduct-Content,.WebProduct-Content
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(153,153,153,1.00);
	font-family:Raleway;
	font-size:16px;
	font-style:normal;
	font-weight:600;
	line-height:24px;
	padding:0;
	text-decoration:none;
}

.tp-caption.WebProduct-Menuitem,.WebProduct-Menuitem
{
	background-color:rgba(51,51,51,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	letter-spacing:2px;
	line-height:20px;
	padding:3px 5px 3px 8px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-Menuitem:hover,.WebProduct-Menuitem:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(153,153,153,1.00);
	text-decoration:none;
}

.tp-caption.WebProduct-Title-Light,.WebProduct-Title-Light
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:90px;
	font-style:normal;
	font-weight:100;
	line-height:90px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-SubTitle-Light,.WebProduct-SubTitle-Light
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.35);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-Content-Light,.WebProduct-Content-Light
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.65);
	font-family:Raleway;
	font-size:16px;
	font-style:normal;
	font-weight:600;
	line-height:24px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.FatRounded,.FatRounded
{
	background-color:rgba(0,0,0,0.50);
	border-color:rgba(211,211,211,1.00);
	border-radius:50px 50px 50px 50px;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:900;
	line-height:30px;
	padding:20px 22px 20px 25px;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.FatRounded:hover,.FatRounded:hover
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(211,211,211,1.00);
	border-radius:50px 50px 50px 50px;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.NotGeneric-Title,.NotGeneric-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:70px;
	font-style:normal;
	font-weight:800;
	line-height:70px;
	padding:10px 0;
	text-decoration:none;
}

.tp-caption.NotGeneric-SubTitle,.NotGeneric-SubTitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:13px;
	font-style:normal;
	font-weight:500;
	letter-spacing:4px;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-CallToAction,.NotGeneric-CallToAction
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-CallToAction:hover,.NotGeneric-CallToAction:hover
{
	background-color:transparent;
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.NotGeneric-Icon,.NotGeneric-Icon
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:400;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Menuitem,.NotGeneric-Menuitem
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.15);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:27px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Menuitem:hover,.NotGeneric-Menuitem:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.MarkerStyle,.MarkerStyle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Permanent Marker";
	font-size:17px;
	font-style:normal;
	font-weight:100;
	line-height:30px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Menuitem,.Gym-Menuitem
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(255,255,255,0);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:2px;
	line-height:20px;
	padding:3px 5px 3px 8px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Menuitem:hover,.Gym-Menuitem:hover
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(255,255,255,0.25);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Newspaper-Button,.Newspaper-Button
{
	background-color:rgba(255,255,255,0);
	border-color:rgba(255,255,255,0.25);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:13px;
	font-style:normal;
	font-weight:700;
	letter-spacing:2px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Button:hover,.Newspaper-Button:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(0,0,0,1.00);
	text-decoration:none;
}

.tp-caption.Newspaper-Subtitle,.Newspaper-Subtitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(168,216,238,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:900;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Title,.Newspaper-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:50px;
	font-style:normal;
	font-weight:400;
	line-height:55px;
	padding:0 0 10px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Title-Centered,.Newspaper-Title-Centered
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:50px;
	font-style:normal;
	font-weight:400;
	line-height:55px;
	padding:0 0 10px;
	text-align:center;
	text-decoration:none;
}

.tp-caption.Hero-Button,.Hero-Button
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Hero-Button:hover,.Hero-Button:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(0,0,0,1.00);
	text-decoration:none;
}

.tp-caption.Video-Title,.Video-Title
{
	background-color:rgba(0,0,0,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:900;
	line-height:30px;
	padding:5px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Video-SubTitle,.Video-SubTitle
{
	background-color:rgba(0,0,0,0.35);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:12px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:12px;
	padding:5px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Button,.NotGeneric-Button
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Button:hover,.NotGeneric-Button:hover
{
	background-color:transparent;
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.NotGeneric-BigButton,.NotGeneric-BigButton
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.15);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:27px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-BigButton:hover,.NotGeneric-BigButton:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.WebProduct-Button,.WebProduct-Button
{
	background-color:rgba(51,51,51,1.00);
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:16px;
	font-style:normal;
	font-weight:600;
	letter-spacing:1px;
	line-height:48px;
	padding:0 40px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-Button:hover,.WebProduct-Button:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:2px;
	color:rgba(51,51,51,1.00);
	text-decoration:none;
}

.tp-caption.Restaurant-Button,.Restaurant-Button
{
	background-color:rgba(10,10,10,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Restaurant-Button:hover,.Restaurant-Button:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,224,129,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Gym-Button,.Gym-Button
{
	background-color:rgba(139,192,39,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:600;
	letter-spacing:1px;
	line-height:15px;
	padding:13px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Button:hover,.Gym-Button:hover
{
	background-color:rgba(114,168,0,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Gym-Button-Light,.Gym-Button-Light
{
	background-color:transparent;
	border-color:rgba(255,255,255,0.25);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:600;
	line-height:15px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Button-Light:hover,.Gym-Button-Light:hover
{
	background-color:rgba(114,168,0,0);
	border-color:rgba(139,192,39,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Sports-Button-Light,.Sports-Button-Light
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Sports-Button-Light:hover,.Sports-Button-Light:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Sports-Button-Red,.Sports-Button-Red
{
	background-color:rgba(219,28,34,1.00);
	border-color:rgba(219,28,34,0);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Sports-Button-Red:hover,.Sports-Button-Red:hover
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Photography-Button,.Photography-Button
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.25);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:600;
	letter-spacing:1px;
	line-height:15px;
	padding:13px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Photography-Button:hover,.Photography-Button:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Newspaper-Button-2,.Newspaper-Button-2
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:900;
	line-height:15px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Button-2:hover,.Newspaper-Button-2:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Feature-Tour,.Feature-Tour
{
	background-color:rgba(139,192,39,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:17px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Tour:hover,.Feature-Tour:hover
{
	background-color:rgba(114,168,0,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Feature-Examples,.Feature-Examples
{
	background-color:transparent;
	border-color:rgba(33,42,64,0.15);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(33,42,64,0.50);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:15px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Examples:hover,.Feature-Examples:hover
{
	background-color:transparent;
	border-color:rgba(139,192,39,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(139,192,39,1.00);
	text-decoration:none;
}

.tp-caption.subcaption,.subcaption
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(111,124,130,1.00);
	font-family:roboto;
	font-size:19px;
	font-style:normal;
	font-weight:400;
	line-height:24px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.menutab,.menutab
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(41,46,49,1.00);
	font-family:roboto;
	font-size:25px;
	font-style:normal;
	font-weight:300;
	line-height:30px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.menutab:hover,.menutab:hover
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(213,0,0,1.00);
	text-decoration:none;
}

.tp-caption.maincontent,.maincontent
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(41,46,49,1.00);
	font-family:roboto;
	font-size:21px;
	font-style:normal;
	font-weight:300;
	line-height:26px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.minitext,.minitext
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(185,186,187,1.00);
	font-family:roboto;
	font-size:15px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Feature-Buy,.Feature-Buy
{
	background-color:rgba(0,154,238,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:17px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Buy:hover,.Feature-Buy:hover
{
	background-color:rgba(0,133,214,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Feature-Examples-Light,.Feature-Examples-Light
{
	background-color:transparent;
	border-color:rgba(255,255,255,0.15);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:15px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Examples-Light:hover,.Feature-Examples-Light:hover
{
	background-color:transparent;
	border-color:rgba(255,255,255,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Facebook-Likes,.Facebook-Likes
{
	background-color:rgba(59,89,153,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:22px;
	padding:5px 15px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Favorites,.Twitter-Favorites
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(136,153,166,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:22px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Link,.Twitter-Link
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:30px 30px 30px 30px;
	border-style:none;
	border-width:0;
	color:rgba(135,153,165,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:15px;
	padding:11px 11px 9px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Link:hover,.Twitter-Link:hover
{
	background-color:rgba(0,132,180,1.00);
	border-color:transparent;
	border-radius:30px 30px 30px 30px;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Twitter-Retweet,.Twitter-Retweet
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(136,153,166,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:22px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Content,.Twitter-Content
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(41,47,51,1.00);
	font-family:Roboto;
	font-size:20px;
	font-style:normal;
	font-weight:500;
	line-height:28px;
	padding:30px 30px 70px;
	text-align:left;
	text-decoration:none;
}

.revtp-searchform input[type="text"],
.revtp-searchform input[type="email"],
.revtp-form input[type="text"],
.revtp-form input[type="email"]{ 	
	font-family: "Arial", sans-serif;
    font-size: 15px;
    color: #000;
    background-color: #fff;
    line-height: 46px;
    padding: 0 20px;
    cursor: text;
    border: 0;
    width: 400px;
    margin-bottom: 0px;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    transition: background-color 0.5s;
    
    
    border-radius: 0px;
}


.tp-caption.BigBold-Title,
.BigBold-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 110px;
    line-height: 100px;
    font-weight: 800;
    font-style: normal;
    font-family: Raleway;
    padding: 10px 0px 10px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.BigBold-SubTitle,
.BigBold-SubTitle {
    color: rgba(255, 255, 255, 0.50);
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.BigBold-Button,
.BigBold-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 15px 50px 15px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.50);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.BigBold-Button:hover,
.BigBold-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.FoodCarousel-Content,
.FoodCarousel-Content {
    color: rgba(41, 46, 49, 1.00);
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 30px 30px 30px 30px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.FoodCarousel-Button,
.FoodCarousel-Button {
    color: rgba(41, 46, 49, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 15px 70px 15px 50px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.FoodCarousel-Button:hover,
.FoodCarousel-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.FoodCarousel-CloseButton,
.FoodCarousel-CloseButton {
    color: rgba(41, 46, 49, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 14px 14px 14px 16px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(41, 46, 49, 0);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.FoodCarousel-CloseButton:hover,
.FoodCarousel-CloseButton:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 0);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px
}
.tp-caption.Video-SubTitle,
.Video-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 5px 5px 5px 5px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.35);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 2px;
    text-align: left
}
.tp-caption.Video-Title,
.Video-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 30px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 5px 5px 5px 5px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 1.00);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Travel-BigCaption,
.Travel-BigCaption {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Travel-SmallCaption,
.Travel-SmallCaption {
    color: rgba(255, 255, 255, 1.00);
    font-size: 25px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Travel-CallToAction,
.Travel-CallToAction {
    color: rgba(255, 255, 255, 1.00);
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 12px 20px 12px 20px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 5px 5px 5px 5px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.Travel-CallToAction:hover,
.Travel-CallToAction:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 5px 5px 5px 5px
}


.tp-caption.RotatingWords-TitleWhite,
.RotatingWords-TitleWhite {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 800;
    font-style: normal;
    font-family: Raleway;
    padding: 0px 0px 0px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.RotatingWords-Button,
.RotatingWords-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 20px 50px 20px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.15);
    border-style: solid;
    border-width: 2px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 3px
}
.tp-caption.RotatingWords-Button:hover,
.RotatingWords-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.RotatingWords-SmallText,
.RotatingWords-SmallText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    text-shadow: none
}




.tp-caption.ContentZoom-SmallTitle,
.ContentZoom-SmallTitle {
    color: rgba(41, 46, 49, 1.00);
    font-size: 33px;
    line-height: 45px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-SmallSubtitle,
.ContentZoom-SmallSubtitle {
    color: rgba(111, 124, 130, 1.00);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-SmallIcon,
.ContentZoom-SmallIcon {
    color: rgba(41, 46, 49, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Raleway;
    padding: 10px 10px 10px 10px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-SmallIcon:hover,
.ContentZoom-SmallIcon:hover {
    color: rgba(111, 124, 130, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px
}
.tp-caption.ContentZoom-DetailTitle,
.ContentZoom-DetailTitle {
    color: rgba(41, 46, 49, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-DetailSubTitle,
.ContentZoom-DetailSubTitle {
    color: rgba(111, 124, 130, 1.00);
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-DetailContent,
.ContentZoom-DetailContent {
    color: rgba(111, 124, 130, 1.00);
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-Button,
.ContentZoom-Button {
    color: rgba(41, 46, 49, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 15px 50px 15px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(41, 46, 49, 0.50);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.ContentZoom-Button:hover,
.ContentZoom-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.ContentZoom-ButtonClose,
.ContentZoom-ButtonClose {
    color: rgba(41, 46, 49, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 14px 14px 14px 16px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(41, 46, 49, 0.50);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.ContentZoom-ButtonClose:hover,
.ContentZoom-ButtonClose:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px
}
.tp-caption.Newspaper-Title,
.Newspaper-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 55px;
    font-weight: 400;
    font-style: normal;
    font-family: "Roboto Slab";
    padding: 0 0 10px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Newspaper-Subtitle,
.Newspaper-Subtitle {
    color: rgba(168, 216, 238, 1.00);
    font-size: 15px;
    line-height: 20px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Newspaper-Button,
.Newspaper-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 17px;
    font-weight: 700;
    font-style: normal;
    font-family: Roboto;
    padding: 12px 35px 12px 35px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0);
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 2px;
    text-align: left
}
.tp-caption.Newspaper-Button:hover,
.Newspaper-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.rtwhitemedium,
.rtwhitemedium {
    font-size: 22px;
    line-height: 26px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    background-color: transparent;
    border-width: 0px;
    border-color: rgb(0, 0, 0);
    border-style: none;
    text-shadow: none
}

@media only screen and (max-width: 767px) {
	.revtp-searchform input[type="text"],
	.revtp-searchform input[type="email"],
	.revtp-form input[type="text"],
	.revtp-form input[type="email"] { width: 200px !important; }
}

.revtp-searchform input[type="submit"],
.revtp-form input[type="submit"] {	
	font-family: "Arial", sans-serif;
    line-height: 46px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    padding: 0 20px;
    border: 0;
    background: #009aee;
    color: #fff;
    
    
    border-radius: 0px;
}

.tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    .tp-caption.Concept-Title,
    .Concept-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 70px;
        line-height: 70px;
        font-weight: 700;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 5px
    }
    .tp-caption.Concept-SubTitle,
    .Concept-SubTitle {
        color: rgba(255, 255, 255, 0.65);
        font-size: 25px;
        line-height: 25px;
        font-weight: 700;
        font-style: italic;
        font-family: "Playfair Display";
        padding: 0px 10px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-Content,
    .Concept-Content {
        color: rgba(255, 255, 255, 1.00);
        font-size: 20px;
        line-height: 30px;
        font-weight: 400;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: none;
        border-width: 2px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-MoreBtn,
    .Concept-MoreBtn {
        color: rgba(255, 255, 255, 1.00);
        font-size: 30px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 10px 8px 7px 10px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px;
        letter-spacing: 1px;
        text-align: left
    }
    .tp-caption.Concept-MoreBtn:hover,
    .Concept-MoreBtn:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.Concept-LessBtn,
    .Concept-LessBtn {
        color: rgba(255, 255, 255, 1.00);
        font-size: 30px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 10px 8px 7px 10px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(0, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px;
        letter-spacing: 1px;
        text-align: left
    }
    .tp-caption.Concept-LessBtn:hover,
    .Concept-LessBtn:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(255, 255, 255, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.Concept-SubTitle-Dark,
    .Concept-SubTitle-Dark {
        color: rgba(0, 0, 0, 0.65);
        font-size: 25px;
        line-height: 25px;
        font-weight: 700;
        font-style: italic;
        font-family: "Playfair Display";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-Title-Dark,
    .Concept-Title-Dark {
        color: rgba(0, 0, 0, 1.00);
        font-size: 70px;
        line-height: 70px;
        font-weight: 700;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 5px
    }
    .tp-caption.Concept-MoreBtn-Dark,
    .Concept-MoreBtn-Dark {
        color: rgba(0, 0, 0, 1.00);
        font-size: 30px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 10px 8px 7px 10px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px;
        letter-spacing: 1px;
        text-align: left
    }
    .tp-caption.Concept-MoreBtn-Dark:hover,
    .Concept-MoreBtn-Dark:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: rgba(0, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.Concept-Content-Dark,
    .Concept-Content-Dark {
        color: rgba(0, 0, 0, 1.00);
        font-size: 20px;
        line-height: 30px;
        font-weight: 400;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: none;
        border-width: 2px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-Notice,
    .Concept-Notice {
        color: rgba(255, 255, 255, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 400;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: none;
        border-width: 2px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 2px
    }
    .tp-caption.Concept-Content a,
    .tp-caption.Concept-Content a:visited {
        color: #fff !important;
        border-bottom: 1px solid #fff !important;
        font-weight: 700 !important;
    }
    .tp-caption.Concept-Content a:hover {
        border-bottom: 1px solid transparent !important;
    }
    .tp-caption.Concept-Content-Dark a,
    .tp-caption.Concept-Content-Dark a:visited {
        color: #000 !important;
        border-bottom: 1px solid #000 !important;
        font-weight: 700 !important;
    }
    .tp-caption.Concept-Content-Dark a:hover {
        border-bottom: 1px solid transparent !important;
    }

    .tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    .tp-caption.Creative-Title,
    .Creative-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 70px;
        line-height: 70px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Creative-SubTitle,
    .Creative-SubTitle {
        color: rgba(205, 176, 131, 1.00);
        font-size: 14px;
        line-height: 14px;
        font-weight: 400;
        font-style: normal;
        font-family: Lato;
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 2px
    }
    .tp-caption.Creative-Button,
    .Creative-Button {
        color: rgba(205, 176, 131, 1.00);
        font-size: 13px;
        line-height: 13px;
        font-weight: 400;
        font-style: normal;
        font-family: Lato;
        padding: 15px 50px 15px 50px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(205, 176, 131, 0.25);
        border-style: solid;
        border-width: 1px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 2px
    }
    .tp-caption.Creative-Button:hover,
    .Creative-Button:hover {
        color: rgba(205, 176, 131, 1.00);
        text-decoration: none;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(205, 176, 131, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 0px 0px 0px 0px
    }

.tp-caption.subcaption,
    .subcaption {
        color: rgba(111, 124, 130, 1.00);
        font-size: 19px;
        line-height: 24px;
        font-weight: 400;
        font-style: normal;
        font-family: roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 0, 0, 1.00);
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-shadow: none;
        text-align: left
    }
    .tp-caption.RedDot,
    .RedDot {
        color: rgba(0, 0, 0, 1.00);        
        font-weight: 400;
        font-style: normal;        
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(213, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: solid;
        border-width: 5px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.RedDot:hover,
    .RedDot:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.75);
        border-color: rgba(213, 0, 0, 1.00);
        border-style: solid;
        border-width: 5px;
        border-radius: 50px 50px 50px 50px
    }

    .tp-caption.SlidingOverlays-Title,
    .SlidingOverlays-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 50px;
        line-height: 50px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.SlidingOverlays-Title,
    .SlidingOverlays-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 50px;
        line-height: 50px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }

     .tp-caption.Woo-TitleLarge,
    .Woo-TitleLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 40px;
        line-height: 40px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        
    }
    .tp-caption.Woo-Rating,
    .Woo-Rating {
        color: rgba(0, 0, 0, 1.00);
        font-size: 14px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: left;
        
    }
    .tp-caption.Woo-SubTitle,
    .Woo-SubTitle {
        color: rgba(0, 0, 0, 1.00);
        font-size: 18px;
        line-height: 18px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        letter-spacing: 2px;
        
    }
    .tp-caption.Woo-PriceLarge,
    .Woo-PriceLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 60px;
        line-height: 60px;
        font-weight: 700;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        
    }
    .tp-caption.Woo-ProductInfo,
    .Woo-ProductInfo {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 75px 12px 50px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;
        
    }
    .tp-caption.Woo-ProductInfo:hover,
    .Woo-ProductInfo:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }
    .tp-caption.Woo-AddToCart,
    .Woo-AddToCart {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 35px 12px 35px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;
        
    }
    .tp-caption.Woo-AddToCart:hover,
    .Woo-AddToCart:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }
    .tp-caption.Woo-TitleLarge,
    .Woo-TitleLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 40px;
        line-height: 40px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        
    }
    .tp-caption.Woo-SubTitle,
    .Woo-SubTitle {
        color: rgba(0, 0, 0, 1.00);
        font-size: 18px;
        line-height: 18px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        letter-spacing: 2px;
        
    }
    .tp-caption.Woo-PriceLarge,
    .Woo-PriceLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 60px;
        line-height: 60px;
        font-weight: 700;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        
    }
    .tp-caption.Woo-ProductInfo,
    .Woo-ProductInfo {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 75px 12px 50px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;
        
    }
    .tp-caption.Woo-ProductInfo:hover,
    .Woo-ProductInfo:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }
    .tp-caption.Woo-AddToCart,
    .Woo-AddToCart {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 35px 12px 35px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;
        
    }
    .tp-caption.Woo-AddToCart:hover,
    .Woo-AddToCart:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }

    .tp-caption.FullScreen-Toggle,
    .FullScreen-Toggle {
        color: rgba(255, 255, 255, 1.00);
        font-size: 20px;
        line-height: 20px;
        font-weight: 400;
        font-style: normal;
        font-family: Raleway;
        padding: 11px 8px 11px 12px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(0, 0, 0, 0.50);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 3px;
        text-align: left
    }
    .tp-caption.FullScreen-Toggle:hover,
    .FullScreen-Toggle:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: rgba(0, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }

    .tp-caption.Agency-Title,
.Agency-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px
}
.tp-caption.Agency-SubTitle,
.Agency-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Agency-PlayBtn,
.Agency-PlayBtn {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 71px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.Agency-PlayBtn:hover,
.Agency-PlayBtn:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}
.tp-caption.Agency-SmallText,
.Agency-SmallText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 12px;
    font-weight: 900;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 5px
}
.tp-caption.Agency-Social,
.Agency-Social {
    color: rgba(51, 51, 51, 1.00);
    font-size: 25px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(51, 51, 51, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 30px 30px 30px 30px;
    text-align: center
}
.tp-caption.Agency-Social:hover,
.Agency-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(51, 51, 51, 1.00);
    border-color: rgba(51, 51, 51, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 30px 30px 30px 30px;
    cursor: pointer
}
.tp-caption.Agency-CloseBtn,
.Agency-CloseBtn {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0);
    border-style: none;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.Agency-CloseBtn:hover,
.Agency-CloseBtn:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0);
    border-style: none;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}

.tp-caption.Dining-Title,
.Dining-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px
}
.tp-caption.Dining-SubTitle,
.Dining-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Dining-BtnLight,
.Dining-BtnLight {
    color: rgba(255, 255, 255, 0.50);
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    font-style: normal;
    font-family: Lato;
    padding: 17px 73px 17px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 2px
}
.tp-caption.Dining-BtnLight:hover,
.Dining-BtnLight:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.Dining-Social,
.Dining-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 25px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: center
}
.tp-caption.Dining-Social:hover,
.Dining-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    cursor: pointer
}
tp-caption.Team-Thumb,
.Team-Thumb {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Thumb:hover,
.Team-Thumb:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Team-Name,
.Team-Name {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Position,
.Team-Position {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Description,
.Team-Description {
    color: rgba(255, 255, 255, 1.00);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Social,
.Team-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Team-Social:hover,
.Team-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}

.tp-caption.VideoControls-Play,
.VideoControls-Play {
    color: rgba(0, 0, 0, 1.00);
    font-size: 50px;
    line-height: 120px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 7px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.VideoControls-Play:hover,
.VideoControls-Play:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}
.tp-caption.VideoPlayer-Title,
.VideoPlayer-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 40px;
    line-height: 40px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px
}
.tp-caption.VideoPlayer-SubTitle,
.VideoPlayer-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.VideoPlayer-Social,
.VideoPlayer-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.VideoPlayer-Social:hover,
.VideoPlayer-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.VideoControls-Mute,
.VideoControls-Mute {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.VideoControls-Mute:hover,
.VideoControls-Mute:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}
.tp-caption.VideoControls-Pause,
.VideoControls-Pause {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.VideoControls-Pause:hover,
.VideoControls-Pause:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
 }

.soundcloudwrapper iframe {
    width: 100% !important
}
.tp-caption.SleekLanding-Title,
.SleekLanding-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 35px;
    line-height: 40px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 5px
}
.tp-caption.SleekLanding-ButtonBG,
.SleekLanding-ButtonBG {
    color: rgba(0, 0, 0, 1.00);
        
    font-weight: 700;
    font-style: normal;    
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.10);
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 5px 5px 5px 5px;
    text-align: left;    
    box-shadow: inset 0px 2px 0px 0px rgba(0, 0, 0, 0.15)
}
.tp-caption.SleekLanding-SmallTitle,
.SleekLanding-SmallTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 50px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 2px
}
.tp-caption.SleekLanding-BottomText,
.SleekLanding-BottomText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.SleekLanding-Social,
.SleekLanding-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.SleekLanding-Social:hover,
.SleekLanding-Social:hover {
    color: rgba(0, 0, 0, 0.25);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
#rev_slider_429_1_wrapper .tp-loader.spinner2 {
    background-color: #555555 !important;
}
.tp-fat {
    font-weight: 900 !important;
}

.tp-caption.PostSlider-Category,
.PostSlider-Category {
    color: rgba(0, 0, 0, 1.00);
    font-size: 15px;
    line-height: 15px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 3px;
    text-align: left
}
.tp-caption.PostSlider-Title,
.PostSlider-Title {
    color: rgba(0, 0, 0, 1.00);
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.PostSlider-Content,
.PostSlider-Content {
    color: rgba(119, 119, 119, 1.00);
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.PostSlider-Button,
.PostSlider-Button {
    color: rgba(0, 0, 0, 1.00);
    font-size: 15px;
    line-height: 40px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 1px 56px 1px 32px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left
}
.tp-caption.PostSlider-Button:hover,
.PostSlider-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(238, 238, 238, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}

/* media queries */

@media only screen and (max-width: 960px) {} @media only screen and (max-width: 768px) {} .tp-caption.LandingPage-Title,
.LandingPage-Title {
    color:rgba(255,
    255,
    255,
    1.00);
    font-size:70px;
    line-height:80px;
    font-weight:900;
    font-style:normal;
    font-family:Lato;
    padding:0 0 0 0px;
    text-decoration:none;
    background-color:transparent;
    border-color:transparent;
    border-style:none;
    border-width:0px;
    border-radius:0 0 0 0px;
    text-align:left;
    letter-spacing:10px
}
.tp-caption.LandingPage-SubTitle,
.LandingPage-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.LandingPage-Button,
.LandingPage-Button {
    color: rgba(0, 0, 0, 1.00);
    font-size: 15px;
    line-height: 54px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 35px 0px 35px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 3px
}
.tp-caption.LandingPage-Button:hover,
.LandingPage-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.App-Content a,
.tp-caption.App-Content a:visited {
    color: #89124e !important;
    border-bottom: 1px solid transparent !important;
    font-weight: bold !important;
}
.tp-caption.App-Content a:hover {
    border-bottom: 1px solid #89124e !important;
}
.tp-caption.RockBand-LogoText,
.RockBand-LogoText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    font-style: normal;
    font-family: Oswald;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #fff !important;
    text-decoration: underline !important;
}
.tp-caption.Twitter-Content a:hover {
    color: #fff !important;
    text-decoration: none !important;
}
.soundcloudwrapper iframe {
    width: 100% !important
}

.tp-caption.Agency-LogoText,
.Agency-LogoText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 1px
}
.tp-caption.ComingSoon-Highlight,
.ComingSoon-Highlight {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 37px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 20px 3px 20px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(0, 154, 238, 1.00);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ComingSoon-Count,
.ComingSoon-Count {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ComingSoon-CountUnit,
.ComingSoon-CountUnit {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.ComingSoon-NotifyMe,
.ComingSoon-NotifyMe {
    color: rgba(164, 157, 143, 1.00);
    font-size: 27px;
    line-height: 35px;
    font-weight: 600;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}

#mc_embed_signup input#mce-EMAIL {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    color: #000;
    background-color: #fff;
    line-height: 46px;
    padding: 0 20px;
    cursor: text;
    border: 1px solid #fff;
    width: 400px;
    margin-bottom: 0px;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    transition: background-color 0.5s;
    
    
    border-radius: 0px;
}
#mc_embed_signup input#mce-EMAIL[type="email"]:focus {
    background-color: #fff;
    border: 1px solid #666;
    border-right: 0;
}
#mc_embed_signup input#mc-embedded-subscribe,
#mc_embed_signup input#mc-embedded-subscribe:focus {
    font-family: "Lato", sans-serif;
    line-height: 46px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    padding: 0 20px;
    border: 1px solid #009aee;
    background: #009aee;
    color: #fff;
    
    
    border-radius: 0px;
}
#mc_embed_signup input#mc-embedded-subscribe:hover {
    background: #0083d4;
}
@media only screen and (max-width: 767px) {
    #mc_embed_signup input#mce-EMAIL {
        width: 200px;
    }
}
.tp-caption.Agency-SmallTitle,
.Agency-SmallTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 6px
}
.tp-caption.Agency-SmallContent,
.Agency-SmallContent {
    color: rgba(255, 255, 255, 1.00);
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Agency-SmallLink,
.Agency-SmallLink {
    color: rgba(248, 124, 9, 1.00);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #f87c09 !important
}
.tp-caption.Agency-SmallLink:hover,
.Agency-SmallLink:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Agency-NavButton,
.Agency-NavButton {
    color: rgba(51, 51, 51, 1.00);
    font-size: 17px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    text-align: center;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    text-align: center
}
.tp-caption.Agency-NavButton:hover,
.Agency-NavButton:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(51, 51, 51, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.Agency-SmallLinkGreen,
.Agency-SmallLinkGreen {
    color: rgba(109, 177, 155, 1.00);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #6db19b !important
}
.tp-caption.Agency-SmallLinkGreen:hover,
.Agency-SmallLinkGreen:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Agency-SmallLinkBlue,
.Agency-SmallLinkBlue {
    color: rgba(153, 153, 153, 1.00);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #999 !important
}
.tp-caption.Agency-SmallLinkBlue:hover,
.Agency-SmallLinkBlue:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Agency-LogoText,
.Agency-LogoText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 1px
}
.tp-caption.Agency-ArrowTooltip,
.Agency-ArrowTooltip {
    color: rgba(51, 51, 51, 1.00);
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: "Permanent Marker";
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Agency-SmallSocial,
.Agency-SmallSocial {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Agency-SmallSocial:hover,
.Agency-SmallSocial:hover {
    color: rgba(51, 51, 51, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #0084B4 !important
}
.tp-caption.Twitter-Content a:hover {
    color: #0084B4 !important;
    text-decoration: underline !important
}
.tp-caption.CreativeFrontPage-Btn,
.CreativeFrontPage-Btn {
    color: rgba(255, 255, 255, 1.00);
    font-size: 14px;
    line-height: 60px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 50px 0px 50px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(0, 104, 92, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 4px 4px 4px 4px;
    letter-spacing: 2px
}
.tp-caption.CreativeFrontPage-Btn:hover,
.CreativeFrontPage-Btn:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 4px 4px 4px 4px;
    cursor: pointer
}
.tp-caption.CreativeFrontPage-Menu,
.CreativeFrontPage-Menu {
    color: rgba(255, 255, 255, 1.00);
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    font-style: normal;
    font-family: roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 2px
}
.tp-flip-index {
    z-index: 1000 !important;
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #0084B4 !important
}
.tp-caption.Twitter-Content a:hover {
    color: #0084B4 !important;
    text-decoration: underline !important
}
.tp-caption.FullScreenMenu-Category,
.FullScreenMenu-Category {
    color: rgba(17, 17, 17, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: BenchNine;
    padding: 21px 30px 16px 30px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.90);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 3px
}
.tp-caption.FullScreenMenu-Title,
.FullScreenMenu-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 65px;
    line-height: 70px;
    font-weight: 700;
    font-style: normal;
    font-family: BenchNine;
    padding: 21px 30px 16px 30px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(17, 17, 17, 0.90);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #0084B4 !important
}
.tp-caption.Twitter-Content a:hover {
    color: #0084B4 !important;
    text-decoration: underline !important
}
.tp-caption.TechJournal-Button,
.TechJournal-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 40px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 1px 30px 1px 30px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(138, 0, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 3px
}
.tp-caption.TechJournal-Button:hover,
.TechJournal-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.TechJournal-Big,
.TechJournal-Big {
    color: rgba(255, 255, 255, 1.00);
    font-size: 120px;
    line-height: 120px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 0px
}
.rev_slider {
    overflow: hidden;
}
.effect_layer {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    #menu_forcefullwidth {
        z-index: 5000;
        position: fixed !important;
        top: 0px;
        left: 0px;
        width: 100%
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .rev_slider {
        overflow: hidden;
    }
    .effect_layer {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
    .gyges .tp-thumb {
        opacity: 1
    }
    .gyges .tp-thumb-img-wrap {
        padding: 3px;
        background-color: rgba(0, 0, 0, 0.25);
        display: inline-block;
        width: 100%;
        height: 100%;
        position: relative;
        margin: 0px;
        box-sizing: border-box;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }
    .gyges .tp-thumb-image {
        padding: 3px;
        display: block;
        box-sizing: border-box;
        position: relative;
        -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
        -moz-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
        box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    }
    .gyges .tp-thumb:hover .tp-thumb-img-wrap,
    .gyges .tp-thumb.selected .tp-thumb-img-wrap {
        background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
        background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-FooterLink,
    .FullSiteBlock-FooterLink {
        color: rgba(85, 85, 85, 1.00);
        font-size: 15px;
        line-height: 20px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: left
    }
    .tp-caption.FullSiteBlock-FooterLink:hover,
    .FullSiteBlock-FooterLink:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .fb-share-button.fb_iframe_widget iframe {
        width: 115px!important;
    }
    #tp-socialwrapper {
        opacity: 0;
    }

        .tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    #menu_forcefullwidth {
        z-index: 5000;
        position: fixed !important;
        top: 0px;
        left: 0px;
        width: 100%
    }
    #tp-menubg {
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
        /* FF3.6-15 */
        
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
        /* Chrome10-25,Safari5.1-6 */
        
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#d9000000', endColorstr='#00000000', GradientType=0);
        /* IE6-9 */
    }
    #mc_embed_signup input[type="email"] {
        font-family: "Lato", sans-serif;
        font-size: 16px;
        font-weight: 400;
        background-color: #fff;
        color: #888 !important;
        line-height: 46px;
        padding: 0 20px;
        cursor: text;
        border: 0;
        width: 400px;
        margin-bottom: 0px;
        -webkit-transition: background-color 0.5s;
        -moz-transition: background-color 0.5s;
        -o-transition: background-color 0.5s;
        -ms-transition: background-color 0.5s;
        transition: background-color 0.5s;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }
    #mc_embed_signup input[type="email"]::-webkit-input-placeholder {
        color: #888 !important;
    }
    #mc_embed_signup input[type="email"]::-moz-placeholder {
        color: #888 !important;
    }
    #mc_embed_signup input[type="email"]:-ms-input-placeholder {
        color: #888 !important;
    }
    #mc_embed_signup input[type="email"]:focus {
        background-color: #f5f5f5;
        color: #454545;
    }
    #mc_embed_signup input#mc-embedded-subscribe,
    #mc_embed_signup input#mc-embedded-subscribe:focus {
        font-family: "Lato", sans-serif;
        line-height: 46px;
        font-size: 16px;
        font-weight: 700;
        padding: 0 30px;
        border: 0;
        background: #f04531;
        text-transform: none;
        color: #fff;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }
    #mc_embed_signup input#mc-embedded-subscribe:hover {
        background: #e03727;
    }
    @media only screen and (max-width: 767px) {
        #mc_embed_signup input[type="email"] {
            width: 260px;
        }
    }
    @media only screen and (max-width: 480px) {
        #mc_embed_signup input[type="email"] {
            width: 160px;
        }
    }
    #rev_slider_167_6 .uranus.tparrows {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0);
    }
    #rev_slider_167_6 .uranus.tparrows:before {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 40px;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }
    #rev_slider_167_6 .uranus.tparrows:hover:before {
        opacity: 0.75;
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.ParallaxWebsite-FooterItem,
    .ParallaxWebsite-FooterItem {
        color: rgba(255, 255, 255, 0.50);
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px
    }
    .tp-caption.ParallaxWebsite-FooterItem:hover,
    .ParallaxWebsite-FooterItem:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .fb-share-button.fb_iframe_widget iframe {
        width: 115px!important;
    }
    iframe.twitter-share-button {
        display: none;
    }
    .fb-share-button.fb_iframe_widget iframe {
        display: none;
    }

    .tp-caption.FullSiteBlock-Link, 
    .FullSiteBlock-Link {
    color: rgba(0,150,255,1.00);
    font-size: 25px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-loop-wrap,
.tp-mask-wrap{
	left: 0;
}


/*-----------------------------------------------------------------------------

-	Revolution Slider 5.0 Default Style Settings -

Screen Stylesheet

version:   	5.4.5
date:      	15/05/17
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/

#debungcontrolls {
	z-index:100000;
	position:fixed;
	bottom:0px; width:100%;
	height:auto;
	background:rgba(0,0,0,0.6);
	padding:10px;
	box-sizing: border-box;
}

.debugtimeline {
	width:100%;
	height:10px;
	position:relative;
	display:block;
	margin-bottom:3px;	
	display:none;
	white-space: nowrap;	
	box-sizing: border-box;
}

.debugtimeline:hover {
	height:15px;

}

.the_timeline_tester {
	background:#e74c3c;
	position:absolute;
	top:0px;
	left:0px;
	height:100%;
	width:0;	
}

.rs-go-fullscreen {
	position:fixed !important;
	width:100% !important;
	height:100% !important;
	top:0px !important;
	left:0px !important;
	z-index:9999999 !important;
	background:#ffffff !important;
}


.debugtimeline.tl_slide .the_timeline_tester {
	background:#f39c12;	
}

.debugtimeline.tl_frame .the_timeline_tester {
	background:#3498db;	
}

.debugtimline_txt {
	color:#fff;
	font-weight: 400;
	font-size:7px;
	position:absolute;	
	left:10px;
	top:0px;
	white-space: nowrap;
	line-height: 10px;
}


.rtl {	direction: rtl;}
@font-face {
  font-family: 'revicons';
  src: url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/fonts/revicons/revicons.eot?5510888");
  src: url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/fonts/revicons/revicons.eot?5510888#iefix") format('embedded-opentype'),
       url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/fonts/revicons/revicons.woff?5510888") format('woff'),
       url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/fonts/revicons/revicons.ttf?5510888") format('truetype'),
       url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/fonts/revicons/revicons.svg?5510888#revicons") format('svg');
  font-weight: normal;
  font-style: normal;
}

 [class^="revicon-"]:before, [class*=" revicon-"]:before {
  font-family: "revicons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center; 

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.revicon-search-1:before { content: '\e802'; } /* '' */
.revicon-pencil-1:before { content: '\e831'; } /* '' */
.revicon-picture-1:before { content: '\e803'; } /* '' */
.revicon-cancel:before { content: '\e80a'; } /* '' */
.revicon-info-circled:before { content: '\e80f'; } /* '' */
.revicon-trash:before { content: '\e801'; } /* '' */
.revicon-left-dir:before { content: '\e817'; } /* '' */
.revicon-right-dir:before { content: '\e818'; } /* '' */
.revicon-down-open:before { content: '\e83b'; } /* '' */
.revicon-left-open:before { content: '\e819'; } /* '' */
.revicon-right-open:before { content: '\e81a'; } /* '' */
.revicon-angle-left:before { content: '\e820'; } /* '' */
.revicon-angle-right:before { content: '\e81d'; } /* '' */
.revicon-left-big:before { content: '\e81f'; } /* '' */
.revicon-right-big:before { content: '\e81e'; } /* '' */
.revicon-magic:before { content: '\e807'; } /* '' */
.revicon-picture:before { content: '\e800'; } /* '' */
.revicon-export:before { content: '\e80b'; } /* '' */
.revicon-cog:before { content: '\e832'; } /* '' */
.revicon-login:before { content: '\e833'; } /* '' */
.revicon-logout:before { content: '\e834'; } /* '' */
.revicon-video:before { content: '\e805'; } /* '' */
.revicon-arrow-combo:before { content: '\e827'; } /* '' */
.revicon-left-open-1:before { content: '\e82a'; } /* '' */
.revicon-right-open-1:before { content: '\e82b'; } /* '' */
.revicon-left-open-mini:before { content: '\e822'; } /* '' */
.revicon-right-open-mini:before { content: '\e823'; } /* '' */
.revicon-left-open-big:before { content: '\e824'; } /* '' */
.revicon-right-open-big:before { content: '\e825'; } /* '' */
.revicon-left:before { content: '\e836'; } /* '' */
.revicon-right:before { content: '\e826'; } /* '' */
.revicon-ccw:before { content: '\e808'; } /* '' */
.revicon-arrows-ccw:before { content: '\e806'; } /* '' */
.revicon-palette:before { content: '\e829'; } /* '' */
.revicon-list-add:before { content: '\e80c'; } /* '' */
.revicon-doc:before { content: '\e809'; } /* '' */
.revicon-left-open-outline:before { content: '\e82e'; } /* '' */
.revicon-left-open-2:before { content: '\e82c'; } /* '' */
.revicon-right-open-outline:before { content: '\e82f'; } /* '' */
.revicon-right-open-2:before { content: '\e82d'; } /* '' */
.revicon-equalizer:before { content: '\e83a'; } /* '' */
.revicon-layers-alt:before { content: '\e804'; } /* '' */
.revicon-popup:before { content: '\e828'; } /* '' */

							

/******************************
	-	BASIC STYLES		-
******************************/

.rev_slider_wrapper{
	position:relative;
	z-index: 0;
	width:100%;
}

.rev_slider{
	position:relative;
	overflow:visible;
}

.entry-content .rev_slider a,
.rev_slider a { box-shadow: none; }

.tp-overflow-hidden { 	overflow:hidden !important;}
.group_ov_hidden 	{	overflow:hidden}

.tp-simpleresponsive img,
.rev_slider img{
	max-width:none !important;	
	transition: none;
	margin:0px;
	padding:0px;
	border:none;
}

.rev_slider .no-slides-text{
	font-weight:bold;
	text-align:center;
	padding-top:80px;
}

.rev_slider >ul,
.rev_slider_wrapper >ul,
.tp-revslider-mainul >li,
.rev_slider >ul >li,
.rev_slider >ul >li:before,
.tp-revslider-mainul >li:before,
.tp-simpleresponsive >ul,
.tp-simpleresponsive >ul >li,
.tp-simpleresponsive >ul >li:before,
.tp-revslider-mainul >li,
.tp-simpleresponsive >ul >li{
	list-style:none !important;
	position:absolute;	
	margin:0px !important;
	padding:0px !important;
	overflow-x: visible;
	overflow-y: visible;
	list-style-type: none !important;
	background-image:none;
	background-position:0px 0px;
	text-indent: 0em;
	top:0px;left:0px;
}


.tp-revslider-mainul >li,
.rev_slider >ul >li,
.rev_slider >ul >li:before,
.tp-revslider-mainul >li:before,
.tp-simpleresponsive >ul >li,
.tp-simpleresponsive >ul >li:before,
.tp-revslider-mainul >li,
.tp-simpleresponsive >ul >li { 
	visibility:hidden; 
}

.tp-revslider-slidesli,
.tp-revslider-mainul	{	
	padding:0 !important; 
	margin:0 !important; 
	list-style:none !important;
}

.rev_slider li.tp-revslider-slidesli {
    position: absolute !important;
}


.tp-caption .rs-untoggled-content { display:block;}
.tp-caption .rs-toggled-content { display:none;}

.rs-toggle-content-active.tp-caption .rs-toggled-content { display:block;}
.rs-toggle-content-active.tp-caption .rs-untoggled-content { display:none;}

.rev_slider .tp-caption,
.rev_slider .caption 	{ 
	position:relative;  
	visibility:hidden; 
	white-space: nowrap;
	display: block;	
	-webkit-font-smoothing: antialiased !important;
	z-index:1;
}

.rev_slider .tp-caption,
.rev_slider .caption,
.tp-simpleresponsive img {
	-moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.rev_slider .tp-mask-wrap .tp-caption,
.rev_slider .tp-mask-wrap *:last-child,
.wpb_text_column .rev_slider .tp-mask-wrap .tp-caption,
.wpb_text_column .rev_slider .tp-mask-wrap *:last-child{
	margin-bottom:0;

}

.tp-svg-layer svg {	width:100%; height:100%;position: relative;vertical-align: top}

	
/* CAROUSEL FUNCTIONS */
.tp-carousel-wrapper {
	cursor:url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/openhand.cur"), move;
}
.tp-carousel-wrapper.dragged {
	cursor:url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/closedhand.cur"), move;
}

/* ADDED FOR SLIDELINK MANAGEMENT */
.tp_inner_padding {	
	box-sizing:border-box;	
	max-height:none !important;	
}


.tp-caption.tp-layer-selectable {
	-moz-user-select: all;
	-khtml-user-select: all;
	-webkit-user-select: all;
	-o-user-select: all;	
}

.tp-forcenotvisible,
.tp-hide-revslider,
.tp-caption.tp-hidden-caption,
.tp-parallax-wrap.tp-hidden-caption {	
	visibility:hidden !important; 
	display:none !important
}

.rev_slider embed,
.rev_slider iframe,
.rev_slider object,
.rev_slider audio,
.rev_slider video {
	max-width: none !important
}

.tp-element-background 	{	position:absolute; top:0px;left:0px; width:100%;height:100%;z-index:0;}

.tp-blockmask,
.tp-blockmask_in,
.tp-blockmask_out { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background: #fff; z-index: 1000; transform: scaleX(0) scaleY(0);}

.tp-parallax-wrap { transform-style: preserve-3d }

/***********************************************************
	- 	ZONES / GOUP / ROW / COLUMN LAYERS AND HELPERS 	-
***********************************************************/
.rev_row_zone					{	position:absolute; width:100%;left:0px; box-sizing: border-box;min-height:50px; font-size:0px;}

.rev_row_zone_top 				{	top:0px;}
.rev_row_zone_middle 			{	top:50%; transform:translateY(-50%);}
.rev_row_zone_bottom 			{	bottom:0px;}

.rev_column .tp-parallax-wrap  { vertical-align: top }

.rev_slider .tp-caption.rev_row 	{
	display:table;
	position:relative;
	width:100% !important;
	table-layout: fixed;
	box-sizing: border-box;
	vertical-align: top;
	height:auto !important;
	font-size:0px;
}

.rev_column {	
	display: table-cell;
	position: relative;
	vertical-align: top;
	height: auto;
	box-sizing: border-box;	
	font-size:0px;
}

.rev_column_inner {
	box-sizing: border-box;
	display: block;
	position: relative;
	width:100% !important;
	height:auto !important;
	white-space: normal !important;
}

.rev_column_bg {
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    box-sizing: border-box;
    background-clip: content-box;
    border: 0px solid transparent;
}



.rev_column_inner .tp-parallax-wrap,
.rev_column_inner .tp-loop-wrap,
.rev_column_inner .tp-mask-wrap 			{	text-align: inherit; }
.rev_column_inner .tp-mask-wrap 			{	display: inline-block;}


.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,
.rev_column_inner .tp-parallax-wrap .tp-mask-wrap,
.rev_column_inner .tp-parallax-wrap { position: relative !important; left:auto !important; top:auto !important; line-height: 0px;}

.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,
.rev_column_inner .tp-parallax-wrap .tp-mask-wrap,
.rev_column_inner .tp-parallax-wrap,
.rev_column_inner .rev_layer_in_column { vertical-align: top; }

.rev_break_columns { display: block !important }
.rev_break_columns .tp-parallax-wrap.rev_column  { display:block !important; width:100% !important; }


/**********************************************
	-	FULLSCREEN AND FULLWIDHT CONTAINERS	-
**********************************************/


.fullscreen-container {	
	position:relative;
	padding:0;
}


.fullwidthbanner-container{
	position:relative;
	padding:0;
	overflow:hidden;
}

.fullwidthbanner-container .fullwidthabanner{
	width:100%;
	position:relative;
}



/*********************************
	-	SPECIAL TP CAPTIONS -
**********************************/

.tp-static-layers				{	
	position:absolute; z-index:101; top:0px;left:0px;
	/*pointer-events:none;*/

}


.tp-caption .frontcorner		{
	width: 0;
	height: 0;
	border-left: 40px solid transparent;
	border-right: 0px solid transparent;
	border-top: 40px solid #00A8FF;
	position: absolute;left:-40px;top:0px;
}

.tp-caption .backcorner		{
	width: 0;
	height: 0;
	border-left: 0px solid transparent;
	border-right: 40px solid transparent;
	border-bottom: 40px solid #00A8FF;
	position: absolute;right:0px;top:0px;
}

.tp-caption .frontcornertop		{
	width: 0;
	height: 0;
	border-left: 40px solid transparent;
	border-right: 0px solid transparent;
	border-bottom: 40px solid #00A8FF;
	position: absolute;left:-40px;top:0px;
}

.tp-caption .backcornertop		{
	width: 0;
	height: 0;
	border-left: 0px solid transparent;
	border-right: 40px solid transparent;
	border-top: 40px solid #00A8FF;
	position: absolute;right:0px;top:0px;
}
									
.tp-layer-inner-rotation {	
	position: relative !important;
}		


/***********************************************
	-	SPECIAL ALTERNATIVE IMAGE SETTINGS	-
***********************************************/

img.tp-slider-alternative-image	{	
	width:100%; height:auto;
}


/******************************
	-	IE8 HACKS	-
*******************************/
.noFilterClass {
	filter:none !important;
}


/********************************
	-	FULLSCREEN VIDEO	-
*********************************/

.rs-background-video-layer 		{	position: absolute;top:0px;left:0px; width:100%;height:100%;visibility: hidden;z-index: 0;}

.tp-caption.coverscreenvideo	{	width:100%;height:100%;top:0px;left:0px;position:absolute;}
.caption.fullscreenvideo,
.tp-caption.fullscreenvideo		{	left:0px; top:0px; position:absolute;width:100%;height:100%}

.caption.fullscreenvideo iframe,
.caption.fullscreenvideo audio,
.caption.fullscreenvideo video,
.tp-caption.fullscreenvideo iframe,
.tp-caption.fullscreenvideo iframe audio,
.tp-caption.fullscreenvideo iframe video	{ width:100% !important; height:100% !important; display: none}

.fullcoveredvideo audio,
.fullscreenvideo audio
.fullcoveredvideo video,
.fullscreenvideo video				{	background: #000}

.fullcoveredvideo .tp-poster		{	background-position: center center;background-size: cover;width:100%;height:100%;top:0px;left:0px}


.videoisplaying .html5vid .tp-poster	{	display: none}

.tp-video-play-button					{	
	background:#000;
	background:rgba(0,0,0,0.3);										
	border-radius:5px;
	position: absolute;
	top: 50%;
	left: 50%;										
	color: #FFF;
	z-index: 3;
	margin-top: -25px;
	margin-left: -25px;
	line-height: 50px !important;
	text-align: center;
	cursor: pointer;
	width: 50px;
	height:50px;
	box-sizing: border-box;
	
	display: inline-block;	
	vertical-align: top;
	z-index: 4;
	opacity: 0;	
	transition:opacity 300ms ease-out !important;				
}

.tp-hiddenaudio,
.tp-audio-html5 .tp-video-play-button { display:none !important;text-align: center}
.tp-caption .html5vid					{	width:100% !important; height:100% !important;}									
.tp-video-play-button i 				{	width:50px;height:50px; display:inline-block; text-align: center; vertical-align: top; line-height: 50px !important; font-size: 40px !important;}									
.tp-caption:hover .tp-video-play-button	{	opacity: 1; display:block;}
.tp-caption .tp-revstop					{	display:none; border-left:5px solid #fff !important; border-right:5px solid #fff !important;margin-top:15px !important;line-height: 20px !important;vertical-align: top; font-size:25px !important;}
.videoisplaying .revicon-right-dir		{	display:none}
.videoisplaying .tp-revstop				{	display:inline-block}

.videoisplaying  .tp-video-play-button			{	display:none;text-align: center!important;}
.tp-video-play-button{text-align: center!important;}

.fullcoveredvideo .tp-video-play-button			{	display:none !important;text-align: center}


.fullscreenvideo .fullscreenvideo audio 		{	object-fit:contain !important;}
.fullscreenvideo .fullscreenvideo video 		{	object-fit:contain !important;}

.fullscreenvideo .fullcoveredvideo audio 		{	object-fit:cover !important;}
.fullscreenvideo .fullcoveredvideo video 		{	object-fit:cover !important;}

.tp-video-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 5px;
	opacity: 0;	
	transition: opacity .3s;
	background-image: linear-gradient(to bottom, rgb(0,0,0) 13%, rgb(50,50,50) 100%);		
	display:table;max-width:100%; overflow:hidden;box-sizing:border-box;
}

.tp-caption:hover .tp-video-controls {	opacity: .9;}

.tp-video-button {
	background: rgba(0,0,0,.5);
	border: 0;
	color: #EEE;	
	border-radius: 3px;
	cursor:pointer;
	line-height:12px;
	font-size:12px;
	color:#fff;
	padding:0px;
	margin:0px;
	outline: none;
	}
.tp-video-button:hover 				{	cursor: pointer;}


.tp-video-button-wrap,
.tp-video-seek-bar-wrap,
.tp-video-vol-bar-wrap 				{ 	padding:0px 5px;display:table-cell; vertical-align: middle;}

.tp-video-seek-bar-wrap				{	width:80%}
.tp-video-vol-bar-wrap				{	width:20%}

.tp-volume-bar,
.tp-seek-bar						{	width:100%; cursor: pointer;  outline:none; line-height:12px;margin:0; padding:0;}


.rs-fullvideo-cover					{	width:100%;height:100%;top:0px;left:0px;position: absolute; background:transparent;z-index:5;}


.disabled_lc .tp-video-play-button,
.rs-background-video-layer video::-webkit-media-controls-start-playback-button,
.rs-background-video-layer video::-webkit-media-controls,
.rs-background-video-layer audio::-webkit-media-controls { display:none !important;}
 

.tp-audio-html5 .tp-video-controls {	opacity: 1 !important; visibility: visible !important}

 


/********************************
	-	DOTTED OVERLAYS	-
*********************************/
.tp-dottedoverlay						{	background-repeat:repeat;width:100%;height:100%;position:absolute;top:0px;left:0px;z-index:3}
.tp-dottedoverlay.twoxtwo				{	background:url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/assets/gridtile.png")}
.tp-dottedoverlay.twoxtwowhite			{	background:url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/assets/gridtile_white.png")}
.tp-dottedoverlay.threexthree			{	background:url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/assets/gridtile_3x3.png")}
.tp-dottedoverlay.threexthreewhite		{	background:url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/assets/gridtile_3x3_white.png")}


/******************************
	-	SHADOWS		-
******************************/

.tp-shadowcover	{	width:100%;height:100%;top:0px;left:0px;background: #fff;position: absolute; z-index: -1;}
.tp-shadow1 	{	box-shadow: 0 10px 6px -6px rgba(0,0,0,0.8);}

.tp-shadow2:before, .tp-shadow2:after,
.tp-shadow3:before, .tp-shadow4:after
{
  z-index: -2;
  position: absolute;
  content: "";
  bottom: 10px;
  left: 10px;
  width: 50%;
  top: 85%;
  max-width:300px;
  background: transparent;  
  box-shadow: 0 15px 10px rgba(0,0,0,0.8);
  
  transform: rotate(-3deg);
}

.tp-shadow2:after,
.tp-shadow4:after
{  
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

.tp-shadow5
{
  	position:relative;        
    box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.tp-shadow5:before, .tp-shadow5:after
{
	content:"";
    position:absolute; 
    z-index:-2;    
    box-shadow:0 0 25px 0px  rgba(0,0,0,0.6);
    top:30%;
    bottom:0;
    left:20px;
    right:20px;    
    border-radius:100px / 20px;
}

/******************************
	-	BUTTONS	-
*******************************/

.tp-button{
	padding:6px 13px 5px;
	border-radius: 3px;	
	height:30px;
	cursor:pointer;
	color:#fff !important; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6) !important; font-size:15px; line-height:45px !important;
	font-family: arial, sans-serif; font-weight: bold; letter-spacing: -1px;
	text-decoration:none;
}

.tp-button.big	{	color:#fff; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6); font-weight:bold; padding:9px 20px; font-size:19px;  line-height:57px !important; }


.purchase:hover,
.tp-button:hover,
.tp-button.big:hover {	background-position:bottom, 15px 11px}

	
/*	BUTTON COLORS	*/

.tp-button.green, .tp-button:hover.green,
.purchase.green, .purchase:hover.green			{ background-color:#21a117;box-shadow:0px 3px 0px 0px #104d0b;}

.tp-button.blue, .tp-button:hover.blue,
.purchase.blue, .purchase:hover.blue			{ background-color:#1d78cb;box-shadow:0px 3px 0px 0px #0f3e68}

.tp-button.red, .tp-button:hover.red,
.purchase.red, .purchase:hover.red				{ background-color:#cb1d1d;box-shadow:0px 3px 0px 0px #7c1212}

.tp-button.orange, .tp-button:hover.orange,
.purchase.orange, .purchase:hover.orange		{ background-color:#ff7700;box-shadow:0px 3px 0px 0px #a34c00}

.tp-button.darkgrey,.tp-button.grey,
.tp-button:hover.darkgrey,.tp-button:hover.grey,
.purchase.darkgrey, .purchase:hover.darkgrey	{ background-color:#555;box-shadow:0px 3px 0px 0px #222}

.tp-button.lightgrey, .tp-button:hover.lightgrey,
.purchase.lightgrey, .purchase:hover.lightgrey	{ background-color:#888;box-shadow:0px 3px 0px 0px #555}



/* TP BUTTONS DESKTOP SIZE */

.rev-btn,
.rev-btn:visited						{ 	outline:none !important; box-shadow:none !important; text-decoration: none !important; line-height: 44px; font-size: 17px; font-weight: 500; padding: 12px 35px; box-sizing:border-box;  font-family: "Roboto", sans-serif;  cursor: pointer;}

.rev-btn.rev-uppercase,
.rev-btn.rev-uppercase:visited			{ 	text-transform: uppercase; letter-spacing: 1px; font-size: 15px; font-weight: 900; }

.rev-btn.rev-withicon i					{ 	font-size: 15px; font-weight: normal; position: relative; top: 0px; transition: all 0.2s ease-out !important; margin-left:10px !important;}

.rev-btn.rev-hiddenicon i				{ 	font-size: 15px; font-weight: normal; position: relative; top: 0px; transition: all 0.2s ease-out !important;  opacity: 0; margin-left:0px !important; width:0px !important;  }
.rev-btn.rev-hiddenicon:hover i			{   opacity: 1 !important; margin-left:10px !important; width:auto !important;}

/* REV BUTTONS MEDIUM */
.rev-btn.rev-medium,
.rev-btn.rev-medium:visited				{	 line-height: 36px; font-size: 14px; padding: 10px 30px; }

.rev-btn.rev-medium.rev-withicon i		{ 	font-size: 14px; top: 0px; }

.rev-btn.rev-medium.rev-hiddenicon i	{ 	font-size: 14px; top: 0px; }


/* REV BUTTONS SMALL */
.rev-btn.rev-small,
.rev-btn.rev-small:visited				{	line-height: 28px; font-size: 12px; padding: 7px 20px; }

.rev-btn.rev-small.rev-withicon i		{	font-size: 12px; top: 0px; }

.rev-btn.rev-small.rev-hiddenicon i		{ 	font-size: 12px; top: 0px; }


/* ROUNDING OPTIONS */
.rev-maxround 							{ 	border-radius: 30px; }
.rev-minround 							{ 	border-radius: 3px; }	


/* BURGER BUTTON */
.rev-burger {
  position: relative;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  padding: 22px 0 0 14px;
  border-radius: 50%;
  border: 1px solid rgba(51,51,51,0.25);
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.rev-burger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #333;
  transition: .7s;
  pointer-events: none;
  transform-style: flat !important;
}
.rev-burger span:nth-child(2) {
  margin: 3px 0;
}

#dialog_addbutton .rev-burger:hover :first-child,
.open .rev-burger :first-child,
.open.rev-burger :first-child {
  transform: translateY(6px) rotate(-45deg);
 
}
#dialog_addbutton .rev-burger:hover :nth-child(2),
.open .rev-burger :nth-child(2),
.open.rev-burger :nth-child(2) {
  transform: rotate(-45deg);
 
  opacity: 0;
}
#dialog_addbutton .rev-burger:hover :last-child,
.open .rev-burger :last-child,
.open.rev-burger :last-child {
  transform: translateY(-6px) rotate(-135deg);
 
}

.rev-burger.revb-white {
  border: 2px solid rgba(255,255,255,0.2);
}
.rev-burger.revb-white span {
  background: #fff;
}
.rev-burger.revb-whitenoborder {
  border: 0;
}
.rev-burger.revb-whitenoborder span {
  background: #fff;
}
.rev-burger.revb-darknoborder {
  border: 0;
}
.rev-burger.revb-darknoborder span {
  background: #333;
}

.rev-burger.revb-whitefull {
  background: #fff;
  border:none;
}

.rev-burger.revb-whitefull span {
	background:#333;
}

.rev-burger.revb-darkfull {
  background: #333;
  border:none;
}

.rev-burger.revb-darkfull span {
	background:#fff;
}


/* SCROLL DOWN BUTTON */

@keyframes rev-ani-mouse {
	0% {opacity: 1;top: 29%;}
	15% {opacity: 1;top: 50%;}
	50% {opacity: 0;top: 50%;}
	100% {opacity: 0;top: 29%;}
}
.rev-scroll-btn {
	display: inline-block;
	position: relative;
	left: 0;
	right: 0;
	text-align: center;
	cursor: pointer;
	width:35px;
	height:55px;	
	box-sizing: border-box;
	border: 3px solid white;
	border-radius: 23px;
}
.rev-scroll-btn > * {
	display: inline-block;
	line-height: 18px;
	font-size: 13px;
	font-weight: normal;
	color: #7f8c8d;
	color: #ffffff;
	font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
	letter-spacing: 2px;
}
.rev-scroll-btn > *:hover,
.rev-scroll-btn > *:focus,
.rev-scroll-btn > *.active {
	color: #ffffff;
}
.rev-scroll-btn > *:hover,
.rev-scroll-btn > *:focus,
.rev-scroll-btn > *:active,
.rev-scroll-btn > *.active {
	opacity: 0.8;
}

.rev-scroll-btn.revs-fullwhite  {
	background:#fff;
}

.rev-scroll-btn.revs-fullwhite span {
	background: #333;	
}

.rev-scroll-btn.revs-fulldark  {
	background:#333;
	border:none;
}

.rev-scroll-btn.revs-fulldark  span {
	background: #fff;	
}

.rev-scroll-btn span {
	position: absolute;
	display: block;
	top: 29%;
	left: 50%;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	background: white;
	border-radius: 50%;	
	animation: rev-ani-mouse 2.5s linear infinite;
}

.rev-scroll-btn.revs-dark {
	border-color:#333;
}
.rev-scroll-btn.revs-dark span {
	background: #333;	
}

.rev-control-btn {
	position: relative;
	display: inline-block;
	z-index: 5;	
	color: #FFF;  
	font-size: 20px;
	line-height: 60px;
	font-weight: 400;
	font-style: normal;
	font-family: Raleway;	
	text-decoration: none;
	text-align: center;
	background-color: #000;	
	border-radius: 50px;	
	text-shadow: none;
	background-color: rgba(0, 0, 0, 0.50);
	width:60px;
	height:60px;
	box-sizing: border-box;
	cursor: pointer;
}

.rev-cbutton-dark-sr	{	
	border-radius: 3px;		
}

.rev-cbutton-light	{	
	color: #333;  	
	background-color: rgba(255,255,255, 0.75);	
}

.rev-cbutton-light-sr	{		
	color: #333;  	
	border-radius: 3px;		
	background-color: rgba(255,255,255, 0.75);
}


.rev-sbutton {	
	line-height: 37px;	
	width:37px;
	height:37px;	
}

.rev-sbutton-blue	{	
	background-color: #3B5998
}
.rev-sbutton-lightblue	{	
	background-color: #00A0D1;
}
.rev-sbutton-red	{	
	background-color: #DD4B39;
}




/************************************
-	TP BANNER TIMER		-
*************************************/
.tp-bannertimer								{	visibility: hidden; width:100%; height:5px; background:#000; background:rgba(0,0,0,0.15); position:absolute; z-index:200; top:0px}
.tp-bannertimer.tp-bottom					{	top:auto; bottom:0px !important;height:5px}



/*********************************************
-	BASIC SETTINGS FOR THE BANNER	-
***********************************************/

 

.tp-caption img {
	background: transparent;
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
	zoom:1;
}

.tp-caption img {  }



.caption.slidelink a div,
.tp-caption.slidelink a div {	width:3000px; height:1500px;  background:url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/assets/coloredbg.png") repeat}
.tp-caption.slidelink a span{	background:url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/assets/coloredbg.png") repeat}
.tp-shape {	width:100%;height:100%;}



/*********************************************
-	WOOCOMMERCE STYLES	-
***********************************************/

.tp-caption .rs-starring				{	display: inline-block}


.tp-caption .rs-starring .star-rating {
	float: none;	
	display: inline-block;
    vertical-align: top;
    color: #FFC321 !important;
}


.tp-caption .rs-starring .star-rating, 
.tp-caption .rs-starring-page .star-rating {	
	position: relative;
	height: 1em;	
	width: 5.4em;
	font-family: star;
	font-size: 1em !important;
}

.tp-caption  .rs-starring .star-rating:before, 
.tp-caption  .rs-starring-page .star-rating:before {
	content: "\73\73\73\73\73";
	color: #E0DADF;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
}

.tp-caption .rs-starring .star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em;
	font-size: 1em !important;
}

.tp-caption .rs-starring .star-rating span:before,
.tp-caption .rs-starring .star-rating span:before {
	content: "\53\53\53\53\53";
	top: 0;
	position: absolute;
	left: 0;
}




/******************************
	-	LOADER FORMS	-
********************************/

.tp-loader 	{
	top:50%; left:50%;
	z-index:10000;
	position:absolute;
}

.tp-loader.spinner0 {
	width: 40px;
	height: 40px;
	background-color: #fff;
	background-image:url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/assets/loader.gif");
	background-repeat:no-repeat;
	background-position: center center;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);	
	margin-top:-20px;
	margin-left:-20px;	
	animation: tp-rotateplane 1.2s infinite ease-in-out;
	border-radius: 3px;	
}


.tp-loader.spinner1 {
	width: 40px;
	height: 40px;
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);	
	margin-top:-20px;
	margin-left:-20px;	
	animation: tp-rotateplane 1.2s infinite ease-in-out;
	border-radius: 3px;	
}



.tp-loader.spinner5 	{	
	background-image:url("/DesktopModules/DNNGo_LayerGalleryPro/Resource/css/assets/loader.gif");
	background-repeat:no-repeat;
	background-position:10px 10px;
	background-color:#fff;
	margin:-22px -22px;
	width:44px;height:44px;
	border-radius: 3px;	
}


@keyframes tp-rotateplane {
  0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg);} 
  50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);} 
  100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);}
}


.tp-loader.spinner2 {
	width: 40px;
	height: 40px;
	margin-top:-20px;margin-left:-20px;
	background-color: #ff0000;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);	
	border-radius: 100%;	
	animation: tp-scaleout 1.0s infinite ease-in-out;
}


@keyframes tp-scaleout {
  0% {transform: scale(0.0);} 
  100% {transform: scale(1.0);opacity: 0;}
}


.tp-loader.spinner3 {
  margin: -9px 0px 0px -35px;
  width: 70px;
  text-align: center;
}

.tp-loader.spinner3 .bounce1,
.tp-loader.spinner3 .bounce2,
.tp-loader.spinner3 .bounce3 {
  width: 18px;
  height: 18px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);  
  border-radius: 100%;
  display: inline-block;  
  animation: tp-bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */  
  animation-fill-mode: both;
}

.tp-loader.spinner3 .bounce1 {
  animation-delay: -0.32s;
}

.tp-loader.spinner3 .bounce2 {  
  animation-delay: -0.16s;
}

@keyframes tp-bouncedelay {
  0%, 80%, 100% {transform: scale(0.0);} 
  40% {transform: scale(1.0);}
}




.tp-loader.spinner4 {
  margin: -20px 0px 0px -20px;
  width: 40px;
  height: 40px;
  text-align: center;
  animation: tp-rotate 2.0s infinite linear;
}

.tp-loader.spinner4 .dot1,
.tp-loader.spinner4 .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 100%;  
  animation: tp-bounce 2.0s infinite ease-in-out;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);  
}

.tp-loader.spinner4 .dot2 {
  top: auto;
  bottom: 0px;  
  animation-delay: -1.0s;
}


@keyframes tp-rotate { 100% { transform: rotate(360deg);}}

@keyframes tp-bounce {
  0%, 100% {transform: scale(0.0);} 
  50% { transform: scale(1.0);}
}



/***********************************************
	-  STANDARD NAVIGATION SETTINGS 
***********************************************/


.tp-thumbs.navbar,
.tp-bullets.navbar,
.tp-tabs.navbar					{	border:none; min-height: 0; margin:0; border-radius: 0; }

.tp-tabs,
.tp-thumbs,
.tp-bullets						{	position:absolute; display:block; z-index:1000; top:0px; left:0px;}

.tp-tab,
.tp-thumb 						{	cursor: pointer; position:absolute;opacity:0.5;  box-sizing: border-box;}

.tp-arr-imgholder,
.tp-videoposter,
.tp-thumb-image,
.tp-tab-image					{	background-position: center center; background-size:cover;width:100%;height:100%; display:block; position:absolute;top:0px;left:0px;}

.tp-tab:hover,
.tp-tab.selected,
.tp-thumb:hover,
.tp-thumb.selected				{	opacity:1;}

.tp-tab-mask,
.tp-thumb-mask 					{	box-sizing:border-box !important; }

.tp-tabs,
.tp-thumbs						{	box-sizing:content-box !important; }

.tp-bullet 						{	width:15px;height:15px; position:absolute; background:#fff; background:rgba(255,255,255,0.3); cursor: pointer;}
.tp-bullet.selected,
.tp-bullet:hover				{	background:#fff;}




.tparrows						{	cursor:pointer; background:#000; background:rgba(0,0,0,0.5); width:40px;height:40px;position:absolute; display:block; z-index:1000; }
.tparrows:hover 				{	background:#000;}
.tparrows:before				{	font-family: "revicons"; font-size:15px; color:#fff; display:block; line-height: 40px; text-align: center;}
.tparrows.tp-leftarrow:before	{	content: '\e824'; }
.tparrows.tp-rightarrow:before	{	content: '\e825'; }



/***************************
	- KEN BURNS FIXES -
***************************/

body.rtl .tp-kbimg {left: 0 !important}



/***************************
	- 3D SHADOW MODE -
***************************/

.dddwrappershadow { box-shadow:0 45px 100px rgba(0, 0, 0, 0.4);}

/*******************
	- DEBUG MODE -
*******************/

.hglayerinfo				   {	  position: fixed;
  bottom: 0px;
  left: 0px;
  color: #FFF;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.75);
  padding: 5px 10px;
  z-index: 2000;
  white-space: normal;}
.hginfo 					   { 	position:absolute;top:-2px;left:-2px;color:#e74c3c;font-size:12px;font-weight:600; background:#000;padding:2px 5px;}
.indebugmode .tp-caption:hover { 	border:1px dashed #c0392b !important;}
.helpgrid 					   { 	border:2px dashed #c0392b;position:absolute;top:0px;left:0px;z-index:0 }
#revsliderlogloglog				{	padding:15px;color:#fff;position:fixed; top:0px;left:0px;width:200px;height:150px;background:rgba(0,0,0,0.7); z-index:100000; font-size:10px; overflow:scroll;}



/** 
INSTAGRAM FILTERS BY UNA 
https://una.im/CSSgram/
**/
.aden{filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)}.aden::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.perpetua::after,.reyes::after{mix-blend-mode:soft-light;opacity:.5}.inkwell{filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)}.perpetua::after{background:linear-gradient(to bottom,#005b9a,#e6c13d)}.reyes{filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)}.reyes::after{background:#efcdad}.gingham{filter:brightness(1.05) hue-rotate(-10deg)}.gingham::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.toaster{filter:contrast(1.5) brightness(.9)}.toaster::after{background:radial-gradient(circle,#804e0f,#3b003b);mix-blend-mode:screen}.walden{filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)}.walden::after{background:#04c;mix-blend-mode:screen;opacity:.3}.hudson{filter:brightness(1.2) contrast(.9) saturate(1.1)}.hudson::after{background:radial-gradient(circle,#a6b1ff 50%,#342134);mix-blend-mode:multiply;opacity:.5}.earlybird{filter:contrast(.9) sepia(.2)}.earlybird::after{background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%);mix-blend-mode:overlay}.mayfair{filter:contrast(1.1) saturate(1.1)}.mayfair::after{background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%);mix-blend-mode:overlay;opacity:.4}.lofi{filter:saturate(1.1) contrast(1.5)}.lofi::after{background:radial-gradient(circle,transparent 70%,#222 150%);mix-blend-mode:multiply}._1977{filter:contrast(1.1) brightness(1.1) saturate(1.3)}._1977:after{background:rgba(243,106,188,.3);mix-blend-mode:screen}.brooklyn{filter:contrast(.9) brightness(1.1)}.brooklyn::after{background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8);mix-blend-mode:overlay}.xpro2{filter:sepia(.3)}.xpro2::after{background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%);mix-blend-mode:color-burn}.nashville{filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)}.nashville::after{background:rgba(0,70,150,.4);mix-blend-mode:lighten}.nashville::before{background:rgba(247,176,153,.56);mix-blend-mode:darken}.lark{filter:contrast(.9)}.lark::after{background:rgba(242,242,242,.8);mix-blend-mode:darken}.lark::before{background:#22253f;mix-blend-mode:color-dodge}.moon{filter:grayscale(1) contrast(1.1) brightness(1.1)}.moon::before{background:#a0a0a0;mix-blend-mode:soft-light}.moon::after{background:#383838;mix-blend-mode:lighten}.clarendon{filter:contrast(1.2) saturate(1.35)}.clarendon:before{background:rgba(127,187,227,.2);mix-blend-mode:overlay}.willow{filter:grayscale(.5) contrast(.95) brightness(.9)}.willow::before{background-color:radial-gradient(40%,circle,#d4a9af 55%,#000 150%);mix-blend-mode:overlay}.willow::after{background-color:#d8cdcb;mix-blend-mode:color}.rise{filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)}.rise::after{background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%);mix-blend-mode:overlay;opacity:.6}.rise::before{background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4));mix-blend-mode:multiply}._1977:after,._1977:before,.aden:after,.aden:before,.brooklyn:after,.brooklyn:before,.clarendon:after,.clarendon:before,.earlybird:after,.earlybird:before,.gingham:after,.gingham:before,.hudson:after,.hudson:before,.inkwell:after,.inkwell:before,.lark:after,.lark:before,.lofi:after,.lofi:before,.mayfair:after,.mayfair:before,.moon:after,.moon:before,.nashville:after,.nashville:before,.perpetua:after,.perpetua:before,.reyes:after,.reyes:before,.rise:after,.rise:before,.slumber:after,.slumber:before,.toaster:after,.toaster:before,.walden:after,.walden:before,.willow:after,.willow:before,.xpro2:after,.xpro2:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}._1977,.aden,.brooklyn,.clarendon,.earlybird,.gingham,.hudson,.inkwell,.lark,.lofi,.mayfair,.moon,.nashville,.perpetua,.reyes,.rise,.slumber,.toaster,.walden,.willow,.xpro2{position:relative}._1977 img,.aden img,.brooklyn img,.clarendon img,.earlybird img,.gingham img,.hudson img,.inkwell img,.lark img,.lofi img,.mayfair img,.moon img,.nashville img,.perpetua img,.reyes img,.rise img,.slumber img,.toaster img,.walden img,.willow img,.xpro2 img{width:100%;z-index:1}._1977:before,.aden:before,.brooklyn:before,.clarendon:before,.earlybird:before,.gingham:before,.hudson:before,.inkwell:before,.lark:before,.lofi:before,.mayfair:before,.moon:before,.nashville:before,.perpetua:before,.reyes:before,.rise:before,.slumber:before,.toaster:before,.walden:before,.willow:before,.xpro2:before{z-index:2}._1977:after,.aden:after,.brooklyn:after,.clarendon:after,.earlybird:after,.gingham:after,.hudson:after,.inkwell:after,.lark:after,.lofi:after,.mayfair:after,.moon:after,.nashville:after,.perpetua:after,.reyes:after,.rise:after,.slumber:after,.toaster:after,.walden:after,.willow:after,.xpro2:after{z-index:3}.slumber{filter:saturate(.66) brightness(1.05)}.slumber::after{background:rgba(125,105,24,.5);mix-blend-mode:soft-light}.slumber::before{background:rgba(69,41,12,.4);mix-blend-mode:lighten}
.tp-kbimg-wrap:before,
.tp-kbimg-wrap:after {height:500%;width:500%}


[data-type="button"]{
	cursor: pointer;
}

[data-title="{{title}}"]{
	visibility: hidden
}







/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ARES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
.ares.tparrows {
  cursor:pointer;
  background:#fff;
  min-width:60px;
    min-height:60px;
  position:absolute;
  display:block;
  z-index:100;
    border-radius:50%;
}
.ares.tparrows:hover {
}
.ares.tparrows:before {
  font-family: "revicons";
  font-size:25px;
  color:#aaa;
  display:block;
  line-height: 60px;
  text-align: center;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    z-index:2;
    position:relative;
}
.ares.tparrows.tp-leftarrow:before {
  content: "\e81f";
}
.ares.tparrows.tp-rightarrow:before {
  content: "\e81e";
}
.ares.tparrows:hover:before {
 color:#000;
      }
.ares .tp-title-wrap { 
  position:absolute;
  z-index:1;
  display:inline-block;
  background:#fff;
  min-height:60px;
  line-height:60px;
  top:0px;
  margin-left:30px;
  border-radius:0px 30px 30px 0px;
  overflow:hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:scaleX(0);  
  -webkit-transform:scaleX(0);  
  transform-origin:0% 50%; 
   -webkit-transform-origin:0% 50%;
}
 .ares.tp-rightarrow .tp-title-wrap { 
   right:0px;
   margin-right:30px;margin-left:0px;
   -webkit-transform-origin:100% 50%;
border-radius:30px 0px 0px 30px;
 }
.ares.tparrows:hover .tp-title-wrap {
  transform:scaleX(1) scaleY(1);
    -webkit-transform:scaleX(1) scaleY(1);
}
.ares .tp-arr-titleholder {
  position:relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:translateX(200px);  
  text-transform:uppercase;
  color:#000;
  font-weight:400;
  font-size:14px;
  line-height:60px;
  white-space:nowrap;
  padding:0px 20px;
  margin-left:10px;
  opacity:0;
}

.ares.tp-rightarrow .tp-arr-titleholder {
   transform:translateX(-200px); 
   margin-left:0px; margin-right:10px;
      }

.ares.tparrows:hover .tp-arr-titleholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

/* BULLETS */
.ares.tp-bullets {
}
.ares.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.ares .tp-bullet {
	width:13px;
	height:13px;
	position:absolute;
	background:#e5e5e5;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.ares .tp-bullet:hover,
.ares .tp-bullet.selected {
	background:#fff;
}
.ares .tp-bullet-title {
  position:absolute;
  color:#888;
  font-size:12px;
  padding:0px 10px;
  font-weight:600;
  right:27px;
  top:-4px;
  background:#fff;
  background:rgba(255,255,255,0.75);
  visibility:hidden;
  transform:translateX(-20px);
  -webkit-transform:translateX(-20px);
  transition:transform 0.3s;
  -webkit-transition:transform 0.3s;
  line-height:20px;
  white-space:nowrap;
}     

.ares .tp-bullet-title:after {
    width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent rgba(255,255,255,0.75);
	content:" ";
    position:absolute;
    right:-10px;
	top:0px;
}
    
.ares .tp-bullet:hover .tp-bullet-title{
  visibility:visible;
   transform:translateX(0px);
  -webkit-transform:translateX(0px);
}

.ares .tp-bullet.selected:hover .tp-bullet-title {
    background:#fff;
        }
.ares .tp-bullet.selected:hover .tp-bullet-title:after {
  border-color:transparent transparent transparent #fff;
}
.ares.tp-bullets:hover .tp-bullet-title {
        visibility:hidden;
}
.ares.tp-bullets:hover .tp-bullet:hover .tp-bullet-title {
    visibility:visible;
      }

/* TABS */
.ares .tp-tab { 
  opacity:1;      
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #e5e5e5;
 }
.ares .tp-tab-image 
{ 
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.ares .tp-tab-content 
{
    background:rgba(0,0,0,0); 
    position:relative;
    padding:15px 15px 15px 85px;
 left:0px;
 overflow:hidden;
 margin-top:-15px;
    box-sizing:border-box;
    color:#333;
    display: inline-block;
    width:100%;
    height:100%;
 position:absolute; }
.ares .tp-tab-date
  {
  display:block;
  color: #aaa;
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
  }
.ares .tp-tab-title 
{
    display:block;	
    text-align:left;
    color:#333;
    font-size:14px;
    font-weight:500;
    text-transform:none;
    line-height:17px;
}
.ares .tp-tab:hover,
.ares .tp-tab.selected {
	background:#eee; 
}

.ares .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 CUSTOM SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.custom.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:10000;
}
.custom.tparrows:hover {
	background:#000;
}
.custom.tparrows:before {
	font-family: "revicons";
	font-size:15px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.custom.tparrows.tp-leftarrow:before {
	content: "\e824";
}
.custom.tparrows.tp-rightarrow:before {
	content: "\e825";
}



/* BULLETS */
.custom.tp-bullets {
}
.custom.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.custom .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#aaa;
    background:rgba(125,125,125,0.5);
	cursor: pointer;
	box-sizing:content-box;
}
.custom .tp-bullet:hover,
.custom .tp-bullet.selected {
	background:rgb(125,125,125);
}
.custom .tp-bullet-image {
}
.custom .tp-bullet-title {
}


/* THUMBS */


/* TABS */


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 DIONE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.dione.tparrows {
  height:100%;
  width:100px;
  background:transparent;
  background:rgba(0,0,0,0);
  line-height:100%;
  transition:all 0.3s;
-webkit-transition:all 0.3s;
}

.dione.tparrows:hover {
 background:rgba(0,0,0,0.45);
 }
.dione .tp-arr-imgwrapper {
 width:100px;
 left:0px;
 position:absolute;
 height:100%;
 top:0px;
 overflow:hidden;
 }
.dione.tp-rightarrow .tp-arr-imgwrapper {
left:auto;
right:0px;
}

.dione .tp-arr-imgholder {
background-position:center center;
background-size:cover;
width:100px;
height:100%;
top:0px;
visibility:hidden;
transform:translateX(-50px);
-webkit-transform:translateX(-50px);
transition:all 0.3s;
-webkit-transition:all 0.3s;
opacity:0;
left:0px;
}

.dione.tparrows.tp-rightarrow .tp-arr-imgholder {
  right:0px;
  left:auto;
  transform:translateX(50px);
 -webkit-transform:translateX(50px);
}

.dione.tparrows:before {
position:absolute;
line-height:30px;
margin-left:-22px;
top:50%;
left:50%;
font-size:30px;
margin-top:-15px;
transition:all 0.3s;
-webkit-transition:all 0.3s;
}

.dione.tparrows.tp-rightarrow:before {
margin-left:6px;
}

.dione.tparrows:hover:before {
  transform:translateX(-20px);
-webkit-transform:translateX(-20px);
opacity:0;
}

.dione.tparrows.tp-rightarrow:hover:before {
  transform:translateX(20px);
-webkit-transform:translateX(20px);
}

.dione.tparrows:hover .tp-arr-imgholder {
 transform:translateX(0px);
-webkit-transform:translateX(0px);
opacity:1;
visibility:visible;
}



/* BULLETS */
.dione .tp-bullet { 
    opacity:1;
    width:50px;
    height:50px;    
    padding:3px;
    background:#000;
    background-color:rgba(0,0,0,0.25);
    margin:0px;
    box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;

  }

.dione .tp-bullet-image {
   display:block;
   box-sizing:border-box;
   position:relative;
    -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  width:44px;
  height:44px;
  background-size:cover;
  background-position:center center;
 }  
.dione .tp-bullet-title { 
     position:absolute; 
   bottom:65px;
     display:inline-block;
     left:50%;
     background:#000;
     background:rgba(0,0,0,0.75);
     color:#fff;
     padding:10px 30px;
     border-radius:4px;
   -webkit-border-radius:4px;
     opacity:0;
      transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin:50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin:50% 100%;
    opacity:0;
    white-space:nowrap;
 }

.dione .tp-bullet:hover .tp-bullet-title {
     transform:rotateX(0deg) translateX(-50%);
    -webkit-transform:rotateX(0deg) translateX(-50%);
    opacity:1;
}

.dione .tp-bullet.selected,
.dione .tp-bullet:hover  {
  
   background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
 
      }
.dione .tp-bullet-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: rgba(0,0,0,0.75) transparent transparent transparent;
        bottom:-8px;
   }


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ERINYEN SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.erinyen.tparrows {
  cursor:pointer;
  background:#000;
  background:rgba(0,0,0,0.5);
  min-width:70px;
  min-height:70px;
  position:absolute;
  display:block;
  z-index:1000;
  border-radius:35px;   
}

.erinyen.tparrows:before {
  font-family: "revicons";
  font-size:20px;
  color:#fff;
  display:block;
  line-height: 70px;
  text-align: center;    
  z-index:2;
  position:relative;
}
.erinyen.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.erinyen.tparrows.tp-rightarrow:before {
  content: "\e825";
}

.erinyen .tp-title-wrap { 
  position:absolute;
  z-index:1;
  display:inline-block;
  background:#000;
  background:rgba(0,0,0,0.5);
  min-height:70px;
  line-height:70px;
  top:0px;
  margin-left:0px;
  border-radius:35px;
  overflow:hidden; 
  transition: opacity 0.3s;
  -webkit-transition:opacity 0.3s;
  -moz-transition:opacity 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);  
  visibility:hidden;
  opacity:0;
}

.erinyen.tparrows:hover .tp-title-wrap{
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  opacity:1;
  visibility:visible;
}
        
 .erinyen.tp-rightarrow .tp-title-wrap { 
   right:0px;
   margin-right:0px;margin-left:0px;
   -webkit-transform-origin:100% 50%;
  border-radius:35px;
  padding-right:20px;
  padding-left:10px;
 }


.erinyen.tp-leftarrow .tp-title-wrap { 
   padding-left:20px;
  padding-right:10px;
}

.erinyen .tp-arr-titleholder {
  letter-spacing: 3px;
   position:relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:translateX(200px);  
  text-transform:uppercase;
  color:#fff;
  font-weight:600;
  font-size:13px;
  line-height:70px;
  white-space:nowrap;
  padding:0px 20px;
  margin-left:11px;
  opacity:0;  
}

.erinyen .tp-arr-imgholder {
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  background-position:center center;
  background-size:cover;
    }
 .erinyen .tp-arr-img-over {
   width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
   background:#000;
   background:rgba(0,0,0,0.5);
        }
.erinyen.tp-rightarrow .tp-arr-titleholder {
   transform:translateX(-200px); 
   margin-left:0px; margin-right:11px;
      }

.erinyen.tparrows:hover .tp-arr-titleholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

/* BULLETS */
.erinyen.tp-bullets {
}
.erinyen.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background: #555555; /* old browsers */
    background: -moz-linear-gradient(top,  #555555 0%, #222222 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#555555), color-stop(100%,#222222)); /* chrome,safari4+ */
    background: -webkit-linear-gradient(top,  #555555 0%,#222222 100%); /* chrome10+,safari5.1+ */
    background: -o-linear-gradient(top,  #555555 0%,#222222 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(top,  #555555 0%,#222222 100%); /* ie10+ */
    background: linear-gradient(to bottom,  #555555 0%,#222222 100%); /* w3c */
    filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#555555", endcolorstr="#222222",gradienttype=0 ); /* ie6-9 */
	padding:10px 15px;
	margin-left:-15px;margin-top:-10px;
	box-sizing:content-box;
   border-radius:10px;
   box-shadow:0px 0px 2px 1px rgba(33,33,33,0.3);
}
.erinyen .tp-bullet {
	width:13px;
	height:13px;
	position:absolute;
	background:#111;	
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.erinyen .tp-bullet:hover,
.erinyen .tp-bullet.selected {
	background: #e5e5e5; /* old browsers */
background: -moz-linear-gradient(top,  #e5e5e5 0%, #999999 100%); /* ff3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e5e5e5), color-stop(100%,#999999)); /* chrome,safari4+ */
background: -webkit-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* chrome10+,safari5.1+ */
background: -o-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* opera 11.10+ */
background: -ms-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* ie10+ */
background: linear-gradient(to bottom,  #e5e5e5 0%,#999999 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#e5e5e5", endcolorstr="#999999",gradienttype=0 ); /* ie6-9 */
  border:1px solid #555;
  width:12px;height:12px;
}
.erinyen .tp-bullet-image {
}
.erinyen .tp-bullet-title {
}


/* THUMBS */
.erinyen .tp-thumb {
opacity:1
}

.erinyen .tp-thumb-over {
  background:#000;
  background:rgba(0,0,0,0.25);
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  -webkit-transition:all 0.3s;
  transition:all 0.3s;
}

.erinyen .tp-thumb-more:before {
  font-family: "revicons";
  font-size:12px;
  color:#aaa;
  color:rgba(255,255,255,0.75);
  display:block;
  line-height: 12px;
  text-align: left;    
  z-index:2;
  position:absolute;
  top:20px;
  right:20px;
  z-index:2;
}
.erinyen .tp-thumb-more:before {
  content: "\e825";
}

.erinyen .tp-thumb-title {
  font-family:"Raleway";
  letter-spacing:1px;
  font-size:12px;
  color:#fff;
  display:block;
  line-height: 15px;
  text-align: left;    
  z-index:2;
  position:absolute;
  top:0px;
  left:0px;
  z-index:2;
  padding:20px 35px 20px 20px;
  width:100%;
  height:100%;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  font-weight:500;
}

.erinyen .tp-thumb.selected .tp-thumb-more:before,
.erinyen .tp-thumb:hover .tp-thumb-more:before {
 color:#aaa;

}

.erinyen .tp-thumb.selected .tp-thumb-over,
.erinyen .tp-thumb:hover .tp-thumb-over {
 background:#fff;
}
.erinyen .tp-thumb.selected .tp-thumb-title,
.erinyen .tp-thumb:hover .tp-thumb-title {
  color:#000;

}


/* TABS */
.erinyen .tp-tab-title {
    color:#a8d8ee;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    font-family:"Roboto Slab";
    margin-bottom:5px;
}

.erinyen .tp-tab-desc {
	font-size:18px;
    font-weight:400;
    color:#fff;
    line-height:25px;
	font-family:"Roboto Slab";
}
      

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 GYGES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */


/* BULLETS */
.gyges.tp-bullets {
}
.gyges.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background: #777777; /* Old browsers */
    background: -moz-linear-gradient(top,  #777777 0%, #666666 100%); 
    background: -webkit-gradient(linear, left top, left bottom, 
    color-stop(0%,#777777), color-stop(100%,#666666)); 
    background: -webkit-linear-gradient(top,  #777777 0%,#666666 100%); 
    background: -o-linear-gradient(top,  #777777 0%,#666666 100%); 
    background: -ms-linear-gradient(top,  #777777 0%,#666666 100%); 
    background: linear-gradient(to bottom,  #777777 0%,#666666 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#777777", 
    endColorstr="#666666",GradientType=0 ); 
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
  border-radius:10px;
}
.gyges .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#333;
	border:3px solid #444;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.gyges .tp-bullet:hover,
.gyges .tp-bullet.selected {
	background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 0%, #e1e1e1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, 
    color-stop(0%,#ffffff), color-stop(100%,#e1e1e1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ffffff 0%,#e1e1e1 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", 
    endColorstr="#e1e1e1",GradientType=0 ); /* IE6-9 */

}
.gyges .tp-bullet-image {
}
.gyges .tp-bullet-title {
}
	

/* THUMBS */
.gyges .tp-thumb { 
      opacity:1
  }
.gyges .tp-thumb-img-wrap {
  padding:3px;
    background:#000;
  background-color:rgba(0,0,0,0.25);
  display:inline-block;

  width:100%;
  height:100%;
  position:relative;
  margin:0px;
  box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
}
.gyges .tp-thumb-image {
   padding:3px; 
   display:block;
   box-sizing:border-box;
   position:relative;
    -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
 }  
.gyges .tp-thumb-title { 
     position:absolute; 
     bottom:100%; 
     display:inline-block;
     left:50%;
     background:rgba(255,255,255,0.8);
     padding:10px 30px;
     border-radius:4px;
	 -webkit-border-radius:4px;
     margin-bottom:20px;
     opacity:0;
      transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin:50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin:50% 100%;
    white-space:nowrap;
 }
.gyges .tp-thumb:hover .tp-thumb-title {
  	 transform:rotateX(0deg) translateX(-50%);
    -webkit-transform:rotateX(0deg) translateX(-50%);
    opacity:1;
}

.gyges .tp-thumb:hover .tp-thumb-img-wrap,
 .gyges .tp-thumb.selected .tp-thumb-img-wrap {

  background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
 }
.gyges .tp-thumb-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 8px 0 8px;
		border-color: rgba(255,255,255,0.8) transparent transparent transparent;
        bottom:-8px;
   }


/* TABS */
.gyges .tp-tab { 
  opacity:1;      
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.15);
 }
.gyges .tp-tab-image 
{ 
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.gyges .tp-tab-content 
{
    background:rgba(0,0,0,0); 
    position:relative;
    padding:15px 15px 15px 85px;
 left:0px;
  overflow:hidden;
 margin-top:-15px;
    box-sizing:border-box;
    color:#333;
    display: inline-block;
    width:100%;
    height:100%;
 position:absolute; }
.gyges .tp-tab-date
  {
  display:block;
  color: rgba(255,255,255,0.25);
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
  }
.gyges .tp-tab-title 
{
    display:block;  
    text-align:left;
    color:#fff;
    font-size:14px;
    font-weight:500;
    text-transform:none;
    line-height:17px;
}
.gyges .tp-tab:hover,
.gyges .tp-tab.selected {
  background:rgba(0,0,0,0.5); 
}

.gyges .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HADES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hades.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.15);
	width:100px;
	height:100px;
	position:absolute;
	display:block;
	z-index:1000;
}

.hades.tparrows:before {
	font-family: "revicons";
	font-size:30px;
	color:#fff;
	display:block;
	line-height: 100px;
	text-align: center;
  transition: background 0.3s, color 0.3s;
}
.hades.tparrows.tp-leftarrow:before {
	content: "\e824";
}
.hades.tparrows.tp-rightarrow:before {
	content: "\e825";
}

.hades.tparrows:hover:before {
   color:#aaa;
   background:#fff;
   background:rgba(255,255,255,1);
 }
.hades .tp-arr-allwrapper {
  position:absolute;
  left:100%;
  top:0px;
  background:#888; 
  width:100px;height:100px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0.0;
  -khtml-opacity: 0.0;
  opacity: 0.0;
  -webkit-transform: rotatey(-90deg);
  transform: rotatey(-90deg);
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}
.hades.tp-rightarrow .tp-arr-allwrapper {
   left:auto;
   right:100%;
   -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
   -webkit-transform: rotatey(90deg);
  transform: rotatey(90deg);
}

.hades:hover .tp-arr-allwrapper {
   -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;  
    -webkit-transform: rotatey(0deg);
  transform: rotatey(0deg);

 }
    
.hades .tp-arr-iwrapper {
}
.hades .tp-arr-imgholder {
  background-size:cover;
  position:absolute;
  top:0px;left:0px;
  width:100%;height:100%;
}
.hades .tp-arr-titleholder {
}
.hades .tp-arr-subtitleholder {
}


/* BULLETS */
.hades.tp-bullets {
}
.hades.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.hades .tp-bullet {
	width:3px;
	height:3px;
	position:absolute;
	background:#888;	
	cursor: pointer;
    border:5px solid #fff;
	box-sizing:content-box;
    box-shadow:0px 0px 3px 1px rgba(0,0,0,0.2);
    -webkit-perspective:400px;
    perspective:400px;
    -webkit-transform:translatez(0.01px);
    transform:translatez(0.01px);
}
.hades .tp-bullet:hover,
.hades .tp-bullet.selected {
	background:#555;
  
}

.hades .tp-bullet-image {
  position:absolute;top:-80px; left:-60px;width:120px;height:60px;
  background-position:center center;
  background-size:cover;
  visibility:hidden;
  opacity:0;
  transition:all 0.3s;
  -webkit-transform-style:flat;
  transform-style:flat;
  perspective:600px;
  -webkit-perspective:600px;
  transform: rotatex(-90deg);
  -webkit-transform: rotatex(-90deg);
  box-shadow:0px 0px 3px 1px rgba(0,0,0,0.2);
  transform-origin:50% 100%;
  -webkit-transform-origin:50% 100%;
  
  
}
.hades .tp-bullet:hover .tp-bullet-image {
  display:block;
  opacity:1;
  transform: rotatex(0deg);
  -webkit-transform: rotatex(0deg);
  visibility:visible;
    }
.hades .tp-bullet-title {
}


/* THUMBS */
.hades .tp-thumb { 
      opacity:1
  }
.hades .tp-thumb-img-wrap {
  border-radius:50%;
  padding:3px;
  display:inline-block;
background:#000;
  background-color:rgba(0,0,0,0.25);
  width:100%;
  height:100%;
  position:relative;
  margin:0px;
  box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
}
.hades .tp-thumb-image {
   padding:3px; 
   border-radius:50%;
   display:block;
   box-sizing:border-box;
   position:relative;
    -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
 }  


.hades .tp-thumb:hover .tp-thumb-img-wrap,
.hades .tp-thumb.selected .tp-thumb-img-wrap {
  
   background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
 
      }
.hades .tp-thumb-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 8px 0 8px;
		border-color: rgba(0,0,0,0.75) transparent transparent transparent;
        bottom:-8px;
   }


/* TABS */
.hades .tp-tab {
  opacity:1;
 }
    
.hades .tp-tab-title
 {
      display:block;
      color:#333;
      font-weight:600;
      font-size:18px;
      text-align:center;
      line-height:25px;      
    } 
.hades .tp-tab-price
 {
	display:block;
    text-align:center;
    color:#999;
    font-size:16px;
    margin-top:10px;
   line-height:20px
}

.hades .tp-tab-button {
    display:inline-block;
    margin-top:15px;
    text-align:center;
	padding:5px 15px;
  	color:#fff;
  	font-size:14px;
  	background:#219bd7;
   	border-radius:4px;
   font-weight:400;
}
.hades .tp-tab-inner {
	text-align:center;
}

              

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HEBE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hebe.tparrows {
  cursor:pointer;
  background:#fff;
  min-width:70px;
    min-height:70px;
  position:absolute;
  display:block;
  z-index:1000;
}
.hebe.tparrows:hover {
}
.hebe.tparrows:before {
  font-family: "revicons";
  font-size:30px;
  color:#aaa;
  display:block;
  line-height: 70px;
  text-align: center;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  z-index:2;
  position:relative;
   background:#fff;
  min-width:70px;
    min-height:70px;
}
.hebe.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.hebe.tparrows.tp-rightarrow:before {
  content: "\e825";
}
.hebe.tparrows:hover:before {
 color:#000;
      }
.hebe .tp-title-wrap { 
  position:absolute;
  z-index:0;
  display:inline-block;
  background:#000;
  background:rgba(0,0,0,0.75);
  min-height:60px;
  line-height:60px;
  top:-10px;
  margin-left:0px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:scaleX(0);  
  -webkit-transform:scaleX(0);  
  transform-origin:0% 50%; 
   -webkit-transform-origin:0% 50%;
}
 .hebe.tp-rightarrow .tp-title-wrap { 
   right:0px;
   -webkit-transform-origin:100% 50%;
 }
.hebe.tparrows:hover .tp-title-wrap {
  transform:scaleX(1);
  -webkit-transform:scaleX(1);
}
.hebe .tp-arr-titleholder {
  position:relative;
  text-transform:uppercase;
  color:#fff;
  font-weight:600;
  font-size:12px;
  line-height:90px;
  white-space:nowrap;
  padding:0px 20px 0px 90px;
}

.hebe.tp-rightarrow .tp-arr-titleholder {
   margin-left:0px; 
   padding:0px 90px 0px 20px;
 }

.hebe.tparrows:hover .tp-arr-titleholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

.hebe .tp-arr-imgholder{
      width:90px;
      height:90px;
      position:absolute;
      left:100%;
      display:block;
      background-size:cover;
      background-position:center center;
  	 top:0px; right:-90px;
    }
.hebe.tp-rightarrow .tp-arr-imgholder{
        right:auto;left:-90px;
      }

/* BULLETS */
.hebe.tp-bullets {
}
.hebe.tp-bullets:before {
  content:" ";
  position:absolute;
  width:100%;
  height:100%;
  background:transparent;
  padding:10px;
  margin-left:-10px;margin-top:-10px;
  box-sizing:content-box;
}

.hebe .tp-bullet {
  width:3px;
  height:3px;
  position:absolute;
  background:#fff;  
  cursor: pointer;
  border:5px solid #222;
  border-radius:50%;
  box-sizing:content-box;
  -webkit-perspective:400px;
  perspective:400px;
  -webkit-transform:translateZ(0.01px);
  transform:translateZ(0.01px);
   transition:all 0.3s;
}
.hebe .tp-bullet:hover,
.hebe .tp-bullet.selected {
  background:#222;
  border-color:#fff;
}

.hebe .tp-bullet-image {
  position:absolute;
  top:-90px; left:-40px;
  width:70px;
  height:70px;
  background-position:center center;
  background-size:cover;
  visibility:hidden;
  opacity:0;
  transition:all 0.3s;
  -webkit-transform-style:flat;
  transform-style:flat;
  perspective:600px;
  -webkit-perspective:600px;
  transform: scale(0);
  -webkit-transform: scale(0);
  transform-origin:50% 100%;
  -webkit-transform-origin:50% 100%;
border-radius:6px;
  
  
}
.hebe .tp-bullet:hover .tp-bullet-image {
  display:block;
  opacity:1;
  transform: scale(1);
  -webkit-transform: scale(1);
  visibility:visible;
    }
.hebe .tp-bullet-title {
}


/* TABS */
.hebe .tp-tab-title {
    color:#a8d8ee;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    font-family:"Roboto Slab";
    margin-bottom:5px;
}

.hebe .tp-tab-desc {
	font-size:18px;
    font-weight:400;
    color:#fff;
    line-height:25px;
	font-family:"Roboto Slab";
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HEPHAISTOS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hephaistos.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:1000;
    border-radius:50%;
}
.hephaistos.tparrows:hover {
	background:#000;
}
.hephaistos.tparrows:before {
	font-family: "revicons";
	font-size:18px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.hephaistos.tparrows.tp-leftarrow:before {
	content: "\e82c";
  margin-left:-2px;
  
}
.hephaistos.tparrows.tp-rightarrow:before {
	content: "\e82d";
   margin-right:-2px;
}



/* BULLETS */
.hephaistos.tp-bullets {
}
.hephaistos.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.hephaistos .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#999;
	border:3px solid #f5f5f5;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
  box-shadow: 0px 0px 2px 1px rgba(130,130,130, 0.3);

}
.hephaistos .tp-bullet:hover,
.hephaistos .tp-bullet.selected {
	background:#fff;
    border-color:#000;
}
.hephaistos .tp-bullet-image {
}
.hephaistos .tp-bullet-title {
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HERMES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hermes.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:30px;
	height:110px;
	position:absolute;
	display:block;
	z-index:1000;
}

.hermes.tparrows:before {
	font-family: "revicons";
	font-size:15px;
	color:#fff;
	display:block;
	line-height: 110px;
	text-align: center;
    transform:translateX(0px);
    -webkit-transform:translateX(0px);
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
}
.hermes.tparrows.tp-leftarrow:before {
	content: "\e824";
}
.hermes.tparrows.tp-rightarrow:before {
	content: "\e825";
}
.hermes.tparrows.tp-leftarrow:hover:before {
    transform:translateX(-20px);
    -webkit-transform:translateX(-20px);
     opacity:0;
}
.hermes.tparrows.tp-rightarrow:hover:before {
    transform:translateX(20px);
    -webkit-transform:translateX(20px);
     opacity:0;
}

.hermes .tp-arr-allwrapper {
    overflow:hidden;
    position:absolute;
	width:180px;
    height:140px;
    top:0px;
    left:0px;
    visibility:hidden;
      -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  -webkit-perspective: 1000px;
  perspective: 1000px;
    }
.hermes.tp-rightarrow .tp-arr-allwrapper {
   right:0px;left:auto;
      }
.hermes.tparrows:hover .tp-arr-allwrapper {
   visibility:visible;
          }
.hermes .tp-arr-imgholder {
  width:180px;position:absolute;
  left:0px;top:0px;height:110px;
  transform:translateX(-180px);
  -webkit-transform:translateX(-180px);
  transition:all 0.3s;
  transition-delay:0.3s;
}
.hermes.tp-rightarrow .tp-arr-imgholder{
    transform:translateX(180px);
  -webkit-transform:translateX(180px);
      }
  
.hermes.tparrows:hover .tp-arr-imgholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);            
}
.hermes .tp-arr-titleholder {
  top:110px;
  width:180px;
  text-align:left; 
  display:block;
  padding:0px 10px;
  line-height:30px; background:#000;
  background:rgba(0,0,0,0.75);color:#fff;
  font-weight:600; position:absolute;
  font-size:12px;
  white-space:nowrap;
  letter-spacing:1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  box-sizing:border-box;

}
.hermes.tparrows:hover .tp-arr-titleholder {
    -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}


/* BULLETS */
.hermes.tp-bullets {
}

.hermes .tp-bullet {
    overflow:hidden;
    border-radius:50%;
    width:16px;
    height:16px;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: inset 0 0 0 2px #FFF;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    position:absolute;
}

.hermes .tp-bullet:hover {
	  background-color: rgba(0, 0, 0, 0.2);
}
.hermes .tp-bullet:after {
  content: ' ';
  position: absolute;
  bottom: 0;
  height: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  box-shadow: 0 0 1px #FFF;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.hermes .tp-bullet.selected:after {
  height:100%;
}


/* TABS */
.hermes .tp-tab { 
  opacity:1;  
  padding-right:10px;
  box-sizing:border-box;
 }
.hermes .tp-tab-image 
{ 
  width:100%;
  height:60%;
  position:relative;
}
.hermes .tp-tab-content 
{
    background:rgb(54,54,54); 
    position:absolute;
    padding:20px 20px 20px 30px;
    box-sizing:border-box;
    color:#fff;
  display:block;
  width:100%;
  min-height:40%;
  bottom:0px;
  left:-10px;
  }
.hermes .tp-tab-date
  {
  display:block;
  color:#888;
  font-weight:600;
  font-size:12px;
  margin-bottom:10px;
  }
.hermes .tp-tab-title 
{
    display:block;	
    color:#fff;
    font-size:16px;
    font-weight:800;
    text-transform:uppercase;
   line-height:19px;
}

.hermes .tp-tab.selected .tp-tab-title:after {
    width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 30px 0 30px 10px;
	border-color: transparent transparent transparent rgb(54,54,54);
	content:" ";
    position:absolute;
    right:-9px;
    bottom:50%;
    margin-bottom:-30px;
}
.hermes .tp-tab-mask {
     padding-right:10px !important;
          }

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {
  .hermes .tp-tab .tp-tab-title {font-size:14px;line-height:16px;}
  .hermes .tp-tab-date { font-size:11px; line-height:13px;margin-bottom:10px;}
  .hermes .tp-tab-content { padding:15px 15px 15px 25px;}
}
@media only screen and (max-width: 768px) {
  .hermes .tp-tab .tp-tab-title {font-size:12px;line-height:14px;}
  .hermes .tp-tab-date {font-size:10px; line-height:12px;margin-bottom:5px;}
  .hermes .tp-tab-content {padding:10px 10px 10px 20px;}
}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HESPERIDEN SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hesperiden.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:1000;
    border-radius: 50%;
}
.hesperiden.tparrows:hover {
	background:#000;
}
.hesperiden.tparrows:before {
	font-family: "revicons";
	font-size:20px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.hesperiden.tparrows.tp-leftarrow:before {
	content: "\e82c";
    margin-left:-3px;
}
.hesperiden.tparrows.tp-rightarrow:before {
	content: "\e82d";
    margin-right:-3px;
}

/* BULLETS */
.hesperiden.tp-bullets {
}
.hesperiden.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
   border-radius:8px;
  
}
.hesperiden .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background: #999999; /* old browsers */
    background: -moz-linear-gradient(top,  #999999 0%, #e1e1e1 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#999999), 
    color-stop(100%,#e1e1e1)); /* chrome,safari4+ */
    background: -webkit-linear-gradient(top,  #999999 0%,#e1e1e1 100%); /* chrome10+,safari5.1+ */
    background: -o-linear-gradient(top,  #999999 0%,#e1e1e1 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(top,  #999999 0%,#e1e1e1 100%); /* ie10+ */
    background: linear-gradient(to bottom,  #999999 0%,#e1e1e1 100%); /* w3c */
    filter: progid:dximagetransform.microsoft.gradient( 
    startcolorstr="#999999", endcolorstr="#e1e1e1",gradienttype=0 ); /* ie6-9 */
	border:3px solid #e5e5e5;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.hesperiden .tp-bullet:hover,
.hesperiden .tp-bullet.selected {
	background:#666;
}
.hesperiden .tp-bullet-image {
}
.hesperiden .tp-bullet-title {
}


/* THUMBS */
.hesperiden .tp-thumb {
  opacity:1;
  -webkit-perspective: 600px;
  perspective: 600px;
}
.hesperiden .tp-thumb .tp-thumb-title {
    font-size:12px;
    position:absolute;
    margin-top:-10px;
    color:#fff;
    display:block;
    z-index:10000;
    background-color:#000;
    padding:5px 10px; 
    bottom:0px;
    left:0px;
    width:100%;
  box-sizing:border-box;
    text-align:center;
    overflow:hidden;
    white-space:nowrap;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform:rotatex(90deg) translatez(0.001px);
    transform-origin:50% 100%;
    -webkit-transform:rotatex(90deg) translatez(0.001px);
    -webkit-transform-origin:50% 100%;
    opacity:0;
 }
.hesperiden .tp-thumb:hover .tp-thumb-title {
  	 transform:rotatex(0deg);
    -webkit-transform:rotatex(0deg);
    opacity:1;
}

/* TABS */
.hesperiden .tp-tab { 
  opacity:1;      
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #e5e5e5;
 }
.hesperiden .tp-tab-image 
{ 
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.hesperiden .tp-tab-content 
{
    background:rgba(0,0,0,0); 
    position:relative;
    padding:15px 15px 15px 85px;
 left:0px;
 overflow:hidden;
 margin-top:-15px;
    box-sizing:border-box;
    color:#333;
    display: inline-block;
    width:100%;
    height:100%;
 position:absolute; }
.hesperiden .tp-tab-date
  {
  display:block;
  color: #aaa;
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
  }
.hesperiden .tp-tab-title 
{
    display:block;	
    text-align:left;
    color:#333;
    font-size:14px;
    font-weight:500;
    text-transform:none;
    line-height:17px;
}
.hesperiden .tp-tab:hover,
.hesperiden .tp-tab.selected {
	background:#eee; 
}

.hesperiden .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 METIS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.metis.tparrows {
  background:#fff;
  padding:10px;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  width:60px;
  height:60px;
  box-sizing:border-box;
 }
 
 .metis.tparrows:hover {
   background:#fff;
   background:rgba(255,255,255,0.75);
 }
 
 .metis.tparrows:before {
  color:#000;  
   transition:all 0.3s;
  -webkit-transition:all 0.3s;
 }
 
 .metis.tparrows:hover:before {
   transform:scale(1.5);
  }
 

/* BULLETS */
.metis .tp-bullet { 
    opacity:1;
    width:50px;
    height:50px;    
    padding:3px;
    background:#000;
    background-color:rgba(0,0,0,0.25);
    margin:0px;
    box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
    border-radius:50%;
  }

.metis .tp-bullet-image {

   border-radius:50%;
   display:block;
   box-sizing:border-box;
   position:relative;
    -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  width:44px;
  height:44px;
  background-size:cover;
  background-position:center center;
 }  
.metis .tp-bullet-title { 
     position:absolute; 
	 bottom:65px;
     display:inline-block;
     left:50%;
     background:#000;
     background:rgba(0,0,0,0.75);
     color:#fff;
     padding:10px 30px;
     border-radius:4px;
	 -webkit-border-radius:4px;
     opacity:0;
      transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin:50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin:50% 100%;
    opacity:0;
    white-space:nowrap;
 }

.metis .tp-bullet:hover .tp-bullet-title {
  	 transform:rotateX(0deg) translateX(-50%);
    -webkit-transform:rotateX(0deg) translateX(-50%);
    opacity:1;
}

.metis .tp-bullet.selected,
.metis .tp-bullet:hover  {
  
   background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
 
      }
.metis .tp-bullet-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 8px 0 8px;
		border-color: rgba(0,0,0,0.75) transparent transparent transparent;
        bottom:-8px;
   }

.metis .tp-tab-number {
        color: #fff;
        font-size: 40px;
        line-height: 30px;
        font-weight: 400;
        font-family: "Playfair Display";
        width: 50px;
        margin-right: 17px;
        display: inline-block;
        float: left;
    }
    .metis .tp-tab-mask {
        padding-left: 20px;
        left: 0px;
        max-width: 90px !important;
        transition: 0.4s padding-left, 0.4s left, 0.4s max-width;
    }
    .metis:hover .tp-tab-mask {
        padding-left: 0px;
        left: 50px;
        max-width: 500px !important;
    }
    .metis .tp-tab-divider {
        border-right: 1px solid transparent;
        height: 30px;
        width: 1px;
        margin-top: 5px;
        display: inline-block;
        float: left;
    }
    .metis .tp-tab-title {
        color: #fff;
        font-size: 20px;
        line-height: 20px;
        font-weight: 400;
        font-family: "Playfair Display";
        position: relative;
        padding-top: 10px;
        padding-left: 30px;
        display: inline-block;
        transform: translateX(-100%);
        transition: 0.4s all;
    }
    .metis .tp-tab-title-mask {
        position: absolute;
        overflow: hidden;
        left: 67px;
    }
    .metis:hover .tp-tab-title {
        transform: translateX(0);
    }
    .metis .tp-tab {
        opacity: 0.15;
        transition: 0.4s all;
    }
    .metis .tp-tab:hover,
    .metis .tp-tab.selected {
        opacity: 1;
    }
    .metis .tp-tab.selected .tp-tab-divider {
        border-right: 1px solid #cdb083;
    }
    .metis.tp-tabs {
        max-width: 118px !important;
        padding-left: 50px;
    }
    .metis.tp-tabs:before {
        content: " ";
        height: 100%;
        width: 88px;
        background: rgba(0, 0, 0, 0.15);
        border-right: 1px solid rgba(255, 255, 255, 0.10);
        left: 0px;
        top: 0px;
        position: absolute;
        transition: 0.4s all;
    }
    .metis.tp-tabs:hover:before {
        width: 118px;
    }
    @media (max-width: 499px) {
        .metis.tp-tabs:before {
            background: rgba(0, 0, 0, 0.75);
        }
    }

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 PERSEPHONE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.persephone.tparrows {
	cursor:pointer;
	background:#aaa;
	background:rgba(200,200,200,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:100;
  border:1px solid #f5f5f5;
}
.persephone.tparrows:hover {
	background:#333;
}
.persephone.tparrows:before {
	font-family: "revicons";
	font-size:15px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.persephone.tparrows.tp-leftarrow:before {
	content: "\e824";
}
.persephone.tparrows.tp-rightarrow:before {
	content: "\e825";
}



/* BULLETS */
.persephone.tp-bullets {
}
.persephone.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.persephone .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#aaa;
	border:1px solid #e5e5e5;	
	cursor: pointer;
	box-sizing:content-box;
}
.persephone .tp-bullet:hover,
.persephone .tp-bullet.selected {
	background:#222;
}
.persephone .tp-bullet-image {
}
.persephone .tp-bullet-title {
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 URANUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.uranus.tparrows {
  width:50px;
  height:50px;
  background:transparent;
 }
 .uranus.tparrows:before {
 width:50px;
 height:50px;
 line-height:50px;
 font-size:40px;
 transition:all 0.3s;
-webkit-transition:all 0.3s;
 }
 
  .uranus.tparrows:hover:before {
    opacity:0.75;
  }

/* BULLETS */
.uranus .tp-bullet{
	border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  background:transparent;
}
.uranus .tp-bullet.selected,
.uranus .tp-bullet:hover {
  box-shadow: 0 0 0 2px #FFF;
  border:none;
  border-radius: 50%;

   background:transparent;
}



.uranus .tp-bullet-inner {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 50%;
  background-color: #FFF;
  background-color: rgba(255, 255, 255, 0.3);
  text-indent: -999em;
  cursor: pointer;
  position: absolute;
}

.uranus .tp-bullet.selected .tp-bullet-inner,
.uranus .tp-bullet:hover .tp-bullet-inner{
 transform: scale(0.4);
 -webkit-transform: scale(0.4);
 background-color:#fff;
}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ZEUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.zeus.tparrows {
  cursor:pointer;
  min-width:70px;
  min-height:70px;
  position:absolute;
  display:block;
  z-index:100;
  border-radius:35px;   
  overflow:hidden;
  background:rgba(0,0,0,0.10);
}

.zeus.tparrows:before {
  font-family: "revicons";
  font-size:20px;
  color:#fff;
  display:block;
  line-height: 70px;
  text-align: center;    
  z-index:2;
  position:relative;
}
.zeus.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.zeus.tparrows.tp-rightarrow:before {
  content: "\e825";
}

.zeus .tp-title-wrap {
  background:#000;
  background:rgba(0,0,0,0.5);
  width:100%;
  height:100%;
  top:0px;
  left:0px;
  position:absolute;
  opacity:0;
  transform:scale(0);
  -webkit-transform:scale(0);
   transition: all 0.3s;
  -webkit-transition:all 0.3s;
  -moz-transition:all 0.3s;
   border-radius:50%;
 }
.zeus .tp-arr-imgholder {
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  background-position:center center;
  background-size:cover;
  border-radius:50%;
  transform:translateX(-100%);
  -webkit-transform:translateX(-100%);
   transition: all 0.3s;
  -webkit-transition:all 0.3s;
  -moz-transition:all 0.3s;

 }
.zeus.tp-rightarrow .tp-arr-imgholder {
    transform:translateX(100%);
  -webkit-transform:translateX(100%);
      }
.zeus.tparrows:hover .tp-arr-imgholder {
  transform:translateX(0);
  -webkit-transform:translateX(0);
  opacity:1;
}
      
.zeus.tparrows:hover .tp-title-wrap {
  transform:scale(1);
  -webkit-transform:scale(1);
  opacity:1;
}
 

/* BULLETS */
.zeus .tp-bullet {
     box-sizing:content-box; -webkit-box-sizing:content-box; border-radius:50%;
      background-color: rgba(0, 0, 0, 0);
      -webkit-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
	  width:13px;height:13px;
	  border:2px solid #fff;
 }
.zeus .tp-bullet:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 50%;
  background-color: #FFF;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}
.zeus .tp-bullet:hover:after,
.zeus .tp-bullet.selected:after{
    -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
  
 .zeus .tp-bullet-image,
 .zeus .tp-bullet-imageoverlay{
        width:135px;
        height:60px;
        position:absolute;
        background:#000;
        background:rgba(0,0,0,0.5);
        bottom:25px;
        left:50%;
        margin-left:-65px;
        box-sizing:border-box;
        background-size:cover;
        background-position:center center;
        visibility:hidden;
        opacity:0;
         -webkit-backface-visibility: hidden; 
      	backface-visibility: hidden;
        -webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
  		-webkit-transition: all 0.3s ease;
  		transition: all 0.3s ease;
        border-radius:4px;

}
          

.zeus .tp-bullet-title,
.zeus .tp-bullet-imageoverlay {
        z-index:2;
        -webkit-transition: all 0.5s ease;
	  	transition: all 0.5s ease;
}     
.zeus .tp-bullet-title { 
        color:#fff;
        text-align:center;
        line-height:15px;
        font-size:13px;
        font-weight:600;  
        z-index:3;
         visibility:hidden;
        opacity:0;
         -webkit-backface-visibility: hidden; 
      	backface-visibility: hidden;
        -webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
  		-webkit-transition: all 0.3s ease;
  		transition: all 0.3s ease;
        position:absolute;
        bottom:45px;
        width:135px;
    	vertical-align:middle;
        left:-57px;
}
      
.zeus .tp-bullet:hover .tp-bullet-title,
.zeus .tp-bullet:hover .tp-bullet-image,
.zeus .tp-bullet:hover .tp-bullet-imageoverlay{
      opacity:1;
      visibility:visible;
	  -webkit-transform:translateY(0px);
      transform:translateY(0px);         
    }

/* THUMBS */
.zeus .tp-thumb {
opacity:1
}

.zeus .tp-thumb-over {
  background:#000;
  background:rgba(0,0,0,0.25);
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  -webkit-transition:all 0.3s;
  transition:all 0.3s;
}

.zeus .tp-thumb-more:before {
  font-family: "revicons";
  font-size:12px;
  color:#aaa;
  color:rgba(255,255,255,0.75);
  display:block;
  line-height: 12px;
  text-align: left;    
  z-index:2;
  position:absolute;
  top:20px;
  right:20px;
  z-index:2;
}
.zeus .tp-thumb-more:before {
  content: "\e825";
}

.zeus .tp-thumb-title {
  font-family:"Raleway";
  letter-spacing:1px;
  font-size:12px;
  color:#fff;
  display:block;
  line-height: 15px;
  text-align: left;    
  z-index:2;
  position:absolute;
  top:0px;
  left:0px;
  z-index:2;
  padding:20px 35px 20px 20px;
  width:100%;
  height:100%;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  font-weight:500;
}

.zeus .tp-thumb.selected .tp-thumb-more:before,
.zeus .tp-thumb:hover .tp-thumb-more:before {
 color:#aaa;

}

.zeus .tp-thumb.selected .tp-thumb-over,
.zeus .tp-thumb:hover .tp-thumb-over {
 background:#000;
}
.zeus .tp-thumb.selected .tp-thumb-title,
.zeus .tp-thumb:hover .tp-thumb-title {
  color:#fff;

}


/* TABS */
.zeus .tp-tab { 
  opacity:1;      
  box-sizing:border-box;
}

.zeus .tp-tab-title { 
display: block;
text-align: center;
background: rgba(0,0,0,0.25);
font-family: "Roboto Slab", serif; 
font-weight: 700; 
font-size: 13px; 
line-height: 13px;
color: #fff; 
padding: 9px 10px; }

.zeus .tp-tab:hover .tp-tab-title,
.zeus .tp-tab.selected .tp-tab-title {
 color: #000;
  background:rgba(255,255,255,1); 
}



/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ZEUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/


.post-tabs .tp-thumb {
opacity:1
}

.post-tabs .tp-thumb-over {
  background:#252525;
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  -webkit-transition:all 0.3s;
  transition:all 0.3s;
}

.post-tabs .tp-thumb-more:before {
  font-family: "revicons";
  font-size:12px;
  color:#aaa;
  color:rgba(255,255,255,0.75);
  display:block;
  line-height: 12px;
  text-align: left;    
  z-index:2;
  position:absolute;
  top:15px;
  right:15px;
  z-index:2;
}
.post-tabs .tp-thumb-more:before {
  content: "\e825";
}

.post-tabs .tp-thumb-title {
  font-family:"raleway";
  letter-spacing:1px;
  font-size:12px;
  color:#fff;
  display:block;
  line-height: 15px;
  text-align: left;    
  z-index:2;
  position:absolute;
  top:0px;
  left:0px;
  z-index:2;
  padding:15px 30px 15px 15px;
  width:100%;
  height:100%;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  font-weight:500;
}

.post-tabs .tp-thumb.selected .tp-thumb-more:before,
.post-tabs .tp-thumb:hover .tp-thumb-more:before {
 color:#aaa;

}

.post-tabs .tp-thumb.selected .tp-thumb-over,
.post-tabs .tp-thumb:hover .tp-thumb-over {
 background:#fff;
}
.post-tabs .tp-thumb.selected .tp-thumb-title,
.post-tabs .tp-thumb:hover .tp-thumb-title {
  color:#000;

}


/*-----------------------------------------------------------------------------

-	Revolution Slider 5.0 Default Style Settings -

Screen Stylesheet

version:   	5.4.5
date:      	15/05/17
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/
#debungcontrolls,.debugtimeline{width:100%;box-sizing:border-box}.rev_column,.rev_column .tp-parallax-wrap,.tp-svg-layer svg{vertical-align:top}#debungcontrolls{z-index:100000;position:fixed;bottom:0;height:auto;background:rgba(0,0,0,.6);padding:10px}.debugtimeline{height:10px;position:relative;margin-bottom:3px;display:none;white-space:nowrap}.debugtimeline:hover{height:15px}.the_timeline_tester{background:#e74c3c;position:absolute;top:0;left:0;height:100%;width:0}.rs-go-fullscreen{position:fixed!important;width:100%!important;height:100%!important;top:0!important;left:0!important;z-index:9999999!important;background:#fff!important}.debugtimeline.tl_slide .the_timeline_tester{background:#f39c12}.debugtimeline.tl_frame .the_timeline_tester{background:#3498db}.debugtimline_txt{color:#fff;font-weight:400;font-size:7px;position:absolute;left:10px;top:0;white-space:nowrap;line-height:10px}.rtl{direction:rtl}@font-face{font-family:revicons;src:url("/DesktopModules/DNNGo_LayerGalleryPro/Effects/Effect_01_SliderRevolution3D/fonts/revicons/revicons.eot?5510888");src:url("/DesktopModules/DNNGo_LayerGalleryPro/Effects/Effect_01_SliderRevolution3D/fonts/revicons/revicons.eot?5510888#iefix") format('embedded-opentype'),url("/DesktopModules/DNNGo_LayerGalleryPro/Effects/Effect_01_SliderRevolution3D/fonts/revicons/revicons.woff?5510888") format('woff'),url("/DesktopModules/DNNGo_LayerGalleryPro/Effects/Effect_01_SliderRevolution3D/fonts/revicons/revicons.ttf?5510888") format('truetype'),url("/DesktopModules/DNNGo_LayerGalleryPro/Effects/Effect_01_SliderRevolution3D/fonts/revicons/revicons.svg?5510888#revicons") format('svg');font-weight:400;font-style:normal}[class*=" revicon-"]:before,[class^=revicon-]:before{font-family:revicons;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em}.revicon-search-1:before{content:'\e802'}.revicon-pencil-1:before{content:'\e831'}.revicon-picture-1:before{content:'\e803'}.revicon-cancel:before{content:'\e80a'}.revicon-info-circled:before{content:'\e80f'}.revicon-trash:before{content:'\e801'}.revicon-left-dir:before{content:'\e817'}.revicon-right-dir:before{content:'\e818'}.revicon-down-open:before{content:'\e83b'}.revicon-left-open:before{content:'\e819'}.revicon-right-open:before{content:'\e81a'}.revicon-angle-left:before{content:'\e820'}.revicon-angle-right:before{content:'\e81d'}.revicon-left-big:before{content:'\e81f'}.revicon-right-big:before{content:'\e81e'}.revicon-magic:before{content:'\e807'}.revicon-picture:before{content:'\e800'}.revicon-export:before{content:'\e80b'}.revicon-cog:before{content:'\e832'}.revicon-login:before{content:'\e833'}.revicon-logout:before{content:'\e834'}.revicon-video:before{content:'\e805'}.revicon-arrow-combo:before{content:'\e827'}.revicon-left-open-1:before{content:'\e82a'}.revicon-right-open-1:before{content:'\e82b'}.revicon-left-open-mini:before{content:'\e822'}.revicon-right-open-mini:before{content:'\e823'}.revicon-left-open-big:before{content:'\e824'}.revicon-right-open-big:before{content:'\e825'}.revicon-left:before{content:'\e836'}.revicon-right:before{content:'\e826'}.revicon-ccw:before{content:'\e808'}.revicon-arrows-ccw:before{content:'\e806'}.revicon-palette:before{content:'\e829'}.revicon-list-add:before{content:'\e80c'}.revicon-doc:before{content:'\e809'}.revicon-left-open-outline:before{content:'\e82e'}.revicon-left-open-2:before{content:'\e82c'}.revicon-right-open-outline:before{content:'\e82f'}.revicon-right-open-2:before{content:'\e82d'}.revicon-equalizer:before{content:'\e83a'}.revicon-layers-alt:before{content:'\e804'}.revicon-popup:before{content:'\e828'}.rev_slider_wrapper{position:relative;z-index:0;width:100%}.rev_slider{position:relative;overflow:visible}.entry-content .rev_slider a,.rev_slider a{box-shadow:none}.tp-overflow-hidden{overflow:hidden!important}.group_ov_hidden{overflow:hidden}.rev_slider img,.tp-simpleresponsive img{max-width:none!important;transition:none;margin:0;padding:0;border:none}.rev_slider .no-slides-text{font-weight:700;text-align:center;padding-top:80px}.rev_slider>ul,.rev_slider>ul>li,.rev_slider>ul>li:before,.rev_slider_wrapper>ul,.tp-revslider-mainul>li,.tp-revslider-mainul>li:before,.tp-simpleresponsive>ul,.tp-simpleresponsive>ul>li,.tp-simpleresponsive>ul>li:before{list-style:none!important;position:absolute;margin:0!important;padding:0!important;overflow-x:visible;overflow-y:visible;background-image:none;background-position:0 0;text-indent:0;top:0;left:0}.rev_slider>ul>li,.rev_slider>ul>li:before,.tp-revslider-mainul>li,.tp-revslider-mainul>li:before,.tp-simpleresponsive>ul>li,.tp-simpleresponsive>ul>li:before{visibility:hidden}.tp-revslider-mainul,.tp-revslider-slidesli{padding:0!important;margin:0!important;list-style:none!important}.fullscreen-container,.fullwidthbanner-container{padding:0;position:relative}.rev_slider li.tp-revslider-slidesli{position:absolute!important}.tp-caption .rs-untoggled-content{display:block}.tp-caption .rs-toggled-content{display:none}.rs-toggle-content-active.tp-caption .rs-toggled-content{display:block}.rs-toggle-content-active.tp-caption .rs-untoggled-content{display:none}.rev_slider .caption,.rev_slider .tp-caption{position:relative;visibility:hidden;white-space:nowrap;display:block;-webkit-font-smoothing:antialiased!important;z-index:1}.rev_slider .caption,.rev_slider .tp-caption,.tp-simpleresponsive img{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none}.rev_slider .tp-mask-wrap .tp-caption,.rev_slider .tp-mask-wrap :last-child,.wpb_text_column .rev_slider .tp-mask-wrap .tp-caption,.wpb_text_column .rev_slider .tp-mask-wrap :last-child{margin-bottom:0}.tp-svg-layer svg{width:100%;height:100%;position:relative}.tp-carousel-wrapper{cursor:url("/DesktopModules/DNNGo_LayerGalleryPro/Effects/Effect_01_SliderRevolution3D/css/openhand.cur"),move}.tp-carousel-wrapper.dragged{cursor:url("/DesktopModules/DNNGo_LayerGalleryPro/Effects/Effect_01_SliderRevolution3D/css/closedhand.cur"),move}.tp_inner_padding{box-sizing:border-box;max-height:none!important}.tp-caption.tp-layer-selectable{-moz-user-select:all;-khtml-user-select:all;-webkit-user-select:all;-o-user-select:all}.tp-caption.tp-hidden-caption,.tp-forcenotvisible,.tp-hide-revslider,.tp-parallax-wrap.tp-hidden-caption{visibility:hidden!important;display:none!important}.rev_slider audio,.rev_slider embed,.rev_slider iframe,.rev_slider object,.rev_slider video{max-width:none!important}.tp-element-background{position:absolute;top:0;left:0;width:100%;height:100%;z-index:0}.tp-blockmask,.tp-blockmask_in,.tp-blockmask_out{position:absolute;top:0;left:0;width:100%;height:100%;background:#fff;z-index:1000;transform:scaleX(0) scaleY(0)}.tp-parallax-wrap{transform-style:preserve-3d}.rev_row_zone{position:absolute;width:100%;left:0;box-sizing:border-box;min-height:50px;font-size:0}.rev_column_inner,.rev_slider .tp-caption.rev_row{position:relative;width:100%!important;box-sizing:border-box}.rev_row_zone_top{top:0}.rev_row_zone_middle{top:50%;transform:translateY(-50%)}.rev_row_zone_bottom{bottom:0}.rev_slider .tp-caption.rev_row{display:table;table-layout:fixed;vertical-align:top;height:auto!important;font-size:0}.rev_column{display:table-cell;position:relative;height:auto;box-sizing:border-box;font-size:0}.rev_column_inner{display:block;height:auto!important;white-space:normal!important}.rev_column_bg{width:100%;height:100%;position:absolute;top:0;left:0;z-index:0;box-sizing:border-box;background-clip:content-box;border:0 solid transparent}.tp-caption .backcorner,.tp-caption .backcornertop,.tp-caption .frontcorner,.tp-caption .frontcornertop{height:0;top:0;width:0;position:absolute}.rev_column_inner .tp-loop-wrap,.rev_column_inner .tp-mask-wrap,.rev_column_inner .tp-parallax-wrap{text-align:inherit}.rev_column_inner .tp-mask-wrap{display:inline-block}.rev_column_inner .tp-parallax-wrap,.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,.rev_column_inner .tp-parallax-wrap .tp-mask-wrap{position:relative!important;left:auto!important;top:auto!important;line-height:0}.tp-video-play-button,.tp-video-play-button i{line-height:50px!important;vertical-align:top;text-align:center}.rev_column_inner .rev_layer_in_column,.rev_column_inner .tp-parallax-wrap,.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,.rev_column_inner .tp-parallax-wrap .tp-mask-wrap{vertical-align:top}.rev_break_columns{display:block!important}.rev_break_columns .tp-parallax-wrap.rev_column{display:block!important;width:100%!important}.fullwidthbanner-container{overflow:hidden}.fullwidthbanner-container .fullwidthabanner{width:100%;position:relative}.tp-static-layers{position:absolute;z-index:101;top:0;left:0}.tp-caption .frontcorner{border-left:40px solid transparent;border-right:0 solid transparent;border-top:40px solid #00A8FF;left:-40px}.tp-caption .backcorner{border-left:0 solid transparent;border-right:40px solid transparent;border-bottom:40px solid #00A8FF;right:0}.tp-caption .frontcornertop{border-left:40px solid transparent;border-right:0 solid transparent;border-bottom:40px solid #00A8FF;left:-40px}.tp-caption .backcornertop{border-left:0 solid transparent;border-right:40px solid transparent;border-top:40px solid #00A8FF;right:0}.tp-layer-inner-rotation{position:relative!important}img.tp-slider-alternative-image{width:100%;height:auto}.caption.fullscreenvideo,.rs-background-video-layer,.tp-caption.coverscreenvideo,.tp-caption.fullscreenvideo{width:100%;height:100%;top:0;left:0;position:absolute}.noFilterClass{filter:none!important}.rs-background-video-layer{visibility:hidden;z-index:0}.caption.fullscreenvideo audio,.caption.fullscreenvideo iframe,.caption.fullscreenvideo video,.tp-caption.fullscreenvideo iframe,.tp-caption.fullscreenvideo iframe audio,.tp-caption.fullscreenvideo iframe video{width:100%!important;height:100%!important;display:none}.fullcoveredvideo audio,.fullscreenvideo audio .fullcoveredvideo video,.fullscreenvideo video{background:#000}.fullcoveredvideo .tp-poster{background-position:center center;background-size:cover;width:100%;height:100%;top:0;left:0}.videoisplaying .html5vid .tp-poster{display:none}.tp-video-play-button{background:#000;background:rgba(0,0,0,.3);border-radius:5px;position:absolute;top:50%;left:50%;color:#FFF;margin-top:-25px;margin-left:-25px;cursor:pointer;width:50px;height:50px;box-sizing:border-box;display:inline-block;z-index:4;opacity:0;transition:opacity .3s ease-out!important}.tp-audio-html5 .tp-video-play-button,.tp-hiddenaudio{display:none!important}.tp-caption .html5vid{width:100%!important;height:100%!important}.tp-video-play-button i{width:50px;height:50px;display:inline-block;font-size:40px!important}.rs-fullvideo-cover,.tp-dottedoverlay,.tp-shadowcover{height:100%;top:0;left:0;position:absolute}.tp-caption:hover .tp-video-play-button{opacity:1;display:block}.tp-caption .tp-revstop{display:none;border-left:5px solid #fff!important;border-right:5px solid #fff!important;margin-top:15px!important;line-height:20px!important;vertical-align:top;font-size:25px!important}.tp-seek-bar,.tp-video-button,.tp-volume-bar{outline:0;line-height:12px;margin:0;cursor:pointer}.videoisplaying .revicon-right-dir{display:none}.videoisplaying .tp-revstop{display:inline-block}.videoisplaying .tp-video-play-button{display:none}.fullcoveredvideo .tp-video-play-button{display:none!important}.fullscreenvideo .fullscreenvideo audio,.fullscreenvideo .fullscreenvideo video{object-fit:contain!important}.fullscreenvideo .fullcoveredvideo audio,.fullscreenvideo .fullcoveredvideo video{object-fit:cover!important}.tp-video-controls{position:absolute;bottom:0;left:0;right:0;padding:5px;opacity:0;transition:opacity .3s;background-image:linear-gradient(to bottom,#000 13%,#323232 100%);display:table;max-width:100%;overflow:hidden;box-sizing:border-box}.rev-btn.rev-hiddenicon i,.rev-btn.rev-withicon i{transition:all .2s ease-out!important;font-size:15px}.tp-caption:hover .tp-video-controls{opacity:.9}.tp-video-button{background:rgba(0,0,0,.5);border:0;border-radius:3px;font-size:12px;color:#fff;padding:0}.tp-video-button:hover{cursor:pointer}.tp-video-button-wrap,.tp-video-seek-bar-wrap,.tp-video-vol-bar-wrap{padding:0 5px;display:table-cell;vertical-align:middle}.tp-video-seek-bar-wrap{width:80%}.tp-video-vol-bar-wrap{width:20%}.tp-seek-bar,.tp-volume-bar{width:100%;padding:0}.rs-fullvideo-cover{width:100%;background:0 0;z-index:5}.disabled_lc .tp-video-play-button,.rs-background-video-layer audio::-webkit-media-controls,.rs-background-video-layer video::-webkit-media-controls,.rs-background-video-layer video::-webkit-media-controls-start-playback-button{display:none!important}.tp-audio-html5 .tp-video-controls{opacity:1!important;visibility:visible!important}.tp-dottedoverlay{background-repeat:repeat;width:100%;z-index:3}.tp-dottedoverlay.twoxtwo{background:url("/DesktopModules/DNNGo_LayerGalleryPro/Effects/Effect_01_SliderRevolution3D/assets/gridtile.png")}.tp-dottedoverlay.twoxtwowhite{background:url("/DesktopModules/DNNGo_LayerGalleryPro/Effects/Effect_01_SliderRevolution3D/assets/gridtile_white.png")}.tp-dottedoverlay.threexthree{background:url("/DesktopModules/DNNGo_LayerGalleryPro/Effects/Effect_01_SliderRevolution3D/assets/gridtile_3x3.png")}.tp-dottedoverlay.threexthreewhite{background:url("/DesktopModules/DNNGo_LayerGalleryPro/Effects/Effect_01_SliderRevolution3D/assets/gridtile_3x3_white.png")}.tp-shadowcover{width:100%;background:#fff;z-index:-1}.tp-shadow1{box-shadow:0 10px 6px -6px rgba(0,0,0,.8)}.tp-shadow2:after,.tp-shadow2:before,.tp-shadow3:before,.tp-shadow4:after{z-index:-2;position:absolute;content:"";bottom:10px;left:10px;width:50%;top:85%;max-width:300px;background:0 0;box-shadow:0 15px 10px rgba(0,0,0,.8);transform:rotate(-3deg)}.tp-shadow2:after,.tp-shadow4:after{transform:rotate(3deg);right:10px;left:auto}.tp-shadow5{position:relative;box-shadow:0 1px 4px rgba(0,0,0,.3),0 0 40px rgba(0,0,0,.1) inset}.tp-shadow5:after,.tp-shadow5:before{content:"";position:absolute;z-index:-2;box-shadow:0 0 25px 0 rgba(0,0,0,.6);top:30%;bottom:0;left:20px;right:20px;border-radius:100px/20px}.tp-button{padding:6px 13px 5px;border-radius:3px;height:30px;cursor:pointer;color:#fff!important;text-shadow:0 1px 1px rgba(0,0,0,.6)!important;font-size:15px;line-height:45px!important;font-family:arial,sans-serif;font-weight:700;letter-spacing:-1px;text-decoration:none}.tp-button.big{color:#fff;text-shadow:0 1px 1px rgba(0,0,0,.6);font-weight:700;padding:9px 20px;font-size:19px;line-height:57px!important}.purchase:hover,.tp-button.big:hover,.tp-button:hover{background-position:bottom,15px 11px}.purchase.green,.purchase:hover.green,.tp-button.green,.tp-button:hover.green{background-color:#21a117;box-shadow:0 3px 0 0 #104d0b}.purchase.blue,.purchase:hover.blue,.tp-button.blue,.tp-button:hover.blue{background-color:#1d78cb;box-shadow:0 3px 0 0 #0f3e68}.purchase.red,.purchase:hover.red,.tp-button.red,.tp-button:hover.red{background-color:#cb1d1d;box-shadow:0 3px 0 0 #7c1212}.purchase.orange,.purchase:hover.orange,.tp-button.orange,.tp-button:hover.orange{background-color:#f70;box-shadow:0 3px 0 0 #a34c00}.purchase.darkgrey,.purchase:hover.darkgrey,.tp-button.darkgrey,.tp-button.grey,.tp-button:hover.darkgrey,.tp-button:hover.grey{background-color:#555;box-shadow:0 3px 0 0 #222}.purchase.lightgrey,.purchase:hover.lightgrey,.tp-button.lightgrey,.tp-button:hover.lightgrey{background-color:#888;box-shadow:0 3px 0 0 #555}.rev-btn,.rev-btn:visited{outline:0!important;box-shadow:none!important;text-decoration:none!important;line-height:44px;font-size:17px;font-weight:500;padding:12px 35px;box-sizing:border-box;font-family:Roboto,sans-serif;cursor:pointer}.rev-btn.rev-uppercase,.rev-btn.rev-uppercase:visited{text-transform:uppercase;letter-spacing:1px;font-size:15px;font-weight:900}.rev-btn.rev-withicon i{font-weight:400;position:relative;top:0;margin-left:10px!important}.rev-btn.rev-hiddenicon i{font-weight:400;position:relative;top:0;opacity:0;margin-left:0!important;width:0!important}.rev-btn.rev-hiddenicon:hover i{opacity:1!important;margin-left:10px!important;width:auto!important}.rev-btn.rev-medium,.rev-btn.rev-medium:visited{line-height:36px;font-size:14px;padding:10px 30px}.rev-btn.rev-medium.rev-hiddenicon i,.rev-btn.rev-medium.rev-withicon i{font-size:14px;top:0}.rev-btn.rev-small,.rev-btn.rev-small:visited{line-height:28px;font-size:12px;padding:7px 20px}.rev-btn.rev-small.rev-hiddenicon i,.rev-btn.rev-small.rev-withicon i{font-size:12px;top:0}.rev-maxround{border-radius:30px}.rev-minround{border-radius:3px}.rev-burger{position:relative;width:60px;height:60px;box-sizing:border-box;padding:22px 0 0 14px;border-radius:50%;border:1px solid rgba(51,51,51,.25);-webkit-tap-highlight-color:transparent;cursor:pointer}.rev-burger span{display:block;width:30px;height:3px;background:#333;transition:.7s;pointer-events:none;transform-style:flat!important}.rev-burger.revb-white span,.rev-burger.revb-whitenoborder span{background:#fff}.rev-burger span:nth-child(2){margin:3px 0}#dialog_addbutton .rev-burger:hover :first-child,.open .rev-burger :first-child,.open.rev-burger :first-child{transform:translateY(6px) rotate(-45deg)}#dialog_addbutton .rev-burger:hover :nth-child(2),.open .rev-burger :nth-child(2),.open.rev-burger :nth-child(2){transform:rotate(-45deg);opacity:0}#dialog_addbutton .rev-burger:hover :last-child,.open .rev-burger :last-child,.open.rev-burger :last-child{transform:translateY(-6px) rotate(-135deg)}.rev-burger.revb-white{border:2px solid rgba(255,255,255,.2)}.rev-burger.revb-darknoborder,.rev-burger.revb-whitenoborder{border:0}.rev-burger.revb-darknoborder span{background:#333}.rev-burger.revb-whitefull{background:#fff;border:none}.rev-burger.revb-whitefull span{background:#333}.rev-burger.revb-darkfull{background:#333;border:none}.rev-burger.revb-darkfull span,.rev-scroll-btn.revs-fullwhite{background:#fff}@keyframes rev-ani-mouse{0%{opacity:1;top:29%}15%{opacity:1;top:50%}50%{opacity:0;top:50%}100%{opacity:0;top:29%}}.rev-scroll-btn{display:inline-block;position:relative;left:0;right:0;text-align:center;cursor:pointer;width:35px;height:55px;box-sizing:border-box;border:3px solid #fff;border-radius:23px}.rev-scroll-btn>*{display:inline-block;line-height:18px;font-size:13px;font-weight:400;color:#fff;font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;letter-spacing:2px}.rev-scroll-btn>.active,.rev-scroll-btn>:focus,.rev-scroll-btn>:hover{color:#fff}.rev-scroll-btn>.active,.rev-scroll-btn>:active,.rev-scroll-btn>:focus,.rev-scroll-btn>:hover{opacity:.8}.rev-scroll-btn.revs-fullwhite span{background:#333}.rev-scroll-btn.revs-fulldark{background:#333;border:none}.rev-scroll-btn.revs-fulldark span,.tp-bullet{background:#fff}.rev-scroll-btn span{position:absolute;display:block;top:29%;left:50%;width:8px;height:8px;margin:-4px 0 0 -4px;background:#fff;border-radius:50%;animation:rev-ani-mouse 2.5s linear infinite}.rev-scroll-btn.revs-dark{border-color:#333}.rev-scroll-btn.revs-dark span{background:#333}.rev-control-btn{position:relative;display:inline-block;z-index:5;color:#FFF;font-size:20px;line-height:60px;font-weight:400;font-style:normal;font-family:Raleway;text-decoration:none;text-align:center;background-color:#000;border-radius:50px;text-shadow:none;background-color:rgba(0,0,0,.5);width:60px;height:60px;box-sizing:border-box;cursor:pointer}.rev-cbutton-dark-sr,.rev-cbutton-light-sr{border-radius:3px}.rev-cbutton-light,.rev-cbutton-light-sr{color:#333;background-color:rgba(255,255,255,.75)}.rev-sbutton{line-height:37px;width:37px;height:37px}.rev-sbutton-blue{background-color:#3B5998}.rev-sbutton-lightblue{background-color:#00A0D1}.rev-sbutton-red{background-color:#DD4B39}.tp-bannertimer{visibility:hidden;width:100%;height:5px;background:#000;background:rgba(0,0,0,.15);position:absolute;z-index:200;top:0}.tp-bannertimer.tp-bottom{top:auto;bottom:0!important;height:5px}.tp-caption img{background:0 0;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF);zoom:1}.caption.slidelink a div,.tp-caption.slidelink a div{width:3000px;height:1500px;background:url("/DesktopModules/DNNGo_LayerGalleryPro/Effects/Effect_01_SliderRevolution3D/assets/coloredbg.png")}.tp-caption.slidelink a span{background:url("/DesktopModules/DNNGo_LayerGalleryPro/Effects/Effect_01_SliderRevolution3D/assets/coloredbg.png")}.tp-loader.spinner0,.tp-loader.spinner5{background-image:url("/DesktopModules/DNNGo_LayerGalleryPro/Effects/Effect_01_SliderRevolution3D/assets/loader.gif");background-repeat:no-repeat}.tp-shape{width:100%;height:100%}.tp-caption .rs-starring{display:inline-block}.tp-caption .rs-starring .star-rating{float:none;display:inline-block;vertical-align:top;color:#FFC321!important}.tp-caption .rs-starring .star-rating,.tp-caption .rs-starring-page .star-rating{position:relative;height:1em;width:5.4em;font-family:star;font-size:1em!important}.tp-loader.spinner0,.tp-loader.spinner1{width:40px;height:40px;margin-top:-20px;margin-left:-20px;animation:tp-rotateplane 1.2s infinite ease-in-out;background-color:#fff;border-radius:3px;box-shadow:0 0 20px 0 rgba(0,0,0,.15)}.tp-caption .rs-starring .star-rating:before,.tp-caption .rs-starring-page .star-rating:before{content:"\73\73\73\73\73";color:#E0DADF;float:left;top:0;left:0;position:absolute}.tp-caption .rs-starring .star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em;font-size:1em!important}.tp-caption .rs-starring .star-rating span:before{content:"\53\53\53\53\53";top:0;position:absolute;left:0}.tp-loader{top:50%;left:50%;z-index:10000;position:absolute}.tp-loader.spinner0{background-position:center center}.tp-loader.spinner5{background-position:10px 10px;background-color:#fff;margin:-22px;width:44px;height:44px;border-radius:3px}@keyframes tp-rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}.tp-loader.spinner2{width:40px;height:40px;margin-top:-20px;margin-left:-20px;background-color:red;box-shadow:0 0 20px 0 rgba(0,0,0,.15);border-radius:100%;animation:tp-scaleout 1s infinite ease-in-out}@keyframes tp-scaleout{0%{transform:scale(0)}100%{transform:scale(1);opacity:0}}.tp-loader.spinner3{margin:-9px 0 0 -35px;width:70px;text-align:center}.tp-loader.spinner3 .bounce1,.tp-loader.spinner3 .bounce2,.tp-loader.spinner3 .bounce3{width:18px;height:18px;background-color:#fff;box-shadow:0 0 20px 0 rgba(0,0,0,.15);border-radius:100%;display:inline-block;animation:tp-bouncedelay 1.4s infinite ease-in-out;animation-fill-mode:both}.tp-loader.spinner3 .bounce1{animation-delay:-.32s}.tp-loader.spinner3 .bounce2{animation-delay:-.16s}@keyframes tp-bouncedelay{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tp-loader.spinner4{margin:-20px 0 0 -20px;width:40px;height:40px;text-align:center;animation:tp-rotate 2s infinite linear}.tp-loader.spinner4 .dot1,.tp-loader.spinner4 .dot2{width:60%;height:60%;display:inline-block;position:absolute;top:0;background-color:#fff;border-radius:100%;animation:tp-bounce 2s infinite ease-in-out;box-shadow:0 0 20px 0 rgba(0,0,0,.15)}.tp-loader.spinner4 .dot2{top:auto;bottom:0;animation-delay:-1s}@keyframes tp-rotate{100%{transform:rotate(360deg)}}@keyframes tp-bounce{0%,100%{transform:scale(0)}50%{transform:scale(1)}}.tp-bullets.navbar,.tp-tabs.navbar,.tp-thumbs.navbar{border:none;min-height:0;margin:0;border-radius:0}.tp-bullets,.tp-tabs,.tp-thumbs{position:absolute;display:block;z-index:1000;top:0;left:0}.tp-tab,.tp-thumb{cursor:pointer;position:absolute;opacity:.5;box-sizing:border-box}.tp-arr-imgholder,.tp-tab-image,.tp-thumb-image,.tp-videoposter{background-position:center center;background-size:cover;width:100%;height:100%;display:block;position:absolute;top:0;left:0}.tp-tab.selected,.tp-tab:hover,.tp-thumb.selected,.tp-thumb:hover{opacity:1}.tp-tab-mask,.tp-thumb-mask{box-sizing:border-box!important}.tp-tabs,.tp-thumbs{box-sizing:content-box!important}.tp-bullet{width:15px;height:15px;position:absolute;background:rgba(255,255,255,.3);cursor:pointer}.tp-bullet.selected,.tp-bullet:hover{background:#fff}.tparrows{cursor:pointer;background:#000;background:rgba(0,0,0,.5);width:40px;height:40px;position:absolute;display:block;z-index:1000}.tparrows:hover{background:#000}.tparrows:before{font-family:revicons;font-size:15px;color:#fff;display:block;line-height:40px;text-align:center}.hginfo,.hglayerinfo{font-size:12px;font-weight:600}.tparrows.tp-leftarrow:before{content:'\e824'}.tparrows.tp-rightarrow:before{content:'\e825'}body.rtl .tp-kbimg{left:0!important}.dddwrappershadow{box-shadow:0 45px 100px rgba(0,0,0,.4)}.hglayerinfo{position:fixed;bottom:0;left:0;color:#FFF;line-height:20px;background:rgba(0,0,0,.75);padding:5px 10px;z-index:2000;white-space:normal}.helpgrid,.hginfo{position:absolute}.hginfo{top:-2px;left:-2px;color:#e74c3c;background:#000;padding:2px 5px}.indebugmode .tp-caption:hover{border:1px dashed #c0392b!important}.helpgrid{border:2px dashed #c0392b;top:0;left:0;z-index:0}#revsliderlogloglog{padding:15px;color:#fff;position:fixed;top:0;left:0;width:200px;height:150px;background:rgba(0,0,0,.7);z-index:100000;font-size:10px;overflow:scroll}.aden{filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)}.aden::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.perpetua::after,.reyes::after{mix-blend-mode:soft-light;opacity:.5}.inkwell{filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)}.perpetua::after{background:linear-gradient(to bottom,#005b9a,#e6c13d)}.reyes{filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)}.reyes::after{background:#efcdad}.gingham{filter:brightness(1.05) hue-rotate(-10deg)}.gingham::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.toaster{filter:contrast(1.5) brightness(.9)}.toaster::after{background:radial-gradient(circle,#804e0f,#3b003b);mix-blend-mode:screen}.walden{filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)}.walden::after{background:#04c;mix-blend-mode:screen;opacity:.3}.hudson{filter:brightness(1.2) contrast(.9) saturate(1.1)}.hudson::after{background:radial-gradient(circle,#a6b1ff 50%,#342134);mix-blend-mode:multiply;opacity:.5}.earlybird{filter:contrast(.9) sepia(.2)}.earlybird::after{background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%);mix-blend-mode:overlay}.mayfair{filter:contrast(1.1) saturate(1.1)}.mayfair::after{background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%);mix-blend-mode:overlay;opacity:.4}.lofi{filter:saturate(1.1) contrast(1.5)}.lofi::after{background:radial-gradient(circle,transparent 70%,#222 150%);mix-blend-mode:multiply}._1977{filter:contrast(1.1) brightness(1.1) saturate(1.3)}._1977:after{background:rgba(243,106,188,.3);mix-blend-mode:screen}.brooklyn{filter:contrast(.9) brightness(1.1)}.brooklyn::after{background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8);mix-blend-mode:overlay}.xpro2{filter:sepia(.3)}.xpro2::after{background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%);mix-blend-mode:color-burn}.nashville{filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)}.nashville::after{background:rgba(0,70,150,.4);mix-blend-mode:lighten}.nashville::before{background:rgba(247,176,153,.56);mix-blend-mode:darken}.lark{filter:contrast(.9)}.lark::after{background:rgba(242,242,242,.8);mix-blend-mode:darken}.lark::before{background:#22253f;mix-blend-mode:color-dodge}.moon{filter:grayscale(1) contrast(1.1) brightness(1.1)}.moon::before{background:#a0a0a0;mix-blend-mode:soft-light}.moon::after{background:#383838;mix-blend-mode:lighten}.clarendon{filter:contrast(1.2) saturate(1.35)}.clarendon:before{background:rgba(127,187,227,.2);mix-blend-mode:overlay}.willow{filter:grayscale(.5) contrast(.95) brightness(.9)}.willow::before{background-color:radial-gradient(40%,circle,#d4a9af 55%,#000 150%);mix-blend-mode:overlay}.willow::after{background-color:#d8cdcb;mix-blend-mode:color}.rise{filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)}.rise::after{background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%);mix-blend-mode:overlay;opacity:.6}.rise::before{background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4));mix-blend-mode:multiply}._1977:after,._1977:before,.aden:after,.aden:before,.brooklyn:after,.brooklyn:before,.clarendon:after,.clarendon:before,.earlybird:after,.earlybird:before,.gingham:after,.gingham:before,.hudson:after,.hudson:before,.inkwell:after,.inkwell:before,.lark:after,.lark:before,.lofi:after,.lofi:before,.mayfair:after,.mayfair:before,.moon:after,.moon:before,.nashville:after,.nashville:before,.perpetua:after,.perpetua:before,.reyes:after,.reyes:before,.rise:after,.rise:before,.slumber:after,.slumber:before,.toaster:after,.toaster:before,.walden:after,.walden:before,.willow:after,.willow:before,.xpro2:after,.xpro2:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}._1977,.aden,.brooklyn,.clarendon,.earlybird,.gingham,.hudson,.inkwell,.lark,.lofi,.mayfair,.moon,.nashville,.perpetua,.reyes,.rise,.slumber,.toaster,.walden,.willow,.xpro2{position:relative}._1977 img,.aden img,.brooklyn img,.clarendon img,.earlybird img,.gingham img,.hudson img,.inkwell img,.lark img,.lofi img,.mayfair img,.moon img,.nashville img,.perpetua img,.reyes img,.rise img,.slumber img,.toaster img,.walden img,.willow img,.xpro2 img{width:100%;z-index:1}._1977:before,.aden:before,.brooklyn:before,.clarendon:before,.earlybird:before,.gingham:before,.hudson:before,.inkwell:before,.lark:before,.lofi:before,.mayfair:before,.moon:before,.nashville:before,.perpetua:before,.reyes:before,.rise:before,.slumber:before,.toaster:before,.walden:before,.willow:before,.xpro2:before{z-index:2}._1977:after,.aden:after,.brooklyn:after,.clarendon:after,.earlybird:after,.gingham:after,.hudson:after,.inkwell:after,.lark:after,.lofi:after,.mayfair:after,.moon:after,.nashville:after,.perpetua:after,.reyes:after,.rise:after,.slumber:after,.toaster:after,.walden:after,.willow:after,.xpro2:after{z-index:3}.slumber{filter:saturate(.66) brightness(1.05)}.slumber::after{background:rgba(125,105,24,.5);mix-blend-mode:soft-light}.slumber::before{background:rgba(69,41,12,.4);mix-blend-mode:lighten}.tp-kbimg-wrap:after,.tp-kbimg-wrap:before{height:500%;width:500%}
/* new static layers position option */
.tp-static-layers-back {	
	z-index:0;
}
.rev_slider{
    overflow: hidden;
}

/*
	jQuery.mmenu CSS
*/
/*
	jQuery.mmenu oncanvas CSS
*/
.mobile_menu {
	display: none;
}


.mobile_menu.mm-menu {
	display:none;
	visibility:hidden;
	position:fixed;
}
.mobile_menu.mm-menu.mm-current{
	display:block;
	visibility:visible;
}

/*
	jQuery.mmenu CSS
*/
/*
	jQuery.mmenu oncanvas CSS
*/
.mm-hidden {
	display: none !important;
}
.mm-wrapper {
	overflow-x: hidden;
	position: relative;
}
.mm-menu, .mm-panels, .mm-panels > .mm-panel {
	margin: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 0;
}
.mm-menu {
	box-sizing: border-box;
	background: inherit;
	display: block;
	overflow: hidden;
	padding: 0;
}
.mm-panel {
	-webkit-transition: -webkit-transform 0.4s ease;
	-moz-transition: -moz-transform 0.4s ease;
	-ms-transition: -ms-transform 0.4s ease;
	-o-transition: -o-transform 0.4s ease;
	transition: transform 0.4s ease;
	-webkit-transform: translate3d(100%, 0, 0);
	-moz-transform: translate3d(100%, 0, 0);
	-ms-transform: translate3d(100%, 0, 0);
	-o-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}
.mm-panel.mm-opened {
	-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);
}
.mm-panel.mm-subopened {
	-webkit-transform: translate3d(-30%, 0, 0);
	-moz-transform: translate3d(-30%, 0, 0);
	-ms-transform: translate3d(-30%, 0, 0);
	-o-transform: translate3d(-30%, 0, 0);
	transform: translate3d(-30%, 0, 0);
}
.mm-panel.mm-highest {
	z-index: 1;
}
.mm-panels, .mm-panels > .mm-panel {
	background: inherit;
	border-color: inherit;
}
.mm-panels > .mm-panel {
	background: inherit;
	border-color: inherit;
	-webkit-overflow-scrolling: touch;
	overflow: scroll;
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
	padding: 0 20px;
}
.mm-panels > .mm-panel.mm-hasnavbar {
	padding-top: 40px;
}
.mm-panels > .mm-panel:before, .mm-panels > .mm-panel:after {
	content: '';
	display: block;
	height: 20px;
}
.mm-vertical .mm-panel {
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
	transform: none !important;
}
.mm-vertical .mm-listview .mm-panel, .mm-listview .mm-vertical .mm-panel {
	display: none;
	padding: 10px 0 10px 10px;
}
.mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after,  .mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after {
	border-color: transparent;
}
.mm-vertical li.mm-opened > .mm-panel, li.mm-vertical.mm-opened > .mm-panel {
	display: block;
}
.mm-vertical .mm-listview > li > .mm-next, .mm-listview > li.mm-vertical > .mm-next {
	height: 40px;
	bottom: auto;
}
.mm-vertical .mm-listview > li > .mm-next:after,  .mm-listview > li.mm-vertical > .mm-next:after {
	top: 16px;
	bottom: auto;
}
.mm-vertical .mm-listview > li.mm-opened > .mm-next:after, .mm-listview > li.mm-vertical.mm-opened > .mm-next:after {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.mm-navbar {
	text-align: center;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.mm-navbar.mm-navbar-top-2{
	border-bottom: 1px solid;
	border-color: inherit;
	padding: 10px 0;
}

.mm-navbar a,  .mm-navbar a:hover {
	text-decoration: none;
}
.mm-navbar .mm-title {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.mm-navbar .mm-btn {
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	z-index: 1;
}
.mm-navbar .mm-btn:first-child {
	padding-left: 20px;
	left: 0;
}
.mm-navbar .mm-btn:last-child {
	text-align: right;
	padding-right: 20px;
	right: 0;
}
.mm-panel .mm-navbar {
	display: none;
}
.mm-panel.mm-hasnavbar .mm-navbar {
	display: block;
}
.mm-listview, .mm-listview > li {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0;
}
.mm-listview {
	font: inherit;
	font-size: 14px;
	line-height: 20px;
}
.mm-listview a,  .mm-listview a:hover {
	text-decoration: none;
}
.mm-listview > li {
	position: relative;
}
.mm-listview > li, .mm-listview > li:after,  .mm-listview > li .mm-next,  .mm-listview > li .mm-next:before {
	border-color: inherit;
}
.mm-listview > li > a,  .mm-listview > li > span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	color: inherit;
	display: block;
	padding: 10px 10px 10px 20px;
	margin: 0;
}
.mm-listview > li > a.mm-arrow,  .mm-listview > li > span.mm-arrow {
	padding-right: 50px;
}
.mm-listview > li:not(.mm-divider):after {
	content: '';
	border-bottom-width: 1px;
	border-bottom-style: solid;
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
.mm-listview > li:not(.mm-divider):after {
	left: 20px;
}
.mm-listview .mm-next {
	background: rgba(3, 2, 1, 0);
	width: 50px;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
}
.mm-listview .mm-next:before {
	content: '';
	border-left-width: 1px;
	border-left-style: solid;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}
.mm-listview .mm-next + a,  .mm-listview .mm-next + span {
	margin-right: 50px;
}
.mm-listview .mm-next.mm-fullsubopen {
	width: 100%;
}
.mm-listview .mm-next.mm-fullsubopen:before {
	border-left: none;
}
.mm-listview .mm-next.mm-fullsubopen + a,  .mm-listview .mm-next.mm-fullsubopen + span {
	padding-right: 50px;
	margin-right: 0;
}
.mm-panels > .mm-panel > .mm-listview {
	margin: 20px -20px;
}
.mm-panels > .mm-panel > .mm-listview:first-child, .mm-panels > .mm-panel > .mm-navbar + .mm-listview {
	margin-top: -20px;
}
.mm-listview .mm-inset {
	list-style: inside disc;
	padding: 0 10px 15px 40px;
	margin: 0;
}
.mm-listview .mm-inset > li {
	padding: 5px 0;
}
.mm-listview .mm-divider {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	font-size: 10px;
	text-transform: uppercase;
	text-indent: 20px;
	line-height: 25px;
}
.mm-listview .mm-spacer {
	padding-top: 40px;
}
.mm-listview .mm-spacer > .mm-next {
	top: 40px;
}
.mm-listview .mm-spacer.mm-divider {
	padding-top: 25px;
}
.mm-prev:before, .mm-next:after, .mm-arrow:after {
	content: '';
	border: 2px solid transparent;
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.mm-prev:before {
	border-right: none;
	border-bottom: none;
	left: 23px;
}
.mm-next:after, .mm-arrow:after {
	border-top: none;
	border-left: none;
	right: 23px;
}
.mm-menu {
	background: #f3f3f3;
	border-color: rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 0.7);
}
.mm-menu .mm-navbar > *,  .mm-menu .mm-navbar a {
	color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-navbar .mm-btn:before, .mm-menu .mm-navbar .mm-btn:after {
	border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-listview {
	border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu .mm-listview > li .mm-next:after,  .mm-menu .mm-listview > li .mm-arrow:after {
	border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next),  .mm-menu .mm-listview > li.mm-selected > span {
	background: rgba(255, 255, 255, 0.5);
}
.mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next,  .mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel,  .mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next,  .mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
	background: rgba(0, 0, 0, 0.05);
}
.mm-menu .mm-divider {
	background: rgba(0, 0, 0, 0.05);
}
/*
	jQuery.mmenu offcanvas addon CSS
*/
.mm-page {
	box-sizing: border-box;
	position: relative;
}
.mm-slideout {
	-webkit-transition: -webkit-transform 0.4s ease;
	-ms-transition: -ms-transform 0.4s ease;
	transition: transform 0.4s ease;
}
html.mm-opened {
	overflow-x: hidden;
	position: relative;
}
html.mm-blocking {
	overflow: hidden;
}
html.mm-blocking body {
	overflow: hidden;
}
html.mm-background .mm-page {
	background: inherit;
}
#mm-blocker {
	background: rgba(3, 2, 1, 0);
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
}
html.mm-blocking #mm-blocker {
	display: block;
}
.mm-menu.mm-offcanvas {
}
.mm-menu.mm-current {
	display: block;
}
.mm-menu {
	width: 80%;
	min-width: 140px;
	max-width: 440px;
}
html.mm-opening .mm-slideout {
	-webkit-transform: translate(80%, 0);
	-moz-transform: translate(80%, 0);
	-ms-transform: translate(80%, 0);
	-o-transform: translate(80%, 0);
	transform: translate(80%, 0);
}
 @media all and (max-width: 175px) {
html.mm-opening .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-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);
}
}


/*
	jQuery.mmenu counters addon CSS
*/
em.mm-counter {
  font: inherit;
  font-size: 14px;
  font-style: normal;
  text-indent: 0;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 45px;
  top: 50%; }
  em.mm-counter + a.mm-next {
    width: 90px; }
    em.mm-counter + a.mm-next + a,
    em.mm-counter + a.mm-next + span {
      margin-right: 90px; }
  em.mm-counter + a.mm-fullsubopen {
    padding-left: 0; }

.mm-vertical > .mm-counter {
  top: 12px;
  margin-top: 0; }
.mm-vertical.mm-spacer > .mm-counter {
  margin-top: 40px; }

.mm-nosubresults > .mm-counter {
  display: none; }

.mm-menu em.mm-counter {
  color: rgba(0, 0, 0, 0.3); }



#Form.showControlBar.mm-page.mm-slideout{
	margin-top:0!important;
	padding-top:53px!important;
}
.mm-close.mm-btn{
	line-height:40px;
}
.mm-close.mm-btn:before{
	content:"X";
}


/*iphone bug*/
.mobile_menu.mm-menu .mm-panels > .mm-panel{
	overflow-y:hidden;
}
.mobile_menu.mm-menu.mm-current .mm-panels > .mm-panel{
	overflow-y: auto;
}



