﻿
@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 */



.header_bg{position:inherit; background:#fff;}	
	
.HomeServices .box em{font-size:25px;  text-align:center; padding:20px; color:#fff; background:#0096d5; text-align:center; border-radius:50%; margin: 6px 40%;}
.HomeServices .box{background:#fff; border-radius:4px; box-shadow:2px 3px 15px; padding: 14px 15px; margin:20px 0px;}	
.HomeServices .box h5{font-size:22px; color:#177b44; text-align:center;  }
.HomeServices .box .icon-right{color:#0096d5; text-align:Center;}
.HomeServices .box .icon-right p{color:#333;}

.HomeServices .box:hover{background:#0096d5; color:#fff; }
.HomeServices .box:hover h5{color:#fff;}
.HomeServices .box:hover p{color:#fff;}
.HomeServices .box:hover em{color:#0096d5; background:#fff;}
.HomeServices .box:hover a{color:#0096d5;}
	
.section-title h2{text-align:center; font-weight:bold;}
.section-title h5{text-align:center;}
.header_bg{position:inherit; background:#fff;}	

.liberity img{padding-top:100px;}
.HomeServices .box em{font-size:25px;  text-align:center; padding:20px; color:#fff; background:#177b44; text-align:center; border-radius:50%; margin: 6px 40%;}
.HomeServices .box{background:#fff; border-radius:4px; box-shadow:2px 3px 15px; padding: 14px 15px; margin:20px 0px;}	
.HomeServices .box h5{font-size:22px; color:#177b44; text-align:center;  }
.HomeServices .box .icon-right{color:#f8c220; text-align:Center;}
.HomeServices .box .icon-right p{color:#333;}

.HomeServices .box:hover{background:#177b44; color:#fff; }
.HomeServices .box:hover h5{color:#fff;}
.HomeServices .box:hover p{color:#fff;}
.HomeServices .box:hover em{color:#177b44; background:#fff;}
.HomeServices .box:hover a{color:#f8c220;}
	
.section-title h2{text-align:center; font-weight:bold;}
.section-title h5{text-align:center;}

.yellow {
    color: #333;
    background: none;
    text-shadow: none;
    box-shadow: none;
    border: 2px solid #177b44;
    padding: 10px 30px;
	margin-top:10px;
}


.yellow:hover{
    color: #fff;
    background: none;
    text-shadow: none;
    box-shadow: 0px;
    border: 2px solid #FDC401;
    padding: 10px 30px;
}
.footer h3 {
    font-weight: 400;
    color: #006a24;
    margin-bottom: 15px;
}

.footer .social .fa{font-size:25px; padding:0px 10px; color:#0096d5;}
.footer .social .fa:hover{color:#f8c220; }

.footer h3:after {
    content: '';
    display: block;
    height: 2px;
    width: 60px;
    background: #f8c220 !important;
    margin: 15px 0 20px;
}

.footer p {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    line-height: 160%;
}
.footer ul li, #footer ul li a, .footer_icon li {
    font-size: 15px;
    padding-left: 0;
    list-style-type: none;
    color: #000	;
    margin: 7px 0;
}

.footer ul li:before, .accordion-title .collapsed:before {
    content: '\f105';
    font-family: FontAwesome;
}

.footer ul li:before {
    font-size: 15px;
    padding-right: 10px;
}

.footer ul {
    padding-left: 0;
}


.footer_box a, .footer_box a:link{color:#006a24;}

.footer_box a:active, .footer_box a:visited{color:#006a24;}

.footer .footer_icon li:before{display:none; }
.footer .footer_icon li .fa{padding-right:15px;}


.Policies .box p{height:110px;
}

.Community_Head {
    z-index: auto;
}
.Community_Head {
    background: #177b44;
    padding: 6px 5px;
    margin: 0 auto;
}
    .Community_Head .Title, .Community_Head .Title a, .Community_Head .Title a:link, .Community_Head .Title a:visited, .Community_Head .Title a:hover {
        color: #f8c200;
        font-size: 22px;       
        font-weight: normal;
        font-style: normal;
        margin: 0 5px;
    }
.Community_content {
    background: #f8c200;
    border: 1px dotted #f8c200;
    padding: 5px;
    margin: 0 auto;
    color: #000;
    font-size: 14px;    
    line-height: 18px%;
}
.Community_content p{padding: 10px;}
.Community_content a{color:#177b44;}
.contact h3{color:#177b44;}
.contact h3 img{margin-right:10px;}
.contact p{padding-left:30px;}
.section-title h2{margin: 20px 0px 20px 4px;}

.MSDS .new-link-s {
    background: #f8c200 !important;
    color: #177b44 !important;
    display: block !important;
    margin: 10px !important;
    padding: 5px !important;
    font-weight: bold;
    text-align: left;
    text-decoration: none;
    -webkit-box-shadow: 0px 2px 3px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 0px 2px 3px rgba(50, 50, 50, 0.75);
    box-shadow: 0px 2px 3px rgba(50, 50, 50, 0.75);
}

.General  {    
	margin-bottom:20px;
	}
.General .general-heading {
    background: #177b44 !important;
    color: #f8c200 !important;
	margin-bottom:20px;
	}
.General .m-links-n {
    float: left;
    width: 300px;
    background: #f8c200 !important;
    color: #177b44 !important;
	}
.Machinery .machinery-left {
    
    color: #f8c200;
    background: #177b44;
	width:100%;
	height:auto;
    font-size: 14px;
    padding: 20px;    
    margin: 50px 0px 0px 0px;
}
.Machinery .machinery-right {
    float: right;
    margin: 20px 28px 0px 0 !important;
	    height: 436px;
}
.M-content .box{height:250px;}
.MerchandiseDetail img{margin-top: 50px;}



@media screen and (max-width:767px){

.FencingMaterials img{height: 350px;   }
.AnimalHealth img{height: 265px;   }

}





html {
    height: 100%;
}

.navbar-inverse {
    background-color: #fff;
    border: none;
}

/*global setting*/
#Body,
html,
body,
.Head,
.SubTitle,
.SubSubTitle,
.Normal {
    color: #666666;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.5px;
    font-family: 'Raleway', sans-serif;
    Font-weight: normal;
}


.sticky {
    width: 100% !important;
    position: fixed;
    z-index: 999;
    top: 0px;
    background: #fff;
   
}


.sticky .navigation {box-shadow: 3px 3px 15px;}


.sticky .logo img {
    width: 70px;
}

.sticky .navbar-nav{padding-top:0px;}
.sticky .navigation .navbar-inverse{margin-top:10px; margin-bottom:0px;}


.sticky .logo img{padding: 8px 0;}
.sticky .navbar-inverse .navbar-toggle{margin:-45px 0px;}


html,
button,
input,
select,
textarea,
.ls-layer,
.ls-layer *,
.uneditable-input,
.btn {
    font-family: 'Raleway', sans-serif;
    Font-weight: normal;
}

div[class^="Theme_Responsive"] select,
div[class^="Theme_Responsive"] textarea,
div[class^="Theme_Responsive"] input[type="text"],
div[class^="Theme_Responsive"] input[type="password"],
div[class^="Theme_Responsive"] input[type="datetime"],
div[class^="Theme_Responsive"] input[type="datetime-local"],
div[class^="Theme_Responsive"] input[type="date"],
div[class^="Theme_Responsive"] input[type="month"],
div[class^="Theme_Responsive"] input[type="time"],
div[class^="Theme_Responsive"] input[type="week"],
div[class^="Theme_Responsive"] input[type="number"],
div[class^="Theme_Responsive"] input[type="email"],
div[class^="Theme_Responsive"] input[type="url"],
div[class^="Theme_Responsive"] input[type="search"],
div[class^="Theme_Responsive"] input[type="tel"],
div[class^="Theme_Responsive"] input[type="color"] {
    font-family: 'Raleway', sans-serif;
    Font-weight: normal;
}

.dnn_layout,
.container {
    width: 970px;
}

@media only screen and (min-width: 1600px) {
    .dnn_layout,
    .container {
        width: 1470px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .dnn_layout,
    .container {
        width: 1170px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dnn_layout,
    .container {
        width: 750px;
    }
}

@media only screen and (max-width: 767px) {
    .dnn_layout,
    .container {
        width: auto;
    }
}

/*color*/

/* body style*/
/*.dnngo-main {
								background-image:url("/Portals/8/skins/greens%20mandurama_new/images/Body_bg_2.png");
											background-position:left top;
	background-attachment:scroll;
					background-repeat:repeat;
		background-size:auto ;
}*/


/*content style*/
#dnn_content, .BannerPane:before {
    background-color: #FFFFFF;
}


/*Mode style*/
#dnn_wrapper {
    width: auto;
}





/*Fixed Top Content*/
#fixedBox {
    display: none;
}

#fixedBox {
    display: block;
}

#fixedContent:before {
    background-color: #0d0d0d;
    filter: alpha(opacity= 60 );
    opacity: 0.6;
}

#fixedBox,
#fixedBox .Normal,
#fixedToggle .fa {
    font-size: #0d0d0dpx;
    color: #0d0d0d;
}

    #fixedBox a,
    #fixedBox a:link,
    #fixedBox a:active,
    #fixedBox a:visited,
    #fixedBox a:hover {
        color: #20a3f0;
    }

#fixedToggle:before {
    border-top-color: #0d0d0d;
    border-right-color: #0d0d0d;
}
/*h1~h6 style*/
h1 {
    color: #177b44;
    font-size: 30px;
    line-height: 34px;
    letter-spacing: 0px;
    font-family: 'Raleway', sans-serif;
    Font-weight: normal;
}

h2 {
    color: #177b44;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0px;
    font-family: 'Raleway', sans-serif;
    Font-weight: normal;
}

h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 35px;
    letter-spacing: 0px;
    font-family: 'Raleway', sans-serif;
    Font-weight: normal;
}

h4 {
    color: #177b44;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    font-family: 'Raleway', sans-serif;
    Font-weight: normal;
}

h5 {
    color: #177b44;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0px;
    font-family: 'Raleway', sans-serif;
    Font-weight: normal;
}

h6 {
    color: #424242;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
    font-family: 'Raleway', sans-serif;
    Font-weight: normal;
}

/*Content Style*/
a,
a:link,
a:active,
a:visited {
    color: #0096d5;
}

    a:hover {
        color: #0096d5;
    }

.default_color {
    color: #666666 !important;
}

.accent_color,
.color-accent {
    color: #177b44 !important;
}

.border-accent {
    border-color: #177b44 !important;
}

.default_size {
    font-size: 14px !important;
}

.big_size {
    font-size: 15px !important;
}

.small_size {
    font-size: 113px !important;
}

.default_family {
    Font-Family: Raleway;
    Font-weight: normal;
}

.special_family_1 {
    Font-Family: Raleway;
    Font-weight: normal;
}

.special_family_2 {
    Font-Family: Raleway;
    Font-weight: normal;
}

.default_line_height {
    line-height: 1.9 !important;
}

.big_line_height {
    line-height: 2 !important;
}

.small_line_height {
    line-height: 1.6 !important;
    ;
}

.p {
    font-family: 'Raleway', sans-serif;
}

.h1-color {
    color: #177b44;
}

.h2-color {
    color: #177b44;
}

.h3-color {
    color: #ffffff;
}

.h4-color {
    color: #177b44;
}

.h5-color {
    color: #177b44;
}

.h6-color {
    color: #424242;
}


.btn-accent {
    color: #177b44;
    border-color: #177b44;
    background-color: #177b44;
}

    .btn-accent:before {
        background-color: #177b44;
    }

[class*="dg-btn-"].hover-accent:hover {
    color: #177b44;
    border-color: #177b44;
    background-color: #177b44;
}

    [class*="dg-btn-"].hover-accent:hover:before {
        background-color: #177b44;
    }

.dg-modal.bg-accent .modal-content,
.dg-modal.header-accent .modal-header,
.list-ico3 .bg-accent,
.bg-accent,
.dropdown-menu.hover-accent a:hover,
.dropdown-menu.hover-accent > .active > a {
    background-color: #177b44;
}

[data-color="accent"] + .tooltip .tooltip-inner {
    background-color: #177b44;
}

[data-color="accent"] + .tooltip .tooltip-arrow {
    border-color: #177b44;
}


/*module style*/
.Skin_05_timeline.news_list .news_date_box span i,
.Skin_05_timeline.news_list .news_post_box .news_post .dot {
    border-color: #FFFFFF;
}

.Skin_03_Simple.simple_list h2.news_title a:hover {
    color: #177b44;
}

.galler_datail h4 {
    color: #177b44 !important;
}

.Skin_04_Box.news_detail .post_date a:hover,
.Skin_04_Box.news_list .post_date a:hover,
.Skin_03_Default.filter_Box .portfolio_categories a:hover {
    color: #177b44;
}

.Skin_03_Default.galler_datail .comment_form .submit_button .CommandButton {
    text-shadow: none;
    border-color: #177b44;
    color: #177b44;
    transition: background-color ease-in 200ms;
}

    .Skin_03_Default.galler_datail .comment_form .submit_button .CommandButton:hover {
        background-color: #177b44;
        color: #FFF;
    }

.Skin_03_Simple.news_detail .heading span {
    background-color: #FFFFFF;
}

.wrapper .Theme_Responsive_Default .form_submit .btn,
.Skin_05_timeline .news_date_box span,
.Skin_05_timeline .news_date_box span i,
.Skin_05_timeline .news_more_box span,
.Skin_05_timeline .news_more_box .line span,
.Skin_05_timeline .news_post_box .news_post .dot,
.Skin_05_timeline .news_date_box span,
.Skin_05_timeline .news_date_box span i,
.Skin_05_timeline .news_more_box span,
.Skin_05_timeline .xblog_page .pager,
.Skin_05_timeline .news_post_box .post_box .post_more a:hover,
.banner_btn.btn_white:hover:after {
    background-color: #177b44;
}

.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: #177b44;
    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: #177b44;
}

.Skin_03_Default #filters li a:hover,
.Skin_03_Default .sort_box li a:hover,
.validationEngineContainer .galler_datail .single_meta a:hover,
.news_list .post_categories a:hover,
.news_list .post_more a:hover,
.news_detail .post_categories a:hover,
.news_detail .post_more a:hover,
.news_list.Skin_04_Box h2.news_title a:hover,
.Skin_04_Box .post_date a:hover,
.Skin_05_timeline .news_post_box .post_box h2.news_title a:hover,
.Skin_05_timeline .news_post_box .post_box .post_date a:hover,
.Skin_05_timeline .news_detail_top h2.news_title,
.news_detail .post_date a:hover {
    color: #177b44;
}

.news_detail_top .tab_right .news_detail_username a:hover,
.Theme_19_Normal .filter_navigation ul li.selected a {
    color: #177b44 !important;
}

a.abtn.btn_white:hover,
.banner_btn,
.banner_btn.btn_white:hover,
.comment_form .submit_button .CommandButton {
    border-color: #177b44;
}

.Skin_05_timeline.news_detail .post_date a:hover,
.Skin_05_timeline.news_detail .post_author_info .author_desc {
    color: #177b44;
}

.Skin_05_timeline.news_detail {
    background: none;
}

/*html style*/

/*Accent Background Color */
.a_bg_c,
.btn.a_bg_c {
    background-color: #177b44;
}

.a_bg_c_h:hover,
.btn.a_bg_c_h:hover {
    background-color: #177b44;
}
/*Accent Color */
.a_t_c,
.btn.a_t_c {
    color: #177b44;
}

.a_t_c_h:hover,
.btn.a_t_c_h:hover {
    color: #177b44;
}
/*Accent Border Color */
.a_b_c,
.btn.a_b_c {
    border-color: #177b44;
}

.a_b_c_h:hover,
.btn.a_b_c_h:hover {
    border-color: #177b44;
}

/*anchorNav*/
#anchorNav li:hover i,
#anchorNav li.active i,
#anchorNav li span {
    background-color: #177b44;
}

/*photo icon*/
.photo_box .ico span,
.photo_box .ico em,
.photo_box .ico i,
.photo_box .ico .fa,
.content_sytle_2 .shade,
.photo_box.content_push_in .content,
.photo_box:hover.entirety_bevel .shade,
.photo_box.ico_push_in .ico,
.photo_box.content_top_increment .content h3,
.photo_box.content_bottom_push_in .content:after {
    background-color: #177b44;
}

.photo_box.icon_tag_push .ico:before {
    border-right-color: #177b44;
    border-top-color: #177b44;
}

.photo_box.content_bottom_push_in .content:before {
    border-bottom-color: #177b44;
}
/*map sytle*/


#gmap01 {
    height: 300px
}

@media only screen and (min-width: 1600px) {
    #gmap01 {
        height: 300px
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    #gmap01 {
        height: 300px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #gmap01 {
        height: 300px
    }
}

@media only screen and (max-width: 767px) {
    #gmap01 {
        height: 300px
    }
}















/*Portfolios*/
.portfolio-list01 .filters a.active,
.portfolio-list02 .filters a.active,
.portfolio-list03 .filters a.active,
.portfolio-list04 .filters a.active,
.portfolio-list05 .filters a.active,
.portfolio-list06 .filters a.active {
    background-color: #177b44;
    border-color: #177b44;
}

.portfolio-list01 .filters a:hover,
.portfolio-list02 .filters a:hover,
.portfolio-list03 .filters a:hover,
.portfolio-list04 .filters a:hover,
.portfolio-list05 .filters a:hover,
.portfolio-tag a:hover,
.portfolio-list04 .element-view .more,
.portfolio-detail .detail-port-nav .nav-return,
.portfolio-detail .detail-port-nav a,
.portfolio-detail .detail-preview {
    border-color: #177b44;
    color: #177b44;
}

    .portfolio-list01 .element-pic .ico-left,
    .portfolio-list01 .element-pic .ico-right,
    .portfolio-list02 .element-info .ico-left,
    .portfolio-list02 .element-info .ico-right,
    .portfolio-categories > li.active > a,
    .portfolio-list03 .ico span,
    .portfolio-list04 .element:hover,
    .portfolio-list05 .loadmore,
    .portfolio-list06 .element-category,
    .portfolio-detail .detail-preview:hover,
    .gallery-carousel01 .slick-dots li.slick-active button,
    .gallery-carousel02 .slick-arrow,
    .gallery-carousel02 .slick-dots li.slick-active button,
    .gallery-carousel03 .slick-arrow,
    .gallery-carousel04 .slick-arrow,
    .portfolio-detail .detail-author a:hover {
        background-color: #177b44;
    }

.portfolio-list01 .portfolio-mian h3 a:hover,
.portfolio-list01 .element-info p a:hover,
.portfolio-list02 .portfolio-mian h3 a:hover,
.portfolio-list02 .element-info p a:hover,
.portfolio-search:before,
.portfolio-title01,
.portfolio-categories ul li a:hover,
.portfolio-categories ul li.active > a,
.portfolio-list03 .portfolio-mian h3 a:hover,
.portfolio-list03 .element-info p a:hover,
.portfolio-list05 .element-view a:hover,
.portfolio-list06 .element-view a:hover,
.portfolio-detail .detail-skills dd .fa,
.portfolio-detail .detail-related a:hover,
.portfolio-list06 .filters a:hover {
    color: #177b44;
}

.gallery-carousel01 .slick-arrow:before {
    border-color: #177b44;
}

/*Blog*/
.blog-title01 {
    color: #177b44;
}

.blog-category ul li a:hover,
.blog-category ul li.active > a,
.PopularTab .tab-list li h6 a:hover,
.blogdashBoard-carousel h3 a:hover,
.xblog_search:before {
    color: #177b44 !important;
}

.PopularTab .tab-title li.active:before {
    border-color: #177b44 !important;
}

.blogDashBoard-tag a:hover {
    border-color: #177b44 !important;
    color: #177b44 !important;
}

.author-social a:hover,
.blog-category > li.active > a,
.Theme_Carousel_Default .slick-dots li.slick-active button,
.Theme_Carousel_Default .slider-item .fa,
.Theme_Carousel_Default .slick-prev,
.Theme_Carousel_Default .slick-next,
.Theme_Slider_Default .slick-prev,
.Theme_Slider_Default .slick-next {
    background-color: #177b44 !important;
}

    .Theme_Carousel_Default .slick-prev:hover,
    .Theme_Carousel_Default .slick-next:hover,
    .Theme_Slider_Default .slick-prev:hover,
    .Theme_Slider_Default .slick-next:hover {
        background-color: #333333 !important;
    }


.blog-list01 .list-btn {
    border-color: #177b44 !important;
    color: #177b44 !important;
}

.blog-list01 .list-info a:hover,
.blog-list01 .list-title a:hover,
.blog-detail01 .detail-info a:hover,
.blog-detail01 .detail-relatedlist a:hover,
.blog-detail01 .detail-relatedlist a.more,
.blog-detail01 .detail-relatedlist a.more:link,
.blog-detail01 .detail-relatedlist a.more:active,
.blog-detail01 .detail-relatedlist a.more:visited,
.blog-detail01 .detail-relatedlist a.more:hover {
    color: #177b44 !important;
}

.blog-list01 .list-btn:hover {
    color: #FFF !important;
    background-color: #177b44 !important;
}

.blog-list01 .blog-slider .slick-prev:hover,
.blog-list01 .blog-slider .slick-next:hover {
    border-color: #177b44 !important;
    background-color: #177b44 !important;
}

.blog-list01 .list-date .month,
.blog-list01 .list-linkbox,
.blog-detail01 .detail-date .month,
.blog-detail01 .author-social a:hover,
.blog-detail01 .leave-formlist input[type="submit"] {
    background-color: #177b44 !important;
}

.blog-detail01 .detail-heading {
    color: #177b44 !important;
}

.blog-detail01 .leave-formlist input[type="submit"]:hover {
    background-color: #555 !important
}

.blog-list01 a:hover .list-linkbox {
    background-color: #333 !important;
}

.blog-list01 .blog-page span.index,
.blog-list01 .blog-page a:hover {
    border-color: #177b44 !important;
    background-color: #177b44 !important;
}


.blog-list02 .list-author {
    border-color: #177b44 !important;
}

.blog-list02 .list-btn {
    border-color: #177b44 !important;
    color: #177b44 !important;
}

.blog-list02 .list-title a,
.blog-list02 .list-info a:hover,
.blog-list02 .list-title a:hover,
.blog-detail02 .detail-info a:hover,
.blog-detail02 .detail-relatedlist a:hover,
.blog-detail02 .detail-relatedlist a.more,
.blog-detail02 .detail-relatedlist a.more:link,
.blog-detail02 .detail-relatedlist a.more:active,
.blog-detail02 .detail-relatedlist a.more:visited,
.blog-detail02 .detail-relatedlist a.more:hover {
    color: #177b44 !important;
}

.blog-list02 .list-btn,
.blog-list02 .list-btn:hover {
    color: #177b44 !important;
}

.blog-list02 .blog-slider .slick-prev:hover,
.blog-list02 .blog-slider .slick-next:hover {
    border-color: #177b44 !important;
    background-color: #177b44 !important;
}

.blog-list02 .list-date .month,
.blog-list02 .list-linkbox,
.blog-detail02 .detail-date .month,
.blog-detail02 .author-social a:hover,
.blog-detail02 .leave-formlist input[type="submit"] {
    background-color: #177b44 !important;
}

.blog-detail02 .detail-heading {
    color: #177b44 !important;
}

.blog-detail02 .leave-formlist input[type="submit"]:hover {
    background-color: #555 !important
}

.blog-list02 a:hover .list-linkbox {
    background-color: #333 !important;
}

.blog-list02 .blog-page span.index,
.blog-list02 .blog-page a:hover {
    border-color: #177b44 !important;
    background-color: #177b44 !important;
}

.blog-list03 .list-btn {
    border-color: #177b44 !important;
    color: #177b44 !important;
}

.blog-list03 .list-info a:hover,
.blog-list03 .list-title a:hover,
.blog-detail03 .detail-info a:hover,
.blog-detail03 .detail-relatedlist a:hover,
.blog-detail03 .detail-relatedlist a.more,
.blog-detail03 .detail-relatedlist a.more:link,
.blog-detail03 .detail-relatedlist a.more:active,
.blog-detail03 .detail-relatedlist a.more:visited,
.blog-detail03 .detail-relatedlist a.more:hover {
    color: #177b44 !important;
}

.blog-list03 .list-btn:hover {
    color: #FFF !important;
    background-color: #177b44 !important;
}

.blog-list03 .blog-slider .slick-prev:hover,
.blog-list03 .blog-slider .slick-next:hover {
    border-color: #177b44 !important;
    background-color: #177b44 !important;
}

.blog-list03 .list-date .month,
.blog-list03 .list-linkbox,
.blog-detail03 .detail-date .month,
.blog-detail03 .author-social a:hover,
.blog-detail03 .leave-formlist input[type="submit"] {
    background-color: #177b44 !important;
}

.blog-detail03 .detail-heading {
    color: #177b44 !important;
}

.blog-detail03 .leave-formlist input[type="submit"]:hover {
    background-color: #555 !important
}

.blog-list03 a:hover .list-linkbox {
    background-color: #333 !important;
}

.blog-list03 .blog-page span.index,
.blog-list03 .blog-page a:hover {
    border-color: #177b44 !important;
    background-color: #177b44 !important;
}

.blog-timeline .list-btn {
    border-color: #177b44 !important;
    color: #177b44 !important;
}

.blog-timeline .list-info a:hover,
.blog-timeline .list-title a:hover,
.blog-timeline-detail .detail-info a:hover,
.blog-timeline-detail .detail-relatedlist a:hover,
.blog-timeline-detail .detail-relatedlist a.more,
.blog-timeline-detail .detail-relatedlist a.more:link,
.blog-timeline-detail .detail-relatedlist a.more:active,
.blog-timeline-detail .detail-relatedlist a.more:visited,
.blog-timeline-detail .detail-relatedlist a.more:hover {
    color: #177b44 !important;
}

.blog-timeline .list-btn:hover {
    color: #177b44 !important;
}

.blog-timeline .blog-slider .slick-prev:hover,
.blog-timeline .blog-slider .slick-next:hover {
    border-color: #177b44 !important;
    background-color: #177b44 !important;
}

.blog-timeline .list-date .month,
.blog-timeline .list-linkbox,
.blog-timeline .blog-date,
.blog-timeline .timeline-left .list-post:after,
.blog-timeline .timeline-right .list-post:after,
.blog-timeline-detail .detail-date .month,
.blog-timeline-detail .author-social a:hover,
.blog-timeline-detail .leave-formlist input[type="submit"],
.blog-timeline .blog-date:after {
    background-color: #177b44 !important;
}

.blog-timeline-detail .detail-heading {
    color: #177b44 !important;
}

.blog-timeline-detail .leave-formlist input[type="submit"]:hover {
    background-color: #555 !important
}

.blog-timeline a:hover .list-linkbox {
    background-color: #333 !important;
}

.blog-timeline .blog-pagemore {
    background-color: #177b44 !important;
}

.blog-timeline2 .list-btn {
    border-color: #177b44 !important;
    color: #177b44 !important;
}

.blog-timeline2 .list-info a:hover,
.blog-timeline2 .list-title a:hover,
.blog-timeline2-detail .detail-info a:hover,
.blog-timeline2-detail .detail-relatedlist a:hover,
.blog-timeline2-detail .detail-relatedlist a.more,
.blog-timeline2-detail .detail-relatedlist a.more:link,
.blog-timeline2-detail .detail-relatedlist a.more:active,
.blog-timeline2-detail .detail-relatedlist a.more:visited,
.blog-timeline2-detail .detail-relatedlist a.more:hover {
    color: #177b44 !important;
}

.blog-timeline2 .list-btn:hover {
    color: #FFF !important;
    background-color: #177b44 !important;
}

.blog-timeline2 .blog-slider .slick-prev:hover,
.blog-timeline2 .blog-slider .slick-next:hover {
    border-color: #177b44 !important;
    background-color: #177b44 !important;
}

.blog-timeline2 .list-date .month,
.blog-timeline2 .list-linkbox,
.blog-timeline2 .blog-date,
.blog-timeline2 .timeline-left .list-post:after,
.blog-timeline2 .timeline-right .list-post:after,
.blog-timeline2-detail .detail-date .month,
.blog-timeline2-detail .author-social a:hover,
.blog-timeline2-detail .leave-formlist input[type="submit"],
.blog-timeline2 .blog-date:after,
.blog-timeline2 .list-date:before {
    background-color: #177b44 !important;
}

.blog-timeline2-detail .detail-heading {
    color: #177b44 !important;
}

.blog-timeline2-detail .leave-formlist input[type="submit"]:hover {
    background-color: #555 !important
}

.blog-timeline2 .list-date:after {
    border-color: #177b44 !important;
}

.blog-timeline2 a:hover .list-linkbox {
    background-color: #333 !important;
}

.blog-timeline2 .blog-pagemore {
    background-color: #177b44 !important;
}

/*Page*/

/*Page*/
.aboutus01-title1 h3,
.aboutus01-title2 h3,
.aboutus01-title1 ul li span.fa,
.aboutus01-ibox02.photo_box .ico span,
.tab_list li span,
.aboutus02-testimonials01 small,
.service01-ibox .service01-ibox_main em.fa,
.service02-carousel .blockquote_6 .ico,
.ourteam02-ibox h6,
.detail01-Testimonials .mark,
.detail01-chart .percentage4,
.detail02_box h4,
.faq02-Testimonials blockquote .main h2,
.faq02-chart .faq02-percentage,
.pricing01-list li:hover a,
.pricing01-list li:hover .fa,
.pricing02-price .unit,
.pricing02-price .price_holder ul li span.fa,
.pricing-full .pricing-full_right .pricing-full_right_main h3,
.pricing02-title1 h3,
.three404-list li .fa,
.four404-list02 li span.fa,
.four404-box a:hover.four404-bnt,
.four404-box .four404-input > a .fa,
.history02-title01,
.history02 ul li em,
.history03-content .accent_text,
.history03-tree_middle em.fa,
.contactus02-out h3,
.Theme_Responsive_20073_ContactUs02 .form_submit input,
a:hover.faq02-bnt {
    color: #177b44;
}

[class*="dg-tabs-"] h2.resp-tab-active,
[class*="dg-tabs-"] h2.resp-tab-active:hover,
.aboutus01-testimonials .last_page:hover,
.aboutus01-testimonials .next_page:hover,
.aboutus01-title2 .img .the4,
.aboutus01-ibox .ico,
.aboutus01-ibox02.photo_box:hover .shade,
.aboutus02-title01 h2:before,
.aboutus02-bnt,
.aboutus02-bg02,
.aboutus02-title3 h2:before,
.aboutus02-testimonials01 .dot a.actived,
.aboutus02-carouse .photo_box .ico span,
.service01-full .service01-full_right,
.service01-ibox02 em.fa,
.service01-tab ul.resp-tabs-list li.resp-tab-active,
.service01-imgbox .service01-imgcon .photo_box .shade,
.service02-bg02,
.service02-carousel .owl-page:hover,
.service02-carousel .owl-page.active,
.ourteam01-bg03,
.ourteam01-ibox .fa,
.ourteam02-ibox .photo_box em.fa,
.ourteam02-ibox .photo_box .shade,
.detail01-isotope .ico span,
a.pricing01-bnt02:hover,
a.pricing01-bnt:hover,
.detail02_box ul li a:hover,
.detail02-bg01 > .top-icon,
.detail02-bg01 > .bottom-icon,
.detail-bottom-icon > .bottom-icon,
.detail-bottom-icon .top-icon,
.detail02-list .date:before,
.detail02-carousel .item:hover h3,
.detail02-carousel .owl-page.active,
div.Theme_Responsive_20073_TeamDetails2 .form_submit inpu,
.faq01-Testimonials .faq_list dt:before,
.faq01-Testimonials .dot a:hover,
.faq01-Testimonials .dot a.actived,
.faq-text .icon,
a.ourteam-bnt,
a:link.ourteam-bnt,
a:active.ourteam-bnt,
a:visited.ourteam-bnt,
.detail02-bg01 > .top-icon,
.detail02-bg01 > .bottom-icon,
.detail-bottom-icon > .bottom-icon,
.detail-bottom-icon .top-icon,
.detail02-list .date:before,
.detail02-carousel .item:hover h3,
.detail02-carousel .owl-page.active,
.faq02-ibox .faq02-ibox_left_top .main h3 em.fa,
.faq02-ibox .faq02-ibox_left_bottom .main h3 em.fa,
.faq02-ibox .faq02-ibox_right_top .main h3 em.fa,
.faq02-ibox .faq02-ibox_right_bottom .main h3 em.fa,
.faq02-Testimonials blockquote .main a,
.faq02-accordion .panel-default .accordion_icon,
.pricing01-ibox .ico,
.pricing02-price .price_title em.fa,
.pricing02-price .price_title .line,
.pricing02-price a.btn,
.pricing02-title1 a.links:hover,
.pricing02-ibox .icon em.fa,
div.Theme_Responsive_20073_TeamDetails2 .form_submit input,
.contactus01-ibox .fa,
div.Theme_Responsive_20073_Contact01 .form_submit .btn,
.contactus02-info > span.fa,
.contactus02-title01 h2::before,
.contactus02-ibox .social_list_10 span,
.contactus02-bg02,
.three404-input .btn,
a.three404-bnt,
a:link.three404-bnt,
a:active.three404-bnt,
a:visited.three404-bnt,
.four404-list li:before,
a.history01-bnt,
a:link.history01-bnt,
a:active.history01-bnt,
a:visited.history01-bnt,
.history-box .history-boxmore:hover,
.history-box .history-boxgotop:hover,
a.history02-bnt,
a:link.history02-bnt,
a:active.history02-bnt,
a:visited.history02-bnt,
.history03-title .line,
.clients-title01 h2:before,
.carousel .owl-buttons .owl-prev:hover,
.carousel .owl-buttons .owl-next:hover,
.aboutus02-tit2:before,
.contactus02-bg01 .bg_right:before,
.carousel .owl-page.active {
    background-color: #177b44;
}

    .service01-tab ul.resp-tabs-list li.resp-tab-active:before,
    .contactus02-bg02 .contactus02-text:after,
    .aboutus02-tab01 ul.resp-tabs-list li.resp-tab-active {
        border-top-color: #177b44;
    }

.history-box .history-boxmain .history-boxcontent:before {
    border-right-color: #177b44;
}

.ourteam01-ibox {
    border-bottom-color: #177b44;
}

.aboutus02-meetteam .team_member:hover,
.ourteam01-title1 h4:before,
.ourteam01-title1 h4:after,
.service02-carousel .blockquote_6 .ico:before,
.blockquote_6 .ico:after,
.detail01-Testimonials .dot a.actived,
.detail01-ibox li h3:after,
.faq02-accordion .panel-heading + .panel-collapse .panel-body,
.pricing01-ibox,
.Contactus01-Container01 .Contactus01-heading01:before,
.Contactus01-Container01 .Contactus01-heading01:after,
.history-top img,
.history-box .history-boxmain .history-boxdate,
.history-box .history-boxmain .history-boxcontent,
.history02-carouse02 .owl-buttons .owl-prev:hover:before,
.history02-carouse02 .owl-buttons .owl-next:hover:before,
.history02 .time_box_left h3:before {
    border-color: #177b44;
}

    .pricing01-ibox .ico:before {
        border-left-color: #177b44;
        border-top-color: #177b44;
    }

a.aboutus01-bnt:hover,
a.pricing01-bnt:hover {
    border-color: #177b44;
    background-color: #177b44;
}

.two404-bg01 a.two404-bnt,
.four404-box a.four404-bnt {
    font-family: 'Raleway', sans-serif;
    border-color: #177b44;
    background-color: #177b44;
}

.ourteam01-dropcaps,
.pricing01-bnt02,
a.pricing01-bnt02,
a:link.pricing01-bnt02,
a:active.pricing01-bnt02,
a:visited.pricing01-bnt02,
.detail01-ibox li span,
.pricing02-title1 a.links,
.contactus01-ibox02 li .fa,
div.Theme_Responsive_20073_Contact01 .form_submit .btn:hover {
    color: #177b44;
    border-color: #177b44;
}



/*Short Codes*/
/*lightbox*/
.lightbox-title:after {
    border-bottom-color: #177b44;
}

.lightbox-photo .photo > .fa,
.lightbox-photo .photo > .icon .fa {
    background-color: #177b44;
}

/*alert*/
.dg-alert01,
.ibox-title:after,
.ibox-title02:after,
.dg-alert03.alert-accent .icon,
.dg-alert05.alert-accent,
.alertpage-title:after {
    border-color: #177b44;
}

    .dg-alert01.alert-accent,
    .dg-alert03.alert-accent,
    .dg-alert05.alert-accent .close {
        border-color: #177b44;
        color: #177b44;
    }

    .dg-alert02.alert-accent,
    .dg-alert04.alert-accent,
    .dg-alert05.alert-accent .icon,
    .dg-alert06.alert-accent {
        background-color: #177b44;
    }

/*thumbnail*/
.thumbnail-title h3:after,
.thumbnail-title02:after {
    border-color: #177b44;
}

.dg-thumbnail .thumb-box em,
.dg-thumbnail .thumb-box i,
.dg-thumbnail .thumb-box .fa,
.dg-thumbnail .switcher input[type="checkbox"]:checked + label {
    background-color: #177b44;
}

.dg-thumbnail .brand a:hover span {
    color: #177b44;
}
/*list*/
.list-ordened li:before,
.list-ordened2 li:before,
.list-ico .fa,
.list-ico2 .fa,
.list-ico3 .fa,
.list-ico .lnr,
.list-ico2 .lnr,
.list-ico3 .lnr,
.list-ico .glyphicon,
.list-ico2 .glyphicon,
.list-ico3 .glyphicon {
    color: #177b44;
}

.list-ordened2 li:before,
.list-ico2 .fa,
.list-ico2 .lnr,
.list-ico2 .glyphicon {
    border-color: #177b44;
}

.list-ordened3 li:before,
.list-ico3 .fa,
.list-ico3 .lnr,
.list-ico3 .glyphicon {
    background-color: #177b44;
}

/*Dividers*/
.dividers-06:before,
.dividers-06 span,
.dividers-06:after,
.dividers-08 {
    border-top-color: #177b44;
}

/*icon-box*/
.dg-ibox04 .btn {
    border-color: #177b44;
    color: #177b44;
}

    .dg-ibox04 .btn:hover {
        background-color: #177b44;
    }

.dg-ibox13 .more:before {
    border-left-color: #177b44;
}

.dg-ibox35:before {
    border-top-color: #177b44;
}

/*Promo-Boxes*/
.promopage-title:after,
.promo-content .line {
    border-color: #177b44;
}
/*breadcrumb*/
.breadcrumb a:hover,
.breadcrumb .dropdown:hover,
.breadcrumb.bg-default li a:hover,
.breadcrumb.bg-default li .dropdown:hover,
.breadcrumb.bg-default li.right .dropdown:hover {
    color: #177b44;
}

/*soon*/
.dg-soon-cap-round .soon-label {
    color: #177b44;
}


/*price*/

.dg-price01 .color-1 .price-title,
.dg-title25 .line:before,
.dg-title25 .line:after,
.dg-price02 .price-border:hover,
.dg-price02 .price-border.best-value,
.dg-price07 .price-box .price-pad,
.dg-price08 .price-box,
.dg-price10 .btn:hover,
.dg-price11 .price-title,
.dg-price11 .btn:hover,
.dg-price15 .price-border:hover .price-title em.fa,
.dg-price15 .price-border:hover .price-box,
.dg-price18 .price-border,
.dg-price20 .best-value .price-title,
.dg-price20 .price-border:hover .price-title,
.dg-price21 .price-box,
.dg-price24 .price-border:hover .price-title,
.dg-price27 .price-border:hover .price-title,
.dg-price28 .price-border:hover .price-title,
.dg-price26 .price-border:hover .price-title,
.dg-price26 li:hover,
.dg-price06 .color-2 .price-title,
.dg-price06 .color-2 .price-box,
.dg-price09 .color-2 .price-title,
.dg-price12 .price-box,
.dg-price13 .price-border:hover,
.dg-price13 .price-border.color-1:hover,
.dg-price13 .price-border.color-2:hover,
.dg-price13 .price-border.color-3:hover,
.dg-price13 .price-border,
.dg-price14 .price-border .price-title {
    background-color: #177b44;
}

.dg-title25 .line,
.dg-price07 .price-border,
.dg-price07 .price-box,
.dg-price07 .price-border,
.dg-price23,
.dg-price27 .btn,
.dg-price27 .price-border:hover,
.dg-price29 .price-border,
.dg-price05 .color-2.best-value,
.dg-price05 .color-2:hover,
.dg-price12 .price-border.color-3:hover,
.dg-price09 .color-2.price-border:hover,
.dg-price02 .price-border:hover {
    border-color: #177b44;
}

    .dg-price01 .color-1 .price-box .sup,
    .dg-price01 .color-1 .price-box .price,
    .dg-price03 .price-title h2,
    .dg-price03 .price-holder .fa,
    .dg-price03 .price-title h6,
    .dg-price03 .btn,
    .dg-price05 .color-2 .price-title,
    .dg-price10 .price-box,
    .dg-price15 .price-title em.fa,
    .dg-price15 .price-title h2,
    .dg-price15 .price-box,
    .dg-price20 .price-holder:hover li:before,
    .dg-price20 .best-value .price-holder li:before,
    .dg-price21 .price-border:hover .btn,
    .dg-price23 .price-box,
    .dg-price25 .price-title h2,
    .dg-price25 .price-box .sup,
    .dg-price25 .price-box .price,
    .dg-price29 .price-box,
    .dg-price28 .price-border:hover .price-holder ul li em,
    .dg-price29 .price-holder .fa,
    .dg-price07 .price-title h2,
    .dg-price09 .price-box,
    .dg-price14 .price-box .sup,
    .dg-price14 .price-box .price {
        color: #177b44;
    }

.dg-price03 .dg-btn-1 {
    color: #177b44 !important;
}

.dg-price07 .btn {
    background-color: #177b44;
    border-color: #177b44;
}

.dg-price20 .price-popular,
.dg-price23 .price-title em {
    color: #177b44;
    border-color: #177b44;
}

/* ProgressBars-Counters */
.chart-list02 .list-percentage2 .percentage_inner,
.chart-list04 .list-percentage4 .percentage_inner,
.chart-list05 .list-percentage5,
.chart-list07 .list-percentage7 .percentage_inner,
.chart-list08 .list-percentage8,
.chart-list08 .list-percentage8 .percentage_inner,
.chart-list09 .list-percentage9,
.chart-list10 .list-percentage10,
.chart-list02 .list-percentage2,
.chart-list04 .list-percentage4,
.chart-list07 .list-percentage7 {
    color: #177b44;
}

.loaded-title:before {
    border-color: #177b44;
}

.loaded-list04 .bar,
.loaded-list05 .bar,
.loaded-list10 .progress-bar,
.loaded-list09 .progress .progress-bar,
.loaded-list08 .progress .progress-bar {
    background-color: #177b44;
}

/*Testimonials*/
.Testimonials02-tab .last_page:hover,
.Testimonials02-tab .next_page:hover {
    border-left-color: #177b44;
    border-bottom-color: #177b44;
}

.Testimonials03-tab blockquote h2 {
    color: #177b44;
}

.Testimonials03-tab .dot a.actived,
.Testimonials05-tab .dot a.actived,
.Testimonials08-tab .dot a.actived,
.Testimonials09-tab .dot a.actived {
    background-color: #177b44;
}

.testimonials-title01 h2:before {
    background-color: #177b44;
}

.Testimonials04-tab .last_page:hover:before {
    border-top-color: #177b44;
    border-left-color: #177b44;
}

.Testimonials04-tab .next_page:hover:before {
    border-right-color: #177b44;
    border-bottom-color: #177b44;
}

.Testimonials05-tab blockquote p {
    border-top-color: #177b44;
}

.Testimonials06-tab blockquote p:before {
    border-top-color: #177b44;
}

.Testimonials06-tab blockquote p {
    border-bottom-color: #177b44;
}

.Testimonials06-tab .last_page:hover:before {
    border-top-color: #177b44;
    border-left-color: #177b44;
}

.Testimonials06-tab .next_page:hover:before {
    border-right-color: #177b44;
    border-bottom-color: #177b44;
}

.Testimonials07-tab .last_page:hover,
.Testimonials07-tab .next_page:hover {
    border-color: #177b44;
    background-color: #177b44;
}

.image_more_info span {
    background-color: #177b44 !important;
}

h2.Testimonials10-tab-title {
    color: #177b44;
}





/*Responsive Tab*/
.dg-tabs-top06 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top09 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top09 ul.resp-tabs-list li.resp-tab-active:hover,
.dg-tabs-top20 .resp_margin h2,
.dg-tabs-left19 .resp_margin h2,
.tab_list02 li span,
.dg-tabs-left08 ul.resp-tabs-list li.resp-tab-active {
    color: #177b44;
}

.dg-tabs-top01 ul.resp-tabs-list li:hover,
.dg-tabs-top01 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-top09 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-bottom03 ul.resp-tabs-list li.resp-tab-active span {
    border-bottom-color: #177b44;
}

    .dg-tabs-top03 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-top04 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-top05 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-top06 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-top09 ul.resp-tabs-list li.resp-tab-active:before,
    .dg-tabs-top06 ul.resp-tabs-list li.resp-tab-active:before,
    .dg-tabs-top12 ul.resp-tabs-list li.resp-tab-active:before,
    .dg-tabs-top13 ul.resp-tabs-list li.resp-tab-active:before,
    .dg-tabs-top20 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-bottom04 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-top21 ul.resp-tabs-list li.resp-tab-active:before,
    .dg-tabs-top22 ul.resp-tabs-list li.resp-tab-active:before {
        border-top-color: #177b44;
    }

.dg-tabs-left01 ul.resp-tabs-list li.resp-tab-active span,
.dg-tabs-left08 ul.resp-tabs-list li.resp-tab-active:before {
    border-right-color: #177b44;
}

.dg-tabs-left02 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left03 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left05 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left05 ul.resp-tabs-list li.resp-tab-active:before,
.dg-tabs-left11 ul.resp-tabs-list li.resp-tab-active:before,
.dg-tabs-left12 ul.resp-tabs-list li.resp-tab-active:before,
.dg-tabs-left13 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left14 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left19 ul.resp-tabs-list li.resp-tab-active {
    border-left-color: #177b44;
}

.dg-tabs-bottom01 .resp-tabs-container,
.dg-tabs-bottom02 .resp-tabs-container,
.dg-tabs-bottom02 ul.resp-tabs-list li span,
.dg-tabs-bottom02 ul.resp-tabs-list li,
.dg-tabs-left17 ul.resp-tabs-list li.resp-tab-active,
.dg-tabs-left17 ul.resp-tabs-list li.resp-tab-active {
    border-color: #177b44;
}

    .dg-tabs-top07 ul.resp-tabs-list li:hover,
    .dg-tabs-top08 ul.resp-tabs-list li:hover,
    .dg-tabs-top09 ul.resp-tabs-list li:hover,
    .dg-tabs-top10 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-top11 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-top11 .resp-tabs-container,
    .dg-tabs-top12 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-top13 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-top16 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-top17 ul.resp-tabs-list li:hover,
    .dg-tabs-top18 ul.resp-tabs-list li:hover,
    .dg-tabs-top19 ul.resp-tabs-list li:hover,
    .dg-tabs-bottom01 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-bottom02 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-top20 .resp_margin .line,
    .dg-tabs-left19 .resp_margin .line,
    .dg-tabs-bottom04 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-top21 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-top22 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-left09 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-left10 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-left10 .resp-tabs-container,
    .dg-tabs-left11 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-left12 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-left15 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-left16 ul.resp-tabs-list li:hover,
    .dg-tabs-left18 ul.resp-tabs-list li:hover,
    .dg-tabs-left18 ul.resp-tabs-list li.resp-tab-active,
    .dg-tabs-bottom03 ul.resp-tabs-list li:hover span {
        background-color: #177b44;
    }

/*Accordions*/
.dg-accordion01 .panel-heading .panel-title a,
.dg-accordion01 .panel-heading .panel-title a:hover,
.dg-accordion01 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion03 .panel-heading .panel-title a:hover,
.dg-accordion03 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion03 .panel-heading .panel-title a,
.dg-accordion05 .panel-heading .panel-title a:hover,
.dg-accordion05 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion05 .panel-heading .panel-title a,
.dg-accordion06 .panel-heading .panel-title a:hover,
.dg-accordion06 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion06 .panel-heading .panel-title a,
.dg-accordion07 .panel-heading .panel-title a:hover,
.dg-accordion07 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion08 .panel-heading .panel-title a:hover,
.dg-accordion08 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion08 .panel-heading .panel-title a,
.dg-accordion07 .panel-heading .panel-title a,
.dg-accordion09 .panel-heading .panel-title a:hover,
.dg-accordion09 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion10 .panel-heading .panel-title a:hover,
.dg-accordion10 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion09 .panel-heading .panel-title a,
.dg-accordion10 .panel-heading .panel-title a,
.dg-accordion11 .panel-heading .panel-title a:hover,
.dg-accordion11 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion12 .panel-heading .panel-title a:hover,
.dg-accordion12 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion11 .panel-heading .collapsed:hover .arrow:before,
.dg-accordion12 .panel-heading .panel-title a,
.dg-accordion12 .panel-heading .arrow,
.dg-accordion11 .panel-heading .arrow,
.dg-accordion11 .panel-heading .panel-title a,
.dg-accordion13 .panel-heading .panel-title a:hover,
.dg-accordion13 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion13 .panel-heading .arrow,
.dg-accordion13 .panel-heading .panel-title a,
.dg-accordion13 .panel-heading .collapsed:hover .arrow:before,
.dg-accordion14 .panel-heading .panel-title a:hover,
.dg-accordion14 .panel-heading .panel-title a:hover,
.dg-accordion14 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion14 .panel-heading .collapsed:hover .arrow:before,
.dg-accordion15 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion15 .panel-heading .collapsed:hover .arrow:before,
.dg-accordion16 .panel-heading .panel-title a,
.dg-accordion16 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion17 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion18 .panel-heading .arrow,
.dg-accordion18 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion19 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion20 .panel-heading .panel-title a,
.dg-accordion20 .panel-heading .panel-title a.collapsed:hover {
    color: #177b44;
}

    .dg-accordion01 .panel-heading .arrow,
    .dg-accordion01 .panel-heading .collapsed:hover .arrow,
    .dg-accordion02 .panel-heading .panel-title a:before,
    .dg-accordion03 .panel-heading .collapsed:hover .arrow,
    .dg-accordion03 .panel-heading .arrow,
    .dg-accordion04 .panel-heading .panel-title strong:before,
    .dg-accordion04 .panel-heading .arrow,
    .dg-accordion08:before,
    .dg-accordion16 .panel-heading .panel-title a:before,
    .dg-accordion17 .panel-heading .collapsed:hover .arrow {
        border-color: #177b44;
    }

.dg-accordion02 .panel-heading .panel-title a,
.dg-accordion02 .panel-heading .panel-title a:hover,
.dg-accordion02 .panel-heading .panel-title a.collapsed:hover,
.dg-accordion05 .panel-heading .arrow,
.dg-accordion05 .panel-heading .collapsed:hover .arrow,
.dg-accordion08 .panel-default > .panel-heading:before,
.dg-accordion07 .panel-heading .arrow,
.dg-accordion07 .panel-heading .collapsed:hover .arrow,
.dg-accordion12 .panel-heading .arrow,
.dg-accordion14 .panel-heading .panel-title a,
.dg-accordion15 .panel-heading .panel-title a,
.dg-accordion18 .panel-collapse,
.dg-accordion18 .panel-heading .panel-title a,
.dg-accordion18 .panel-heading .collapsed:hover .arrow,
.dg-accordion19 .panel-heading .collapsed:hover .arrow,
.dg-accordion20 .panel-heading .arrow,
.dg-tabs-top10 .resp-tabs-container {
    background-color: #177b44;
}

.dg-accordion06 .panel-heading .arrow,
.dg-accordion06 .panel-heading .collapsed:hover .arrow {
    border-left-color: #177b44;
}

.dg-accordion17 .panel-heading .panel-title a {
    background-color: #177b44;
    border-color: #177b44;
}

.dg-accordion11 .panel-heading .panel-title a:before,
.dg-accordion13 .panel-heading .panel-title a:before,
.dg-accordion18 .panel-heading .arrow:before {
    background: #177b44;
}

.dg-accordion14 .panel-heading .panel-title .number {
    border-right-color: #177b44;
}

.dg-accordion04 .panel-heading .panel-title a:hover .arrow {
    border-right-color: #177b44;
    border-bottom-color: #177b44;
}

.dg-accordion04 .panel-heading .panel-title a:hover {
    color: #177b44;
}


/*Animated*/
.animat-col01 li.color-01,
.animat-col05 li:hover,
.animat-col06 {
    background-color: #177b44;
}

.animat-col-title:after,
.animat-col04 h3:before {
    border-color: #177b44;
}

.animat-col04,
.animat-col05 li {
    color: #177b44;
}

.Animatedcolumns-title01 h2:before {
    background-color: #177b44;
}

.animat-col01 li.color-01 .box .btn:hover {
    color: #177b44 !important;
}

.animat-col05 li .fa {
    color: #177b44;
}

/*Flip-Box*/
.flip-box02 .back,
.flip-box04 .back,
.flip-box04 .back,
.flip-box06 .back,
.flip-box08 .back,
.flip-box03 .front:after,
.flip-box01 .back .hover-darkturquoise:hover {
    background-color: #177b44;
}

.flip-box06 .front .v-center > h3,
.flip-box03 .front .fa,
.flip-box02 .size-lg,
.flip-box04 .btn-danger {
    color: #177b44;
}

.flip-box08 .front .fa {
    color: #177b44;
    border-color: #177b44;
}

.flip-box03 .back,
.flip-box01 .back .hover-darkturquoise:hover {
    border-color: #177b44;
}

/*Clients*/
.clients-title:after,
.clients-carousel01 .img_box:hover,
.clients-carousel02 .img_box:hover,
.clients-title03 h3:after,
.clients-list04 li:before,
.clients-list06 li:before,
.clients-list06 {
    border-color: #177b44;
}

.clients-carousel01 .img_box:before {
    border-bottom-color: #177b44;
}

.clients-title02 h3,
.clients-title03 h6 {
    color: #177b44;
}

.clients-carousel01 .owl-page.active,
.clients-carousel03 .img_box:hover,
.clients-list04 li:after,
.clients-list07 li:hover,
.clients-bnt01 a,
.clients-bnt01 a:link {
    background-color: #177b44;
}
/*Image Box*/
.imgbox01:hover,
.imgbox03:hover,
.imgbox03:hover .imgbox03-con .btn,
.imgbox04:hover img,
.dg-title23 .line {
    border-color: #177b44;
}

    .dg-title23 .line:after,
    .imgbox02:hover,
    .imgbox05:hover .btn,
    .imgbox07:hover .imgbox07-icon span,
    .imgbox10 .btn {
        background-color: #177b44;
    }

    .imgbox03:hover .imgbox03-con .btn,
    .imgbox05:hover .imgbox05-con h3,
    .imgbox10:hover .btn {
        color: #177b44;
    }

.imgbox08 .imgbox08-con .btn:hover,
.imgbox10:hover {
    border-color: #177b44;
    background-color: #177b44;
}

.imagebox-title01 h2:before {
    background-color: #177b44;
}

.imgbox03 .imgbox03-con [class*="dg-btn-"].hover-borland:hover {
    border-color: #177b44;
    background-color: #177b44;
}

.imgbox04 img {
    border-color: #177b44;
}

.imgbox04:hover .imgbox04-con h3 {
    color: #177b44;
}

.imgbox05:hover .imgbox05-con a[class*="btn"] {
    background: #177b44;
}

.imgbox06:hover .imgbox06-con a.btn {
    color: #177b44;
}

.imgbox07:hover .imgbox07-con h3 {
    color: #177b44;
}

.imgbox08 .imgbox08-con > a[class*="btn"]:hover {
    border-color: #177b44;
    background: #177b44;
}





/*icon box*/
[class*="dg-iconbox"]:hover .dg-ico02,
[class*="dg-iconbox"]:hover .dg-ico02.fa,
[class*="dg-iconbox"]:hover .dg-ico08,
[class*="dg-iconbox"]:hover .fa.dg-ico08,
[class*="dg-iconbox"]:hover .dg-ico10:after,
[class*="dg-iconbox"]:hover .dg-ico11:after,
.dg-iconbox12:hover {
    background-color: #177b44;
}

[class*="dg-iconbox"]:hover .dg-ico03,
[class*="dg-iconbox"]:hover .dg-ico03.fa,
[class*="dg-iconbox"]:hover .dg-ico11:after,
[class*="dg-iconbox"]:hover .dg-ico13 {
    color: #177b44;
    border-color: #177b44;
}

[class*="dg-iconbox"]:hover .dg-ico04 .hexagon,
[class*="dg-iconbox"]:hover .dg-ico04 .hexagon:before,
[class*="dg-iconbox"]:hover .dg-ico04 .hexagon:after,
.dg-ico01,
.dg-ico01.fa,
.dg-iconbox13:hover {
    border-color: #177b44;
    background-color: #177b44;
}

.dg-ico05.accent,
.dg-iconbox05 h3,
.dg-iconbox07:hover .dg-ico05,
.dg-iconbox07:hover h3,
.dg-iconbox10:hover h3,
.dg-iconbox11 h3,
.dg-iconbox06 h3 {
    color: #177b44;
}

    [class*="dg-iconbox"]:hover .dg-ico10,
    [class*="dg-iconbox"]:hover .dg-ico10.fa,
    [class*="dg-iconbox"]:hover .dg-ico11,
    .dg-iconbox04:hover [class*="dg-ico"] .left-line,
    .dg-iconbox05 h3:after,
    .dg-iconbox08:after,
    .dg-iconbox10:hover,
    .dg-iconbox11 h3:after,
    .dg-iconbox06 h3:after {
        border-color: #177b44;
    }

.dg-iconbox05,
.dg-iconbox07,
.dg-iconbox09 {
    border-top-color: #177b44;
}
/*Mini-callout-box-ornamental-title*/
.dg-title01 h3,
.dg-title06 h3,
.dg-title07 h3,
.dg-title09 h3,
.dg-title13 .icon,
.dg-title32 .fa {
    color: #177b44;
}

    .dg-title06 h3:before,
    .dg-title07 h3:before,
    .dg-title07 h3:after,
    .dg-title09 h3:before,
    .dg-title26 h3,
    .dg-title28 h3:before,
    .dg-title30:after {
        border-color: #177b44;
    }

.dg-title08 h3,
.dg-title21 h3:before,
.dg-title21 h3:after {
    background-color: #177b44;
}

/*player boxes */
.video-bg .player_line {
    border-color: #177b44;
}

.player_boxes .btn {
    background-color: #177b44;
}
/*simpleanchor */
#simpleanchor a:hover,
#simpleanchor .active a {
    color: #177b44;
    border-left-color: #177b44;
}
/*OurTeam*/
.ourteam-short .owl-item:hover .teamshort-img img,
.ourteam-short.carousel .owl-buttons .owl-prev:hover,
.ourteam-short.carousel .owl-buttons .owl-next:hover,
.ourteam-short16:hover {
    border-color: #177b44;
}

.ourteam-short .owl-buttons .owl-prev:hover:before,
.ourteam-short .owl-buttons .owl-next:hover:before {
    border-left: 1px solid #177b44;
    border-bottom: 1px solid #177b44;
}

.ourteam-short06 h2:before {
    border-right: 8px solid #177b44;
}

.ourteam-short06 h2:after {
    border-left: 8px solid #177b44;
}

.ourteam-short .owl-buttons .owl-next:hover:before {
    border-left: none;
    border-right: 1px solid #177b44;
}

.ourteam-short12 .text-style h2:before {
    border-top: 42px solid #177b44;
}

.ourteam-bg:before {
    border-left: 1px solid #177b44;
}

.ourteam-short02 .social em:hover,
.ourteam-short03 .photo_box .ico i:before,
.ourteam-short06 .social em:hover,
.ourteam-short10 span,
.ourteam-short13:hover h2,
.ourteam-short20 .teamshort-r span,
.ourteam-short21 .teamshort-r span,
.ourteam-short22 .teamshort-r span,
.ourteam-short23 .teamshort-r span,
.ourteam-short05 .photo_box .content > .fa:hover {
    color: #177b44;
}

.ourteam-short05 .ourteam-img:hover {
    border-bottom: 13px solid #177b44;
}

.ourteam-short04 .photo_box .content > .fa:hover,
.ourteam-short06 h2,
.ourteam-short07:hover,
.ourteam-short08 .photo_box .shade,
.ourteam-short09 .photo_box .shade,
.ourteam-short11 .text-style .social,
.ourteam-short12 .text-style h2,
.ourteam-short12 .text-style .social em,
.ourteam-short16 .social em:hover,
.ourteam-short17:hover .social,
.ourteam-short18:hover .text-style,
.ourteam-short18:hover p,
.ourteam-short19 .photo_box:hover .text-style,
.ourteam-short20 .social em,
.ourteam19-line,
.ourteam-short21 .social em:hover,
.ourteam-short22:hover {
    background-color: #177b44;
}






/*Menu Style*/





.navbar-brand .logo {
    width: 100px;
    padding: 0px 0px 0px 0px;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.LoginPanel {
    width: 500px;
    float: right;
    margin-right: 370px;
}

.dnnPrimaryAction {
    background: #f8c200 !important;
    border: 1px solid #ffcc00 !important;
    color: #177b44 !important;
    text-shadow: none !important;
}

.dnnSecondaryAction {
    color: #177b44 !important;
}

.navbar-nav {
    padding-top: 35px;
}


.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover {
    background: #f8c200;
    color: #177b44;
}

.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
    background-color: #177b44;
}

.navbar-inverse .navbar-toggle {
    border-color: #177b44;
    background: #177b44 !important;
}


.navbar-inverse .navbar-nav > li > a:hover {
    background: #f8c200 !important;
    color: #177b44;
}

.dropdown .dropdown-menu[aria-haspopup=true] {
    background: #f8c200 !important;
    color: #177b44;
}

.dropdown-menu > li > a {
    color: #177b44;
}

.dropdown-menu > .active > a {
    color: #177b44;
    font-size: 14px;
}


.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover {
    background: #f8c200;
    color: #177b44;
    font-family: 'Raleway', sans-serif;
}

.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #ffcc00;
    }


.navigation {
}

    .navigation .nav .navbar-nav {
        padding: 0px 0px
    }

    .navigation .navbar-brand {
        margin: -70px 0px 0px 0px;
    }

    .navigation .navbar-inverse {
        background: none;
        border-bottom: none;
        padding: 0px 0px 0px 10px;
        font-family: 'Raleway', sans-serif;
    }

.navbar-inverse .navbar-nav > li > a {
    color: #177b44;
    font-size: 16px;
    font-weight: 600;
    margin: 1px;
}

.dropdown-menu > li:hover {
    color: #177b44;
    background: #f8c200;
}

.dropdown-menu > .active > a {
    color: #177b44;
    background: #f8c200 !important;
}

.dropdown-menu > .active {
    color: #177b44;
    background: #f8c200;
}

.navbar-inverse .navbar-nav > li > a {
}

    .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
        color: #177b44;
        background: #f8c200 !important;
    }

.dropdown-menu {
    padding: 0px 0px !important;
}

    .dropdown-menu > li > a:hover {
        color: #177b44;
        background: #f8c200 !important;
    }

    .dropdown-menu > li {
        padding: 8px;
    }

/*HoverStyle_3*/
#dnngo_megamenu > div.dnngo_gomenu > ul > li {
    margin-left: 2px;
}

    #dnngo_megamenu > div.dnngo_gomenu > ul > li > a > span {
        padding: 0px 14px;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
    }

#dnngo_megamenu > div > ul > li:hover > a > span,
#dnngo_megamenu > div > ul > li.current > a > span,
#dnngo_megamenu > div > ul > li.menu_hover > a > span {
    background-color: #f8c200;
}

.roll_menu.roll_activated #dnngo_megamenu > div > ul > li:hover > a > span, .roll_menu.roll_activated #dnngo_megamenu > div > ul > li.current > a > span, .roll_menu.roll_activated #dnngo_megamenu > div > ul > li.menu_hover > a > span {
    background-color: #f8c220;
}

.row {
    margin: 0px;
}

.caret {
    margin: 5px 0px 0px 10px;
}


.logo img {
    width: 130px;
    margin: 10px 0 10px 0;
}

@media only screen and (min-width: 1200px) {
    #dnngo_megamenu > div.dnngo_gomenu > ul > li > a > span {
        padding: 0px 18px;
    }
}

@media only screen and (min-width: 1600px) {
    #dnngo_megamenu > div.dnngo_gomenu > ul > li > a > span {
        padding: 0px 21px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #dnngo_megamenu > div.dnngo_gomenu > ul > li > a > span {
        padding: 0px 13px;
    }
}

@media only screen and (max-width:768px) {
.sticky .navbar-inverse .navbar-toggle{margin:-60px 0px;}
.navbar-inverse .navbar-toggle{margin:-60px 0px;}

.navigation .navbar{min-height:0px;}

.logo img{width:74px; margin:10px 0px 10px 0px;}

.sticky   .logo img { width: 71px;
    margin: 10px 0 10px 0;}
}

    .topLogo {
        margin: 0px 0px 0px 0px;
    }

.sticky .navbar{min-height:0px;}

    .liberity img {
        padding-top: 0px;
    }
}



#dnngo_megamenu ul,
.multi_menu,
.nav_box {
    font-family: 'Raleway', sans-serif;
}

#dnngo_megamenu > div > ul {
    display: inline-block;
    vertical-align: middle;
}


* + html #dnngo_megamenu > div > ul {
    display: inline;
}


    #dnngo_megamenu > div > ul > li {
        background: none;
        padding: 50px 0 40px;
        transition: border-color ease-in 200ms;
        -moz-transition: border-color ease-in 200ms; /* Firefox 4 */
        -webkit-transition: border-color ease-in 200ms; /* Safari and Chrome */
        -o-transition: border-color ease-in 200ms; /* Opera */
        -ms-transition: border-color ease-in 200ms; /* IE9? */
    }



        #dnngo_megamenu > div > ul > li > a {
            line-height: 47px;
            transition: all ease-in 200ms,line-height 0ms;
            -webkit-transition: all ease-in 200ms,line-height 0ms; /* Safari and Chrome */
        }



            #dnngo_megamenu > div > ul > li > a > span {
                font-size: 15px;
                text-transform: capitalize;
                font-weight: bold;
                transition: color ease-in 200ms,background ease-in 200ms,border ease-in 200ms;
                -moz-transition: color ease-in 200ms,background ease-in 200ms,border ease-in 200ms; /* Firefox 4 */
                -webkit-transition: color ease-in 200ms,background ease-in 200ms,border ease-in 200ms; /* Safari and Chrome */
                -o-transition: color ease-in 200ms,background ease-in 200ms,border ease-in 200ms; /* Opera */
                -ms-transition: color ease-in 200ms,background ease-in 200ms,border ease-in 200ms; /* IE9? */
            }




        #dnngo_megamenu > div > ul > li.dir > a > span:after {
            content: "";
            height: 5px;
            width: 5px;
            overflow: hidden;
            margin: 0 0px 3px 6px;
            display: inline-block;
            vertical-align: middle;
            transform: rotate(45deg);
            -ms-transform: rotate(45deg); /* IE 9 */
            -moz-transform: rotate(45deg); /* Firefox */
            -webkit-transform: rotate(45deg); /* Safari and Chrome */
            -o-transform: rotate(45deg); /* Opera */
            transition: all ease-in 200ms;
            -moz-transition: all ease-in 200ms; /* Firefox 4 */
            -webkit-transition: all ease-in 200ms; /* Safari and Chrome */
            -o-transition: border ease-in 200ms; /* Opera */
            -ms-transition: border ease-in 200ms; /* IE9? */
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
        }

        #dnngo_megamenu > div > ul > li > a > span {
            color: #177b44;
        }


        #dnngo_megamenu > div > ul > li.dir > a > span:after {
            border-bottom: 1px solid #177b44;
            border-right: 1px solid #177b44;
        }

        #dnngo_megamenu > div > ul > li.dir:hover > a > span:after,
        #dnngo_megamenu > div > ul > li.dir.current > a > span:after,
        #dnngo_megamenu > div > ul > li.dir.menu_hover > a > span:after {
            border-bottom: 1px solid #177b44;
            border-right: 1px solid #177b44;
        }

        #dnngo_megamenu > div > ul > li > a > span > i {
            color: #177b44;
            font-size: 16px;
        }

        #dnngo_megamenu > div > ul > li:hover > a > span,
        #dnngo_megamenu > div > ul > li.current > a > span,
        #dnngo_megamenu > div > ul > li.menu_hover > a > span,
        #dnngo_megamenu > div > ul > li > a:hover > span > i,
        #dnngo_megamenu > div > ul > li.menu_hover > a > span > i,
        #dnngo_megamenu > div > ul > li.current > a > span > i {
            color: #177b44;
        }



