﻿@import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);

@charset "UTF-8";

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #333;
}

/* DNN Body */
#Body {
    background-color: #0e2140;
}

/*------------------------------------------------*/
/* FONT STYLE */
/*------------------------------------------------*/
body, th, td, table, h1, h2, h3, h4, h5, h6,
.Head, .SubHead, .SubSubHead,
.Normal, .NormalBold, .NormalRed, .NormalTextBox, .NormalDisabled,
a:link, a:visited, a:hover, input, .CommandButton {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
}

em {
    font-style: italic;
    letter-spacing: 0;
}

strong {
    color: #333;
    font-weight: bold;
}

small {
    font-size: 12px;
    letter-spacing: 0;
}

.dashed {
    border-top: 1px dashed #e4e4e4;
    border-bottom: 1px dashed #e4e4e4;
    margin-top: -1px;
}

hr.dashed {
    border-top: 0px;
    margin: 0px;
}

.blue_text, a.blue_text, a.blue_text:link, a.blue_text:visited, a.blue_text:active {
    color: #0e7ac4;
}

/*------------------------------------------------*/
/* HEADER STYLE */
/*------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    line-height: 1;
    margin: 0 0 10px 0;
}

h1 {
    font-size: 35px;
    font-weight: 300;
}

h2, h2 .Head {
    font-size: 18px;
    color: #0e2140;
    line-height: 20px;
    margin: 0 0 18px 0;
}

    h2.thin {
        font-weight: 300;
        font-size: 25px;
        line-height: 30px;
    }

h3, h3 .Head {
    font-size: 18px;
    color: #26accd;
    font-weight: normal;
    margin-top: 15px;
}

h4, h4 .Head {
    font-size: 16px;
    color: #0e2140;
}

h5, h5 .Head {
    font-size: 14px;
    color: #0e2140;
}

h6, h6 .Head {
    font-size: 13px;
    color: #0e2140;
}

/*------------------------------------------------*/
/* ANCHOR STYLE */
/*------------------------------------------------*/
a, a:link, a:visited, a:active {
    color: #000000;
    text-decoration: none;
}

    a:hover {
        color: #0e7ac4;
        text-decoration: none;
    }

/* DNN Specific Selectors 
-------------------------------------*/
.CommandButton {
    font-size: 13px;
    color: #3d3d3d;
    font-weight: bold;
}

    .CommandButton:hover {
        color: #007cae;
    }

a.CommandButton:link {
    font-size: 13px;
    text-decoration: none;
    color: #3d3d3d;
    font-weight: bold;
}

a.CommandButton:hover {
    text-decoration: underline;
    color: #007cae;
}

/*------------------------------------------------*/
/* PARAGRAPH STYLE */
/*------------------------------------------------*/
p {
    margin: 0 0 0 0;
}

hr {
    clear: both;
    height: 0;
    border: solid #c0c0c0;
    border-width: 1px 0 0;
    margin: 20px 0 20px 0;
}

/*------------------------------------------------*/
/* IMAGE STYLES */
/*------------------------------------------------*/
img {
    border: 0;
}

/* Image Align Left 
    -------------------------------------*/
.imgLeft {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

/* Image Align Right 
    -------------------------------------*/
.imgRight {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
}

/* Image with border 
    -------------------------------------*/
.imgBorder {
    border: solid 3px #fff;
}

/* Polaroid Image Style 
    -------------------------------------*/
.imgPolaroid {
    color: #a6a6a6;
    font-size: 12px;
    text-align: left;
    padding: 13px 13px 17px 13px;
    background-color: #fff;
    box-shadow: 0 1px 2px #ccc;
}

    .imgPolaroid img {
        margin-bottom: 12px;
    }

/*------------------------------------------------*/
/* lIST STYLE */
/*------------------------------------------------*/


/* Ordered List */
ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
    vertical-align: top;
}

ol ol {
    margin-top: 8px;
    margin-left: 30px;
}

    ol ol li {
        list-style-type: lower-roman;
    }

    ol ol ol li {
        list-style-type: lower-alpha;
    }

ol ul li {
    list-style-type: lower-roman;
}

ul li {
    font-size: 14px;
}

/*------------------------------------------------*/
/* TABLE STYLE */
/*------------------------------------------------*/

/* Default Table Style */
table.tableDefault {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: transparent;
}

    table.tableDefault th,
    table.tableDefault td {
        font-size: 12px;
        padding: 8px;
    }

    table.tableDefault th {
        font-weight: bold;
        text-align: left;
        border-bottom: solid 2px #aaa;
        background-color: #d7d7d7;
    }

    table.tableDefault td {
        border-bottom: solid 1px #d9d9d9;
    }

    table.tableDefault tr:nth-child(odd) {
        background: #transparent;
    }

    table.tableDefault tr:nth-child(even) {
        background: #e3e4e6;
    }

.tableDefault tbody tr:hover td {
    color: #111;
}

/*------------------------------------------------*/
/* FORM STYLE
/*------------------------------------------------*/
input[type="text"], select, textarea, input[type="email"], input[type="search"], input[type="password"] {
    padding: 9px;
    margin-bottom: 20px;
    background: #f3f3f3;
    border: 1px solid #bfbfbf;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    -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: #666;
    font-size: 13px;
}

/*------------------------------------------------*/
/* BUTTONS STYLE */
/*------------------------------------------------*/
/* Primary Style Button (blue)*/
button.primaryButton,
a.primaryButton {
    display: inline-block;
    padding: 12px 20px;
    margin-bottom: 5px;
    background-color: #3B96B6;
    background: -moz-linear-gradient(top, #1aa0c9 0%, #1aa0c9);
    background: -webkit-gradient(linear, left top, left bottom, from(#1aa0c9), to(#1aa0c9));
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 0px solid #ffffff;
    -moz-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    -webkit-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 0px 0px rgba(000,000,000,0), 0px 0px 0px rgba(255,255,255,0);
}

/* Secondary Style Button (darkgray) */
button.secondaryButton,
a.secondaryButton {
    display: inline-block;
    padding: 12px 20px;
    margin-bottom: 5px;
    background-color: #666;
    background: -moz-linear-gradient(top, #8a8a8a 0%, #8a8a8a);
    background: -webkit-gradient(linear, left top, left bottom, from(#8a8a8a), to(#8a8a8a));
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 0px solid #ffffff;
    -moz-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    -webkit-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 0px 0px rgba(000,000,000,0), 0px 0px 0px rgba(255,255,255,0);
}

/* Alternative Style Button (darkgray with arrow) */
button.altButton,
a.altButton {
    display: inline-block;
    padding: 9px 32px 9px 22px;
    margin-bottom: 5px;
    background: #484848 url('images/arrow.png') no-repeat 87% center;
    background: url('images/arrow.png') no-repeat 87% center, -moz-linear-gradient(top, #3d3d3d 0%, #3d3d3d);
    background: url('images/arrow.png') no-repeat 87% center, -webkit-gradient(linear, left top, left bottom, from(#3d3d3d), to(#3d3d3d));
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 0px solid #ffbf00;
    -moz-box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 0px rgba(255,255,255,0);
    -webkit-box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 0px rgba(255,255,255,0);
    box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 0px rgba(255,255,255,0);
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0px 0px 0px rgba(000,000,000,0), 0px 0px 0px rgba(255,255,255,0);
}

a.dnnPrimaryAction {
    color: #efefef;
}

a.dnnSecondaryAction {
    color: #555;
}

button.primaryButton:hover,
button.secondaryButton:hover,
a.primaryButton:hover,
a.secondaryButton:hover {
    cursor: pointer;
    cursor: hand;
    background-image: none;
    background-color: #D00;
}

button.altButton:hover,
a.altButton:hover {
    cursor: pointer;
    cursor: hand;
    background: #D00 url('images/arrow.png') no-repeat 87% center;
}

/*------------------------------------------------*/
/* SITE SPACING
/*------------------------------------------------*/
.spacingTop {
    margin-top: 30px;
}

.spacingRight {
    margin-right: 30px;
}

.spacingBottom {
    margin-bottom: 30px;
}

.spacingLeft {
    margin-left: 30px;
}

/*------------------------------------------------*/
/* SITE STRUCTURE */
/*------------------------------------------------*/
#userControls {
    height: 32px;
}

.wrapper {
    margin: 0 Auto;
    width: 960px;
}

/*------------------------------------------------*/
/* SEARCH */
/*------------------------------------------------*/
#search {
    float: right;
    width: 209px;
    height: 32px;
}

    #search a.SearchButton:link,
    #search a.SearchButton:visited {
        display: inline-block;
        float: right;
        height: 32px;
        width: 32px;
        margin: 0;
        padding: 0;
        background: #333 url('images/search.png') no-repeat center center;
        text-indent: -9999px;
    }

    #search a.SearchButton:hover {
        background: url('images/search.png') no-repeat center center, rgb(45,45,45); /* Old browsers */
        background: url('images/search.png') no-repeat center center, -moz-linear-gradient(top, rgba(45,45,45,1) 0%, rgba(86,86,86,1) 100%); /* FF3.6+ */
        background: url('images/search.png') no-repeat center center, -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(45,45,45,1)), color-stop(100%,rgba(86,86,86,1))); /* Chrome,Safari4+ */
        background: url('images/search.png') no-repeat center center, -webkit-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* Chrome10+,Safari5.1+ */
        background: url('images/search.png') no-repeat center center, -o-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* Opera 11.10+ */
        background: url('images/search.png') no-repeat center center, -ms-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* IE10+ */
        background: url('images/search.png') no-repeat center center, linear-gradient(to bottom, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* W3C */
    }

#dnn_dnnSearch_txtSearch {
    display: block;
    float: left;
    width: 160px;
    height: 32px;
    padding: 0 5px 0 10px;
    margin: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    border-left: 1px solid #ddd;
    color: #000;
    line-height: 32px;
    font-size: 11px;
    -webkit-transition: all 100ms ease-in-out;
    -moz-transition: all 100ms ease-in-out;
    -ms-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

    #dnn_dnnSearch_txtSearch:active, #dnn_dnnSearch_txtSearch:focus {
        background: #ccc;
        box-shadow: inset 0px 3px 8px #999;
    }

/*------------------------------------------------*/
/* LOGIN */
/*------------------------------------------------*/
#login {
    float: right;
}

    #login .registerGroup,
    #login .registerGroup *,
    #login .loginGroup,
    #login .loginGroup * {
        display: block;
    }

    #login .registerGroup,
    #login .loginGroup {
        float: left;
        padding: 0;
        margin: 0;
    }

        #login .registerGroup li:first-child:hover {
            border-left: #222;
        }

        /* Register Group Styles */
        #login .registerGroup li {
            float: left;
        }

        #login .registerGroup .buttonGroup {
            margin-right: 0;
        }

        #login .registerGroup a,
        #login .loginGroup a {
            display: block;
            position: relative;
            height: 25px;
            min-width: 12px;
            padding: 7px 15px 0 15px;
            color: #333;
            font-size: 11px;
            vertical-align: middle;
        }

            #login .registerGroup a:hover,
            #login .loginGroup a:hover {
                background: rgb(45,45,45); /* Old browsers */
                background: -moz-linear-gradient(top, rgba(45,45,45,1) 0%, rgba(86,86,86,1) 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(45,45,45,1)), color-stop(100%,rgba(86,86,86,1))); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* IE10+ */
                background: linear-gradient(to bottom, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* W3C */
                filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d2d2d', endColorstr='#565656',GradientType=0 ); /* IE6-9 */
                color: #ddd;
                text-shadow: 0px -1px 0px #333333;
            }

            #login .registerGroup a:active,
            #login .loginGroup a:active {
                color: #fff;
                text-shadow: 0px -1px 0px #333333;
            }

            #login .registerGroup a:hover,
            #login .loginGroup a:hover {
                text-decoration: none;
            }

            #login .registerGroup a strong,
            #login .loginGroup a strong {
                display: block;
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                overflow: hidden;
                font-size: 11px;
                text-indent: -9999px;
            }

    #login .userMessages a,
    #login .userNotifications a {
        background-color: #333;
    }

    #login .userMessages strong {
        height: 100%;
        background: url('images/icon_message.png') no-repeat center center;
    }

    #login .userNotifications {
        border-right: 1px solid #CCC;
    }

        #login .userNotifications strong {
            height: 100%;
            background: url('images/icon_notification.png') no-repeat center center;
        }

    #login .registerGroup a span {
        display: inline-block;
        position: absolute;
        right: 2px;
        top: -9px;
        min-width: 7px;
        margin-right: 3px;
        background: rgb(59,150,182); /* Old browsers */
        text-align: center;
        font-size: 11px;
        color: #fff;
        text-shadow: 0px 1px 0px #333333;
    }

    #login .registerGroup .userProfileImg a {
        min-width: 25px;
        min-height: 32px;
        padding: 0;
        background: none;
    }

    #login .registerGroup a img {
        height: 32px;
        width: 32px;
        background: #333;
    }

    /* Login Group Styles */
    #login .loginGroup {
        border-right: 1px solid #CCC;
    }

        #login .loginGroup a {
            color: #333;
        }

    /* Number of message next to the message icon*/
    #login .userMessages a span,
    #login .userNotifications a span {
        display: inline-block;
        margin-top: 9px;
        margin-right: 0px;
        background-color: transparent;
        font-size: 10px;
    }

#dnn_ctr_Login_DNN {
    padding: 25px;
}

/*------------------------------------------------*/
/* SITE HEADER */
/*------------------------------------------------*/
#siteHeadouter {
    background: #0e2140;
    width: 960px;
    margin: 0 auto;
    height: 100px;
    position: fixed;
    z-index: 1000;
}

#siteHeadinner {
    padding: 23px 120px;
    border-bottom: 1px dotted white;
    margin-left: -120px;
    background: #0e2140;
}

#logo {
    float: left;
}

/* Language */
.language .language-object {
    float: right;
    display: block;
    margin: 0;
    padding: 0;
}

    .language .language-object span {
        float: left;
        padding-top: 3px;
        padding-bottom: 3px;
        padding-left: 5px;
        margin: 0;
    }

        .language .language-object span:first-child {
            padding-left: 8px;
        }

        .language .language-object span img {
            height: 12px;
            width: 17px;
            opacity: 0.3;
        }

        .language .language-object span:hover img {
            opacity: 1;
        }

    .language .language-object .Language.selected img {
        opacity: 1;
        border-color: #222;
        -webkit-border-radius: 2px;
        border-radius: 2px;
        -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8);
        box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8);
    }

/*------------------------------------------------*/
/* NAVIGATION */
/*------------------------------------------------*/

/* Site Navigation */
#nav {
    float: right;
    position: relative;
    top: 8px;
}

#dnn_pnav li {
    position: relative;
    list-style: none;
    margin: 0;
}

    #dnn_pnav li ul {
        margin-left: 0;
    }

#dnn_pnav > li {
    float: left;
    height: 30px;
    padding-top: 5px;
    margin-right: 2px;
    padding-left: 15px;
}

    #dnn_pnav > li > a, #dnn_pnav > li > span {
        display: block;
        padding: 5px 0 2px 0;
        font-size: 11pt;
        color: #FFF;
        text-decoration: none;
    }

    #dnn_pnav > li > span {
        cursor: default;
    }

    #dnn_pnav > li:hover > a, #dnn_pnav > li.active > a, #dnn_pnav > li > a.selected {
        color: #26accd;
        border-bottom: 4px solid;
    }

        #dnn_pnav > li:hover > a:active {
            color: #26accd;
            border-bottom: 4px solid;
        }

    #dnn_pnav > li:hover > span {
        color: #26accd;
    }

    /* Secondary level */
    #dnn_pnav > li ul { /* Styles for all sub levels */
        display: none;
        position: absolute;
        z-index: 2;
        width: 225px;
        padding: 0;
        background: #F5F7F7;
        border: 1px solid #cbcbcb;
        /* CSS3 */
        border-radius: 0px;
        /*box-shadow:inset 0px 1px 0px 0px rgba(255,255,255,1), 0px 0px 3px rgba(0,0,0,0.15);*/
        -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.4);
        -webkit-animation-duration: .25s;
        -webkit-animation-delay: .2s;
        -webkit-animation-timing-function: ease;
        -webkit-animation-fill-mode: both;
        -moz-animation-duration: .25s;
        -moz-animation-delay: .2s;
        -moz-animation-timing-function: ease;
        -moz-animation-fill-mode: both;
        -ms-animation-duration: .25s;
        -ms-animation-delay: .2s;
        -ms-animation-timing-function: ease;
        -ms-animation-fill-mode: both;
        animation-duration: .25s;
        animation-delay: .2s;
        animation-timing-function: ease;
        animation-fill-mode: both;
    }

#dnn_pnav li:hover > ul {
}

#dnn_pnav > li > ul { /* styles specific to secondary level */
    top: 35px;
    left: 0;
    padding: 15px 5px;
}

    #dnn_pnav > li > ul:after {
        position: absolute;
        top: -15px;
        left: 20px;
        content: '';
        width: 0px;
        height: 0px;
        border-left: 15px solid transparent; /* left arrow slant */
        border-right: 15px solid transparent; /* right arrow slant */
        border-bottom: 15px solid #F5F7F7; /* bottom, add background color here */
        font-size: 0px;
        line-height: 0px;
    }

#dnn_pnav > li ul a, #dnn_pnav > li ul span {
    display: block;
    padding: 3px 15px;
    color: #3B9FBF;
    font-size: 13px;
    font-weight: normal;
    text-decoration: none;
    /* transition decleration */
    transition: all ease-in 100ms;
    -moz-transition: all ease-in 100ms; /* Firefox 4 */
    -webkit-transition: all ease-in 100ms; /* Safari and Chrome */
    -o-transition: all ease-in 100ms; /* Opera */
    -ms-transition: all ease-in 100ms; /* IE9? */
}

#dnn_pnav > li ul span {
    color: #666;
    cursor: default;
}

#dnn_pnav ul li:last-child > a {
}

#dnn_pnav > li > ul li:hover > a {
    color: #D00;
    background: #F5F7F7;
}

/* Tertiary level */
#dnn_pnav li ul li ul {
    left: 225px;
    top: -8px;
    padding: 15px 5px;
    border-left: 1px solid #ddd;
}


/*------------------------------------------------*/
/* BREADCRUMBS */
/*------------------------------------------------*/
#Breadcrumb {
    padding-top: 20px;
    padding-bottom: 12px;
    margin-bottom: 25px;
    border-bottom: solid 1px #c0c0c0;
}

    #Breadcrumb img {
        margin-left: 10px;
        margin-right: 10px;
    }

    #Breadcrumb a.breadcrumbLink:link,
    #Breadcrumb a.breadcrumbLink:visited {
        color: #666;
        font-size: 12px;
        font-weight: bold;
    }

    #Breadcrumb a.breadcrumbLink:hover {
        color: #3B96B6;
    }

/*------------------------------------------------*/
/* CONTENT PANES */
/*------------------------------------------------*/
.contentPane {
    background-color: #f2f2f2;
}

.twoCol.contentPane {
    background-color: #fff;
}

    .twoCol.contentPane .innerPadding {
        padding: 10px;
    }

/* Content Pane Border */

.contentPane {
    margin: 0 auto;
    width: 960px;
    position: relative;
}

    .contentPane:before {
        content: "";
        position: absolute;
        background: #f2f2f2;
        ;
        height: 100%;
        width: 120px;
        left: 100%;
    }

    .contentPane:after {
        content: "";
        position: absolute;
        background: #f2f2f2;
        ;
        height: 100%;
        width: 120px;
        top: 0px;
        right: 100%;
    }


/* Content Pane - Home */
.leftPane {
    float: left;
    width: 630px;
}

.twoColLeftPane .leftPane {
    width: 450px;
}

.twoColLeftMenuLeftPane .leftPane {
    float: left;
    width: 220px;
}

.sidebarPane {
    float: right;
    width: 320px;
}

/* Content Pane - 2 columns */
.twoColRightPane {
    float: right;
    width: 450px;
}

.twocolLeftMenuRight.twoColRightPane {
    width: 710px;
}

.twoColLeftPane {
    float: left;
    width: 450px;
}

.twoColLeftMenuLeftPane {
    float: left;
    width: 220px;
}

.twocolLeftMenuRight p {
    margin: 10px 0 10px 0;
    font-size: 15px;
    line-height: 22px;
}

.leftPaneLowerLeft {
    float: left;
    width: 400px;
}

.leftPaneLowerRight {
    float: right;
    width: 260px;
}