/*Sub Menu Style*/
#dnngo_megamenu .dnngo_slide_menu li a {
    padding-left: 14px;
}

@media only screen and (min-width: 1200px) {
    #dnngo_megamenu .dnngo_slide_menu li a {
        padding-left: 18px;
    }
}

@media only screen and (min-width: 1600px) {
    #dnngo_megamenu .dnngo_slide_menu li a {
        padding-left: 21px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #dnngo_megamenu .dnngo_slide_menu li a {
        padding-left: 13px;
    }
}

#dnngo_megamenu .dnngo_slide_menu,
#dnngo_megamenu .dnngo_slide_menu .dnngo_submenu,
#dnngo_megamenu .dnngo_boxslide {
    background-color: #f7f7f7;
}

#dnngo_megamenu .dnngo_menuslide .dnngo_slide_menu a {
    font-size: 14px;
    color: #666666;
    transition: color ease-in 200ms,border ease-in 200ms,background ease-in 200ms;
    -moz-transition: color ease-in 200ms,border ease-in 200ms,background ease-in 200ms;
    -webkit-transition: color ease-in 200ms,border ease-in 200ms,background ease-in 200ms;
    -o-transition: color ease-in 200ms,border ease-in 200ms,background ease-in 200ms;
    -ms-transition: color ease-in 200ms,border ease-in 200ms,background ease-in 200ms;
}