/* Content Pane - 3 columns */
.threeColLeftPane,
.threeColCenterPane,
.threeColRightPane {
    float: left;
    width: 306px;
}

/* Content Pane - 3 columns Social */
.threeColSocialLeftPane {
    float: left;
    width: 110px;
}

.threeColSocialCenterPane {
    float: left;
    position: relative;
    width: 560px;
}

.threeColSocialRightPane {
    float: left;
    width: 250px;
}

/* Content Pane - Footer */
#footer {
    clear: both;
    height: 230px;
    margin-top: 0px;
    background-color: #0e2140;
    width: 1200px;
    margin-left: -120px;
    z-index: 1000;
    position: relative;
}

#footerInner {
    width: 960px;
    margin-left: 120px;
}

.footerPane {
    float: left;
    width: 136px;
}

    .footerPane,
    .footerPane .Normal {
        color: #808080;
    }

.footerPaneRight {
    float: right;
}

/* Empty Panes */
.DNNEmptyPane {
    margin: 0;
}

    .DNNEmptyPane.rightTwoCol + div {
        width: 100%;
    }

/* Copyright
    -------------------------------------*/
#copyright {
    font-size: 13px !important;
    color: #d5d6da;
    margin-bottom: 25px;
}

    #copyright a:link,
    #copyright a:visited {
        font-size: 12px;
        color: #a6a6a6;
    }

    #copyright a:hover {
        color: #D00;
    }

    #copyright a.DNNMobileLink {
        color: #666;
        font-weight: bold;
    }

        #copyright a.DNNMobileLink:hover {
            color: #D00;
        }

/*------------------------------------------------*/
/* SOCIAL STYLE */
/*------------------------------------------------*/
/* ----------------------------------*/
/* DNN Module: Console */
/* ----------------------------------*/
.threeColSocial .console {
    width: 250px;
    height: auto;
    background-color: #484848; /* Menu Background Color */
}

.threeColSocial .console-none div {
    cursor: pointer;
    cursor: hand;
    float: left;
    height: auto;
    width: 250px;
    padding: 0px;
    margin: 0px;
    text-align: left;
}

.threeColSocial .console-none h3 {
    padding: 10px 8px 10px 40px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url('images/arrow.png') 18px center no-repeat;
    color: #eee;
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
}

.threeColSocial .console-none div div {
    display: none;
}

.threeColSocial .console-mouseon {
    background-color: #70b1c7; /* Menu Hover Background Color */
}

/* ----------------------------------*/
/* DNN Module: ViewProfile Image */
/* ----------------------------------*/
#UserProfileImg img {
    width: 100px;
    height: auto;
    border: solid 3px #fff;
}

.threeColSocial .UserProfileControls ul {
    margin: 15px 0;
}

    .threeColSocial .UserProfileControls ul li {
        list-style-type: none;
        margin-bottom: 3px;
    }

/* ----------------------------------*/
/* DNN Module: Member Directory (Send A Message, Follow, Subscribe) */
/* ----------------------------------*/
.threeColSocialRightPane .DnnModule #mdMemberList {
    margin: 0 0 30px 0;
}

.threeColSocialRightPane #mdMemberList ul {
    margin: 10px 0 0 0;
}

.threeColSocialRightPane #mdMemberList li {
    margin-bottom: 0;
    -size: 12px;
    font-weight: bold;
    list-style-type: none;
}

.threeColSocialRightPane #mdMemberList > li {
    width: 216px;
    margin: 0;
    padding: 6px 17px;
    background: #d7d7d7;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-transition: background 0.15s ease-in-out;
    -moz-transition: background 0.15s ease-in-out;
    -o-transition: background 0.15s ease-in-out;
    -ms-transition: background 0.15s ease-in-out;
    transition: background 0.15s ease-in-out;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3);
}

    .threeColSocialRightPane #mdMemberList > li:hover {
        z-index: 2; /*bring current li to top for tooltip */
        background: #d7d7d7;
        -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3), inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3), inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
    }

/* ----------------------------------*/
/* DNN Module: ViewProfile (Activity Feed) */
/* ----------------------------------*/
.threeColSocial .journalTools {
    max-width: 560px;
}

.threeColSocial .journalrow {
    padding-bottom: 10px;
    border-bottom: solid 1px #c0c0c0;
    margin-bottom: 20px;
}

.threeColSocial .journalfooter {
    padding: 0;
    margin: 0;
}

.threeColSocial .journalrow div.journalitem p.journalfooter {
    font-size: 12px;
    padding: 0;
    margin-bottom: 0;
}

.threeColSocial .journalrow div.journalitem ul.jcmt {
    font-size: 12px;
}

.threeColSocial .journalrow div.journalitem .likes {
    padding: 2px 5px;
    background-color: #dbdbdb;
}

#journalEditor #journalContent .juser, .journalrow .juser {
    border: none;
    color: #3B96B6;
    background-color: transparent;
}

/* ----------------------------------*/
/* DNN Module: ViewProfile (Message) */
/* ----------------------------------*/
.threeColSocial #UserDisplayNameHeader h2 {
    padding-bottom: 10px;
    border-bottom: solid 1px #c0c0c0;
}

/* dnnAdminTabNav Style*/
.threeColSocial #smMainContent .ui-corner-all {
    border-radius: 0;
}

.threeColSocial ul.dnnAdminTabNav {
    height: 38px;
    margin-top: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #c0c0c0;
}

    .threeColSocial ul.dnnAdminTabNav li {
        margin-right: 1px;
    }

        .threeColSocial ul.dnnAdminTabNav li a {
            padding: 10px 15px;
            margin-bottom: 0px;
            border: none;
            background: #d7d7d7;
            -webkit-border-radius: 1px 1px 0px 0px;
            border-radius: 1px 1px 0px 0px;
            -webkit-border-radius: 0px;
            border-radius: 0px;
            color: #666;
            font-size: 12px;
            font-weight: bold;
            text-shadow: none;
        }

            .threeColSocial ul.dnnAdminTabNav li a:hover {
                background: #484848;
                color: #eee;
            }

        .threeColSocial ul.dnnAdminTabNav li.ui-tabs-selected a {
            padding: 10px 15px;
            margin-top: 0px;
            background: #484848;
            color: #eee;
        }

/* Message & Notification number block*/
.threeColSocial .dnnAdminTabNav a span {
    display: inline;
    min-height: 12px;
    padding: 2px 6px;
    margin-right: 8px;
    background: rgb(59,150,182); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(59,150,182,1) 0%, rgba(35,125,155,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(59,150,182,1)), color-stop(100%,rgba(35,125,155,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Opera 11.10+ */
    background: linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px #666;
    -moz-box-shadow: 0px 1px 0px 0px #666;
    box-shadow: 0px 1px 0px 0px #666;
    color: #eee;
    font-weight: normal;
    font-size: 11px;
}

/* Compose new message link */
.threeColSocial .dnnFormExpandContent {
    float: right;
    display: inline-block;
    position: absolute;
    top: 22px;
    right: 0;
    height: 20px;
    font-size: 12px;
}

    .threeColSocial .dnnFormExpandContent a.ComposeMessage {
        font-size: 12px;
    }

/* compose button */
.threeColSocial a.dnnPrimaryAction {
    display: inline-block;
    padding: 12px 20px;
    margin-bottom: 5px;
    background-color: #3B96B6;
    background: -moz-linear-gradient(top, #1aa0c9 0%, #1aa0c9);
    background: -webkit-gradient(linear, left top, left bottom, from(#1aa0c9), to(#1aa0c9));
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 0px solid #ffffff;
    -moz-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    -webkit-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 0px 0px rgba(000,000,000,0), 0px 0px 0px rgba(255,255,255,0);
}

    .threeColSocial a.dnnPrimaryAction:hover,
    .threeColSocial a.dnnPrimaryAction:active {
        cursor: pointer;
        cursor: hand;
        background-image: none;
        background-color: #D00;
    }

/* Message Control (Select, Actions, Inbox, Sent, Archived)*/
.threeColSocial .DnnModule .messageControls .dnnButtonGroup {
    margin-right: 0px; /* fixed Archived Button spacinging issue */
}

.threeColSocial .messageControls {
    margin: 0;
    padding: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #c0c0c0;
}

    .threeColSocial .messageControls .messageFolders {
        float: right;
    }

/* number x-x of x */
.threeColSocial .messageFolders p {
    float: left;
    display: inline-block;
    padding: 8px 15px;
    margin: 0;
    color: #666;
    font-size: 12px;
}

    .threeColSocial .messageFolders p strong {
        color: #666;
        font-weight: bold;
    }

/* Messages / Notification Specific Button Styles
    -------------------------------------*/
/* Style for the Action menu bar*/
.threeColSocial .DnnModule-Messaging-Notifications .dnnTertiaryAction {
    width: auto !important;
    padding: 9px 10px;
    font-size: 12px;
}

/* Styles for select drop*/
.threeColSocial .DnnModule .selectDrop ul {
    top: 34px;
    min-width: 120px;
    padding: 10px 14px !important;
    border: 1px solid #c2c2c2;
    background: #e7e7e7;
    /*CSS3*/
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    -webkit-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .1);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .1);
}

/* Styles for select button on active state*/
.threeColSocial .selectDrop.active > a {
    background: #70b1c7;
    color: #eee;
    border-right: solid 0px #3B96B6;
    -webkit-box-shadow: inset 0px 1px 1px 0px #3B96B6;
    -moz-box-shadow: inset 0px 1px 1px 0px #3B96B6;
    box-shadow: inset 0px 1px 1px 0px #3B96B6;
}

/* when select drop down button is clicked toggle active class to show*/
.threeColSocial .selectDrop ul li {
    margin-bottom: 3px;
    font-size: 12px;
}

/* Remove corners and add dividers to buttons in button group */
.threeColSocial .dnnButtonGroup {
    background: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    list-style: none;
}

.threeColSocial ul.dnnButtonGroup > li {
    border-left: none;
}

.threeColSocial .dnnButtonGroup > li > a {
    border-left: 1px solid #ddd; /*light*/
    border-right: 1px solid #bbb; /*dark*/
    background-color: #d7d7d7;
    color: #666;
}

    /* Conversations button selected*/
    .threeColSocial .dnnButtonGroup > li > a.active {
        color: #eee;
        border-right: 1px solid #3B96B6;
        background-color: #70b1c7;
    }

    /* Actions button hover*/
    .threeColSocial .dnnButtonGroup > li > a.disabled:hover {
        color: #eee;
        border-left: 1px solid #3B96B6;
        background-color: #70b1c7;
    }

/* Select button hover */
.threeColSocial .alpha > a:hover {
    color: #eee;
    background-color: #70b1c7;
    border-right: 1px solid #3B96B6;
}

/*First Button styles of a button group */
.threeColSocial .alpha > a,
.threeColSocial .alpha > a:hover,
.threeColSocial .alpha > a.active {
    border-left: 1px solid #70b1c7;
    /*CSS3*/
    -moz-border-radius-topleft: 0;
    -moz-border-radius-bottomleft: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
/*Last Button styles of a button group */
.threeColSocial .omega > a,
.threeColSocial .omega > a:active,
.threeColSocial .omega > a.active {
    border-right: 1px solid #70b1c7;
    /*CSS3*/
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/* Archive Button */
.threeColSocial a.dnnSecondaryAction.ArchiveItems span {
    display: none; /* hide Archive text*/
}

.threeColSocial a.dnnSecondaryAction.ArchiveItems {
    height: 18px;
    min-width: 15px;
    margin-left: 5px;
    background: #d7d7d7 url('images/icon_bin.png') no-repeat center center;
    border-radius: 0;
    -webkit-box-shadow: none;
    text-shadow: none;
    box-shadow: none;
    color: #666;
    border: none;
}

    .threeColSocial a.dnnSecondaryAction.ArchiveItems:hover {
        background: #70b1c7 url('images/icon_bin.png') no-repeat center center;
    }

/*Archive, Sent, Archived buttons Hover*/
.threeColSocial .dnnTertiaryAction:hover, a.dnnTertiaryAction:hover {
    background-color: #70b1c7;
    color: #eee;
}

/* Messages / Notification List Item
    -------------------------------------*/
/* Listing Styles */
.threeColSocial .smListings {
    font-size: 12px;
}

.threeColSocial .DnnModule .smListings ul {
    margin: 0;
}

.threeColSocial .smListings > ul > li {
    padding-top: 10px;
    margin: 0;
    background: transparent;
    border-bottom: 1px solid #c0c0c0;
}

    .threeColSocial .smListings > ul > li.active {
        background: #f4f4f4; /* background color for active list items*/
    }

    .threeColSocial .smListings > ul > li:last-child {
        border-bottom: none;
    }

.threeColSocial .smListings [class^="ListCol-"] {
    padding: 1% 1% 1% 0;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-1 {
    min-width: 20px; /* Main message list: Checkbox column width on */
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-2 {
    min-width: 65px; /* Main message list: Avatar column width AND Drilldown message list: Message info column width*/
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-3 {
    width: 56%; /* Main message list: Message info column width AND Drilldown message list: Time column width */
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-4 {
    font-size: 11px; /* Main message list: Time column */
}

.threeColSocial .smTimeStamped {
    font-size: 11px;
}

.threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-1 {
    min-width: 65px; /* Drilldown message list: Avatar column width*/
}

.threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-2 {
    width: 56%; /* Drilldown message list: Message info column width*/
}

.threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-3 {
    float: right; /* Drilldown message list: Time column */
    width: 25%;
    font-size: 12px;
}

.threeColSocial .hoverControls a {
    font-size: 12px; /* All lists: Archive & Reply links */
    font-weight: bold;
}

.threeColSocial .DnnModule-Messaging-Details .smListings .meta {
    margin-bottom: 5px; /* Drilldown message list: UserName link */
}

    .threeColSocial .DnnModule-Messaging-Details .smListings .meta a {
        font-weight: bold; /* Drilldown message list: UserName link */
    }

.threeColSocial .DnnModule-Messaging-Details .smListings .message {
    color: #999; /* Drilldown message list: Message text */
    margin: 0;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .subject {
    font-weight: bold;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .active .subject {
    font-size: 13px; /* All lists: unread message subject */
    margin-bottom: 3px;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .meta {
    margin-bottom: 8px; /* All lists: message From - Send to */
    line-height: 14px;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .message {
    color: #999; /* All lists: Message text */
}

/*Column 3 Styles*/
.threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-3 ul li {
    margin-bottom: 0px; /* Drilldown message list: Time column */
}

    .threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-3 ul li:first-child {
        color: #999; /* Drilldown message list: Time column */
    }

.threeColSocial .DnnModule-Messaging-Details .smListings .active .ActiveToggle:hover, .smListings .ActiveToggle {
    margin-left: 8px; /* Main message list: Time column-Mark as Read block */
    -webkit-box-shadow: 0px 1px 0px 0px #666;
    -moz-box-shadow: 0px 1px 0px 0px #666;
    box-shadow: 0px 1px 0px 0px #666;
}

    .threeColSocial .DnnModule-Messaging-Details .smListings .active .ActiveToggle, .smListings .ActiveToggle:hover {
        margin-left: 8px; /* Main message list: Time column-Mark as Read block hover */
        background: rgb(59,150,182); /* Old browsers */
        /*CSS3*/
        background: -moz-linear-gradient(top, rgba(59,150,182,1) 0%, rgba(35,125,155,1) 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(59,150,182,1)), color-stop(100%,rgba(35,125,155,1))); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Opera 11.10+ */
        background: linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* W3C */
        -webkit-box-shadow: 0px 1px 0px 0px #666;
        -moz-box-shadow: 0px 1px 0px 0px #666;
        box-shadow: 0px 1px 0px 0px #666;
    }
/*Column 4 Styles*/
.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-4 ul li {
    margin-bottom: 0px; /* All lists: Time column */
}

    .threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-4 ul li:first-child {
        color: #999; /* All lists: Time column */
    }

.threeColSocial .DnnModule-Messaging-Notifications .smListings .active .ActiveToggle:hover, .smListings .ActiveToggle {
    margin-left: 8px; /* Main message list: Time column-Mark as Read block */
    -webkit-box-shadow: 0px 1px 0px 0px #666;
    -moz-box-shadow: 0px 1px 0px 0px #666;
    box-shadow: 0px 1px 0px 0px #666;
}

    .threeColSocial .DnnModule-Messaging-Notifications .smListings .active .ActiveToggle, .smListings .ActiveToggle:hover {
        margin-left: 8px; /* Main message list: Time column-Mark as Read block hover*/
        background: rgb(59,150,182); /* Old browsers */
        /*CSS3*/
        background: -moz-linear-gradient(top, rgba(59,150,182,1) 0%, rgba(35,125,155,1) 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(59,150,182,1)), color-stop(100%,rgba(35,125,155,1))); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Opera 11.10+ */
        background: linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* W3C */
        -webkit-box-shadow: 0px 1px 0px 0px #666;
        -moz-box-shadow: 0px 1px 0px 0px #666;
        box-shadow: 0px 1px 0px 0px #666;
    }

.threeColSocial .DnnModule-Messaging-Notifications .notificationControls {
    font-weight: bold; /* Main notifications list: Follow back & Dismiss links */
}

/* Message Header (subject & back button)
    -------------------------------------*/
.threeColSocial .messageHeader {
    padding: 0;
    margin: 0;
}

    .threeColSocial .messageHeader p {
        font-size: 13px;
        color: #666;
        float: left;
    }

        .threeColSocial .messageHeader p strong {
            color: #333;
        }

    .threeColSocial .messageHeader .returnLink {
        font-size: 12px;
        font-weight: bold;
    }

/* Show Previous Repies 
    -------------------------------------*/
.threeColSocial .morePrevMsgButton {
    color: #666;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    margin-bottom: 15px;
    border: solid 1px #c0c0c0;
    background: #d7d7d7;
    -webkit-box-shadow: inset 0px 0px 3px 0px #ccc;
    -moz-box-shadow: inset 0px 0px 3px 0px #ccc;
    box-shadow: inset 0px 0px 3px 0px #ccc;
}

/* Reply Form
    -------------------------------------*/
.threeColSocial textarea#replyMessage {
    width: 94%;
    height: 75px;
    color: #666;
    border: 1px solid #c0c0c0;
    background: #f4f4f4;
}

    .threeColSocial textarea#replyMessage:focus,
    .threeColSocial textarea#replyMessage:active {
        color: #666;
        background: #fff;
    }

/*------------------------------------------------*/
/* GENERIC CLASSES
    /*------------------------------------------------*/

/* Clear-fix for floated elements 
    -------------------------------------*/
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
}

.left {
    float: left;
}

.right {
    float: right;
}

.hidden {
    display: none;
}

/*------------------------------------------------*/
/* HOMEPAGE */
/*------------------------------------------------*/

/* Welcome Message*/
.content_intro {
    padding-top: 30px;
    color: #8c8c8c;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

    .content_intro h1 span {
        font-weight: normal;
    }

    .content_intro a {
        font-size: 14px;
    }

/* Featured Product */
.content_featured {
    color: #999;
    vertical-align: top;
}

    .content_featured h2 .TitleH2 {
        display: block;
        margin-bottom: 30px;
    }

    .content_featured .normal {
        font-weight: normal;
    }

    .content_featured img {
        margin-bottom: 25px;
    }

    .content_featured a.primaryButton {
        margin-left: 25px;
    }

/* News */
.content_newslist ul {
    margin: 0;
}

    .content_newslist ul li {
        list-style-type: none;
        margin-bottom: 30px;
    }

        .content_newslist ul li.last {
            margin-bottom: 0;
        }

        .content_newslist ul li img {
            float: left;
            margin-right: 20px;
            margin-bottom: 20px;
        }

        .content_newslist ul li h5 {
            margin-bottom: 5px;
        }

        .content_newslist ul li span,
        .content_newslist ul li strong {
            color: #a6a6a6;
        }

        .content_newslist ul li p {
            margin-top: 12px;
            margin-bottom: 12px;
        }

/* newslist with small thumbnail*/
.smallThumbnail img {
    width: 80px;
}

/* Ads 
    -------------------------------------*/
/* Ads - Copy Block Style */
.adContent {
    position: absolute;
    padding: 20px;
    background-color: #000;
    opacity: 0.7;
    color: #eee;
}

    .adContent h2 {
        margin-bottom: 5px;
        color: #eee;
        font-weight: normal;
    }

/* Ads - Style One: 400x270 */
.content_adstyleOne {
    position: relative;
    width: 400px;
    height: 270px;
    margin-right: 5px;
    color: #eee;
}

    .content_adstyleOne .adContent {
        bottom: 0;
        right: 0;
    }

/* Ads - Style Two: 570x130 */
.content_adstyleTwo {
    position: relative;
    width: 570px;
    height: 130px;
    margin-bottom: 10px;
}

    .content_adstyleTwo .adContent {
        top: 0;
    }

/* Footer 
    -------------------------------------*/
ul.footerlinks {
    margin: 0;
}

.footerlinks li {
    list-style: none;
    margin-bottom: 8px;
}

    .footerlinks li a:link,
    .footerlinks li a:visited {
        color: #808080;
    }

    .footerlinks li a:hover {
        color: #D00;
    }

ul.footerConnect {
    margin: 0px;
}

    ul.footerConnect li {
        display: inline-block;
        list-style-type: none;
        margin-right: 10px;
    }

/*------------------------------------------------*/
/* ABOUT US */
/*------------------------------------------------*/
/* Team 
    -------------------------------------*/
.content_team ul {
    margin: 0px;
}

    .content_team ul li {
        display: inline-block;
        width: 110px;
        margin-right: 30px;
        margin-bottom: 40px;
        text-align: center;
        list-style-type: none;
    }

        .content_team ul li.last {
            margin-right: 0;
        }

        .content_team ul li .teampic {
            width: 110px;
            height: 147px;
            margin-bottom: 15px;
            background-color: #bfbfbf;
        }

        .content_team ul li img {
            width: 110px;
            max-width: 110px;
            max-height: 147px;
        }

        .content_team ul li span {
            display: block;
            font-weight: bold;
            white-space: nowrap;
        }

/*------------------------------------------------*/
/* OUR PRODUCTS */
/*------------------------------------------------*/
.content_products ul {
    margin: 0;
}

    .content_products ul li {
        display: inline-block;
        width: 31%;
        margin-right: 30px;
        margin-bottom: 45px;
        vertical-align: top;
        list-style-type: none;
    }

        .content_products ul li.last {
            margin-right: 0;
        }

        .content_products ul li img {
            margin-bottom: 25px;
        }

/*------------------------------------------------*/
/* CONTACT US */
/*------------------------------------------------*/
/* One Column Form
-------------------------------------*/
.form_oneCol label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.form_oneCol input, .form_oneCol textarea {
    width: 94%;
}

/* Dealer Form 
    -------------------------------------*/
.form_dealer input {
    width: 200px;
    margin-bottom: 5px;
}

/*------------------------------------------------*/
/* Slide jquery
/*------------------------------------------------*/
#container {
    position: relative;
    z-index: 0;
    width: 960px;
    padding: 0px;
    margin: 0 auto;
}

    #container.home_slides {
        background: #0e2140;
    }

    #container.ourWork {
        width: 515px;
        margin: 14px 0 0 81px;
    }

#example {
    position: relative;
    width: 960px;
    height: 410px;
}

#container.ourWork #example {
    width: 515px;
    height: 342px;
}

/* Slide -*/
#slides {
    position: absolute;
    z-index: 9;
    top: 0px;
    left: 0px;
    height: 439px;
}

#container.ourWork #slides {
    width: 515px;
    height: 342px;
}


.slides_container {
    display: none;
    position: relative;
    width: 960px;
    overflow: hidden;
}

#container.ourWork .slides_container {
    height: 342px;
    width: 515px;
}

.slides_container a {
    display: block;
    width: 960px;
    height: 380px;
}

#container.ourWork .slides_container a {
    height: 342px;
    width: 515px;
}