#dnngo_megamenu .dnngo_menuslide {
    transition: color ease-in 200ms,border ease-in 200ms,background ease-in 200ms,top ease-out 200ms;
    -moz-transition: color ease-in 200ms,border ease-in 200ms,background ease-in 200ms,top ease-out 200ms;
    -webkit-transition: color ease-in 200ms,border ease-in 200ms,background ease-in 200ms,top ease-out 200ms;
    -o-transition: color ease-in 200ms,border ease-in 200ms,background ease-in 200ms,top ease-out 200ms;
    -ms-transition: color ease-in 200ms,border ease-in 200ms,background ease-in 200ms,top ease-out 200ms;
}

#dnngo_megamenu .dnngo_submenu {
    transition: top ease-out 200ms;
    -moz-transition: top ease-out 200ms;
    -webkit-transition: top ease-out 200ms;
    -o-transition: top ease-out 200ms;
    -ms-transition: top ease-out 200ms;
}

#dnngo_megamenu .dnngo_slide_menu li:hover > a,
#dnngo_megamenu .dnngo_slide_menu li.subcurrent > a {
    color: #FFF;
    background-color: #177b44;
}

#dnngo_megamenu .dnngo_slide_menu li.dir:before {
    border-right: 1px solid #666666;
    border-bottom: 1px solid #666666;
    transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
}