.slides_container a img {
    display: block;
}

/* Next/Prev buttons 
    -------------------------------------*/
#slides .next, #slides .prev {
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    bottom: 0px;
    right: 27px;
    padding: 0;
    z-index: 12;
}

#slides .prev {
    background: transparent url('images/slider/left-arrow.png') center center no-repeat;
}

#slides .next {
    right: 0px;
    background: transparent url('images/slider/right-arrow.png') center center no-repeat;
}

/* Page link -*/
.pagination_wrap {
    display: inline-block;
    position: absolute;
    z-index: 51;
    bottom: 4px;
    right: 0;
    width: 100%;
    height: 25px;
    background: url(/portals/0/Images/Inventise/homeBannerSpacer.gif);
}

#container.ourWork .pagination_wrap {
    background: none;
}

.pagination {
    position: absolute;
    display: none;
    z-index: 11;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 8px 40px;
}

    .pagination li {
        float: left;
        margin: 0 3px;
        list-style: none;
    }

        .pagination li a {
            float: left;
            display: block;
            width: 9px;
            height: 0;
            padding-top: 8px;
            background-image: url(images/pagination.png);
            background-position: 0 0;
            overflow: hidden;
        }

        .pagination li.current a {
            background-position: 0 -9px;
        }

/* Outer Background */


#siteWrapper {
    position: absolute;
    min-width: 960px;
    width: 100%;
    overflow: hidden;
}

#outerBackground {
    margin: 0 auto;
    width: 960px;
    position: relative;
}

.spacer_wrap {
    margin: 0 auto;
    width: 960px;
    position: relative;
    height: 25px;
    background: url(/portals/0/Images/Inventise/homeBannerSpacer.gif);
    z-index: -1;
}

    .spacer_wrap:before {
        content: "";
        position: absolute;
        background: #0e7ac4;
        height: 100%;
        width: 120px;
        left: 100%;
    }

    .spacer_wrap:after {
        content: "";
        position: absolute;
        background: #0e7ac4;
        height: 100%;
        width: 120px;
        top: 0px;
        right: 100%;
    }


.services_outline_wrap, .ourwork_outline_wrap, #homeBottomLinks, .twoColMainContent {
    margin: 0 auto;
    width: 960px;
    position: relative;
    background-color: #f2f2f2;
}

    .services_outline_wrap:before, .ourwork_outline_wrap:before, #homeBottomLinks:before, .twoColMainContent:before {
        content: "";
        position: absolute;
        background: #f2f2f2;
        height: 100%;
        width: 120px;
        top: 0px;
        left: 100%;
    }

    .services_outline_wrap:after, .ourwork_outline_wrap:after, #homeBottomLinks:after, .twoColMainContent:after {
        content: "";
        position: absolute;
        background: #f2f2f2;
        height: 100%;
        width: 120px;
        top: 0px;
        right: 100%;
    }

    #homeBottomLinks:before, #homeBottomLinks:after {
        background: #fafafa;
    }

    .ourwork_outline_wrap div.main_content {
        margin: 0 auto;
        width: 960px;
        position: relative;
        z-index: 1;
    }

        .ourwork_outline_wrap div.main_content:after {
            content: "";
            position: absolute;
            background: #ffffff;
            height: 100%;
            width: 120px;
            top: 0px;
            right: 100%;
        }

        .ourwork_outline_wrap div.main_content:before {
            content: "";
            position: absolute;
            background: #ffffff;
            height: 100%;
            width: 120px;
            top: 0px;
            left: 100%;
        }


/* content pane*/
.twoColMainContent, #contentWrapper #content {
    background-color: #fff;
    width: 960px;
}

.twoColMainContent {
    width: 940px;
    padding: 10px;
}

.ClearFloat {
    clear: both;
}

.about_mainContent {
    padding: 10px;
    background-color: #ffffff;
}


    .about_mainContent .about_mainContentInner {
        border-top: 1px dashed #e2e2e2;
        margin-top: 10px;
        padding-top: 10px;
    }

    .about_mainContent p, .product_info p {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 10px;
        font-weight: normal;
    }

    .about_mainContent .about_mainRight {
        width: 595px;
    }

    .about_mainContent .about_mainLeft {
        width: 325px;
    }

.work_mainLeft {
    width: 300px;
}

.ourWork_subPage {
    background-color: #ffffff;
    padding: 10px;
}

.ourWork_subPage_inner {
    border-top: 1px dashed #e2e2e2;
    padding-top: 20px;
}

.ourWork_text .ourWorkGoButton {
    display: block;
    margin-top: 15px;
}

.showcase_images {
    width: 310px;
    text-align: center;
}

.ourWork_text {
    width: 280px;
    height: 173px;
    vertical-align: top;
    padding-top: 22px;
}

#ourWork_bottomBar {
    height: 70px;
    background-color: #ebedf0;
    margin-top: -47px;
}

.ourServices_subPage {
    background-color: #ffffff;
    margin-top: 10px;
    margin-bottom: 20px;
}

.ourServices_subPage_inner {
    padding: 10px;
}

.ourService_text {
    width: 195px;
}

.ourService_images {
    vertical-align: top;
    width: 240px;
    height: 185px;
}

    .ourService_images div, .ourService_images div img {
        height: 50px;
    }

.ourServices_subpage_table {
    border-collapse: collapse;
    border-style: hidden;
}

    .ourServices_subpage_table td {
        width: 225px;
        background-color: #ffffff;
        border: 17px solid #f2f2f2;
        padding: 8px 20px 40px 20px;
        line-height: 20px;
    }

        .ourServices_subpage_table td h1 {
            font-size: 28px;
            height: 100px;
            line-height: 33px;
        }

        .ourServices_subpage_table td div {
            height: 138px;
        }

        .ourServices_subpage_table td p {
            font-size: 15px;
            font-weight: 300;
        }

.ourServices_table {
    margin-top: 17px;
    margin-bottom: 17px;
}

.portfolio_bottom_header {
    background-color: #ffffff;
    margin: 10px 0;
    padding: 70px;
    text-align: center;
}

    .portfolio_bottom_header h1 {
        font-size: 26px;
        margin-bottom: 0px;
        color: #26accd;
    }

        .portfolio_bottom_header h1 strong {
            color: #26accd;
            font-weight: 600;
        }

/* portfolio page styles */

.back_to_portfolio, .website_display, .website_display_bottom {
    padding: 20px 15px;
    position: relative;
    background: #ffffff;
}

.website_display, .website_display_bottom {
    padding-top: 0px;
}

.website_display {
    margin-top: -15px;
}

.back_to_portfolio div.dashed {
    padding: 3px 0;
}

    .back_to_portfolio div.dashed a {
        color: #333333;
    }

    .back_to_portfolio div.dashed img, .viewProject img {
        width: 25px;
        height: 25px;
        margin-right: 10px;
        background-image: url('/Portals/0/Images/backButton.png');
    }


.viewProject img {
    margin-left: 10px;
    background-image: url('/Portals/0/Images/lightBlueButton.png');
}