#dnngo_megamenu .dnngo_slide_menu li.dir:hover:before,
#dnngo_megamenu .dnngo_slide_menu li.dir.subcurrent:before {
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
}

#dnngo_megamenu .dnngo_slide_menu li a > span > i {
    color: #177b44;
    font-size: 13px;
}

#dnngo_megamenu .dnngo_slide_menu li a:hover > span > i,
#dnngo_megamenu .dnngo_slide_menu li.menu_hover > a > span > i,
#dnngo_megamenu .dnngo_slide_menu li.current > a > span > i,
#dnngo_megamenu .dnngo_slide_menu li.subcurrent > a > span > i {
    color: #FFF;
}


#dnngo_megamenu .dnngo_custommenu > .menupane {
    background-color: #f7f7f7;
}

    #dnngo_megamenu .dnngo_custommenu > .menupane.topline .pane_space {
        border-top-color: #dcdcdc;
    }

    #dnngo_megamenu .dnngo_custommenu > .menupane.bottomline .pane_space {
        border-bottom-color: #dcdcdc;
    }

    #dnngo_megamenu .dnngo_custommenu > .menupane.leftline {
        border-left-color: #dcdcdc;
    }

    #dnngo_megamenu .dnngo_custommenu > .menupane.rightline {
        border-right-color: #dcdcdc;
    }