.viewProject h4 {
    display: inline-block;
    color: #65c3dc;
}

#rightDisplay h3, .viewProject h4 {
    margin-left: 15px;
}

.viewProject a {
    margin-left: 10px;
    font-size: 15px;
    color: #666666;
    text-decoration: underline;
}


.back_to_portfolio h1.dashed {
    padding: 11px 0 16px 0;
}

.website_display .left_text {
    width: 370px;
    height: 410px;
}

    .website_display .left_text ul li, .website_display_bottom #rightDisplay ul li, .sdev-wrapper .expandedTiles > div ul li, .DNN_Section ul li {
        list-style-type: none;
        background: url('images/bullet.png') no-repeat 0px;
        padding-left: 14px;
    }

.website_display p, .website_display_bottom_text p {
    font-size: 14px;
    line-height: 20px;
}

.website_display .right_laptop_display {
    width: 596px;
    height: 420px;
    position: absolute;
    z-index: 100;
    right: 0px;
    top: 0px;
    background-image: url('/Portals/0/Images/inventiseBigLaptop.png');
}

#rightDisplay {
    position: absolute;
    width: 675px;
    right: 0;
    top: 15px;
}

.website_display_bottom_text {
    width: 525px;
    margin-left: 100px;
    margin-top: 25px;
}

.website_display_testimonial {
    width: 400px;
    margin-left: 100px;
    margin-top: 60px;
    line-height: 25px;
}

    .website_display_testimonial p {
        font-size: 20px;
        font-style: italic;
        font-weight: 300;
        color: #acacac;
    }

        .website_display_testimonial p strong {
            font-weight: 300;
            color: #000000;
        }

/* Content - home */
.services_outline_wrap, .ourwork_outline_wrap {
    padding-top: 25px;
}

    .services_outline_wrap .header, .ourwork_outline_wrap .header {
        padding: 8px;
        height: 20px;
    }

        .services_outline_wrap .header h2, .ourwork_outline_wrap .header h2 {
            margin-top: 0px;
            margin-bottom: 0px;
        }

    .services_outline_wrap div > div {
        width: 205px;
        height: 202px;
        background-color: #fff;
        display: inline-block;
        padding: 13px;
        margin-right: 7px;
    }

    .ourwork_outline_wrap div.main_content {
        background-color: #fff;
        border-top: 1px dashed #f2f2f2;
    }

        .ourwork_outline_wrap div.main_content > div h2 {
            font-size: 15px;
            letter-spacing: 0px;
            margin-bottom: 5px;
            color: #0e7ac4;
        }

        .ourwork_outline_wrap div.main_content > div {
            width: 200px;
            display: inline-block;
            padding: 30px 10px 10px 10px;
            height: 205px;
            vertical-align: top;
        }

            .ourwork_outline_wrap div.main_content > div.left_menu_text {
                width: 245px;
            }

                .ourwork_outline_wrap div.main_content > div.left_menu_text h2 {
                    font-size: 14px;
                    letter-spacing: 0px;
                    color: #0e7ac4;
                    padding: 5px;
                    margin-bottom: -1px;
                    border-top: 1px dashed #dddddd;
                    border-bottom: 1px dashed #dddddd;
                }

                    .ourwork_outline_wrap div.main_content > div.left_menu_text h2 a {
                        color: #0e7ac4;
                    }

    .services_outline_wrap .service {
        border-top: 1px dashed #f2f2f2;
        vertical-align: top;
    }

        .services_outline_wrap .service h2 {
            font-size: 15px;
            letter-spacing: 0px;
            margin-bottom: 8px;
        }

            .services_outline_wrap .service h2.blue_text {
                font-size: 18px;
            }

    .services_outline_wrap div > div > a p {
        color: #000;
        font-size: 13px;
    }

    .services_outline_wrap div > div > a:hover p {
        color: #0e7ac4;
    }

    .services_outline_wrap div > div > a > div {
        text-align: center;
        height: 75px;
        padding: 0;
        padding-top: 20px;
    }

    .services_outline_wrap .end_nomargin {
        margin: 0;
    }

    .services_outline_wrap ul {
        list-style: none;
        margin: 0px;
    }

        .services_outline_wrap ul li {
            height: 36px;
            border-bottom: 1px dashed #e3e3e3;
        }

            .services_outline_wrap ul li h2 {
                margin-bottom: 0px;
                line-height: 38px;
                background: url(Images/downSelect.png) no-repeat 185px;
            }


#homeBottomLinks {
    background-color: #fafafa;
    padding-bottom: 20px;
    z-index: 1;
}

#homeRightOptions {
    float: right;
    width: 455px;
}

    #homeRightOptions img {
        padding: 15px 15px 0px 15px;
    }

.bottom_menu_option_link {
    background-image: url(/portals/0/Images/Inventise/HomeBottomMenu.png);
    width: 225px;
    height: 53px;
    margin: 0px 0;
    background-repeat: no-repeat;
    background-position: -60px;
}

.bottom_menu_link_text {
    font-size: 17px;
    padding-left: 10px;
    line-height: 48px;
    color: #666666;
}

    .bottom_menu_link_text:hover {
        color: #26accd;
    }

.PageTitle {
    padding: 20px 0px 0px 0px;
}

    .PageTitle h2 {
        padding-top: 10px;
        color: #0e7ac4;
        border-top: 1px dashed #e2e2e2;
        margin-bottom: 10px;
    }