#dnngo_megamenu .pane_space {
    font-size: 14px;
    color: #666666;
}

.menu-ibox .btn,
.menu-ibox .btn:link,
.menu-ibox .btn:active,
.menu-ibox .btn:visited {
    color: #177b44;
    border-color: #177b44;
}

    .menu-ibox .btn:hover {
        color: #FFF;
    }

    .menu-ibox .btn:hover {
        background-color: #177b44;
    }

.menu-cont01 .more,
.menu-cont01 .more:link,
.menu-cont01 .more:active,
.menu-cont01 .more:visited {
    color: #177b44;
}

.menu-carousel.carousel .owl-page {
    border-color: #177b44;
}

    .menu-carousel.carousel .owl-page.active {
        background-color: #177b44;
    }

#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li a:before,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li a:before,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li a:before {
    border-right: 1px solid #666666;
    border-bottom: 1px solid #666666;
}

#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li a:hover:before,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li a:hover:before,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li a:hover:before {
    border-right-color: #177b44;
    border-bottom-color: #177b44;
}

#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_1 li a,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li a,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li a,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li a,
#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_4 ul li a {
    color: #666666;
}

    #dnngo_megamenu .dnngo_custommenu .submenulist_1 .submenu_title a:hover span,
    #dnngo_megamenu .dnngo_custommenu .submenulist_5 .submenu_title a:hover span,
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_5 ul li a:hover,
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_2 ul li a:hover,
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 ul li a:hover,
    #dnngo_megamenu .dnngo_custommenu .submenulist_4 .submenu_title a:hover span,
    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_4 ul li a:hover,
    #dnngo_megamenu .dnngo_custommenu .submenulist_2 .submenu_title span,
    #dnngo_megamenu .dnngo_custommenu .submenulist_3 .submenu_title span {
        color: #177b44;
    }

    #dnngo_megamenu .dnngo_custommenu .submenu.submenulist_1 li a:hover {
        background-color: #177b44;
    }

#dnngo_megamenu .dnngo_custommenu .submenu_title,
#dnngo_megamenu .dnngo_custommenu .submenulist_4 .submenu_title span,
#dnngo_megamenu .dnngo_custommenu .submenulist_5 .submenu_title span,
#dnngo_megamenu .dnngo_custommenu .submenulist_1 .submenu_title span {
    color: #424242;
}

    #dnngo_megamenu .dnngo_custommenu .submenu_title,
    #dnngo_megamenu .dnngo_custommenu .submenu_title span {
        font-size: 14px;
    }

#dnngo_megamenu .dnngo_custommenu .submenulist_2 .submenu_title:after {
    border-bottom-color: #bebebe;
}

#dnngo_megamenu .dnngo_custommenu .submenu.submenulist_3 > ul > li > a,
#dnngo_megamenu .dnngo_custommenu .submenulist_4 .submenu_title {
    border-bottom-color: #dcdcdc;
}

.menu-bloglist li,
.menu-cont01 .line {
    border-bottom-color: #dcdcdc;
}

.menu-ibox h3 {
    color: #424242;
    font-size: 14px;
}

.menu_list01 li a,
.menu_list01 li a:link,
.menu_list01 li a:active,
.menu_list01 li a:visited {
    color: #424242;
    font-size: 14px;
    border-color: #bebebe;
    transition: border-color ease-in 200ms;
    -moz-transition: border-color ease-in 200ms; /* Firefox 4 */
    -webkit-transition: border-color ease-in 200ms; /* Safari and Chrome */
    -o-transition: border-color ease-in 200ms; /* Opera */
    -ms-transition: border-color ease-in 200ms; /* IE9? */
}

    .menu_list01 li a:hover {
        border-color: #177b44;
    }

div.menu_list01 li:after,
div.menu_list02 li:after {
    border-bottom-color: #dcdcdc;
}

.menu_list02 li a,
.menu_list02 li a:link,
.menu_list02 li a:active,
.menu_list02 li a:visited {
    color: #424242;
    font-size: 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? */
}

    .menu_list02 li a:hover {
        color: #177b44;
    }

.MegaMenuList li a,
.MegaMenuList li a:link,
.MegaMenuList li a:active,
.MegaMenuList li a:visited {
    font-size: 14px;
    color: #666666;
}

    .MegaMenuList li a:hover {
        background-color: #177b44;
    }

.MegaMenuList li:after {
    border-left-color: #dcdcdc;
}


/*Fixed Menu Style Start*/
.roll_menu.roll_activated {
    margin: auto;
}

    .roll_menu.roll_activated .headerBox {
        margin: auto;
    }

        .roll_menu.roll_activated .headerBox > .shade {
            background-color: #ffffff;
            filter: alpha(opacity= 100 );
            opacity: 1;
            box-shadow: 3px 5px 20px rgba(0,0,0,0.8);
            -moz-box-shadow: 3px 5px 20px rgba(0,0,0,0.8);
            -webkit-box-shadow: 3px 5px 20px rgba(0,0,0,0.8);
        }

    .roll_menu.roll_activated #dnngo_megamenu > div > ul > li > a > span {
        color: #177b44;
        vertical-align: bottom;
    }

    .roll_menu.roll_activated #dnngo_megamenu > div > ul > li.dir > a > span:after {
        border-bottom: 1px solid #177b44;
        border-right: 1px solid #177b44;
    }

    .roll_menu.roll_activated #dnngo_megamenu > div > ul > li:hover > a > span,
    .roll_menu.roll_activated #dnngo_megamenu > div > ul > li.current > a > span,
    .roll_menu.roll_activated #dnngo_megamenu > div > ul > li.menu_hover > a > span {
        color: #177b44;
    }

    .roll_menu.roll_activated #dnngo_megamenu > div > ul > li.dir:hover > a > span:after,
    .roll_menu.roll_activated #dnngo_megamenu > div > ul > li.dir.current > a > span:after,
    .roll_menu.roll_activated #dnngo_megamenu > div > ul > li.dir.menu_hover > a > span:after {
        border-bottom: 1px solid #177b44;
        border-right: 1px solid #177b44;
    }

    .roll_menu.roll_activated #dnngo_megamenu > div > ul > li > a > span > i {
        color: #177b44;
    }

    .roll_menu.roll_activated #dnngo_megamenu > div > ul > li > a:hover > span > i,
    .roll_menu.roll_activated #dnngo_megamenu > div > ul > li.menu_hover > a > span > i,
    .roll_menu.roll_activated #dnngo_megamenu > div > ul > li.current > a > span > i {
        color: #177b44;
    }

    .roll_menu.roll_activated #dnngo_megamenu > div > ul > li {
        padding: 0px 0 0px;
    }

        .roll_menu.roll_activated #dnngo_megamenu > div > ul > li > a {
            line-height: 40px;
        }

    .roll_menu.roll_activated .dnn_logo {
        float: none;
        margin: 0;
        margin-top: 0px;
        line-height: 40px;
        height: 40px;
    }

    .roll_menu.roll_activated .menuRightBox {
        margin: 0;
        margin-top: 0px;
        line-height: 40px;
        height: 40px;
    }

    .roll_menu.roll_activated .LogoPane,
    .roll_menu.roll_activated .mobileLogoPane,
    .roll_menu.roll_activated .dnn_logo .Logobox {
        vertical-align: top;
    }

    .roll_menu.roll_activated .menuRightBox {
        display: inline-block;
    }

    .roll_menu.roll_activated .headerBox .headertopBox {
        display: none;
    }

@media only screen and (min-width:768px) and (max-width:991px) {
    .roll_menu.roll_activated .menuRightBox {
        display: none;
    }
}



/*header 1 style*/
.headerBox {
    margin: 0px auto 0px;
}

    .headerBox .header-right {
        white-space: nowrap;
    }

        .headerBox .header-right > * {
            white-space: normal;
        }

    .headerBox .dnn_layout.full {
        width: auto;
    }

    .headerBox .nav_box,
    .headerBox .nav_ico {
        display: inline-block;
        vertical-align: middle;
    }

.header_bg {
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 10;
}

.headerBox > .shade {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #000000;
    filter: alpha(opacity= 0 );
    opacity: 0;
}
/* style*/
.nav_ico {
    font-size: 18px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    text-align: right;
    line-height: 1;
}

    .nav_ico:before {
        content: " ";
        border-left: 1px solid #177b44;
        height: 20px;
        display: inline-block;
        vertical-align: middle;
    }

    .nav_ico .fa {
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        display: inline-block;
        vertical-align: middle;
        margin-left: 17px;
        cursor: pointer;
        color: #177b44;
        transition: all ease-in 200ms;
        -webkit-transition: all ease-in 200ms; /* Safari and Chrome */
    }

        .nav_ico .fa:hover,
        .nav_ico .fa.active {
            color: #177b44;
        }


            .nav_ico .fa.active:before {
                content: "\f00d";
                color: #177b44;
            }

    .nav_ico .searchBox,
    .nav_ico .Loginandlanguage {
        -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.1); /* For Firefox3.6+ */
        -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.1); /* For Chrome5+, Safari5+ */
        box-shadow: 1px 1px 5px rgba(0,0,0,0.1); /* For Latest Opera */
        background-color: #f7f7f7;
        padding: 10px;
        min-width: 300px;
        height: 62px;
        position: absolute;
        top: 100%;
        right: 0px;
        margin-top: 10px;
        display: none;
    }

        .nav_ico .searchBox #dnn_dnnSEARCH_ClassicSearch,
        .nav_ico .searchBox #dnn_dnnSEARCH1_ClassicSearch,
        .nav_ico .searchBox #dnn_dnnSEARCH2_ClassicSearch,
        .nav_ico .searchBox #dnn_dnnSEARCH3_ClassicSearch {
            line-height: 40px;
        }

        .nav_ico .searchBox input.NormalTextBox {
            background-color: rgba(0,0,0,0.1);
            height: 40px;
            line-height: 40px;
            width: 240px;
            left: 0px;
            top: 2px;
            font-size: 14px;
            color: #444;
        }

    .nav_ico .search,
    .nav_ico a.search:link,
    .nav_ico a.search:active,
    .nav_ico a.search:visited {
        left: auto;
        right: 0;
        background-color: #177b44;
        color: #FFF;
        top: 2px;
        height: 40px;
        line-height: 40px;
        width: 40px;
    }

    .nav_ico .Loginandlanguage {
        min-width: inherit;
        white-space: nowrap;
        padding: 0px 30px;
        line-height: 62px;
    }

        .nav_ico .Loginandlanguage > .languageBox,
        .nav_ico .Loginandlanguage > .Login {
            display: inline-block;
            vertical-align: top;
        }

            .nav_ico .Loginandlanguage > .Login a,
            .nav_ico .Loginandlanguage > .Login a:link,
            .nav_ico .Loginandlanguage > .Login a:active,
            .nav_ico .Loginandlanguage > .Login a:visited,
            .nav_ico .Loginandlanguage > .Login .sep {
                color: #444;
                font-size: 13px;
                vertical-align: middle;
            }

                .nav_ico .Loginandlanguage > .Login a:hover {
                    color: #177b44;
                }

    .nav_ico .Login .registerGroup li.userMessages a span,
    .nav_ico .Login .registerGroup li.userNotifications a span {
        background-color: #177b44;
    }