.service_home_tile {
    width: 335px;
    height: 125px;
    float: left;
    margin-bottom: 10px;
    border-bottom: 1px dashed #e2e2e2;
}

    .service_home_tile.rTile {
        width: 320px;
        margin-left: 10px;
    }

        .service_home_tile.rTile .tileImage {
            padding: 35px 0px 35px 0px;
        }

    .service_home_tile .infoText {
        width: 225px;
        height: 80px;
        padding: 23px 1px;
    }

        .service_home_tile .infoText h2 {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .service_home_tile .infoText p {
            font-size: 13px;
            line-height: 17px;
        }

    .service_home_tile .tileImage img {
    }

    .service_home_tile .tileImage {
        padding: 35px 10px 35px 0px;
    }

    .service_home_tile a {
        color: #444;
    }

        .service_home_tile a:hover {
            color: #0e7ac4;
        }

.contact_support {
   
}
    .contact_support p {
        font-size: 15px;
        line-height: 22px;
  /*      margin-bottom: 10px; */
    }



    .contact_support h4 {
        margin-bottom: 0px;
    }


.contact_label {
}

.contact_label div
{
    background-color:#f2f2f2;
}
    
.contact_button
{
   margin-left:70px;
}

.underline a
{
    text-decoration:underline;
}

.contact_label p
{
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 3px;
    text-align: left;
    background-color:#f2f2f2;
    padding:10px; 
}

.contact_label_blue
{
    color: #26accd;
    font-weight:bold;
    display:inline-block;
    width:90px;
}

.contact_label_smaller
{
    font-size:smaller;
    font-weight:normal;
    text-align:right;
}

.contact_label_aligned
{
    position:relative;
}

.clearway
{
    margin-bottom:20px;
}


.contact_grid
{
    background-color:lightgrey;
    margin-bottom: 5px;
}

.contact p
{
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 10px;
    text-align: right;
}

/* Inherited from old website */
.product_info .products_tiles_text {
    padding: 5px 0 0 10px;
    width: 74px;
    height: 60px;
    color: #316E8A;
    font-size: 14px;
    font-weight: bold;
    vertical-align: top;
    background-color: #EEEFF1;
}

.product_info .products_tiles_right_border {
    border-right: solid 1px #9B9F9E;
}

.product_info .products_tiles_image {
    padding: 5px 8px 0 0;
    width: 35px;
    font-weight: bold;
    text-align: right;
    vertical-align: top;
    background-color: #EEEFF1;
}

.product_info .products_tiles_more, .products_tiles_more a {
    color: #334867;
    font-family: 'Open Sans', Arial;
    font-size: 13px;
    font-weight: bold;
    text-align: right;
    text-decoration: none;
    padding: 0 5px 4px 0;
    background-color: #EEEFF1;
}

.product_info .products_integration_title {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    height: 40px;
    color: #FFFFFF;
    background-color: #00719D;
}

.product_info .products_integration_text {
    padding: 6px 0 0 10px;
    width: 85px;
    height: 45px;
    color: #316E8A;
    font-size: 14px;
    font-weight: bold;
    vertical-align: top;
    background-color: #EEEFF1;
    border-left: solid 1px #00719D;
    border-bottom: solid 1px #00719D;
}

.product_info .products_integration_image {
    padding: 9px 5px 0 0;
    text-align: center;
    width: 25px;
    height: 45px;
    color: #316E8A;
    font-size: 11px;
    font-weight: bold;
    vertical-align: top;
    background-color: #EEEFF1;
    border-right: solid 1px #00719D;
    border-bottom: solid 1px #00719D;
}

.product_info h2 {
    color: #607C94;
    line-height: 22px;
}

.product_info .our_work_features td {
    font-size: 14px;
    padding: 5px;
}

p.managed_serivces {
    margin-top: -4px;
}

.page_heading {
    background: #ffffff;
    padding-top: 1px;
}

    .page_heading h1 {
        padding: 10px 0;
        border-top: 1px dashed #e2e2e2;
        margin: 20px 10px 0px;
    }

.services_desc {
    border-top: 1px dashed #e3e3e3;
    border-bottom: 1px dashed #e3e3e3;
    margin-bottom: -1px;
}

    .services_desc > div > div {
        float: left;
        padding-top: 23px;
    }

        .services_desc > div > div.clear {
            float: none;
        }

    .services_desc > div h2 {
        margin-bottom: 0px;
    }

    .services_desc > div > div.desc_text {
        width: 590px;
        margin-left: 10px;
    }

    .services_desc.digstrat > div > div.desc_text {
        margin-left: 15px;
    }


/* software development page */
.sdev-wrapper {
    background-color: #f2f2f2;
    font-family: 'Open Sans', sans-serif;
    padding-bottom: 6px;
    /*width: 720px;*/
    width: 100%;
}

    .sdev-wrapper .square-block, .sdev-wrapper .full-width-block, .sdev-wrapper .wide-block {
        height: 200px;
    }

    .sdev-wrapper .full-width-block {
        margin: 5px 6px 0 6px;
        text-align: center;
        /*width: 710px;*/
        width: 98.2%;
    }

        .sdev-wrapper .full-width-block div.large-text-block, .sdev-wrapper .wide-block div.large-text-block {
            color: #FFF;
            font-size: 28px;
            font-weight: 300;
            padding: 61px;
            text-align: center;
            line-height: 39px;
        }

    .sdev-wrapper .wide-block {
        /*width: 470px;*/
        width: 65.1%;
    }

        .sdev-wrapper .wide-block.right, .sdev-wrapper .square-block.right {
            /*margin: 5px 4px 0px 0;*/
            margin: 5px 6px 0 0;
        }

        .sdev-wrapper .wide-block.left, .sdev-wrapper .square-block.left {
            margin: 5px 0px 0px 6px;
        }

    .sdev-wrapper .square-block {
        /*width: 230px;*/
        width:32.2%;
    }

        .sdev-wrapper .square-block div {
            color: #26accd;
            font-size: 28px;
            font-weight: 300;
            padding: 15px;
            line-height: 35px;
        }

        .sdev-wrapper .square-block .small-text-link {
            color: #666;
            display: block;
            float: left;
            font-size: 13px;
            padding: 17px;
            text-decoration: none;
            width: 120px;
            line-height: 20px;
        }

            .sdev-wrapper .square-block .small-text-link span, .sdev-wrapper .wide-block .descriptive-text p span {
                color: #39c;
            }

        .sdev-wrapper .square-block img {
            margin-top: 33px;
        }

        .sdev-wrapper .square-block .large-text-block-square {
            padding: 21px 26px 26px 34px;
        }

    .sdev-wrapper div.clickable {
        cursor: pointer;
    }

    .sdev-wrapper .wide-block .descriptive-text, .sdev-wrapper .expandedTiles > div {
        padding: 25px 30px 15px 30px;
        position: relative;
    }

        .sdev-wrapper .wide-block .descriptive-text h2, .sdev-wrapper .expandedTiles > div h2 {
            color: #26accd;
            font-size: 17px;
            font-weight: 400;
            margin-bottom: 3px;
        }

        .sdev-wrapper .wide-block .descriptive-text p {
            font-size: 14px;
            margin-top: 0;
        }

        .sdev-wrapper .wide-block .descriptive-text img.mobLogos {
            position: absolute;
            right: 25px;
            top: 120px;
        }

    .sdev-wrapper .expandedTiles > div {
        background-color: white;
        /*margin: 20px 6px 0px 6px;*/
        margin: 20px 6px 0 0;
        border: 4px solid #40b6d0;
        position: relative;
        /*width: 642px;*/
        width: 100%;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        .sdev-wrapper .expandedTiles > div .close-window {
            position: absolute;
            right: 15px;
            top: 7px;
            cursor: pointer;
        }

.top-tile {
    float: left;
    height: 153px;
    margin-left: 6px;
    margin-top: 7px;
    text-align: center;
    /*width: 173px;*/
    width: 23.9%;
}

.top-tiles {
    background-color: #f2f2f2;
    height: 160px;
    width: 100%;
}

    .top-tiles .top-tile .tile-text, .top-tiles .top-tile span {
        color: #fff;
        font-size: 14px;
        font-weight: 400;
    }

        .top-tiles .top-tile span.right {
            margin-right: 10px;
        }

    .top-tiles .top-tile .sdev-icon {
        background: url(Images/icons.png) no-repeat;
        margin: 18px auto;
    }

        .top-tiles .top-tile .sdev-icon.icon-db {
            height: 70px;
            width: 64px;
        }

        .top-tiles .top-tile .sdev-icon.icon-desktop {
            background-position: -64px 0;
            height: 70px;
            width: 63px;
        }

        .top-tiles .top-tile .sdev-icon.icon-phone {
            background-position: -127px 1px;
            height: 70px;
            width: 41px;
        }

        .top-tiles .top-tile .sdev-icon.icon-tablet {
            background-position: -168px 0;
            height: 70px;
            width: 54px;
        }



.dark-blue {
    background-color: #2877eb;
}

.light-blue {
    background-color: #67d0e6;
}

.green {
    background-color: #6cb71e;
}

.orange {
    background-color: #d8512b;
}

.purple {
    background-color: #4f2bac;
}

.white {
    background-color: #fff;
}

.white-text h2, .white-text p {
    color: #fff !important;
}

.dark-blue.clickable:hover, .dark-blue.selected {
    background-color: #5071a1;
}

.light-blue.clickable:hover, .light-blue.selected {
    background-color: #97bdc5;
}

.green.clickable:hover, .green.selected {
    background-color: #81a062;
}

.orange.clickable:hover, .orange.selected {
    background-color: #c15a3d;
}

.white.clickable:hover, .white.selected {
    background-color: #d7d7d7;
}

.clickable.selected {
    position: relative;
}

    .clickable.selected:after {
        top: 100%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .clickable.selected:after {
        border-color: rgba(136, 183, 213, 0);
        border-width: 15px;
        left: 50%;
        margin-left: -15px;
    }

.dark-blue.selected:after {
    border-top-color: #5071a1;
}

.light-blue.selected:after {
    border-top-color: #97bdc5;
}

.green.selected:after {
    border-top-color: #81a062;
}

.orange.selected:after {
    border-top-color: #c15a3d;
}

.white.selected:after {
    border-top-color: #d7d7d7;
}

.DNN_Services h2 {
    font-size: 16px;
}

.DNN_Services .video_container h2 {
    margin-bottom: 10px;
}

.DNN_Services h2.thin {
    font-weight: 300;
    font-size: 25px;
    line-height: 30px;
}

.consultation_section, .DNN_Services .DNN_Section {
    padding: 25px;
}

    .consultation_section .consultation_text {
        width: 46%;
    }

.DNN_Section .sideText {
    width: 53%;
}

.consultation_section .consultation_text {
    margin-top: 35px;
}

.DNN_Services .video_container {
    margin: 26px 18px;
    text-align: center;
}

/* startup page */

.start_up_boxes {
    margin-bottom: 20px;
}

    .start_up_boxes > div {
        height: 240px;
        position: relative;
        z-index: 0;
        padding: 60px 30px;
    }

.vertalign {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.start_up_boxes .vertalign {
    top: 43%;
}

.start_up_boxes > div img {
    include: vertalign;
    float: right;
}

.start_up_boxes > div h2, .start_up_boxes > div ul li {
    color: #ffffff;
}

.start_up_boxes > div ul li {
    list-style: disc;
    margin-left: 1px;
    margin-bottom: 10px;
}

.start_up_boxes > div:after {
    position: absolute;
    content: url(images/separator-arrow.png);
    bottom: -16px;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.start_up_boxes .box_blue {
    background: #26accd;
    z-index: 3;
}

.start_up_boxes .box_orange {
    background: #fd6120;
    z-index: 2;
}

.start_up_boxes .box_darkblue {
    background: #0e2140;
    z-index: 1;
}

.track_record_section {
    margin-bottom: 15px;
}


    .track_record_section .track_record {
        height: 200px;
        border: 1px solid #d7d8d9;
        margin-top: 20px;
    }

        .track_record_section .track_record .description {
            margin: 27px 40px;
        }

.track_record .description a, a.open_article_btn {
    background: url(images/linkgoarrow.png);
    background-repeat: no-repeat;
    background-position: 80px;
    display: block;
    height: 25px;
    padding-top: 7px;
    width: 110px;
}

.track_record_section .track_record img {
    margin-right: 40px;
}

div#contentWrapper {
    position: relative;
    top: 100px;
}

/* UPGRADE NEW DESIGN 18/05/2015 */
/*#region in-container*/
.in-container {
    margin: 0 auto;
    width: 960px;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

    .in-container.in-container-gray {
        background-color: #f2f2f2;
    }

    .in-container.in-container-white {
        background-color: #ffffff;
    }

    .in-container.in-container-sidemargin:before,
    .in-container.in-container-sidemargin:after {
        content: "";
        position: absolute;
        background-color: inherit;
        height: 100%;
        width: 120px;
        top: 0;
    }

    .in-container.in-container-sidemargin:before {
        left: 100%;
    }

    .in-container.in-container-sidemargin:after {
        right: 100%;
    }

    .in-container > .header {
        padding: 0 8px 14px 0;
        min-height: 20px;
    }

        .in-container > .header h2 {
            margin-top: 0;
            margin-bottom: 0;
        }


    .in-container > .billboard-header {
        padding-left: 10px;
        padding-bottom: 20px;
        padding-right: 10px;
        margin-top: -20px;
    }

        .in-container > .billboard-header h1 {
            color: #333348;
            font-size: 33px;
            line-height: 36px;
        }

        .in-container > .billboard-header h2 {
            padding-top: 10px;
            border-top: 1px dashed #e2e2e2;
            font-weight: bold;
            color: #0e7ac4;
        }

    .in-container > .footer {
        min-height: 30px;
    }

        .in-container > .footer > a {
            float: right;
        }

            .in-container > .footer > a > span {
                margin-right: 4px;
                font-size: 16px;
                color: #666666;
            }

/*#region tiles */

.tile-container .tile-container-header {
    margin-left: 10px;
    color: #0e2140;
}

    .tile-container .tile-container-header h2 {
        font-size: 28px;
    }

    .tile-container .tile-container-header p {
        font-size: 22px;
        font-weight: 300;
        line-height: 30px;
    }

.tile-container .tile {
    width: 212px;
    height: 212px;
    display: inline-block;
    padding: 15px 10px 10px 10px;
    vertical-align: top;
    margin-right: 6px;
    border: 0;
}

    .tile-container .tile:last-child,
    .tile-container .tile:nth-child(4n+0) {
        margin-right: 0;
    }

    .tile-container .tile h2 {
        margin-bottom: 0;
        font-size: 14px;
        line-height: 26px;
        color: #26accd;
    }

    .tile-container .tile p {
        color: #666666;
    }

    .tile-container .tile > a > div {
        text-align: center;
    }

        .tile-container .tile > a > div > img {
            max-width: 230px;
            max-height: 150px;
        }

        .tile-container .tile > a > div.tile-icon-right {
            height: 60px;
            text-align: right;
            padding-top: 7px;
            padding-right: 5px;
        }

            .tile-container .tile > a > div.tile-icon-right > img {
                max-height: 64px;
                max-width: 64px;
            }

    .tile-container .tile .tile-icon {
        padding-top: 34px;
        min-height: 100px;
    }

.tile-gray {
    background-color: #799398;
    color: #fff;
}

.tile-lightgray {
    background-color: #f2f2f2;
    color: #0e2140;
}

.tile-turquoise {
    background-color: #26accd;
    color: #fff;
}

.tile-blue {
    background-color: #0e7ac4;
    color: #fff;
}

.tile-navyblue {
    background-color: #0e2140;
    color: #fff;
}

.tile-grayblue {
    background-color: #82a8d1;
    color: #fff;
}

.tile-darkturquoise {
    background-color: #53add2;
    color: #fff;
}

.tile-azureblue {
    background-color: #45ace8;
    color: #fff;
}

.tile-smokyblue {
    background-color: #82a8d1;
    color: #fff;
}

.tile-container div[class*="tile tile-"] a,
.tile-container div[class*="tile tile-"] a > p,
.tile-container div[class*="tile tile-"] a > span,
.tile-container div[class*="tile tile-"] a:hover,
.tile-container div[class*="tile tile-"] a:hover p {
    color: inherit;
    font-size: 14px;
    line-height: 23px;
}

.tile-container div[class*="tile tile-"] h2 {
    color: inherit;
    font-size: 26px;
    font-weight: normal;
    margin-bottom: 14px;
}


.tile-container.tile-grid .tile:nth-child(4n),
.tile-container.tile-grid .tile:nth-child(4n+2),
.tile-container.tile-grid .tile:nth-child(4n+3) {
    border-left: 1px solid #f0f0f1;
}

.tile-container.tile-grid .tile:nth-child(1n+5) {
    border-top: 1px solid #f0f0f1;
}

.tile-container.tile-grid {
    height: 480px;
}

    .tile-container.tile-grid .tile {
        width: 218px;
        height: 135px;
        margin-right: 0;
        float: left;
    }

        .tile-container.tile-grid .tile a > div {
            position: relative;
            height: 100%;
        }

            .tile-container.tile-grid .tile a > div > img {
                max-width: 210px;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                margin: auto 0;
            }

.tile-container.tile-billboard {
    margin-bottom: 20px;
}

    .tile-container.tile-billboard .tile {
        padding: 0;
        margin: 0 0 20px 20px;
        min-width: 293px;
        min-height: 185px;
        height: auto;
        position: relative;
        float: left;
    }

        .tile-container.tile-billboard .tile h2 {
            font-size: 24px;
            text-transform: uppercase;
            font-weight: bold;
        }

        .tile-container.tile-billboard .tile p {
            color: #fff;
        }

        .tile-container.tile-billboard .tile .tile-image {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            width: 290px;
            height: 210px;
        }

            .tile-container.tile-billboard .tile .tile-image img {
                position: absolute;
                top: 50%;
                left: 50%;
                -moz-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                -o-transform: translate(-50%, -50%);
                -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
            }

        .tile-container.tile-billboard .tile .tile-content,
        .tile-container.tile-billboard .tile .tile-footer {
            text-align: center;
        }


        .tile-container.tile-billboard .tile .tile-content {
            width: 290px;
            height: 210px;
        }

            .tile-container.tile-billboard .tile .tile-content > h2,
            .tile-container.tile-billboard .tile .tile-content > p {
            }

            .tile-container.tile-billboard .tile .tile-content > h2 {
                padding-top: 25%;
            }

        .tile-container.tile-billboard .tile .tile-footer {
            background-color: white;
            padding-top: 10px;
        }

            .tile-container.tile-billboard .tile .tile-footer h2 {
                color: #0e2140;
                margin-bottom: 8px;
                font-size: 20px;
            }

            .tile-container.tile-billboard .tile .tile-footer p {
                color: #3399cc;
            }

        .tile-container.tile-billboard .tile.tile-wide {
            width: 606px;
        }

            .tile-container.tile-billboard .tile.tile-wide .tile-image {
                left: 0;
                bottom: 0;
                position: absolute;
                width: 380px;
            }

                .tile-container.tile-billboard .tile.tile-wide .tile-image > img {
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: auto;
                    bottom: 0;
                    max-width: 350px;
                    max-height: 230px;
                    text-align: center;
                    -moz-transform: none;
                    -ms-transform: none;
                    -o-transform: none;
                    -webkit-transform: none;
                    transform: none;
                    margin: auto;
                }

            .tile-container.tile-billboard .tile.tile-wide .tile-content {
                margin-left: 310px;
            }

.tile-container .tile > a > div.tile-icon-left {
    /*height: 60px;*/
    text-align: left;
    padding-top: 7px;
    padding-right: 5px;
}

.tile-container .tile.tile-col-1 {
    float: left;
    margin: 10px;
    padding: 0;
    width: 30%;
    height: 200px;
}

    .tile-container .tile.tile-col-1 h2 {
        text-transform: uppercase;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        line-height: 20px;
        padding: 0 12px;
    }

/*#endregion tiles*/

/*#region billboard*/
.billboard {
}

    .billboard > div {
        display: inline-block;
        vertical-align: top;
    }

    .billboard .text-box {
        width: 550px;
    }

        .billboard .text-box h3 {
            font-weight: 600;
        }

        .billboard .text-box h2 {
            font-size: 33px;
            line-height: 36px;
            color: #0e2140;
            font-weight: 100;
        }

        .billboard .text-box p {
            font-size: 14px;
            color: #666666;
            line-height: 21px;
        }

        .billboard .text-box .blue_text {
            text-decoration: underline;
        }

            .billboard .text-box .blue_text:hover {
                text-decoration: underline;
            }

    .billboard .video-box {
        width: 400px;
        text-align: center;
    }

/*#endregion billboard*/


/*#region clickable tiles */

.clickable-tiles-container {
    width: 686px;
    padding-top: 20px;
}

    .clickable-tiles-container > .header h2 {
        font-size: 22px;
        font-weight: bold;
        margin-left: 10px;
    }

    .clickable-tiles-container .top-tiles {
        height: 218px;
        background-color: white;
    }

        .clickable-tiles-container .top-tiles .tile-blue {
            border-color: #0e7ac4;
        }

        .clickable-tiles-container .top-tiles .tile-turquoise {
            border-color: #26accd;
        }

        .clickable-tiles-container .top-tiles .tile-navyblue {
            border-color: #0e2140;
        }

        .clickable-tiles-container .top-tiles .tile-smokyblue {
            border-color: #82a8d1;
        }

    .clickable-tiles-container .clickable.selected:after {
        border-top-color: inherit;
    }

    .clickable-tiles-container .halfrow-tile {
        float: left;
        height: 200px;
        margin: 10px;
        text-align: center;
        width: 320px;
        cursor: pointer;
    }

        .clickable-tiles-container .halfrow-tile h6,
        .clickable-tiles-container .halfrow-tile span {
            color: #FFF;
            text-align: center;
            font-size: 14px;
        }

        .clickable-tiles-container .halfrow-tile h6 {
            font-size: 24px;
            font-weight: bold;
            line-height: 24px;
            text-transform: uppercase;
            margin-top: 68px;
        }

    .clickable-tiles-container .expandedTiles {
        margin-top: 10px;
    }

        .clickable-tiles-container .expandedTiles > div {
            margin-left: 10px;
            margin-right: 15px;
            border: 4px solid #cecfd0;
            padding: 15px 20px;
        }

            .clickable-tiles-container .expandedTiles > div h6 {
                font-size: 15px;
                line-height: 19px;
                font-weight: bold;
            }

            .clickable-tiles-container .expandedTiles > div ul {
                margin-bottom: 0;
            }

            .clickable-tiles-container .expandedTiles > div li {
                font-size: 14px;
                line-height: 19px;
                padding-bottom: 8px;
                list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6REVGNjU1MTgwRjdFMTFFNTkyNjdDOUM3QzY1Nzk0MUUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6REVGNjU1MTkwRjdFMTFFNTkyNjdDOUM3QzY1Nzk0MUUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpERUY2NTUxNjBGN0UxMUU1OTI2N0M5QzdDNjU3OTQxRSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpERUY2NTUxNzBGN0UxMUU1OTI2N0M5QzdDNjU3OTQxRSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PjOLDnwAAABfSURBVHjaYvj//z8DNqy25qwACwMWoL72XAKQUmACMhSAWABNYj6IDdKpAMT9QEFHIB0AkwCCCzBjDYD4PFQhCCTeDDbawARSAcXIEgtADEaQy6B27gfiiTAJEAAIMADv9S/hodOGdAAAAABJRU5ErkJggg==') /*../../../0/Images/Inventise/list-check.png*/;
            }


/*#endregion */

/*#endregion in-container*/

/*#region fixes*/

/* fix for navigation and redirection with element ID */
#DNNEvoqMeasureAndOptimiseContent:target:before {
    content: "";
    display: block;
    height: 150px; /* fixed header height*/
    margin: -150px 0 0; /* negative fixed header height */
}

div#contentWrapper.wrapper {
    top: auto;
    padding-top: 100px;
}

/* fix for floating elements inside container (the hight of container is restored) */
.clear-fix:before,
.clear-fix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clear-fix:after {
    clear: both;
}
/*#endregion*/

/*#region Subpages */

.twoColContent {
    width: 940px;
    padding: 10px;
    background-color: #fff;
    margin: 0 auto;
}

    .twoColContent:before,
    .twoColContent:after {
        content: "";
        position: absolute;
        background: #f2f2f2;
        height: 100%;
        width: 120px;
        top: 0;
    }

    .twoColContent:before {
        left: 100%;
    }

    .twoColContent:after {
        right: 100%;
    }

    .twoColContent .twoColLeftMenuLeftPane,
    .twoColContent .leftPane {
        width: 240px;
    }

        .twoColContent .twoColLeftMenuLeftPane .RadPanelBar {
            width: 240px;
        }

            .twoColContent .twoColLeftMenuLeftPane .RadPanelBar .rpItem .rpText {
                padding: 10px 5px 10px 15px;
                font-size: 15px;
                color: #003333;
                font-weight: bold;
            }

    .twoColContent .twocolLeftMenuRight.twoColRightPane {
        width: 686px;
        margin-left: -10px;
    }

    .twoColContent .rpLink.rpSelected {
        background-color: #cdecf3;
    }

/*#endregion*/

#homeBottomLinks.footer {
    background-color: white;
}

    #homeBottomLinks.footer:before, #homeBottomLinks.footer:after {
        background-color: inherit;
    }