.dnn_logo {
    float: none;
    margin-top: 10px;
    line-height: 127px;
    height: 127px;
}

.menuRightBox {
    position: relative;
    z-index: 906;
    margin-top: 10px;
    line-height: 127px;
    height: 127px;
}

.roll_menu.roll_activated .nav_ico .fa {
    color: #177b44;
}

    .roll_menu.roll_activated .nav_ico .fa:hover,
    .roll_menu.roll_activated .nav_ico .fa.active {
        color: #177b44;
    }



@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-top,
    .header-bottom {
        display: block;
    }

    .header-left,
    .header-center,
    .header-right {
        display: block;
        text-align: center;
        white-space: normal;
    }

    .menuRightBox {
        margin: 0;
    }

    .header-right {
        display: table;
        text-align: left;
        width: 100%;
    }

        .header-right .nav_box,
        .header-right .menuRightBox {
            display: table-cell;
            vertical-align: middle;
        }

        .header-right .menuRightBox {
            text-align: right;
        }

    .roll_menu.roll_activated .header-top,
    .roll_menu.roll_activated .header-bottom {
        display: table;
    }

    .roll_menu.roll_activated .header-left,
    .roll_menu.roll_activated .header-center,
    .roll_menu.roll_activated .header-right {
        display: table-cell;
    }

    .roll_menu.roll_activated .header-right {
        text-align: right;
        width: auto;
    }

    .roll_menu.roll_activated .nav_box,
    .roll_menu.roll_activated .menuRightBox {
        display: inline-block;
        vertical-align: middle;
    }
}

@media only screen and (max-width: 767px) {
}







@media only screen and (max-width:767px) {
    .roll-xs.roll_menu.roll_activated {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        opacity: 1 !important;
    }

    .roll_menu.roll_activated .roll-xs {
        display: none !important;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .roll-sm.roll_menu.roll_activated {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        opacity: 1 !important;
    }

    .roll_menu.roll_activated .roll-sm {
        display: none !important;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .roll-md.roll_menu.roll_activated {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        opacity: 1 !important;
    }

    .roll_menu.roll_activated .roll-md {
        display: none !important;
    }
}

@media only screen and (min-width:1200px) {
    .roll-lg.roll_menu.roll_activated {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        opacity: 1 !important;
    }

    .roll_menu.roll_activated .roll-lg {
        display: none !important;
    }
}
/*header position*/
.header_bg {
    position: absolute;
}

.roll_replace {
    position: absolute;
}






@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dnngo-main.boxed .mobile_nav {
        width: auto;
    }
}

@media only screen and (max-width: 991px) {

    .header_bg.roll_menu {
        position: absolute;
        width: 100%;
        top: 0;
        padding: 0;
    }

    .mobile_nav {
        position: fixed;
        width: 100%;
    }

    body[style*="margin-left: 80px"] .mobile_nav {
        margin-left: -80px;
    }

    .mobile_header,
    .mobile_dnn_logo,
    .mobile_nav {
        height: 46px;
    }

    .mobile_dnn_logo {
        line-height: 46px;
    }

    .mobile_header .Logobox,
    .mobile_header .mobileLogoPane {
        display: inline-block;
        vertical-align: middle;
        height: 100%;
        max-width: 100%;
        margin-top: -1px;
    }

    .mobile_nav > .shade {
        background-color: #FFFFFF;
        filter: alpha(opacity= 100 );
        opacity: 1;
        box-shadow: 0 0 4px rgba(0,0,0,0.4);
        -moz-box-shadow: 0 0 4px rgba(0,0,0,0.4);
        -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.4);
    }

    .mobile_nav_ico .fa {
        border-color: #333333;
        color: #333333;
    }

    .mobile_left_icon .fa,
    .mobile_right_icon a {
        border-color: #333333;
        color: #333333;
    }

    .mobile_right_icon {
        padding-top: 1px;
    }

    .mobile_left_icon {
        margin-right: 15px;
        right: 16px;
    }

        .mobile_left_icon #ico_search,
        .mobile_right_icon a:before {
            line-height: 1;
            width: 16px;
            height: 16px;
            font-size: 16px;
        }

    .mobile_nav_ico .fa.active {
        color: #177b44;
    }

    .mobile_left_icon .fa.active,
    html.mm-opening.mm-opened .mobile_right_icon a {
        color: #177b44;
    }

    #mobile_search {
        background-color: #FFFFFF;
    }

        #mobile_search:before {
            border-bottom-color: #FFFFFF;
        }

        #mobile_search .search,
        #mobile_search a.search:link,
        #mobile_search a.search:active,
        #mobile_search a.search:visited {
            background-color: #177b44;
        }

        #mobile_search input.NormalTextBox {
            color: #333333;
            background-color: #e1e1e1;
        }

    .mobile_nav #mobile_nav {
        background-color: #20a3f0;
    }

    .multi_menu ul li a {
        color: #FFF;
        border-color: #FFF;
    }

        .multi_menu ul li.active > a,
        .multi_menu ul li a:hover,
        .multi_menu ul li.current > a,
        .multi_menu ul li.current > a:hover {
            background-color: #FFF;
            color: #20a3f0;
        }

    .multi_menu ul li .menu_arrow:before {
        border-bottom-color: #FFF;
        border-right-color: #FFF;
    }

    .multi_menu ul li .menu_arrow.arrow_closed:before,
    .multi_menu ul li.current > a > .menu_arrow:before,
    .multi_menu ul li:hover .menu_arrow.arrow_closed:before,
    .multi_menu ul li:hover > a > .menu_arrow:before {
        border-bottom-color: #20a3f0;
        border-right-color: #20a3f0;
    }

    .multi_menu > ul > li > a > span {
        font-size: 13px;
    }

    .multi_menu ul ul li > a > span {
        font-size: 13px;
    }

    .mobile_menu.mm-menu {
        background-color: #f3f3f3;
    }

    .mobile_menu .social_list_6 span {
        color: #177b44;
        border-color: #177b44;
    }

    .mobile_menu,
    .mobile_menu .Normal,
    .HeaderPane_mobile,
    .HeaderPaneB_mobile,
    .mobile_menu .Header_Info,
    .mm-menu .mm-navbar.mm-navbar-top-2,
    .mm-menu .mm-navbar.mm-navbar-top-2 a,
    .mobile_menu .mm-listview > li > a,
    .mobile_menu .mm-listview > li > span {
        color: #177b44;
    }

    #mobile_user,
    #mobile_user a,
    #mobile_user a:link,
    #mobile_user a:active,
    #mobile_user a:visited {
        color: #177b44;
    }

        #mobile_user a:hover {
            color: #177b44;
        }

        #mobile_user .registerGroup li.userMessages a span,
        #mobile_user .registerGroup li.userNotifications a span {
            background-color: #177b44;
        }

    .mobile_menu.mm-menu .mm-navbar .mm-btn:before,
    .mobile_menu.mm-menu .mm-navbar .mm-btn:after {
        border-color: #177b44;
    }

    .mobile_menu .mm-listview > li,
    .mobile_menu .mm-listview > li:after,
    .mobile_menu .mm-listview > li .mm-next,
    .mobile_menu .mm-listview > li .mm-next:before,
    .mobile_menu .mm-navbar.mm-navbar-top-2,
    .mobile_menu .menu_header,
    .mobile_menu .mm-navbar.mm-navbar-top.mm-navbar-top-1,
    #mobile_user {
        border-color: #dbdbdb;
    }

    .mobile_menu.mm-menu em.mm-counter,
    .mobile_menu .mm-next:after {
        color: #AAAAAA;
    }

    .mobile_menu.mm-menu .mm-listview > li .mm-next:after,
    .mobile_menu.mm-menu .mm-listview > li .mm-arrow:after {
        border-color: #AAAAAA;
    }

    .mobile_menu.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next),
    .mobile_menu.mm-menu .mm-listview > li.mm-selected > span,
    .mobile_menu.mm-menu .mm-listview > li.current > a:not(.mm-next),
    .mobile_menu.mm-menu .mm-listview > li.subcurrent > a:not(.mm-next),
    .mobile_menu.mm-menu .mm-listview > li.current > .mm-next,
    .mobile_menu.mm-menu .mm-listview > li.subcurrent > .mm-next,
    .mobile_menu.mm-menu .mm-listview > li > a:not(.mm-next):hover,
    .mobile_menu.mm-menu .mm-listview > li > .mm-counter:hover + .mm-next,
    .mobile_menu.mm-menu .mm-listview > li > a.mm-next:hover {
        background-color: #F9F9F9;
    }

        .mobile_menu.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next):hover,
        .mobile_menu.mm-menu .mm-listview > li.current > a:not(.mm-next),
        .mobile_menu.mm-menu .mm-listview > li.subcurrent > a:not(.mm-next),
        .mobile_menu.mm-menu .mm-listview > li > a:not(.mm-next):hover,
        .mobile_menu.mm-menu .mm-listview > li.current > em,
        .mobile_menu.mm-menu .mm-listview > li.subcurrent > em,
        .mobile_menu.mm-menu .mm-listview > li > em:hover,
        .mobile_menu.mm-menu .mm-listview > li > .mm-next:hover > em,
        .mobile_menu.mm-menu .mm-listview > li.current > .mm-next:after,
        .mobile_menu.mm-menu .mm-listview > li.subcurrent > .mm-next:after,
        .mobile_menu.mm-menu .mm-listview > li > .mm-next:hover:after {
            color: #177b44 !important;
        }


    .mobile_menu.mm-menu a > span > i {
        display: none;
    }

    /*html*/

    .HeaderPane_mobile,
    .HeaderPaneB_mobile {
        color: #333333;
    }

    .menu_header_box div.home03-social02 a {
        color: #333333;
        border-color: #333333;
    }

        .menu_header_box div.home03-social02 a:hover {
            border-color: #177b44;
            background-color: #177b44;
        }

    .social_list_7 {
        border: none;
    }

        .social_list_7 span {
            margin: 0 4px;
            color: #333333;
            border: 1px solid #333333;
        }

        .social_list_7 a:hover span {
            background-color: #177b44;
            ;
            border-color: #177b44;
        }

    .shop_info {
        display: inline-block;
        border: none;
        color: #333333;
    }

        .shop_info span {
            color: #333333;
        }
}

@media only screen and (min-width: 992px) {
    html.mm-opening.mm-opened .mm-slideout {
        -webkit-transform: translate(0%, 0);
        -moz-transform: translate(0%, 0);
        -ms-transform: translate(0%, 0);
        -o-transform: translate(0%, 0);
        transform: translate(0%, 0);
    }
}

@media only screen and (max-width: 991px) {
    .mobile_menu.mm-menu {
        left: auto;
        right: 0;
        display: block !important;
    }

    #header_slide {
        display: none;
    }

    .mobile_menu.mm-menu .mm-listview > li > a.mm-next {
        bottom: 1px;
    }

    .mobile_menu.mm-menu em.mm-counter {
        z-index: 5;
        pointer-events: none
    }

    .mobile_menu.mm-menu .mm-listview i {
        margin-right: 3px;
    }

    .HeaderBottom,
    .Loginandlanguage {
        display: none;
    }

    .mobile_menu.mm-menu .HeaderBottom,
    .mobile_menu.mm-menu .Loginandlanguage {
        display: block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .roll-sm.mobile_header .mobile_nav {
        position: relative !important;
    }

    .mobile_header .header-fixed .roll-sm .Logobox,
    .mobile_header .header-fixed .roll-sm .mobileLogoPane {
        display: none !important;
    }
}

@media only screen and (max-width: 767px) {
    .roll-xs.mobile_header .mobile_nav {
        position: relative !important;
    }

    .mobile_header .header-fixed .roll-xs .Logobox,
    .mobile_header .header-fixed .roll-xs .mobileLogoPane {
        display: none !important;
    }
}

















/*Home Page 02 Style*/
.home02-banner {
    width: 100%;
    position: relative;
    z-index: 1;
    background-size: cover;
    overflow: hidden;
    color: #FFF;
}

    .home02-banner .banner-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-color: #000;
        opacity: 0.5;
        filter: alpha(opacity=50);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -webkit-transform: skew(-41deg, 0deg);
        -moz-transform: skew(-41deg, 0deg);
        transform: skew(-41deg, 0deg);
        -webkit-transform-origin: right top;
        transform-origin: right top;
    }

    .home02-banner .banner-title {
        line-height: 1.2;
        font-size: 80px;
        margin: 200px 0 50px;
        font-weight: bold;
    }

    .home02-banner .banner-content {
        font-size: 20px;
        line-height: 2;
    }

    .home02-banner .banner-link {
        position: absolute;
        top: 76.3%;
        left: 60.7%;
        padding: 33px 60px 33px 120px;
        overflow: hidden;
        font-size: 18px;
        white-space: nowrap;
    }

        .home02-banner .banner-link:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #61b632;
            opacity: 0.6;
            -webkit-transform: skew(-41deg, 0deg);
            -moz-transform: skew(-41deg, 0deg);
            transform: skew(-41deg, 0deg);
            -webkit-transform-origin: right top;
            transform-origin: right bottom;
            z-index: -1;
        }

        .home02-banner .banner-link a {
            color: #FFF;
        }

        .home02-banner .banner-link .fa {
            display: inline-block;
            width: 46px;
            height: 46px;
            line-height: 46px;
            text-align: center;
            border: 1px solid #FFF;
            border-radius: 50%;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
            vertical-align: middle;
            margin-left: 10px;
        }

@media only screen and (min-width: 1400px) {
    .home02-banner .banner-title {
        font-size: 100px;
        margin: 280px 0 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home02-banner {
        height: auto !important;
        min-height: inherit !important;
    }

        .home02-banner .banner-title {
            font-size: 60px;
            margin: 100px 0 50px;
        }

        .home02-banner .banner-link {
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            transform: scale(0.7);
            -webkit-transform: scale(0.7);
            float: right;
            position: relative;
        }
}

@media only screen and (max-width: 767px) {
    .home02-banner .banner-title {
        font-size: 30px;
        margin: 120px 0 50px;
    }

    .home02-banner .banner-link {
        position: static;
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        transform-origin: left center;
        -webkit-transform-origin: left center;
        display: inline-block;
        padding: 30px 60px;
    }

        .home02-banner .banner-link:before {
            transform: none;
            -webkit-transform: none;
        }
}

.home02-cont02 {
    text-align: center;
    position: relative;
}

    .home02-cont02 img {
        max-width: 100%;
    }

    .home02-cont02 .text_img {
        display: inline-block;
        position: relative;
        max-width: 60%;
    }

    .home02-cont02 dl {
        position: absolute;
        max-width: 18%;
    }

        .home02-cont02 dl.text_box_1 .line, .home02-cont02 dl.text_box_2 .line {
            width: 217px;
            height: 100px;
            border-right: 1px solid #cccccc;
            border-top: 1px solid #cccccc;
            position: absolute;
            left: 100%;
            top: 50%;
            margin-left: 3px;
        }

            .home02-cont02 dl.text_box_1 .line:before,
            .home02-cont02 dl.text_box_2 .line:before {
                content: "";
                width: 11px;
                height: 11px;
                background-color: #61b633;
                border-radius: 50%;
                -moz-border-radius: 50%;
                -webkit-border-radius: 50%;
                position: absolute;
                right: -6px;
                bottom: -10px;
            }

        .home02-cont02 dl.text_box_2 .line {
            left: auto;
            right: 100%;
            margin-right: 4px;
            border-right: none;
            border-left: 1px solid #cccccc;
        }

            .home02-cont02 dl.text_box_2 .line:before {
                right: auto;
                left: -6px;
            }

        .home02-cont02 dl.text_box_3 .line, .home02-cont02 dl.text_box_4 .line {
            width: 115px;
            border-right: 1px solid #cccccc;
            border-top: 1px solid #cccccc;
            position: absolute;
            left: 100%;
            top: 50%;
            margin-left: 3px;
        }

            .home02-cont02 dl.text_box_3 .line:before, .home02-cont02 dl.text_box_4 .line:before {
                content: "";
                width: 11px;
                height: 11px;
                background-color: #ffffff;
                border-radius: 50%;
                -moz-border-radius: 50%;
                -webkit-border-radius: 50%;
                position: absolute;
                right: -6px;
                bottom: -5px;
            }

        .home02-cont02 dl.text_box_4 .line {
            left: auto;
            right: 100%;
            margin-right: 3px;
        }

            .home02-cont02 dl.text_box_4 .line:before {
                right: auto;
                left: -6px;
            }

        .home02-cont02 dl.text_box_1 {
            left: 0;
            top: 10%;
            text-align: right;
            margin-left: 5%;
            border-right: 3px solid #61b633;
            padding-right: 20px;
        }

        .home02-cont02 dl.text_box_2 {
            right: 0;
            top: 10%;
            text-align: left;
            margin-right: 5%;
            border-left: 3px solid #61b633;
            padding-left: 20px;
        }

        .home02-cont02 dl.text_box_3 {
            left: 0;
            bottom: 20%;
            text-align: right;
            border-right: 3px solid #61b633;
            padding-right: 20px;
        }

        .home02-cont02 dl.text_box_4 {
            right: 0;
            bottom: 20%;
            text-align: left;
            border-left: 3px solid #61b633;
            padding-left: 20px;
        }

        .home02-cont02 dl dt {
            color: #333333;
            font-size: 16px;
            margin-bottom: 8px;
        }

        .home02-cont02 dl dd {
            line-height: 1.8;
            font-size: 13px;
            color: #666666;
        }

@media only screen and (max-width: 1024px) {
    .home02-cont02 .text_img {
        max-width: inherit;
    }

    .home02-cont02 dl.text_box_1,
    .home02-cont02 dl.text_box_2,
    .home02-cont02 dl.text_box_3,
    .home02-cont02 dl.text_box_4 {
        position: static;
        width: auto;
        max-width: none;
        text-align: left;
        margin: 0 0 20px;
        border-right: none;
        border-left-style: solid;
        border-left-width: 3px;
    }

    .home02-cont02 dl.text_box_1,
    .home02-cont02 dl.text_box_3 {
        padding-left: 20px;
        padding-right: 0;
    }

    .home02-cont02 dl .line,
    .home02-cont02 dl .line {
        display: none;
    }
}

.home02-bg {
    background-color: #f4f4f4;
}

.home02-ibox {
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    padding: 35px;
    margin-bottom: 8px;
    color: #999;
    transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}

    .home02-ibox > .fa, .home02-ibox > .ico {
        margin: 0 auto;
        color: #61b632;
        text-align: center;
        font-size: 50px;
        overflow: hidden;
    }

        .home02-ibox > .ico img {
            max-width: 100%;
            vertical-align: middle;
            margin-bottom: 4px;
        }

    .home02-ibox > h5 {
        font-size: 17px;
        margin-bottom: 25px;
        font-weight: normal;
        color: #333;
    }

    .home02-ibox:hover {
        border: 1px solid #61b632;
    }

.home02-bg02 {
    background: url("/Portals/8/skins/greens%20mandurama_new/images/home02-bg02.jpg") no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    text-align: center;
    position: static;
}

    .home02-bg02 > .shade {
        background: url("/Portals/8/skins/greens%20mandurama_new/images/home02-bg02-dot.png");
    }

@media only screen and (max-width: 991px) {
    .home02-bg02 {
        background-attachment: scroll;
    }
}

.home02-cont02 {
    color: #ffffff;
    font-size: 20px;
    padding: 0px 10px;
}

    .home02-cont02 h3 {
        font-size: 80px;
        color: #FFF;
        font-weight: bold;
        line-height: 1.2;
    }

.home02-btn, a.home02-btn, a:link.home02-btn, a:active.home02-btn, a:visited.home02-btn {
    font-size: 15px;
    padding: 20px 60px;
    margin: 0 0 8px;
    border: 1px solid #ffffff;
    text-decoration: none;
    display: inline-block;
    color: #FFF;
    transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}

    a.home02-btn:hover {
        border-color: #61b632;
        background-color: #61b632;
        color: #FFF !important;
        text-decoration: none;
    }

.home02-ibox02 {
    padding-bottom: 30px;
}

    .home02-ibox02 img {
        max-width: 100%;
    }

    .home02-ibox02 .title {
        padding: 30px 0;
        position: relative;
    }

        .home02-ibox02 .title h5 {
            color: #333333;
            font-size: 17px;
            margin-bottom: 5px;
        }

        .home02-ibox02 .title .love {
            position: absolute;
            right: 0;
            top: 50%;
            margin-top: -10px;
        }

            .home02-ibox02 .title .love .fa {
                margin-right: 5px;
                font-size: 17px;
                vertical-align: middle;
            }

    .home02-ibox02 .img {
        position: relative;
        overflow: hidden;
        display: inline-block;
        max-width: 100%;
    }

        .home02-ibox02 .img .fa {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 80px;
            height: 80px;
            line-height: 80px;
            text-align: center;
            margin: -40px 0 0 -40px;
            background-color: #61b632;
            font-size: 30px;
            color: #FFF;
            opacity: 0;
            z-index: 2;
            filter: alpha(opacity=0);
            transition: all ease-in 200ms;
            -webkit-transition: all ease-in 200ms; /* Safari and Chrome */
        }

        .home02-ibox02 .img:before,
        .home02-ibox02 .img:after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            transition: all ease-in 200ms;
            -webkit-transition: all ease-in 200ms; /* Safari and Chrome */
            opacity: 0;
            filter: alpha(opacity=0);
        }

        .home02-ibox02 .img:before {
        }

        .home02-ibox02 .img:after {
            background-color: rgba(0,0,0,0.4);
            transform-origin: right bottom;
            transform: rotate(37.3deg);
            width: 200%;
            height: 200%;
            left: auto;
            top: auto;
            right: 0;
            bottom: 0;
        }

    .home02-ibox02:hover .img .fa,
    .home02-ibox02:hover .img:before,
    .home02-ibox02:hover .img:after {
        opacity: 1;
        filter: alpha(opacity=100);
    }

.home02-title {
    font-size: 26px;
    color: #333333;
    line-height: 1.2;
    white-space: normal;
    vertical-align: middle;
    font-weight: bold;
    padding: 0px;
    margin: 0px 0 35px;
    text-align: center;
}

    .home02-title span {
        display: block;
        font-size: 15px;
        color: #666666;
        line-height: 1.2;
        white-space: normal;
        vertical-align: middle;
        font-weight: bold;
        padding: 10px 0 0 0;
        margin: 0px;
    }

.home02-ibox03 {
    text-align: center;
    padding: 0px 25px;
}

    .home02-ibox03 .decorate {
        display: inline-block;
        position: relative;
    }

        .home02-ibox03 .decorate .fa {
            position: absolute;
            left: 50%;
            top: 50%;
            font-size: 40px;
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            margin: -25px 0 0 -25px;
        }

    .home02-ibox03 .number {
        font-size: 30px;
        color: #333333;
        line-height: 1.2;
        padding-top: 10px;
    }

    .home02-ibox03 .title {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .home02-ibox03 .color-1 {
        color: #20a3f0;
    }

    .home02-ibox03 .color-2 {
        color: #7770cc;
    }

    .home02-ibox03 .color-3 {
        color: #b75ccd;
    }

    .home02-ibox03 .color-4 {
        color: #4680dd;
    }

@media only screen and (max-width: 767px) {
    .home02-ibox03 {
        margin-bottom: 20px;
    }
}

.home02-bg03 {
    background: url("/Portals/8/skins/greens%20mandurama_new/images/home02-bg03.jpg") no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    text-align: center;
    position: static;
}

@media only screen and (max-width: 991px) {
    .home02-bg03 {
        background-attachment: scroll;
    }
}

.home02-title02 {
    font-size: 26px;
    color: #FFF;
    line-height: 1.2;
    white-space: normal;
    vertical-align: middle;
    font-weight: bold;
    padding: 0px;
    margin: 0px 0 35px;
    text-align: center;
}

.home02-Testimonials {
    min-height: inherit;
}

    .home02-Testimonials ul {
        margin: 0;
    }

    .home02-Testimonials .mark {
        width: 100px;
        height: 100px;
        line-height: 94px;
        text-align: center;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        background-color: #FFF;
        color: #61b632;
        font-size: 38px;
        margin: auto auto -50px;
        position: relative;
        z-index: 1;
    }

    .home02-Testimonials li blockquote {
        background-color: rgba(255,255,255,0.2);
        padding: 80px 60px 60px;
        color: #FFF;
        font-size: 13px;
        font-style: normal;
        margin: 0px 10% 100px;
    }

    .home02-Testimonials .dot {
        text-align: center;
        width: 100%;
    }

        .home02-Testimonials .dot a img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
        }

        .home02-Testimonials .dot a {
            text-indent: inherit;
            width: auto;
            height: auto;
            padding: 5px;
            border: 1px solid transparent;
        }

            .home02-Testimonials .dot a.actived {
                border: 1px solid #FFF;
            }

    .home02-Testimonials .last_page, .home02-Testimonials .next_page {
        border: none;
        text-indent: -100px;
        overflow: hidden;
        border-left: 2px solid #FFF;
        border-bottom: 2px solid #FFF;
        width: 18px;
        height: 18px;
        border-radius: 0px;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        right: auto;
        left: 3%;
        top: 50%;
    }

    .home02-Testimonials .next_page {
        left: auto;
        right: 3%;
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
    }

@media only screen and (max-width: 767px) {
    .home02-Testimonials li blockquote {
        padding: 70px 15px 20px;
    }
}

.home02-price .price_holder {
    text-align: center;
    border-top: none;
    margin: 0;
}

.home02-price .price_title {
    border: none;
    border-bottom: 5px solid #61b632;
    background-color: #333333;
    padding: 28px 20px;
    text-align: center;
}

    .home02-price .price_title h2 {
        color: #FFF;
        font-size: 18px;
    }

.home02-price .price_box {
    text-align: center;
    padding: 40px 0px 40px 0px;
    border-color: #dddddd
}

.home02-price .price {
    font-size: 40px;
}

.home02-price .sup {
    vertical-align: bottom;
}

.home02-price li {
    text-align: center;
    font-size: 14px;
}

.home02-price .price_holder ul li {
    border-color: #dddddd;
}

.home02-price a.btn {
    color: #FFF;
    display: inline-block;
    margin: 30px 0;
    position: relative;
    font-size: 14px;
    padding: 12px 25px;
    background-color: #61b732;
}

.home02-title03 {
    font-size: 30px;
    color: #333333;
    line-height: 1.2;
    white-space: normal;
    vertical-align: middle;
    font-weight: bold;
    padding: 0px;
    margin: 0px 0 35px;
}

    .home02-title03:after {
        content: "";
        width: 50px;
        display: block;
        padding-top: 25px;
        border-bottom: 3px solid #61b632;
    }

.home02-btn02, a.home02-btn02, a:link.home02-btn02, a:active.home02-btn02, a:visited.home02-btn02 {
    font-size: 15px;
    padding: 11px 29px;
    margin: 0 0 8px;
    text-decoration: none;
    display: inline-block;
    color: #ffffff;
    background-color: #61b632;
    transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}

    a.home02-btn02:hover {
        background-color: #000 !important;
        text-decoration: none;
    }

.home02-title04 {
    font-size: 26px;
    color: #ffffff;
    line-height: 1.2;
    white-space: normal;
    vertical-align: middle;
    font-weight: bold;
    padding: 0px;
    margin: 0px 0 10px;
}

.home02-list {
    margin: 0;
    padding: 0;
}

    .home02-list li {
        list-style: none;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #4d4d4d;
    }

    .home02-list.border li {
        border-color: #cbcbcb;
    }

    .home02-list li a {
        color: #999999;
    }

    .home02-list li:before {
        content: "\f009";
        font-family: "FontAwesome";
        font-size: 14px;
        margin-right: 10px;
        vertical-align: middle;
    }

.home02-ibox04 {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .home02-ibox04 img {
        float: left;
        margin: 0 15px 5px 0;
    }

    .home02-ibox04 li {
        clear: both;
        overflow: hidden;
        margin-bottom: 40px;
    }

.home02-social a {
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 16px;
    display: inline-block;
    background-color: #c8c8c8;
    background-color: rgba(255,255,255,0.2);
    margin: 0 5px 5px 0;
    text-align: center;
    transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}

    .home02-social a span {
        color: #b3b3b3;
        transition: all ease-in 200ms;
        -webkit-transition: all ease-in 200ms; /* Safari and Chrome */
    }

    .home02-social a:hover {
        color: #FFF;
        background-color: #21a4f0;
    }

.home02-social.bg_color a {
    background-color: rgba(0,0,0,0.3);
}

    .home02-social.bg_color a span {
        color: #FFF;
    }

.home02-custompane {
    position: relative;
}


    .home02-custompane:after {
        content: "";
        display: block;
        width: 100%;
        clear: both;
    }

    .home02-custompane > .left {
        width: 50%;
        float: left;
        /*background: url("/Portals/8/skins/greens%20mandurama_new/images/Home02PaneA-bg.jpg") no-repeat center center;*/
        background-size: cover;
    }

    .home02-custompane > .right {
        width: 50%;
        float: right;
    }

    .home02-custompane [class*="Pane"] {
        margin: 0;
    }

    .home02-custompane .DnnModule {
        position: static;
    }

.home02-gmap {
    overflow: hidden;
}

    .home02-gmap:before {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 0;
        width: 100%;
        height: 100px;
        box-shadow: 0 0 7px rgba(0,0,0,0.4);
        -moz-box-shadow: 0 0 7px rgba(0,0,0,0.4);
        -webkit-box-shadow: 0 0 7px rgba(0,0,0,0.4);
        z-index: 333;
    }

@media only screen and (min-width: 992px) {
    .home02-gmap {
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;
        height: 100% !important;
    }
}

@media only screen and (max-width: 991px) {
    .home02-custompane > .left {
        width: 100%;
        float: none;
    }

    .home02-custompane > .right {
        width: 100%;
        float: none;
    }

    .home02-gmap {
        position: relative;
    }
}

.home02-list02 {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .home02-list02 li {
        margin: 0;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

        .home02-list02 li:first-child {
            padding-top: 0;
        }

        .home02-list02 li .fa {
            font-size: 16px;
            color: #50bdad;
            margin-right: 15px;
            vertical-align: middle;
            margin-bottom: 2px;
        }

        .home02-list02 li a,
        .home02-list02 li a:link,
        .home02-list02 li a:active,
        .home02-list02 li a:visited {
            color: #666666;
        }

/*Accent colour*/
.home02-banner .banner-link:before,
.home02-ibox02 .img .fa,
.home02-price a.btn,
.home02-btn02,
a.home02-btn02,
a:link.home02-btn02,
a:active.home02-btn02,
a:visited.home02-btn02,
div.Theme_Responsive_20073_home02 .form_submit .btn,
.home02-social a:hover,
.photo_box .ico span,
.photo_box .ico em,
.photo_box .ico i,
.photo_box .ico .fa {
    background-color: #177b44;
}

.home02-cont02 dl.text_box_1,
.home02-cont02 dl.text_box_2,
.home02-cont02 dl.text_box_3,
.home02-cont02 dl.text_box_4,
.home02-ibox:hover,
.home02-price .price_title,
.home02-title03:after {
    border-color: #177b44;
}

.home02-ibox > .fa,
.home02-ibox > .ico,
.home02-Testimonials .mark,
div.Theme_Responsive_20073_home02 .form_submit .btn:hover,
.home02-list02 li a:hover {
    color: #177b44;
}

a.home02-btn:hover {
    border-color: #177b44;
    background-color: #177b44;
}

.home02-list02 li .fa {
    color: #177b44;
}

.footer_box .home02-list02 li .fa {
    border-color: #999999;
}

.footer_box .home02-social a:hover {
    background-color: #999999;
}

.footer_box .home02-list02 li a:hover,
.footer_box .home02-list02 li .fa {
    color: #999999;
}



/*Footer */

.copyright_style a {
    color: #177b44;
}

    .copyright_style a:hover {
        color: #f8c220 !important;
    }

.footer ul a:hover {
    color: #f8c220;
}

.footer_box {
    z-index: 3;
}

.foot_bgs {
    display: none;
}

.footer_box .footer_bg {
    content: "";
    position: inherit;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.foot_bg {
    background: #cfd8e2;
}

.footer_bottom {
    overflow: hidden;
}

    .footer_bottom .footer_bottom_bg {
        opacity: 0.2;
        background-color: #181818;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -webkit-transform: skew(0deg,0deg);
        -moz-transform: skew(0deg,0deg);
        transform: skew(0deg,0deg);
        transform-origin: right bottom;
    }

.footer_box .Normal {
    color: #999999;
}

.footer_box a,
.footer_box a:link,
.footer_box a:active,
.footer_box a:visited {
    color: #999999;
}

    .footer_box a:hover {
        text-decoration: underline;
        color: #999999;
    }

.footer_box .dnntitle span {
    color: #ffffff;
}

.FooterPane .Normal,
.copyright_style,
.copyright_style a,
.copyright_style a:link,
.copyright_style a:active,
.copyright_style a:visited,
.FooterPane a,
.FooterPane a:link,
.FooterPane a:active,
.FooterPane a:visited {
    color: #999999;
}

.FooterPane .foot_social_3 a:hover span {
    color: #61b632;
}

.footer_bottom .Normal,
.footer_bottom a,
.footer_bottom a:link,
.footer_bottom a:active,
.footer_bottom a:visited,
.footer_bottom .social_list_1 a span,
.footer_bottom .link_list_1 a,
.footer_bottom .link_list_1 a:link,
.footer_bottom .link_list_1 a:active,
.footer_bottom .link_list_1 a:visited {
    color: #999999;
}

    .footer_bottom .link_list_1 .social a,
    .footer_bottom .link_list_1 .social a:link,
    .footer_bottom .link_list_1 .social a:active,
    .footer_bottom .link_list_1 .social a:visited,
    .footer_bottom .FooterPane a:hover,
    .footer_bottom .copyright_style a:hover,
    .footer_bottom .link_list_1 a:hover,
    .footer_bottom .link_list_1 .social a:hover,
    .footer_bottom .list_style_13 li .fa {
        text-decoration: none;
        color: #61b632;
    }

.footer_bottom .social_list_5 a:hover span {
    background-color: #61b632;
    border-color: #61b632;
}

.footer_bottom .link_list_1 .social a:hover {
    text-decoration: underline;
}

.footer_bottom .social_list_1 a {
    border-color: #999999;
}

    .footer_bottom .social_list_1 a:hover {
        background-color: #999999;
    }

        .footer_bottom .social_list_1 a:hover span {
            color: #61b632;
        }

.footer_box .footer_bottom {
    padding: 0 0 20px;
    background: #f5f7f9;
    text-align: center;
}

    .footer_box .footer_bottom .footer_line {
        padding: 20px 0 0;
    }

.footer_bottom .dnntitle span {
    color: #FFFFFF;
}

.footer_bottom .title_style_2 {
    color: #FFFFFF;
}

    .footer_bottom .title_style_2 .icon:before,
    .footer_bottom .title_style_2 .icon:after {
        border-color: #FFFFFF;
    }

.footer_bottom .Theme_Responsive_20072_home5-Email .form_submit:before {
    color: #61b632 !important;
}

.footer_bottom .Theme_Responsive_20072_home7-Email .form_submit .btn {
    background-color: #61b632 !important;
}

    .footer_bottom .Theme_Responsive_20072_home7-Email .form_submit .btn:hover {
        background-color: #555 !important;
    }

.copyright_style,
.copyright_style a,
.FooterPane {
    font-size: 14px;
}




#to_top {
    width: 65px;
    height: 65px;
    line-height: 65px;
    right: 90px;
    bottom: 120px;
}

.backtop01 {
    border-color: #333333;
}

    .backtop01 span:before {
        border-top-color: #333333;
        border-left-color: #333333;
    }

    .backtop01 span:after {
        border-left-color: #333333;
    }

    .backtop01:hover {
        background-color: #61b632;
        border-color: #61b632;
    }

.backtop02 {
    background-color: #333333;
}

    .backtop02:hover {
        background-color: #61b632;
    }

.backtop03 {
    border-color: #333333;
    color: #333333;
}

    .backtop03:hover {
        border-color: #61b632;
        background-color: #61b632;
    }

.backtop04 {
    background-color: #333333;
}

    .backtop04:hover {
        background-color: #61b632;
    }

#dnn_ctr5946_ViewEasyDNNGallery_ctl00_ImageSliderOne .theme-default .nivoSlider img {
    height: 410px;
}

.MerchandiseDetail .HomeServices .box {
    margin: 50px 0px;
}

.FencingMaterials .machinery-right {
    margin: 50px 0px 0px 0px !important;
}


.FencingMaterials .HomeServices .box {
    margin: 0px 0px;
}

.AgriculturalChemicals .machinery-right {
    margin: 50px 10px 8px 0px !important;
}

.AgriculturalChemicals .HomeServices .box {
    margin: 50px 0px;
}


.GardenSupplies .garden2 {
    margin: 20px 50px 0px 2px !important;
}


.AnimalHealth .garden2 {
    margin: 20px 50px 0px 0px !important;
}

.heading {
    color: #f8c220 !important;
    background: #006a24 !important;
}

.liberty_Fuel img{
height: 350px;
    width: 100%;
}
.liberty_Fuel .icon-right{
text-align: Center;
}

.liberty_Fuel .icon-right p {
    color: #333;
}
.fuels{background: #f8c200;
    text-align: center;
	color:#177b44;
	}

.Fuel_section{

    border: 1px solid #177b44;
	    margin: 5px;
}
.Newsletter{
text-align: center;
padding:10px;
}





.page-title {
    color: #006C28;
    font-size: 25px;
    margin-top: 12px;
    margin-left: 10px;
}

.floatleft{
    float:left
}
.testClass{
   float:right;
}

.textshadow {
    display: block;
    margin: 0px auto !important;
}

.heading
{
background:#04712A;
color:#FDC401 ;
padding-left:5px;
}

.new-link-s {
    background: #FDC401 !important;
    color: #04712A !important;
    display: block  !important;
    margin: 10px !important;
    padding: 5px !important;
    font-weight: bold;
    text-align: left;
    text-decoration: none;
    -webkit-box-shadow: 0px 2px 3px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    0px 2px 3px rgba(50, 50, 50, 0.75);
    box-shadow:         0px 2px 3px rgba(50, 50, 50, 0.75);
}

.heading2
{
background:#04712A;
text-align:center;
color:#FDC401 !important;
padding-left:5px;
border:2px solid;
/*** -webkit-box-shadow: 0px 2px 3px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    0px 2px 3px rgba(50, 50, 50, 0.75);
    box-shadow:         0px 2px 3px rgba(50, 50, 50, 0.75);***/
}

.m-links-n
{
float:left;
width:300px;
 background: #FDC401 !important;
    color: #04712A !important;
    display: block  !important;
    margin: 0px 20px 10px 10px !important;
    padding: 5px !important;
    font-weight: bold;
    text-decoration:none;
    -webkit-box-shadow: 0px 2px 3px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    0px 2px 3px rgba(50, 50, 50, 0.75);
    box-shadow:         0px 2px 3px rgba(50, 50, 50, 0.75);
}

.m-links-n a
{
color: #04712A !important;
}

.heading3, .f-m-h, .animal-health-h, .live-stock h1
{
font-size:17px !important;
color:#04712A !important;
margin-left:10px !important;
}

.fertilizer
{
width:375px;
float:left;
color:#04712A !important;
margin:50px 100px 25px 10px;
}

.fertilizer img, .live-stock  img
{
margin-left:0px !important;
}

.fertilizer2
{
float:left;
margin-top:50px !important;
}


.p-s
{
margin:50px auto 25px;
width:400px;
padding:30px 20px 20px;
background:#04712A;
color:#FDC401 !important;
text-align:center;
font-size:13px;
}

.f-m figure
{
margin:50px auto;
width:450px;
}


.f-m figcaption
{
background:#04712A;
color:#FDC401 !important;
margin:0px;
padding:5px;
}

.f-m
{
magin-top:30px;
}

.f-m img
{
margin:0px !important;
}

.animal-left
{
float:left;
width:500px;
color:#04712A;
margin:50px 100px 25px 10px;
}

.animal-left h2
{
font-size:12px;
clear:both;
background:black;
color:#FDC401;
padding-left: 5px;
}

.animal-img1
{
float:left;
margin:0px 0px 27px 0px !important;
}

.animal-img2
{
float:right;
}

.animal-left img
{
margin:0px !important;
}

.animal-right
{
margin-top:50px;
}

.animal-right img
{
margin:0px 0px 25px 0px !important; 
}

.live-stock img
{
margin:0px !important;
}

.live-stock-l
{
float:left;
width:400px;
color:#04712A;
margin:50px 100px 0px 10px;
}

.live-stock-l > img {
    margin-top: 18px !important;
}

.live-stock-r
{
float:left;
margin:50px 0px 25px;
}

.live-stock-r div
{
background: black;
    color: #FDC401;
    font-size: 17px;
    padding-top: 12px;
    text-align: center;
 font-weight: bold;
padding-top: 18px;
}

.s-s
{
float:left;
width:400px;
margin:50px 100px 25px 10px;
}

.s-s h1
{
color:#04712A;
font-size:13px;
}

.s-s img
{
margin:0px !important;
}

.s-s2
{
float:left;
margin:50px 0px 25px 0px !important;
}

.agriculture
{
margin-left:10px;
}

.agriculture h1 {
    color: #04712A;
    font-size: 13px;
}

.agriculture h1 a {
    font-size: 13px !important;
}

.agriculture > img 
{
     margin: 10px 50px 20px 0px;
}

.water-saving 
{
margin-left:10px;
}

.water-saving h1, .hadware-left h1
{
font-size:13px;
color:#04712A;
}

.water-saving a
{
font-size:13px !important;
}

.water-saving a:visited
{
text-decoration:underline !important;
}


.hadware-left
{
float:left;
width:400px;
margin:50px 100px 25px 10px;
}

.hadware-right
{
float:left;
margin-top:50px;
width:300px;
}

.hadware img
{
margin:0px !important;
}


.oil-left
{
float:left;
color:#FDC401;
background:#04712A;
width:400px;
font-size:13px;
padding:20px;
height:310px;
margin:50px 0px 25px 25px;
}

.oil-right
{
float:right;
margin:50px 25px 25px 0px !important;
}


.clothing-h, .GardenSupplies-h
{
color:#FDC401;
background:#04712A;
font-size:13px;
padding:20px;
margin:50px 10px 25px 10px;
}

.clothing1
{
float:left;
margin:0px 10px 25px 10px !important;
}

.clothing2
{
float:left;
margin:0px 10px 25px 0px !important;
}

.clothing3
{
float:left;
margin:0px 0px 25px 0px !important;
}

.produce1
{
float:left;
color:#FDC401;
background:#04712A;
font-size:13px;
padding:20px;
width:310px;
height:310px;
margin:50px 50px 0px 10px;
}

.produce2
{
float:left;
margin:50px 0px 25px 0px !important;
}

.produce3
{
float:left;
margin:0px 50px 25px 10px !important;
}

.produce4
{
float:left;
margin:0px 0px 25px 0px !important;
}

.garden2
{
float:left;
margin:20px 50px 0px 10px !important;
}

.garden3
{
float:left;
margin:20px 0px 0px 0px !important;
}

.garden4
{
float:left;
margin:25px 50px 25px 10px !important;
}

.garden5
{
float:left;
margin:25px 0px 25px 0px !important;
}

.machinery-left
{
float:left;
color:#FDC401;
background:#04712A;
font-size:13px;
padding:20px;
width:360px;
height:360px;
margin:50px 0px 25px 50px;
}

.machinery-right
{

}

.home-top h1, .home-top h3
{
text-align:center;
}


/**************************  17 dec. 2013 *******************************/


.hadware-left h1
{
margin-top:0px !important;
line-height: 49px !important;
}

.s-s h1
{
margin-top:0px !important;
line-height: 45px !important; 
}

.clear2
{
height:20px;
width:100%;
clear:both;
}

.water-saving h1
{
line-height: 34px !important;
margin-top:0px !important;
}


.new-link-s:hover, .m-links-n:hover {
    background: #04712A !important;
    color:#FDC401 !important;
    box-shadow: none !important;
}

.m-links-n:hover a
{
color:#FDC401 !important;
}

.art-block
{
background:none !important;
border:none !important;
}

.heading3, .f-m-h, .live-stock h1, .animal-health-h, .s-s h1, .agriculture h1, .hadware-left h1, .water-saving h1
{
font-weight:normal !important;
}

.contact-us {
    float: left;
    font-size: 14px;
    margin: 50px 0 50px 25px;
    width: 490px;
}

.contact-us2
{
margin-bottom:20px;
height:85px;
width:225px;
float:left;
border-bottom: 1px solid #04712A;
}


.contact-us span {
    display: block;
    line-height: 34px;
}

.contact-left {
    color: #006C28;
    font-size: 18px;
    height: 50px;
    width: 150px;
}
.contact-us3 {
    height: 100px;
}

.h-o-o
{
width:275px !important;
}

.contact-us2.c-c3 {
    height: 175px;
}

.contact-left img
{
float:left;
padding-right:10px;
margin:0px !important;
border:none !important;
}




.map
{
float:left;
width:425px;
margin:50px 25px 0px 0px;
}

.contact-us2.h
{
border-bottom:none !important;
}

.view-larger
{
display: inline-block;
margin-left:10px;
}

img, div.art-block img
{
    border: none !important;
}

.fertilizer img 
{
    margin-top: 25px !important;
}

.bp-fuel
{
   background: #04712A;
    color: #FDC401;
    font-size: 13px;
    margin: 50px auto 50px;
    padding: 20px;
    width: 360px;
}

.newsletter-new
{
color: #04712A;
padding: 10px;
}

.community-new {
    float: left;
    width: 45%;
    min-height: 275px;
    margin:20px 0px 0px 10px;
}


.community-new2
{
    float: right;
    width: 45%;   
    min-height: 275px;
    margin:20px 10px 0px 0px;
}



.community-new > h1,  .community-new2 > h1, .polices-left h1, .polices-right h1
{
    background: #04712A;
    color: #FDC401;
    font-size: 22px;
font-weight: bold;
    padding: 0px 5px;
   /* line-height:34px;*/;
    margin-bottom: 10px !important;
}

.community-new > p,  .community-new2 > p, .polices-left p, .polices-right p
{
padding: 20px 10px 10px;
background: #FDC401;
color: #04712A;
}

.community-new > p,  .community-new2 > p
{
height: 180px;
}

.polices-left p, .polices-right p
{
height: 100px;
}

.polices-left
{
    float: left;
    width: 45%;
    min-height: 125px;
    margin:20px 0px 0px 10px;
}


.polices-right
{
    float: right;
    width: 45%;   
    min-height: 125px;
    margin:20px 10px 0px 0px;
}


.home-new {
    color: #04712A;
    background: #fff;
    padding: 0 !important;
}

.general-heading
{
background: #04712A;
color: #FDC401 !important;
padding-left: 5px;
font-size: 22px !important;
margin:10px 0px !important;
width:655px;
line-height: 36px;
font-weight: bold !important;
}

.community-new4
{
margin-top: 40px !important;
}

.newsletter-new a
{
color: #FDC401 !important;
font-weight: bold !important;
font-size: 14px !important;
text-decoration: underline !important;
}

.agriculture a
{
color: #04712A !important;
    font-size: 14px !important;
    font-weight: bold;
}



/****************************************** home page **********************************************/
.art-box.art-blockcontent
{
padding:0px !important;
}

.home-new h3, .home-new h1
{
text-align: center !important;
color:#04712A !important;
line-height: 20px;
}

.home-new h3
{
font-weight: normal;
letter-spacing: 5px;
}

.home-new h1
{
border-bottom: 1px solid #04712A;
margin-bottom: 20px;
padding-bottom: 10px;
}

.home-top
{
    margin: 0 !important;
    padding: 20px 50px;
}

.home-top
{
text-align:justify;
}

.item_container.new_item > img {
    height: 365px;
    left: 0 !important;
    margin: 0 !important;
    top: 30px !important;
    width: 650px !important;
}

.chameleon_slider.NewsOne
{
background:none !important;
border:none !important;
}

.art-box.art-blockcontent
{
background: #fff !important;
border: none !important;
}

#rotate1958 .item > img
{
width:690px;
height:390px;
}

.contentRotator > div
{
width:690px !important;
margin: 0 auto;
}

#rotate1958
{
width:690px !important;
height:390px !important;
}

#EDN_NewsTwo .meta-text-wraper .meta_text > div
{
margin-right: 0px !important;
overflow: hidden;
clear:both;
height: 30px !important;
}

#EDN_NewsTwo .meta-text-wraper
{
border: none !important;
}

#EDN_NewsTwo .meta-text-wraper .meta_text
{
background: none !important;
}
.DnnModule-FacebookToolkit{margin-bottom: 20px;}


