﻿/*================================ [[COMMON]] =============================== */

/**************************************************************************************
Redefine elementos HTML
**************************************************************************************/
html {
    font: 100% Verdana, 'FontAwesome', 'Glyphicons Halflings';
    box-sizing: border-box;
    min-width: 315px;
    /* Caso o Performa permita novamente a colocação de backgrounds por trás da tela principal, será necessário
        voltar o background-color e background abaixo para o .TableFrame */
    background-color: #e5e5e5;
    background: linear-gradient(135deg, #e5e5e5, #fafafa);
}

body {
    position: relative;
    color: #808080;
}

* html html, * html body, * html form {
    min-height: 100vh;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

html, body, form {
    min-height: 100vh;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

    html.htmlRootPage {
        background-attachment: fixed;
        padding-left: 65px;
    }

        html.htmlRootPage body, html.htmlRootPage form {
            background-color: transparent;
        }

a img {
    border: 0 none;
    vertical-align: middle;
}

INPUT[type='image'] {
    outline: none;
}

button.alert, INPUT[type='button'].alert {
    background-color: #990000;
    color: white;
}

    button.alert:hover, INPUT[type='button'].alert:hover {
        background-color: #CC0000;
    }

    button.alert:active, INPUT[type='button'].alert:active, INPUT[type='submit'].alert:active {
        background-color: #770000;
    }

.RadButton > INPUT[type='button'], .RadButton > INPUT[type='submit'] {
    border: 0px;
}

.BottomInfo {
    display: none;
}

/**************************************************************************************
Classes Comuns
**************************************************************************************/
.Bullet {
    background-image: url(icons/bullet.png);
    background-position: 0px 4px;
    margin: 0px;
    padding-left: 8px;
    background-repeat: no-repeat;
}

.Avatar {
    filter: progid:DXImageTransform.Microsoft.alpha(Opacity=100, FinishOpacity=0, Style=2, StartX=10, StartY=10, FinishX=50, FinishY=50);
}

.NoWrap {
    white-space: nowrap;
}

.NoDisplay {
    display: none;
}

.LineDotted {
    border-bottom: dotted 1px black;
    width: 100%;
    min-width: 100%;
}

.Ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 99%;
    text-align: left;
    word-wrap: break-word;
}

    html > body .Ellipsis after {
        content: "...";
    }

/**************************************************************************************
Quadro tipo Post It
**************************************************************************************/
div.notes {
    background-color: #FBFBFB /*#FFFF99*/;
    box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.14), 0px 1px 3px 0px rgba(0,0,0,0.12);
    color: #333333;
    font-size: 11px;
    height: auto;
    margin-bottom: 4px;
    margin-top: 4px;
    padding: 4px;
}

    div.notes p {
        float: left;
        display: block;
    }

    div.notes .label {
        float: left;
        display: table;
        width: 100px;
        border-right: 1px ridge;
        border-top: 1px ridge;
        border-left: 1px ridge;
        border-bottom: 1px ridge;
        font-weight: bolder;
        background-color: #E6B883 /*palegoldenrod*/;
        width: 100px;
        color: Black;
    }

.notes table /*MARCELO QUEIROZ - 23/08/2011 - NOVO ESTILO*/ {
    border: 0px !important;
    padding: 0px !important;
    border-collapse: collapse !important; /* Equivalente ao 'cellspacing' */
    border-spacing: 0px !important;
}

    .notes table tr /*MARCELO QUEIROZ - 23/08/2011 - NOVO ESTILO*/ {
        border: 0px !important;
        padding: 0px !important;
        border-collapse: collapse !important; /* Equivalente ao 'cellspacing' */
        border-spacing: 0px !important;
    }

        .notes table tr td /*MARCELO QUEIROZ - 23/08/2011 - NOVO ESTILO*/ {
            border: 0px !important;
            padding: 0px !important;
            border-collapse: collapse !important; /* Equivalente ao 'cellspacing' */
            border-spacing: 0px !important;
        }

/*================================ [[ADMIN]] =============================== */

.FormBLabel {
    display: block;
    font-weight: bolder;
    text-align: left;
    padding: 2px;
    color: #333333; /*MARCELO QUEIROZ - 30/01/2012 - MODIFICANDO ESTILO*/
    width: 100%;
    clear: both;
}

/* --- Wizard Bottom ------------------------------------------------------ */
.WizardBottomPanel {
    background-color: #EEEEEE; /*#CED0D6*/
    padding: 5px;
    text-align: right;
    width: calc(100% -10px);
}

/* --- Wizard: Dialog Filter----------------------------------------------- */
.DialogFilter {
    background-color: transparent !important;
    display: table;
    width: 100%;
}

    .DialogFilter p {
        text-align: left;
    }

    .DialogFilter fieldset /*MARCELO QUEIROZ - 01/08/2011 - MODIFICANDO ESTILO BORDAS FIELDSET*/ {
        clear: both;
        font-size: 100%;
        border-color: transparent;
        border-width: 0px;
        border-style: none none none none;
        padding: 5px;
        margin: 0 0 0 0;
        border-radius: 1px;
    }

        .DialogFilter fieldset legend {
            font-size: 110%;
            font-weight: bolder;
            margin: 0 0 0 0;
            padding: 0 5px;
        }

        .DialogFilter fieldset table /*MARCELO QUEIROZ - 01/08/2011 - NOVO ESTILO*/ {
            border: 1px solid #FFFFFF !important;
            cellpadding: 0 !important;
        }

            .DialogFilter fieldset table tbody /*MARCELO QUEIROZ - 01/08/2011 - NOVO ESTILO*/ {
                border: 1px solid #FFFFFF !important;
                cellpadding: 0 !important;
            }

                .DialogFilter fieldset table tbody tr /*MARCELO QUEIROZ - 01/08/2011 - NOVO ESTILO*/ {
                    border: 0px solid #FFFFFF !important;
                }

                    .DialogFilter fieldset table tbody tr td /*MARCELO QUEIROZ - 01/08/2011 - NOVO ESTILO*/ {
                        border: 0px solid #FFFFFF !important;
                    }

/* --- FieldSet Boxes ----------------------------------------------------- */
fieldset {
    display: block;
    margin: 0;
    padding: 2px 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 4px 0;
}

    fieldset legend {
        font-weight: bolder;
        font-size: 110%;
    }
/* --- CollapsePanel Filter ---------------------------------------------- */
.CollapsePanelFilter h4 {
    padding: 0px 0px 0px 0px;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #333333;
    color: #333333;
    font-size: 100%;
}

.CollapsePanelFilter {
    font-size: 11px;
    background: #FEFEFE /*#ecebe4*/;
    display: block;
    color: #333333;
}

.CollapsePanelFilterTitle {
    font-weight: bold;
    font-size: 11px;
    vertical-align: middle;
    color: #2E82C3; /*#6666FF*/
}

.CollapsePanelFilter fieldset {
    margin: 2px;
    padding: 2px 5px 5px 5px;
    display: block;
    color: #333333;
}

.CollapsePanelFilter legend {
    background-color: Transparent;
    font-weight: bolder;
}

.CollapsePanelFilter span {
    font-weight: bold;
}

.CollapsePanelAdvPropTitle {
    font-weight: bold;
    font-size: 11px;
    vertical-align: middle;
    color: #2E82C3;
    padding: 4px 2px;
    background-color: #efefef;
}

/* --- MasterPages Styles --------------------------------------------------------  */
.TabContainer /*MARCELO QUEIROZ - 01/08/2011*/ {
    display: table;
    width: 100%;
    background-color: transparent; /*#FFFFFF*/
    margin-bottom: 4px;
}

.LoadingContainer {
    position: relative;
    width: 100%;
    display: block;
}

.LoadingPanelContainer {
    top: 50%;
    bottom: 50%;
    width: 99%;
    position: absolute;
    text-align: center;
    z-index: 1;
}

.TopCrudLine /*MARCELO QUEIROZ - 14/07/2011*/ {
    width: 100%;
    line-height: 25px;
    vertical-align: middle;
    text-align: right;
    padding-bottom: 2px;
    color: #333333;
}

    .TopCrudLine a:link, .TopCrudLine a:visited /*MARCELO QUEIROZ - 14/07/2011 - Novo estilo*/ {
        color: #333333;
        font-weight: bold;
        text-decoration: none;
    }

    .TopCrudLine a:hover /*MARCELO QUEIROZ - 14/07/2011 - Novo estilo*/ {
        text-decoration: underline;
    }

.BottomCrudLine /*MARCELO QUEIROZ - 14/07/2011*/ {
    padding-top: 2px;
    padding-bottom: 2px;
    text-align: right;
    vertical-align: middle;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

    .BottomCrudLine a:link, .BottomCrudLine a:hover, .BottomCrudLine a:visited /*MARCELO QUEIROZ - 14/07/2011*/ {
        color: Gray;
    }
/* --- DataList/DataView Styles ---------------------------------------  */
.BoxAdmin /*MARCELO QUEIROZ - 28/03/2012 - Importants*/ {
    border-right: 1px solid #CCCCCC !important;
    border-top: 1px solid #CCCCCC !important;
    border-left: 1px solid #CCCCCC !important;
    border-bottom: 1px solid #CCCCCC !important;
    font-size: 11px;
}

    .BoxAdmin TD {
        padding: 2px;
    }

    .BoxAdmin a {
        text-decoration: none;
        color: #000;
    }

        .BoxAdmin a:link {
            color: #000;
            text-decoration: none;
        }

        .BoxAdmin a:visited {
            color: #000;
            text-decoration: none;
        }

        .BoxAdmin a:hover {
            color: #333333;
            text-decoration: underline;
        }

.BoxAdminHeader {
    font-weight: bold;
    font-size: 11px;
    color: #333333 !important;
    background-color: #CCCCCC;
    border: 1px solid #CCCCCC !important; /*MARCELO QUEIROZ - 28/03/2012*/
    text-align: center;
}

    .BoxAdminHeader a {
        text-decoration: underline;
        color: #FFF;
    }

        .BoxAdminHeader a:link {
            color: #FFF;
            text-decoration: underline;
        }

        .BoxAdminHeader a:visited {
            color: #FFF;
            text-decoration: underline;
        }

        .BoxAdminHeader a:hover {
            color: #ffcc66;
            text-decoration: underline;
        }

.BoxAdminFooter {
    font-weight: bold;
    font-size: 11px;
    color: #000;
    background-color: #FFFFFF; /*#f0f8ff*/
}

.BoxAdminPager {
    font-weight: bold;
    font-size: 11px;
    color: #ffffff;
    background-color: #3399cc;
}

.BoxAdminSelectedItem {
    font-size: 11px;
    background-color: #ffcc66;
}

.BoxAdminItem, .BoxAdminAlternatingItem, .BoxAdminEditItem, .DataGridRowHover /*MARCELO QUEIROZ - 02/08/2011*/ {
    line-height: 17px;
}

.BoxAdminEditItem {
    font-size: 11px;
    background-color: #FFFFFF; /*#f0f8ff*/
}

.BoxAdminItem, .BoxAdminAlternatingItem, .DataGridRowHover {
    font-weight: normal;
    font-size: 11px;
    color: #333333;
}

.BoxAdminItem /*MARCELO QUEIROZ - 02/08/2011*/ {
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    padding-left: 4px;
}

.BoxAdminAlternatingItem /*MARCELO QUEIROZ - 02/08/2011*/ {
    background-color: #F5F5F5;
    border: 1px solid #CCCCCC;
    padding-left: 4px;
}

.DataGridRowHover {
    background-color: #ffffe0;
}

.SortUp {
    background: url(icons/sortup.gif) #CED0D6 no-repeat right center;
    color: #fff;
}

.SortDown {
    background: url(icons/sortdown.gif) #CED0D6 no-repeat right center;
    color: #fff;
}

/*--- HtmlRender Styles -----------------------------------------------------*/
.AdminTipBox {
    color: #FFFFFF;
    border: 1px solid #5E8C2F;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: #99CC66;
    padding: 2px 2px 2px 10px;
}

    .AdminTipBox ul {
        padding-right: 0px;
        padding-left: 20px;
        padding-top: 0px;
        padding-bottom: 0px;
        margin: 2px 0px;
        line-height: 1.2em;
    }

        .AdminTipBox ul li {
            margin-bottom: 4px;
        }

.AdminSingleList ul {
    padding-right: 0px;
    padding-left: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 2px 0px;
    line-height: 1.2em;
}

.AdminRecordInfo {
    margin: 0px 0px 2px 0px;
    border-right: 1px solid #67A5C1;
    border-top: 1px solid #67A5C1;
    padding: 0px 2px 0px 2px;
    font-size: 11px;
    border-left: 1px solid #67A5C1;
    color: #FFFFFF;
    border-bottom: 1px solid #67A5C1;
    background-color: #91CBE6;
    padding: 5px;
}

.InformationBox {
    background-image: url(Icons/Information.png);
    background-repeat: no-repeat;
    padding-left: 40px;
    min-height: 40px;
}

.CertificateBox {
    background-image: url(Icons/Certificate.png);
    background-repeat: no-repeat;
    padding-left: 40px;
    min-height: 40px;
}

.RedBoldMsg {
    font-weight: bold;
    font-size: 11px;
    color: #FF6600;
}

.SmallRedBoldMsg {
    font-weight: bold;
    color: #FF6600;
}

.BoxMessage {
    border: 1px solid #FFCC00;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #FFFF99;
    width: 80%;
}

    .BoxMessage #title {
        font-weight: bold;
        font-size: 14px;
        color: #000000;
        background-color: transparent; /*#6666FF*/
    }

    .BoxMessage #content {
        font-size: 11px;
        padding: 25px 5px 25px 5px;
        color: #000000;
        text-align: center;
        line-height: 2em;
    }

    .BoxMessage #buttonsLine {
        text-align: center;
        line-height: 2em;
    }

        .BoxMessage #buttonsLine input {
            padding: 0px 5px 0px 5px;
        }

/****************************************************************************************
DataGrid Breaks
****************************************************************************************/
.Break {
    background-color: #CCCC99;
}

    .Break UL {
        padding-right: 0px;
        padding-left: 20px;
        padding-bottom: 0px;
        margin: 2px 0px;
        line-height: 1.2em;
        padding-top: 0px;
        background-color: #ffefd5;
    }

    .Break #Level1 {
        font-weight: bold;
        font-size: 11px;
        color: maroon;
    }

    .Break #Level2 {
        font-weight: bold;
        font-size: 11px;
        color: #daa520;
    }

    .Break #Level3 {
        font-weight: bold;
        font-size: 11px;
        color: black;
    }

/****************************************************************************************
DataGridNavigator
****************************************************************************************/
.a-navbar {
    margin-top: 1px;
    background-color: #CED0D6; /*#6699cc*/
}

    .a-navbar, .a-navbar a {
        font-weight: bold;
        font-size: 11px;
        color: white;
        text-decoration: none;
        vertical-align: middle;
        height: 20px;
    }

        .a-navbar a:hover {
            color: gray;
            text-decoration: none;
        }

.a-navbarSelectedPage {
    background-color: #CED0D6;
    padding-left: 2px;
    padding-right: 2px;
}

.a-navbarPagePosition {
    padding: 2px;
    background-color: #CED0D6;
    text-align: center;
}

/****************************************************************************************
Box com Scroll para DataGrid
****************************************************************************************/
div#datagrid-scroll {
    overflow: auto;
    scrollbar-base-color: aliceblue;
    scrollbar-shadow-color: #F5F5F1;
    scrollbar-track-color: #F5F5F1;
    scrollbar-3dlight-color: #F5F5F1;
    scrollbar-arrow-color: #000000;
    scrollbar-base-color: #F5F5F1;
    scrollbar-face-color: #F5F5F1;
    scrollbar-darkshadow-color: #F5F5F1;
    scrollbar-highlight-color: #F5F5F1;
}

    /* Locks the left column */
    div#datagrid-scroll td.locked, div#datagrid-scroll th.locked {
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        background-color: #2E82C3; /*#6666FF*/
        color: white;
        border-right: 1px solid silver;
        position: relative;
        cursor: default; /*IE5+ only*/ /*left: expression(document.getElementById( "datagrid-scroll" ).scrollLeft-2);*/
    }

    /* Locks table header */
    div#datagrid-scroll th {
        font-weight: bold;
        font-size: 11px;
        color: white;
        background-color: #CED0D6; /*#6699cc*/
        text-align: center;
        position: relative;
        cursor: default; /*IE5+ only*/ /*top: expression(document.getElementById( "datagrid-scroll" ).scrollTop-2);*/
        z-index: 10;
    }

        /* Keeps the header as the top most item. Important for top left item*/
        div#datagrid-scroll th.locked {
            z-index: 99;
        }

/****************************************************************************************
CrumbTrail
****************************************************************************************/
.CrumbTrailLine {
    line-height: 2em;
    margin-top: 4px;
    margin-bottom: 5px;
}

.CrumbTrail {
    line-height: 2em;
}

a.CrumbTrail:link {
    font-weight: normal !important;
    text-decoration: none;
}

a.CrumbTrail:visited {
    font-weight: normal !important;
    text-decoration: none;
}

a.CrumbTrail:hover {
    font-weight: normal !important;
    text-decoration: underline;
}

/****************************************************************************************
Painel para Informações de Cabeçalho
****************************************************************************************/
.PanelHeaderInfo {
    table-layout: auto;
    margin-top: 2px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 2px;
    color: #2E82C3; /*#6666FF*/
    border-collapse: collapse;
    background-color: transparent;
    text-align: center;
}

/****************************************************************************************
Painel de Informações Detalhes, usualmente master-detail
****************************************************************************************/
.PanelDetail /*MARCELO QUEIROZ - 05/04/2012*/ {
    border: none;
    background-color: transparent;
    padding: 2px;
}

a.PanelDetail:link {
    color: #333333;
    text-decoration: none;
}

a.PanelDetail:visited {
    color: #333333;
    text-decoration: none;
}

a.PanelDetail:hover {
    color: #333333;
}

.PanelDetail a:link {
    color: black;
    font-weight: bolder;
    text-decoration: none;
}

.PanelDetail a:visited {
    color: black;
    font-weight: bolder;
    text-decoration: none;
}

.PanelDetail a:hover {
    color: #333333;
    font-weight: bolder;
    text-decoration: underline;
}

/****************************************************************************************
SmallBox Group Repeater
****************************************************************************************/
.SmallBoxGR {
    background-color: transparent;
}

    .SmallBoxGR a:link, SmallBoxGR a:visited {
        color: #000000;
        text-decoration: none;
    }

    .SmallBoxGR a:hover {
        color: #333333;
        text-decoration: underline;
    }

    .SmallBoxGR #Header {
        display: inline;
        margin-left: 5px;
        text-align: left;
        font-weight: bold;
        font-size: inherit;
        color: #2E82C3; /*#6666FF*/
    }

    .SmallBoxGR #Content {
        margin-left: 5px;
        overflow: hidden;
        margin-right: 5px;
        text-align: left;
    }

    .SmallBoxGR #BreakLine {
        margin-top: 4px;
        margin-bottom: 1px;
    }

        .SmallBoxGR #BreakLine span {
            border: gainsboro 1px solid;
            font-weight: bold;
            font-size: 8px;
            cursor: pointer;
            background-color: #FFFFFF; /*#f0f8ff*/
        }

/****************************************************************************************
RadMultiPage com RadTab na Vertical
****************************************************************************************/
.MultiPageV {
    float: left;
    border: 1px solid #CCCCCC;
    padding: 4px;
    min-height: 350px;
}

/****************************************************************************************
RadAjaxLoadingPanel: Escurecer toda a janela
****************************************************************************************/
.WindowBlackMask {
    position: absolute;
    z-index: 200;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: .4;
    filter: alpha(opacity=40);
    background-color: #333333;
}

/****************************************************************************************
RadGrid: GridPager Template
****************************************************************************************/
.RGPagerButton /*MARCELO QUEIROZ - 05/04/2012*/ {
    width: 26px;
    height: 16px;
    border: 0px;
    cursor: pointer;
}

.RGPagerIndex, .RGPagerSelectIndex {
    text-decoration: none;
    padding: 2px;
}

    .RGPagerIndex:hover, .RGPagerSelectIndex:hover {
        text-decoration: underline;
    }

.RGPagerIndex {
    cursor: pointer;
}

.RGPagerSelectIndex {
    font-weight: bold;
    font-size: 11pt;
}

.RGPagerFirstPage[disabled], .RGPagerPrevPage[disabled], .RGPagerNextPage[disabled], .RGPagerLastPage[disabled] {
    visibility: hidden;
}

.RGPagerFirstPage, .RGPagerPrevPage, .RGPagerNextPage, .RGPagerLastPage {
    border-radius: 15px !important;
    background-color: transparent !important;
    background-position: center center;
    background-repeat: no-repeat;
    width: 24px !important;
    height: 24px !important;
    margin: 2px;
}

.RGPagerFirstPage {
    background-image: url(Icons/Pager/first.gif);
}

.RGPagerPrevPage {
    background-image: url(Icons/Pager/prev.gif);
}

.RGPagerNextPage {
    background-image: url(Icons/Pager/next.gif);
}

.RGPagerLastPage {
    background-image: url(Icons/Pager/last.gif);
}

/*================================ [[FORUM]] =============================== */

.ForumQuote {
    margin-left: 16px;
    padding-left: 16px;
}

.ForumInnerQuote {
    padding: 4px;
    background-color: #FFFFFF;
    border: solid 1px #95B4F3;
    color: #000000;
}

.ForumThreaded {
    padding: 6px;
    background-color: #FFFFFF;
    color: #000000;
}

    .ForumThreaded td {
        border: solid 1px #95B4F3;
    }

/*================================ [[BLOG]] =============================== */
.Blog INPUT[type='button'] {
    cursor: pointer;
    text-align: center;
    line-height: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

    .Blog INPUT[type='button']:hover {
    }

.Blog INPUT[type='submit'] {
    cursor: pointer;
    text-align: center;
    line-height: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.BlogBox {
    list-style-position: outside;
    list-style-type: square;
    margin: 0px;
    padding: 0px;
}

.BlogMenu ul {
    list-style-position: outside;
    list-style-type: square;
}

.BlogControlTitle {
    padding-top: 10px;
    font-size: 11px;
    font-weight: bolder;
    color: #2E82C3; /*#6666FF*/
    width: 100%;
    border-bottom: solid 1px #2E82C3; /*#6666FF*/
}

#ctl00_RightRegion_Archive1_gRepeater_ctl00_lbYear /*MARCELO QUEIROZ - 24/01/2012 - NOVA CLASSE*/ {
    font-size: 11px !important;
    font-weight: normal;
    color: #333333;
}

.Blog hr /*MARCELO QUEIROZ - 24/01/2012 - NOVA CLASSE*/ {
    display: none;
}

.BlogPanel {
    display: table;
    width: 100%;
}

.BlogInputPanel {
    background-color: transparent;
    margin: 5px;
    padding: 2px;
    border: solid 1px gray;
}

    .BlogInputPanel fieldset Legend {
        font-weight: bolder;
    }

.BlogPanel fieldset {
    clear: both;
    font-size: 100%;
    border-color: #2E82C3; /*#6666FF*/
    border-width: 1px 0 0 0;
    border-style: solid none none none;
    padding: 5px;
    margin: 0 0 0 0;
    border-radius: 0px;
}

    .BlogPanel fieldset legend {
        font-size: 120%;
        font-weight: bolder;
        color: #2E82C3; /*#6666FF*/
        margin: 0 0 0 0;
        padding: 0 5px;
    }

.Blog a, .Blog a:link, .Blog a:visited {
    color: #333333;
    text-decoration: none;
}

    .Blog a:hover {
        color: #333333;
        text-decoration: underline;
    }

.BlogHeader {
    padding: 10px;
    background-color: transparent;
    font-size: 20px;
    text-align: center;
    font-weight: normal;
    color: #2E82C3; /*#6666FF*/
}

.BlogHeaderSubTitle {
    padding: 5px;
    font-size: 11px;
    text-align: center;
}

/**** Message Post *********************************************************/
.BlogPost {
    margin: 10px;
    border-bottom: 1px solid #ccc;
}

.BlogPostHeader {
    margin-bottom: 10px;
}

.BlogPostsPeriod {
    font-size: 11px;
    text-align: right;
    color: #333333;
}

.BlogPostTitle {
    font-size: 20px;
    font-weight: normal;
    color: #2E82C3; /*#6666FF*/
}

.BlogPostDescription {
    font-size: 12px;
    font-weight: normal;
    margin: 10px 0;
    display: block;
}

.BlogPostDetails {
    font-size: 11px;
    font-weight: normal;
    color: #333333;
}

.PostDetails /*MARCELO QUEIROZ - 24/01/2012 - NOVO ESTILO*/ {
    font-size: 11px;
    font-weight: normal;
    color: #333333;
}

#ctl00_ContentRegion_ShowPost1_hlAuthor /*MARCELO QUEIROZ - 24/01/2012 - NOVO ESTILO*/ {
    font-size: 11px;
    font-weight: normal;
    color: #333333;
}

.BlogPostContent {
    border: 1px dashed #DEE6EB;
    display: table;
    width: 100%;
    height: auto;
    float: left;
    font-size: 11px;
}

.BlogPostContentInner {
    margin: 5px;
    color: #333333;
}

.BlogPostTags /*MARCELO QUEIROZ - 24/01/2012 - NOVO ESTILO*/ {
    color: #333333;
}

.BlogPostFooter a:link, .BlogPostFooter a:visited {
    color: #333333;
}

.BlogPostFooter {
    line-height: 20px;
    background-color: transparent;
    color: #333333;
    padding: 10px 0;
}

.BlogPostRatingContainer {
}

.BlogPostRating {
    color: #333333;
}

.BlogPostRaters {
    color: #669900; /*MARCELO QUEIROZ - 24/01/2012 - NOVO ESTILO*/
    font-weight: bolder;
}

.BlogPostSeparator {
    border: #2E82C3 1px dashed;
}

/**** Post Comment *********************************************************/
.BlogComment {
    margin: 15px;
}

.BlogCommentContent {
    padding: 5px;
    border: solid 1px black;
}

.BlogCommentDetails {
    font-size: 11px;
    font-weight: bolder;
    color: Black;
}

.BlogCommentFooter {
    background-color: WhiteSmoke;
}

/*================================ [[REPORTS]] =============================== */

.ReportStyle {
    /* Estilo do Cabeçalho do Relatório */
    headerbgcolor: WhiteSmoke;
    headertextcolor: #2E82C3; /*#6666FF*/
    footerbgcolor: WhiteSmoke;
    footertextcolor: #2E82C3; /*#6666FF*/
}

.ReportFilter {
    background-color: #eee8aa;
}

.ReportFilterLabel {
    color: Black;
    font-weight: bold;
}

.ReportOptions /*MARCELO QUEIROZ - 24/04/2012*/ {
    background-color: #FBFBFB;
}

.ReportOptions /*MARCELO QUEIROZ - 24/04/2012*/ {
    border: 0px !important;
    padding: 0px !important;
    border-collapse: collapse !important; /* Equivalente ao 'cellspacing' */
    border-spacing: 0px !important;
}

    .ReportOptions tbody tr td /*MARCELO QUEIROZ - 24/04/2012*/ {
        border: 0px !important;
        padding: 4px !important;
        border-collapse: collapse !important; /* Equivalente ao 'cellspacing' */
        border-spacing: 0px !important;
    }

.ReportOrderBy {
    color: #2E82C3; /*#6666FF*/
    font-weight: bold;
}

.ReportGroupBy {
    color: #2E82C3; /*#6666FF*/
    font-weight: bold;
}

/*================================ [[WEBMAIL]] =============================== */
.TreeViewWM {
    background-color: White;
    padding-top: 4px;
    padding-left: 1px;
    border: #7C7C94 1px solid;
    cursor: default;
}

.TreeNodeWM {
    font-size: 11px;
    padding-top: 2px;
    padding-bottom: 1px;
    padding-left: 3px;
    padding-right: 3px;
}

.GrayedTreeNodeWM {
    font-size: 11px;
    padding-top: 2px;
    padding-bottom: 1px;
    padding-left: 3px;
    padding-right: 3px;
    color: gray;
    cursor: default;
}

.HoverTreeNodeWM {
    font-size: 11px;
    text-decoration: underline;
    padding-top: 2px;
    padding-bottom: 1px;
    padding-left: 3px;
    padding-right: 3px;
    cursor: default;
}

.SelectedTreeNodeWM {
    font-size: 11px;
    background-color: gray;
    color: white;
    padding-top: 2px;
    padding-bottom: 1px;
    padding-left: 3px;
    padding-right: 3px;
    cursor: default;
}

.NodeEditWM {
    border: 1px gray solid;
    font-size: 11px;
}
/*================================ [[ADS Manager]] =============================== */
.NodeBoldText {
    font-weight: bold;
}
/*================================ [[PORTAL]] =============================== */

/****************************************************************************************
Paineís da direita, centro e esquerda onde vão os Box
****************************************************************************************/
.TablePanels {
    width: 100%;
    background-color: #f5f5f5;
}

.MainPanel {
    width: 100%;
    height: auto;
}

    .MainPanel > .MainContent {
        max-width: 1280px;
        margin: auto;
    }


.TableFrame {
    padding: 0px;
    min-height: 100vh;
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

    .TableFrame > .TopHeader {
        position: relative;
    }

        .TableFrame > .TopHeader .RadMenu {
            z-index: 3 !important;
        }

    .TableFrame > .Footer {
        margin-top: auto;
    }

.spy {
    opacity: 0.7;
    z-index: -1;
    height: max-content;
    margin: auto;
    color: #000000;
    font-size: 60px;
    font-weight: bolder;
}

.spyDiv {
    opacity: 0.95;
    width: 50%;
    height: 80%;
    position: fixed;
    left: 25%;
    top: 15%;
    text-align: center;
    transform: rotate( 40deg );
    display: flex;
    justify-items: center;
    background-color: transparent;
}
/***************************************************************************************
Painel de Controle
/****************************************************************************************/
.ControlPanel {
    float: left;
    width: 100%;
    background-color: transparent; /*#F3F3F3*/
}

    .ControlPanel .ImageBox {
        padding-right: 0px;
        padding-left: 0px;
        display: inline;
        width: 140px;
        height: 90px;
        float: left;
        padding-bottom: 0px;
        margin: 1px;
        padding-top: 0px;
    }

        .ControlPanel .ImageBox .Image {
            padding: 5px;
            margin: 0px;
            text-align: center;
        }

        .ControlPanel .ImageBox .Caption {
            padding: 0px;
            margin: 0px;
            text-align: center;
        }

            .ControlPanel .ImageBox .Caption P {
                width: 140px;
                padding: 5px;
                font-weight: normal;
                font-size: 11px;
                padding-bottom: 0px;
                padding-top: 0px;
                margin: 0px;
                text-align: center;
                clear: both;
            }

    .ControlPanel a {
        text-decoration: none;
    }

        .ControlPanel a:link {
            color: #000000;
            text-decoration: none;
        }

        .ControlPanel a:visited {
            color: #000000;
            text-decoration: none;
        }

        .ControlPanel a:hover {
            color: #2E82C3; /*#6666FF*/
            text-decoration: underline;
        }

/****************************************************************************************
Calendar
****************************************************************************************/
.CalendarAnotherMonth, .CalendarDays, .CalendarDayHeader, .CalendarSelectedDay, .CalendarToday {
    text-decoration: none;
    background-color: #ffffff;
    border-style: solid !important;
    border-right: 1px solid #eeeeee !important;
    border-top: 1px solid #eeeeee !important;
    border-left: 1px solid #eeeeee !important;
    border-bottom: 1px solid #eeeeee !important;
}

.CalendarAnotherMonth {
    background-color: #ffffff !important;
}

.CalendarDays {
    background-color: #F5F5F5;
    border-style: 1px solid red !important;
    text-decoration: none;
}

.CalendarDayHeader /*MARCELO QUEIROZ - 12/07/2011 - Comentando blocos*/ {
    font-weight: lighter;
    text-transform: capitalize;
    font-size: 11px;
    color: #000000;
    text-decoration: none;
    border-style: none none solid none !important;
}

.CalendarEvent {
    background-color: #bcd3f7;
    text-decoration: none;
    border-style: solid !important;
    border-right: 1px solid #eeeeee !important;
    border-top: 1px solid #eeeeee !important;
    border-left: 1px solid #eeeeee !important;
    border-bottom: 1px solid #eeeeee !important;
}

.CalendarWeekend {
    border-style: solid !important;
    border-right: 1px solid #eeeeee !important;
    border-top: 1px solid #eeeeee !important;
    border-left: 1px solid #eeeeee !important;
    border-bottom: 1px solid #eeeeee !important;
}

    .CalendarWeekend tr:first-child td /*MARCELO QUEIROZ - 12/07/2011 - Comentando blocos*/ {
        background-color: #d3d3d3;
        border-style: solid !important;
        border-right: 1px solid #eeeeee !important;
        border-top: 1px solid #eeeeee !important;
        border-left: 1px solid #eeeeee !important;
        border-bottom: 1px solid #eeeeee !important;
    }

.CalendarTitle {
    font-weight: normal;
    font-size: 11px;
    background-color: #FFFFFF;
    text-decoration: none;
    color: #333333;
}

.CalendarContainer tr:first-child td {
    background-color: white !important;
    border-style: none !important;
    line-height: normal !important;
    white-space: nowrap;
}

.CalendarContainer {
    width: 230px;
    height: auto;
    position: relative;
    top: 0px;
    text-align: center;
}

.CalendarTitle td:nth-child(2):first-letter {
    text-transform: uppercase !important;
}

.CalendarTitle td:nth-child(1) {
    width: 53px !important;
    text-align: right !important;
    background-image: url(Portal/seta_left.png) !important;
    background-position: 0px 0px;
    background-repeat: no-repeat;
}

.CalendarTitle td:nth-child(2) {
    width: 121px !important;
}

.CalendarTitle td:nth-child(3) {
    width: 53px !important;
    text-align: left !important;
    background-image: url(Portal/seta_right.png) !important;
    background-position: 0px 0px;
    background-repeat: no-repeat;
}

.CalendarTitle a:link {
    color: #333333 !important;
    text-decoration: none !important;
}

.CalendarTitle a:hover {
    color: #333333 !important;
    text-decoration: none !important;
}

.CalendarTitle a:visited {
    color: #333333 !important;
    text-decoration: none !important;
}

.CalendarSelectedDay {
    border-right: 1px solid #77C0E1;
    border-top: 1px solid #77C0E1;
    border-left: 1px solid #77C0E1;
    border-bottom: 1px solid #77C0E1;
    font-weight: bold;
    color: #FFFFFF !important;
    background-color: #00537f !important;
    text-decoration: none;
}

    .CalendarSelectedDay a:link /*MARCELO QUEIROZ - 12/07/2011 - Novo estilo*/ {
        color: #FFFFFF !important;
        text-decoration: none !important;
    }

    .CalendarSelectedDay a:hover /*MARCELO QUEIROZ - 12/07/2011 - Novo estilo*/ {
        color: #FFFFFF !important;
        text-decoration: none !important;
    }

    .CalendarSelectedDay a:visited /*MARCELO QUEIROZ - 12/07/2011 - Novo estilo*/ {
        color: #FFFFFF !important;
        text-decoration: none !important;
    }

.CalendarToday {
    background-color: White;
    color: Red !important;
}

/******* Calendar TOOLTIP *******/
a.CalendarTooltip /*MARCELO QUEIROZ - 12/07/2011 - Comentando blocos*/ {
    font-size: 11px;
    font-weight: normal; /*padding:0;*/
    color: #003399;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    z-index: 24;
    width: 100%;
}

    a.CalendarTooltip:hover {
        background: transparent;
        z-index: 25;
        text-decoration: none !important; /*MARCELO QUEIROZ - 29/08/2011 - Estilo incluído*/
    }

    a.CalendarTooltip span {
        display: none;
    }

    a.CalendarTooltip:hover span {
        display: block;
        position: absolute;
        width: 230px;
        top: -3em;
        text-align: justify; /*background-color: expression(document.getElementById(  "calendar_container" ).clientLeft>=2? 'black' : 'red' );*/
        font: 12px Tahoma, Arial, Geneva, sans-serif;
        padding: 5px 10px;
        border: 1px solid #999; /*background: #e0ffff;*/
        color: #000;
    }

/****************************************************************************************
Box Filter
****************************************************************************************/
.BoxFilter {
    color: #333333;
    background-color: #efefef;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    margin-bottom: 2px;
}

.BoxFilterTitle {
    background-color: #efefef;
    color: #333333;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 2px;
    text-decoration: none;
}

    .BoxFilterTitle > .CPExpandCollapse {
        color: #333333 !important;
    }

.BoxFilter a:link /*MARCELO QUEIROZ - 28/07/2011 - NOVA CLASSE*/ {
    color: #333333 !important;
}

.BoxFilter a:hover /*MARCELO QUEIROZ - 28/07/2011 - NOVA CLASSE*/ {
    color: #333333 !important;
}

.BoxFilter a:visited /*MARCELO QUEIROZ - 28/07/2011 - NOVA CLASSE*/ {
    color: #333333 !important;
}

/***********************************************************************************/
.BoxSpacer {
    margin-bottom: 2px;
}

.SingleBox {
    color: black;
    border: solid 1px #2E82C3;
    border-radius: 4px;
}

.BoxNoBorder, .SingleBox {
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    background-color: transparent;
    color: #333333;
}

.Box {
    padding: 10px;
}

    .Box a, .BoxNoBorder a {
        text-decoration: none;
    }

        .Box a:link, .BoxNoBorder a:link {
            color: #333333;
            text-decoration: none;
        }

        .Box a:visited, .BoxNoBorder a:visited {
            color: #333333;
            text-decoration: none;
        }

        .Box a:hover, .BoxNoBorder a:hover {
            color: #333333;
            text-decoration: underline;
        }

.BoxNoTitle {
    display: none;
}

.BoxTitle {
    height: 36px;
    padding-left: 10px;
    padding-right: 4px;
    line-height: 1.5em;
    font-weight: bold;
}

    .BoxTitle td {
        text-align: center;
    }

        .BoxTitle td:last-child:not(:first-child) {
            width: 20px;
        }

    .BoxTitle a.BoxTitle {
        background-image: none;
    }

.CollapsablePanel {
    margin-bottom: 1rem !important;
    overflow: hidden;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
}

    .CollapsablePanel .CPExpandCollapse {
        font-style: normal;
        color: #333;
    }

    .CollapsablePanel.OverflowMargin {
        /* Os painéis com esta class devem sobrepor as margens de seu parent.
        Isso significa que, para o caso de haver loadable modules só no centro, o módulo ocupará toda a área visível.
        Como a margem lateral do elemento superior é de 10px, colocamos uma margem de 10 negativos e adicionamos 20px ao width. */
        margin-left: -4px;
        width: calc(100% + 8px);
    }

@media screen and (min-width: 840px) {
    .AfterHeaderContent {
        margin: 6px;
    }

    .CollapsablePanel.OverflowMargin {
        margin-left: -10px;
        width: calc(100% + 20px);
    }
}

.NoBorder > .CollapsablePanel, .CollapsablePanel .CollapsablePanel {
    border-width: 0px !important;
    box-shadow: none;
}

.BoxTitle a:link {
    font-weight: bold;
    color: beige;
    font-style: italic;
    text-decoration: none;
}

.BoxTitle a:visited {
    font-weight: bold;
    color: beige;
    font-style: italic;
    text-decoration: none;
}

.BoxTitle a:hover {
    color: #FF0000;
}

.BoxSubTitle {
    font-weight: bold;
}

    .BoxSubTitle a {
        color: #333333;
        text-decoration: none;
    }

        .BoxSubTitle a:link {
            color: #333333;
            text-decoration: none;
        }

        .BoxSubTitle a:visited {
            color: #333333;
            text-decoration: none;
        }

        .BoxSubTitle a:hover {
            color: #333333;
            text-decoration: underline;
        }

.BoxContent, .BoxContentBackGround, .BoxItemPanel {
    padding: 0px 0px 0px 0px;
    border: 1px solid #EEEEEE;
}

.BoxContent {
    background-color: #FFFFFF;
}

.BoxHighlightBG {
    background-color: #EEEEEE;
}

.BoxContentBackGround {
    background-color: #F5F5F5;
}

    .BoxContentBackGround TD TR {
        margin: 0px 0px 0px 0px;
    }

/***************************************************************************************
Box: Informativos Portal
****************************************************************************************/
.BoxInformativos {
    color: #333333;
}

.BoxInfoTit {
    border: 0px !important;
    background-color: #FFFFFF !important;
}

/***************************************************************************************
Box: cor alternativa
****************************************************************************************/
.BoxAltColor {
    border-right: #CED0D6 thin solid;
    border-top: #CED0D6 thin solid;
    border-left: #CED0D6 thin solid;
    border-bottom: #CED0D6 thin solid;
    background-color: whitesmoke;
}

.BoxAltTitle {
    color: white;
    background-color: #CED0D6;
    font-weight: bolder;
    height: 20px;
    line-height: 20px;
}
/****************************************************************************************/
.PortalButton {
    cursor: pointer;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

    .PortalButton:hover {
    }

.PortalDefButton {
    cursor: pointer;
    text-align: center;
}
/***********************************************************************************/
.PortalContent, .PortalContentBackground {
    border-top-style: none;
    border-right-style: none;
    border-left-style: none;
    border-bottom-style: none;
}

.PortalContentPK, .PortalContentAK, .PortalLabel, .PortalSingleLabel {
    font-size: 11px;
}

.PortalSingleLabel {
    font-weight: bold;
}

.PortalLabel /*MARCELO QUEIROZ - 14/07/2011*/ {
    font-weight: normal !important;
    background-color: #e5e5e5;
    color: #333333 !important;
    padding: 4px;
}

.PortalContent {
    padding: 5px;
    background-color: white;
}

.PortalContentPK {
    background: lightyellow;
}

.PortalContentAK /*MARCELO QUEIROZ - 14/07/2011*/ {
    background: #99CC66 !important;
    border: 1px solid #5E8C2F !important;
    color: #FFFFFF !important;
    padding-left: 10px !important;
}

    .PortalContentAK INPUT[type='text'] /*MARCELO QUEIROZ - 30/01/2012 - NOVA CLASSE*/ {
        font-size: 11px !important;
        font-weight: normal !important;
        color: #FFFFFF !important;
        margin-bottom: 2px !important;
        border: 1px solid #5E8C2F !important;
        background-color: #99CC66 !important;
        background-image: url(portal/bg_input.png) !important;
        background-repeat: repeat-x !important;
        background-position: 0px 1px !important;
    }

.PortalContentBackground {
    padding: 5px;
    background-color: whitesmoke;
}

    .PortalContentBackground TR TD {
        padding-bottom: 1px;
        padding-top: 1px;
    }

/***********************************************************************************/

.PortalTitle {
    font-weight: bold;
    font-size: 11px;
    background-image: url(icons/bgDegrade.png);
    background-repeat: repeat-x;
    background-color: #C2DAED;
    height: 33px;
    min-height: 33px !important;
    line-height: 33px;
    padding-left: 10px;
    padding-right: 10px;
}

    .PortalTitle a:link, .PortalTitle a:visited /*MARCELO QUEIROZ - 02/02/2012 - NOVO ESTILO*/ {
        background-color: transparent !important;
        background-image: none !important;
    }

.PortalSubTitle, .PortalAltSubTitle {
    font-weight: bold;
    font-size: 11px;
}

.PortalSubTitle {
    color: #2E82C3; /*#6666FF*/
}

.PortalAltSubTitle {
    color: #2E82C3; /*#6666FF*/
    background-color: transparent;
}

/***********************************************************************************/

.PortalTitleBar {
    color: #333333 /*2E82C3*/;
    text-align: left /*center*/;
    width: 100%;
}

    .PortalTitleBar, .PortalTitleBar TD {
        font-weight: bold;
        font-size: 18px;
        font-style: italic;
    }

/***********************************************************************************/
.WizardNavigationStyle {
    bottom: 5px;
    right: 5px;
    background-color: Gray;
}

.PortalLargeTitle, .PortalLargeTitle SPAN {
    margin-top: 5px;
    margin-left: 0px;
    display: block;
    font-size: 110%;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
    text-decoration: none;
}

/***********************************************************************************
PortalInfo
/***********************************************************************************/
.PortalInfo #Box {
}

.PortalInfo #Title {
}

.MplsPopupUser a:link, .MplsPopupUser a:visited {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.MplsPopupUser a:hover {
    color: black;
    text-decoration: underline;
    cursor: pointer;
}

.MplsPopupDomain a:link, .MplsPopupDomain a:visited {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.MplsPopupDomain a:hover {
    color: black;
    text-decoration: underline;
    cursor: pointer;
}

.MplsUserLink {
    text-decoration: none;
    cursor: pointer;
    vertical-align: middle;
}

    .MplsUserLink img {
        padding-right: 4px;
        border: none;
    }

a.WizSBS {
    background-image: url(icons/bullet.png);
    background-repeat: no-repeat;
    background-position: left top;
    color: red !important;
}

a.WizSB, a.WizSBS {
    cursor: pointer;
    margin: 0px;
    padding-left: 8px;
    color: black;
    text-decoration: none;
    font-weight: bolder;
}

/***********************************************************************************/
.HyperlinkMenu > div {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

    .HyperlinkMenu > div .HyperlinkMenu__description {
        text-align: left;
    }

    .HyperlinkMenu > div:not(:last-child) {
        margin-bottom: 1rem;
    }

.HyperlinkMenu a {
    text-decoration: none;
    font-weight: bold;
}
/***********************************************************************************/
.BoxInfo {
    color: #333333;
}

    .BoxInfo table tbody tr #ctl00_ContentRegion_TRFinalizationDate span /*MARCELO QUEIROZ - 14/07/2011 - NOVO ESTILO*/ {
        color: #FF6600 !important;
    }

    .BoxInfo #ctl00_ContentRegion_lblFinalizationDate /*MARCELO QUEIROZ - 23/08/2011 - NOVO ESTILO*/ {
        color: #FF6600 !important;
    }

    .BoxInfo #ctl00_ContentRegion_lb_Status /*MARCELO QUEIROZ - 14/07/2011 - NOVO ESTILO*/ {
        color: #968E00 !important;
    }
/***********************************************************************************/

/*********************************************************************************** Performance Assessment Template ***********************************************************************************/
.Title {
    font-weight: bolder;
    font-size: 11px;
    padding: 5px;
    border-radius: 4px;
    color: white;
}

.Title {
    background-color: #3399cc;
}

.Subtitle span {
    line-height: 25px;
}

.groupAssessment .Title, .groupAssessment .Subtitle, .groupAssessment {
    border-radius: 0px;
}

.AssessmentFont {
    font-size: 11px;
}

.gridWrapper {
    border: 0 none;
    padding: 0;
}

.horizontalSpacer {
    height: 4px;
    border-bottom: url(icons/Assessment/_.gif);
}

.commentTitle {
    font-weight: bold;
}

.GrayTitle {
    font-size: 11px;
    font-weight: bolder; /* background-color:#DDDDDD; */
    background-color: #DD1111;
    color: #000000;
    padding-bottom: 0.6em;
    padding-right: 1em;
    padding-left: 1em;
    margin-top: 1em;
    font-size: 11px;
    height: auto;
    padding: 0 3px;
}

.horizontalSpacer {
    height: 4px;
}

.SuperiorLabelTextArea {
    font-weight: bolder;
}

.AssessmentDropDownList {
    background-color: #ECECEC;
    text-align: center;
}

.AssessmentTextBlockSubTitle {
    font-weight: normal;
}

.AssessmentSectionTableGoalReadOnly, .AssessmentSectionTableComments {
    width: 100%;
}


/***************************************************************/
/*   Styles de Controles Específicos ***************************/
.BoxStudentMixInfo /*MARCELO QUEIROZ - 01/08/2011 - ALTERAÇÃO BACKGROUND-COLOR*/ {
    width: 100%;
    min-height: 150px;
    background-color: transparent; /*#FFFFFF*/
}

    .BoxStudentMixInfo a:link {
        text-decoration: none;
    }

    .BoxStudentMixInfo a:hover {
        text-decoration: underline;
    }

    .BoxStudentMixInfo a:visited {
        text-decoration: none;
    }

.RadGridDetailHeader, .RadGridDetailHeader a {
    color: White;
    background-color: DarkGreen !important;
}

/**** Hierarchy GridDetail - Level1 ****/
.RadGridDetailHeader_L1 {
    color: White !important;
    background-color: #b3b3b3 !important;
}

.RadGridDetail_L1 {
    border: solid 1px #b3b3b3 !important;
}
/**** Hierarchy GridDetail - Level2 ****/
.RadGridDetailHeader_L2 {
    color: black;
    background-color: #B3B3B3 !important;
}

.RadGridDetail_L2 {
    border: solid 1px #B3B3B3 !important;
}
/**** Hierarchy GridDetail - Level3 ****/
.RadGridDetailHeader_L3 {
    color: white;
    background-color: #B3B3B3 !important;
}

.RadGridDetail_L3 {
    border: solid 1px black !important;
}
/**** Hierarchy GridDetail - Level4 ****/
.RadGridDetailHeader_L4 {
    color: White;
    background-color: #2E82C3 !important;
}

.RadGridDetail_L4 {
    border: solid 1px #2E82C3 !important;
}

.rgRowExpiredHistory {
    background-color: #fa7280 !important;
}
/***************************************************************/

/***************************************************************/
/*   Utilizados nos Grids do Módulo de Performance
/****************************************************************/
.NestedTable {
    background-color: #CCCCCC !important;
    color: #FFFFFF;
}

    .NestedTable tr th {
        background-color: #B3B3B3 !important;
    }

/***************************************************************/
.ClassStudentEnrollFinished /*Verde*/ {
    background-color: #B0D891;
    color: #FFFFFF;
    /*background-image: url(Portal/bg_icones_grid.png);
    background-repeat: no-repeat;
    background-position: right top;*/
}

    .ClassStudentEnrollFinished a:link, .ClassStudentEnrollFinished a:visited, .ClassStudentEnrollFinished a:hover {
        color: #FFFFFF !important;
    }

.ClassStudentEnrollNotFinished /*Cinza*/ {
    background-color: #F5F5F5;
    /*background-image: url(Portal/bg_icones_grid.png);
    background-repeat: no-repeat;
    background-position: right top;*/
}

    .ClassStudentEnrollNotFinished a:link, .ClassStudentEnrollNotFinished a:visited, .ClassStudentEnrollNotFinished a:hover {
        color: #333333 !important;
    }

.ClassStudentEnrollExpired /*Vermelho*/ {
    background-color: #E28678;
    color: #FFFFFF;
}

.WhiteBackground {
    background-color: #FFF;
}

.ClassStudentEnrollExpired a:link, .ClassStudentEnrollExpired a:visited, .ClassStudentEnrollExpired a:hover {
    color: #FFFFFF !important;
}
/***************************************************************/
.GridCaption {
    font-size: 120%;
    font-weight: bolder;
    text-transform: capitalize;
    text-decoration: underline;
}
/***************************************************************/
.SurveyLabel, .SurveyLegend {
    font-size: xx-small;
    font-weight: bold;
    width: 50px;
    text-transform: capitalize;
}

.SurveyLegend {
    color: #2E82C3; /*#6666FF*/
}

.SurveyGraph {
    background-color: Red;
    height: 10px;
    border: 1px solid #2E82C3; /*#6666FF*/
}

.SurveyGraphResult {
    width: 100%;
    height: 15px;
    font-size: xx-small;
    border: solid 1px black;
    background-color: #F3F3F3;
}

.ddAssessment, .ddAssessment .rcbScroll {
    overflow: visible !important;
}

.cursorHand {
    cursor: pointer;
}
/***************************************************************/
.rlbEmptyMessageAssessmentDistribution .rlbEmptyMessage {
    top: 0px !important;
}

.labelDistributionManagerMessage {
    border: #8e8e8e 1px solid;
    display: block;
    font-size: 11px;
    width: 100%;
    color: #333;
    font-style: italic;
    text-align: center;
}

.lstPaddingZero, .lstPaddingZero .rlbItem {
    padding: 0px !important;
}
/***************************************************************/
.erlInfo_MClass p {
    color: #006400;
    font-weight: bold;
    font-size: 11px;
}

.erlInfo_MClass input {
    color: #006400;
    font-weight: bold;
    font-size: 11px;
    height: 30px;
}

.erlInfo_Buttons input {
    margin: 2px;
    vertical-align: middle;
}

.erlInfo_Btn_Scores, .erlInfo_Btn_Cancel {
    font-weight: bold;
    color: #000080;
}

.erlInfo_Btn_StartCourse_ON {
    font-weight: bold;
    color: #fff;
    background-color: #0f69b0 !important;
}

.erlInfo_Btn_StartCourse_OFF {
    font-weight: bold;
    color: #808080;
}

.erlInfo_Btn_Print {
    font-weight: bold;
    color: #000000;
}

.erlInfo_Btn_MakePosTests_Passed {
    font-weight: bold;
    color: #ffffff;
    background-color: #ff3333 !important;
}

.erlInfo_Btn_MakePosTests_Failed {
    font-weight: bold;
    color: #FF0000 !important;
}

.erlInfo_Btn_Terminate_Passed {
    font-weight: bold;
    color: #ffffff;
    background-color: #ff3333 !important;
}

.erlInfo_Btn_Terminate_Failed {
    font-weight: bold;
    color: #FF0000;
}

.erlInfo_Btn_Certificate {
    font-weight: bold;
    color: #ffffff;
    background-color: #ff3333 !important;
}
/***************************************************************/
.btnClose {
    background-image: url(Icons/Goals/close.png);
    background-position: right center;
    background-repeat: no-repeat;
}

/***************************************************************/

.ContactForm .Container {
    margin-left: 10%;
    margin-right: 10%;
}

    .ContactForm .Container .Field {
        display: block;
        width: 100%;
        overflow: hidden;
    }

        .ContactForm .Container .Field .FieldLabel, .ContactForm .Container .Field .FieldControl {
            page-break-after: always;
        }

            .ContactForm .Container .Field .FieldLabel .Required {
                font-weight: bold;
            }

        .ContactForm .Container .Field .FieldControl {
            padding: 4px;
            padding-left: 10px;
            padding-right: 5px;
        }

            .ContactForm .Container .Field .FieldControl input, .ContactForm .Container .Field .FieldControl select {
                padding: 4px;
            }

.ContactForm .Button {
    text-align: center;
}

    .ContactForm .Button input {
        text-transform: capitalize;
    }

.MplsPopupUser a, .MplsPopupDomain a /*MARCELO QUEIROZ - 23/04/2012*/ {
    background-image: url(icons/MoreDetails.png);
    background-position: 0px 2px;
    padding-left: 18px;
    background-repeat: no-repeat;
}

.MplsPopupDomainLocal a {
    background-image: url(icons/Location.gif);
    background-position: left top;
    padding-left: 18px;
    background-repeat: no-repeat;
}

.AutoHeight /*MARCELO QUEIROZ - 02/08/2011 - NOVA CLASSE*/ {
    border-top: 0px solid #FFFFFF !important;
    border-right: 0px solid #FFFFFF !important;
    border-bottom: 0px solid #FFFFFF !important;
    border-left: 0px solid #FFFFFF !important;
}

    .AutoHeight table /*MARCELO QUEIROZ - 02/08/2011 - NOVA CLASSE*/ {
        border-top: 0px solid #FFFFFF !important;
        border-right: 0px solid #FFFFFF !important;
        border-bottom: 0px solid #FFFFFF !important;
        border-left: 0px solid #FFFFFF !important;
    }

.menuTab {
    position: relative;
    top: 1px;
    left: 10px;
    line-height: 20px;
    color: Navy;
}

.menuTabTab {
    border: Solid 1px black;
    padding: 0px 10px;
    background-color: #eeeeee;
}

    .menuTabTab a {
        color: navy;
    }

        .menuTabTab a:hover {
            color: Blue;
        }

.menuTabSelected {
    border: Solid 1px black;
    border-bottom: Solid 1px white;
    padding: 0px 10px;
    background-color: white;
    font-weight: bold;
}

.menuTabBody {
    border: Solid 1px black;
    margin-left: 5px;
    margin-right: 5px;
    padding: 10px;
    background-color: white;
}

.PlanTitle {
    padding-left: 10px;
    line-height: 22px;
}

.PlanTitle {
    color: #336699;
    font-weight: bold;
    font-size: 16px;
}

.PlanInfo {
    color: #CCC;
    font-weight: bold;
    font-size: 12px;
}

    .PlanInfo .Delayed {
        color: #C00;
    }

    .PlanInfo .Finalized {
        color: #999;
    }

    .PlanInfo .Doing {
        color: #093;
    }

    .PlanInfo .NotInitiate {
        color: #F93;
    }

.PlanUpdateStatus {
    padding: 5px;
    display: block;
    white-space: nowrap;
}

.GroupOptions {
    background: #fff;
    display: table;
    width: 100%;
}

    .GroupOptions > p {
        text-align: left;
    }

    .GroupOptions > fieldset {
        clear: both;
        font-size: 100%;
        border: solid 1px navy;
        padding: 5px;
        margin: 0 0 0 0;
        border-radius: 1px;
    }

        .GroupOptions > fieldset > legend {
            font-size: 150%;
            font-weight: bolder;
            color: Navy;
            margin: 0 0 0 0;
            padding: 0 5px;
        }

.FormTable {
    border-collapse: separate;
}

.Validator {
    font-weight: bold;
    font-size: 11px;
    color: red;
    display: block;
    margin-bottom: 1px;
    margin-top: 1px;
}

/* Estilo da área de milhagem :: EnrollmentInfo.aspx */
/* Begin */
.MilesAreaTitle {
    border-bottom: solid 1px black;
    font-size: 10px;
    font-weight: bold;
    padding-bottom: 0px;
}

.MilesArea ul {
    list-style-type: none;
    padding-left: 0px;
    margin-top: 0px;
}

    .MilesArea ul li {
        clear: both;
    }

        .MilesArea ul li .MilesAreaCaption {
            float: left;
            width: 95px;
            font-weight: bold;
        }

        .MilesArea ul li .MilesAreaDesc {
            /* está herdando as configuração da página, porém, pode ser customizado. */
        }
/* End */

.span-advanced-options a {
    text-decoration: underline;
    cursor: pointer;
    color: black;
    font-weight: bold;
    font-size: 10px;
}

/* Library */

.pnl-library-item {
    position: relative;
    width: 65%;
    margin-left: 3%;
    border-bottom-style: solid;
    border-bottom-color: silver;
    border-bottom-width: 2px;
    border-radius: 4px; /* Implementação W3C */
    -moz-border-radius: 4px; /* Implementação Mozilla */
    -webkit-border-radius: 4px; /* Implementação para browsers que renderizam via webkit */
    behavior: url(PIE.htc); /* Comportamento adicionado para renderização das propriedades acima no IE 7 e IE 8 */
    margin-bottom: 8px;
    padding-bottom: 9px;
}

.pnl-filter {
    position: relative;
}

.pnl-right {
    position: absolute;
    right: 0;
}

.pnl-filters-general, .pnl-filters-documents, .pnl-filters-recording {
    position: relative;
}

    .pnl-filters-general > div, .pnl-filters-documents > div, .pnl-filters-recording > div {
        float: left;
    }

.pnl-filters-general, .pnl-searchby, .pnl-btn-search {
    position: relative;
}

.tbx-keyword {
    width: 450px;
}

.pnl-filters select {
    width: 300px;
}

.pnl-documents > div, .pnl-recording > div {
    float: left;
    padding-left: 5em;
}

.pnl-period {
    padding-left: 5em;
}

.pnl-btn-search {
    padding-left: 2.5em;
}

.pnl-period legend {
    padding-bottom: 0.98px;
}

.img-file {
    width: 35px;
}

.ItemStyle .rgGroupCol {
    background-color: white !important;
    border-style: none !important;
    border-bottom-style: none !important;
    border-bottom-color: white !important;
    border-bottom-width: 0 !important;
    border-top-style: none !important;
    border-top-color: white !important;
    border-top-width: 0 !important;
}

.GroupHeader .rgGroupCol {
    background-color: white !important;
    border-style: none !important;
    border-bottom-style: none !important;
    border-bottom-color: white !important;
    border-bottom-width: 0 !important;
    border-top-style: none !important;
    border-top-color: white !important;
    border-top-width: 0 !important;
}

.GroupHeader td {
    height: 25px;
    line-height: 0px;
}

.div-header {
    font-size: 12px;
    line-height: 0px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 0 15px;
}

.cpn-additional-filters .CollapsePanelFilter {
    border-style: none;
}

.table-library-item {
    width: 800px;
    empty-cells: hide;
}

    .table-library-item .td-image {
        width: 5%;
    }

    .table-library-item .td-title {
        width: 49%;
    }

    .table-library-item .td-enddate {
        width: 35%;
    }

    .table-library-item .td-visible {
        width: 8%;
    }

    .table-library-item .td-description {
        text-overflow: ellipsis;
        width: 250px;
        max-width: 250px;
        overflow: hidden;
    }

.pnl-result {
    padding-top: 13px;
}

.GroupHeader td[colspan] {
    box-shadow: 0 0 1em #CCC; /* Implementação W3C */
    -moz-box-shadow: 0 0 1em #CCC; /* Implementação Mozilla */
    -webkit-box-shadow: 0 0 1em #CCC; /* Implementação para browsers que renderizam via webkit */
    behavior: url(PIE.htc); /* Comportamento adicionado para renderização das propriedades acima no IE 7 e IE 8 */
    border-radius: 5px; /* Implementação W3C */
    -moz-border-radius: 5px; /* Implementação Mozilla */
    -webkit-border-radius: 5px; /* Implementação para browsers que renderizam via webkit */
    behavior: url(PIE.htc); /* Comportamento adicionado para renderização das propriedades acima no IE 7 e IE 8 */
}

.pnl-filters {
    position: relative;
}

.td-recording-document {
    vertical-align: top;
    line-height: 19px;
}

.pnl-filters-recording {
    padding-top: 3px;
}

    .pnl-filters-recording div, .pnl-filters-documents div, .tb-groupby {
        float: left;
    }

.pnl-addition-filters {
    padding-top: 3px;
    padding-left: 124px;
}

.pnl-button {
    padding-top: 13px;
    padding-left: 17px;
}

/* Library */

/* Communities */

.wzCommunitiesStepsHeader li .prevStep {
    background-color: #b9c8e8;
}

    .wzCommunitiesStepsHeader li .prevStep:after {
        border-left-color: #b9c8e8 !important;
    }

.wzCommunitiesStepsHeader li .currentStep {
    background-color: #6085d1;
}

    .wzCommunitiesStepsHeader li .currentStep:after {
        border-left-color: #6085d1 !important;
    }

.wzCommunitiesStepsHeader li .nextStep {
    background-color: #b9c8e8;
}

    .wzCommunitiesStepsHeader li .nextStep:after {
        border-left-color: #b9c8e8 !important;
    }

.wzCommunitiesStepsHeader {
    list-style: none;
    overflow: hidden;
    font: 18px Helvetica, Arial, Sans-Serif;
    margin: 0px;
    padding: 0px;
}

    .wzCommunitiesStepsHeader li {
        float: left;
    }

.wzCommunitiesStepsHeader {
    width: 100%;
    min-width: 900px;
}

    .wzCommunitiesStepsHeader li a {
        color: white;
        text-decoration: none;
        padding: 10px 20px 10px 20px;
        border-left: solid white;
        position: relative;
        display: block;
        float: left;
    }

.wzCommunitiesStepsHeaderSeparator hr {
    border: 0;
    width: 100%;
    color: #0b093b;
    background-color: #0b093b;
    height: 1px;
}

.wzCommunitiesStepButtons {
    Width: 80px;
    Height: 25px;
}

.communitiesImageEditor {
}

.communitiesImageEditorTitle {
    text-align: center;
}

    .communitiesImageEditorTitle h2 {
        text-align: center;
        font-size: 16px;
    }

.communitiesImageEditorImgContainer {
    height: 490px;
    width: 630px;
    overflow-y: auto;
    overflow-x: auto;
    vertical-align: central;
}

.communitiesImageEditorToolbar {
    border-left: solid 1px black;
    vertical-align: top;
    width: 100%;
}

.communitiesImageEditorToolbarItemIcon {
    height: 16px;
    width: 16px;
}

.communitiesImageEditorToolbarTitle {
    text-align: center;
    font-weight: bold;
}

.communitiesImageEditorBottomBar {
    width: 100%;
}

    .communitiesImageEditorBottomBar .label {
        font-weight: bold;
    }

    .communitiesImageEditorBottomBar .value {
        border: solid 1px red;
        padding: 5px 5px 5px 5px;
    }

.communitiesImageEditorToolbarItem {
}

    .communitiesImageEditorToolbarItem a {
        color: black;
        vertical-align: central !important;
        margin-bottom: 5px;
    }

/******  CommunityActivitiesAndNews ******/

#community-actandnews-container {
    margin: 1em auto 2em auto;
    max-width: 795px;
    min-width: 717px;
    height: 22em;
}

.community-actandnews-subcontainer {
    float: left;
    margin: auto auto auto 15px;
    width: 33em;
}

#community-actandnews-container .dxncItemHeader {
    font-size: 11px;
}

/******  CommunityChat ******/

.community-chat-container {
    font-size: 10px;
    height: 100px;
}

    .community-chat-container h2 {
        font-size: 1.0em;
        color: gray;
        width: 140px;
        text-align: left;
        padding: 0.5em 0;
        text-transform: uppercase;
        font-weight: bold;
    }

/******  CommunityLastActivities ******/

.community-lastactivities-container {
    font-size: 10px;
    background-color: white;
    margin: 0;
    border: 2px solid #EDF1F7;
    min-width: 32em;
    min-height: 472px;
}

    .community-lastactivities-container h5 {
        padding-top: 2px;
        margin: 0;
        padding-left: 1.3em;
        height: 4em;
        font-size: 1.0em;
        background-color: #EDF1F7;
    }

    .community-lastactivities-container .community-lastactivities-header > * {
        vertical-align: middle;
    }

    .community-lastactivities-container .community-lastactivities-header img {
        width: 32px;
        height: 32px;
    }

    .community-lastactivities-container .community-lastactivities-header span {
        position: relative;
        right: -8px;
    }

    .community-lastactivities-container .community-lastactivities-item {
        padding: 12px 8px;
    }

        .community-lastactivities-container .community-lastactivities-item > div:nth-child(1) {
            border-bottom: 1px solid #A8A8A8;
        }

    .community-lastactivities-container td:nth-child(1) {
        vertical-align: top;
    }

        .community-lastactivities-container td:nth-child(1) img {
            height: 32px;
            width: 32px;
        }

    .community-lastactivities-container td:nth-child(2) {
        font: 0px;
        min-width: 12px;
    }

    .community-lastactivities-container td:nth-child(3) {
        width: 100%;
        vertical-align: top;
    }

    .community-lastactivities-container table tr td div:nth-child(1) span {
        font-weight: normal;
        font-size: 10px;
    }

        .community-lastactivities-container table tr td div:nth-child(1) span:nth-child(1) {
            color: #0073b2;
        }

        .community-lastactivities-container table tr td div:nth-child(1) span:nth-child(2) {
            color: #000000;
        }

    .community-lastactivities-container table tr td div:nth-child(2) {
        font-size: 10px;
        font-weight: normal;
        vertical-align: Top;
        margin-bottom: 3px;
    }

        .community-lastactivities-container table tr td div:nth-child(2) a {
            color: #0073B2 !important;
        }

    .community-lastactivities-container table tr td div:nth-child(3) {
        color: #8B8B8B;
        font-size: 10px;
    }

    .community-lastactivities-container .community-lastactivities-paging {
        text-align: center;
        padding: 12px 8px;
    }

/******  CommunityLastArticles ******/

.community-lastarticles-container {
    font-size: 10px;
    background-color: white;
    margin: 0;
    border: 2px solid #EDF1F7;
    min-width: 32em;
    min-height: 472px;
}

    .community-lastarticles-container h5 {
        padding-top: 2px;
        margin: 0;
        padding-left: 1.3em;
        height: 4em;
        font-size: 1.0em;
        background-color: #EDF1F7;
    }

    .community-lastarticles-container .community-lastarticles-header > * {
        vertical-align: middle;
    }

    .community-lastarticles-container .community-lastarticles-header img {
        width: 32px;
        height: 32px;
    }

    .community-lastarticles-container .community-lastarticles-header span {
        position: relative;
        right: -8px;
    }

    .community-lastarticles-container .community-lastarticles-item {
        padding: 12px 8px;
    }

        .community-lastarticles-container .community-lastarticles-item > div:nth-child(1) {
            border-bottom: 1px solid #A8A8A8;
        }

    .community-lastarticles-container td:nth-child(1) {
        vertical-align: top;
    }

        .community-lastarticles-container td:nth-child(1) img {
            height: 32px;
            width: 32px;
        }

    .community-lastarticles-container td:nth-child(2) {
        font: 0px;
        min-width: 12px;
    }

    .community-lastarticles-container td:nth-child(3) {
        width: 100%;
        vertical-align: top;
    }

    .community-lastarticles-container table tr td div:nth-child(1) span {
        font-weight: normal;
        font-size: 10px;
    }

        .community-lastarticles-container table tr td div:nth-child(1) span:nth-child(1) {
            font-weight: bold;
        }

    .community-lastarticles-container table tr td div:nth-child(2) {
        font-size: 10px;
        font-weight: normal;
        vertical-align: Top;
        margin-bottom: 3px;
        color: #8B8B8B;
    }

    .community-lastarticles-container table tr td div:nth-child(3) {
        font-size: 10px;
    }

    .community-lastarticles-container .community-lastarticles-paging {
        text-align: center;
        padding: 12px 8px;
    }

/******  CommunityLinkTools ******/

.community-master {
    margin: 1em auto 2em auto;
    max-width: 795px;
    min-width: 690px;
    height: 22em;
    text-align: center;
}

.community-link-tools-container {
    font-size: 10px;
    min-width: 210px;
    max-width: 795px;
    height: 23em;
    background-color: white;
    border-top: 1px solid #E1E1EE;
    border-bottom: 1px solid #E1E1EE;
    text-align: center;
    background-image: url('Icons/Communities/bg-community-tool-container.png');
    background-repeat: repeat-x;
    float: left;
    margin: auto auto auto 15px;
}

    .community-link-tools-container div {
        float: left;
    }

.community-link-tools {
    width: 99%;
    text-align: center;
}

.community-link-tools-container:hover {
    border: solid 1px #CCC;
    box-shadow: 1px 1px 5px #999;
    text-decoration: none;
}

.community-link-tools-image {
    margin-top: 8px;
    width: 100%;
    height: 161px;
    text-align: center;
}

    .community-link-tools-image img {
        width: 190px;
        height: 161px;
    }

    .community-link-tools-image a {
        text-decoration: none;
        font-weight: bold;
        font-size: 12px;
    }

.community-span {
    padding: 0px 10px 0px 10px;
    text-decoration: none;
    font-weight: normal;
    font-size: 10px;
}

/******  CommunityBannerTop ******/

#community-banner {
    font-size: 10px;
    margin: 1.6em 0;
    position: relative;
    min-width: 90em;
}

#community-banner-content-center {
    width: 100%;
    background-color: #7a98c0;
    height: 100px;
    position: relative;
    background-repeat: repeat-x;
    background-image: url('Portal/bg_top_communities.jpg');
    box-shadow: 2px 4px 9px -1px rgba(0,0,0,0.52);
}

    #community-banner-content-center h1 {
        width: 24em;
        font-size: 2em;
        color: white;
        padding-left: 7%;
        padding-top: 2%;
    }

#community-avatar-image {
    position: absolute;
    top: -4.5em;
    right: 15em;
    background-color: white;
    padding: 5px;
    border: solid 1px #e1e1e1;
}

    #community-avatar-image img, #community-avatar-image {
        width: 18em;
        height: 18em;
    }

/******  CommunityNews ******/

.community-news-container {
    font-size: 10px;
    background-color: white;
    margin: 0 0 0 0;
    border: 2px solid #EDF1F7;
    min-width: 32em;
    min-height: 472px;
    margin-left: 20px;
}

    .community-news-container h5 {
        padding-top: 2px;
        margin: 0;
        padding-left: 1.3em;
        height: 4em;
        font-size: 1.0em;
        background-color: #EDF1F7;
    }

        .community-news-container h5 img {
            width: 32px;
            height: 32px;
        }

        .community-news-container h5 span {
            position: relative;
            top: -8px;
            right: -8px;
        }

    .community-news-container td {
        padding-left: 0px;
    }

    .community-news-container .dxncControl td.dxncCtrl {
        padding: 0px 18px 18px 18px;
    }

    .community-news-container .dxncItem {
        padding: 0 8px 12px 8px;
    }

/******  CommunityNewsletters ******/

#community-newsletters-container {
    width: 750px;
    height: 100px;
}

/******  CommunitySurvey ******/

.community-survey-container {
    font-size: 10px;
    height: 100%;
}

    .community-survey-container h2 {
        font-size: 1.0em;
        color: gray;
        width: 140px;
        text-align: left;
        padding: 0.5em 0;
        text-transform: uppercase;
        font-weight: bold;
    }

/******  CommunityLinkTools ******/

.community-master {
    margin: 1em auto 2em auto;
    max-width: 795px;
    min-width: 690px;
    height: 23em;
    text-align: center;
}

.community-link-tools-container {
    font-size: 10px;
    min-width: 210px;
    max-width: 795px;
    height: 24em;
    background-color: white;
    border-top: 1px solid #E1E1EE;
    border-bottom: 1px solid #E1E1EE;
    text-align: center;
    background-image: url('Icons/Communities/bg-community-tool-container.png');
    background-repeat: repeat-x;
    float: left;
    margin: auto auto auto 15px;
}

    .community-link-tools-container div {
        float: left;
    }

.community-link-tools {
    width: 99%;
    text-align: center;
}

.community-link-tools-container:hover {
    border: solid 1px #CCC;
    box-shadow: 1px 1px 5px #999;
    text-decoration: none;
}

.community-link-tools-image {
    margin-top: 8px;
    width: 100%;
    height: 161px;
    text-align: center;
}

    .community-link-tools-image img {
        width: 190px;
        height: 161px;
    }

    .community-link-tools-image a {
        text-decoration: none;
        font-weight: bold;
        font-size: 12px;
    }

.community-span {
    padding: 0px 7px 0px 7px;
    text-decoration: none;
    font-weight: normal;
    font-size: 10px;
    text-align: justify;
}

/******  CommunityMenuVerticalLeft ******/

#community-menu-vertical-left {
    font-size: 10px;
}

    #community-menu-vertical-left h2 {
        font-size: 1.0em;
        color: gray;
        width: 140px;
        text-align: left;
        text-transform: uppercase;
        font-weight: bold;
    }

    #community-menu-vertical-left ul {
        font-size: 1.1em;
        list-style: none;
        margin: 0px;
        padding: 0px;
    }

        #community-menu-vertical-left ul li {
            margin: 0px;
            padding-bottom: 3px;
        }

            #community-menu-vertical-left ul li a {
                display: block;
                padding: 0.5em 0 0.2em 0.4em;
                text-decoration: none;
                color: gray;
            }

                #community-menu-vertical-left ul li a:hover, #community-menu-vertical-left ul li a:focus {
                    color: black;
                    background-color: #7a98c0;
                }

.community-text-link {
    padding-left: 0.5em;
}

.community-menu-vertical-img {
    width: 16px;
    height: 16px;
}

.box-community-experts {
}

    .box-community-experts h2 {
        font-size: 0.9em;
        color: gray;
        width: 140px;
        text-align: left;
        text-transform: uppercase;
        font-weight: bold;
    }

.community-experts-container {
    margin: 2px 0px;
}

.community-experts-specialty {
    margin: 5px 0px;
    cursor: pointer;
    background-image: url("./Icons/Specialty.png");
    background-position: left;
    background-repeat: no-repeat;
}

.community-experts-experts {
    margin: 5px 0px;
    margin-left: 10px;
    min-width: 120px;
    max-width: 150px;
}

.community-experts-experts-item {
    padding-left: 17px;
    background-image: url("./Icons/Experts.png");
    background-position: left;
    background-repeat: no-repeat;
    text-decoration: none;
}

.community-experts-specialty-item {
    margin-left: 17px;
}

/******************************/

.RadUpload .ruButton {
    color: #000000 !important;
}

/******************************/

/* Hack IE 8 */
.pnl-community-admin-container {
    width /*\**/: 100%\9;
    display /*\**/: table\9;
    table-layout /*\**/: fixed\9;
}
/**/
.RadCalendarMonthView INPUT[type='button'] {
    cursor: pointer;
    text-align: center;
    line-height: 24px;
    padding-left: 10px;
    padding-right: 10px;
    height: 24px;
    max-height: 24px;
    padding-top: 0px !important;
}

    .RadCalendarMonthView INPUT[type='button']:hover {
        cursor: pointer;
        text-align: center;
        line-height: 24px;
        padding-left: 10px;
        padding-right: 10px;
        height: 24px;
        max-height: 24px;
        padding-top: 0px !important;
    }

.RadAsyncUpload INPUT[type='button']:hover {
    line-height: 22px;
    color: #FF0000 !important;
    background-color: transparent;
    background-image: url(Portal/bg_botao_portal_remover.png) !important;
    padding-left: 16px;
    height: 22px;
    max-height: 22px;
    background-origin: content-box;
    background-position-x: -14px;
    background-position-y: 1px;
}

.disconnectionAlertDialog {
    z-index: -1;
}

.remove_ico {
    background-image: url(Icons/Fail.png) !important;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.editableIcons .baseIcon {
    background-repeat: no-repeat;
    background-position: left center;
    border: 1px solid navy !important;
    border-radius: 4px;
    height: 25px;
    cursor: pointer;
    color: #000000 !important;
}

    .editableIcons .baseIcon:hover {
        border: 1px solid navy !important;
        background-color: #E0E0FF;
    }

.editableIcons .newIcon {
    background-image: url(icons/track/child.png) !important;
    background-position: center center;
    width: 25px;
}

.editableIcons .editIcon {
    background-image: url(icons/track/edit.png) !important;
    background-position: center center;
    width: 25px;
}

.editableIcons .restartIcon {
    background-image: url(icons/restart.png) !important;
    background-position: center center;
    width: 25px;
}

.editableIcons .removeIcon {
    background-image: url(icons/track/close.png) !important;
    background-position: center center;
    width: 25px;
}

.editableIcons .saveIcon {
    background-image: url(icons/track/save.png) !important;
}

.editableIcons .backIcon {
    background-image: url(icons/track/back-icon.png) !important;
}

.smallLoading {
    background-image: url('icons/Loading16.gif');
    background-repeat: no-repeat;
    padding-left: 18px;
    line-height: 18px;
}

.RadGridEditFormFooter td a {
    font-size: 14px;
    padding-left: 10px;
}

    .RadGridEditFormFooter td a:hover {
        color: red;
    }

.pdi .icon {
    background-repeat: no-repeat;
    background-position: center center;
    width: 16px;
    height: 16px;
    display: inline-block;
}

    .pdi .icon.approval-pending {
        background-image: url(icons/PDI/approval-pending.png) !important;
    }

    .pdi .icon.accomplished {
        background-image: url(icons/PDI/accomplished.png) !important;
    }

    .pdi .icon.approved {
        background-image: url(icons/PDI/approved.png) !important;
    }

    .pdi .icon.delayed {
        background-image: url(icons/PDI/delayed.png) !important;
    }

    .pdi .icon.pending {
        background-image: url(icons/PDI/pending.png) !important;
    }

    .pdi .icon.bin {
        background-image: url(icons/PDI/bin.png) !important;
    }

    .pdi .icon.disapprove {
        background-image: url(icons/PDI/disapprove.png) !important;
    }

    .pdi .icon.files {
        background-image: url(icons/PDI/files.png) !important;
    }

    .pdi .icon.mail {
        background-image: url(icons/PDI/mail.png) !important;
    }

    .pdi .icon.pencil {
        background-image: url(icons/edit.gif) !important;
    }

    .pdi .icon.plus {
        background-image: url(icons/PDI/plus.png) !important;
    }

    .pdi .icon.cloning {
        background-image: url(icons/Goals/cloning.png) !important;
    }

    .pdi .icon.printer {
        background-image: url(icons/PDI/printer.png) !important;
    }

    .pdi .icon.search {
        background-image: url(icons/PDI/search.png) !important;
    }

    .pdi .icon.cross {
        background-image: url(icons/PDI/cross.png) !important;
    }

    .pdi .icon.upload {
        background-image: url(icons/PDI/upload.png) !important;
    }

    .pdi .icon.select {
        background-image: url(icons/PDI/select.png) !important;
    }

/* LiveProfile */

.lpTableSection .lpTdLabel {
    padding: 5px;
}

.lpTableSection .lpTdValue {
    padding: 5px 0 5px 0;
}

    .lpTableSection .lpTdValue input[type='text'] {
        width: 200px !important;
    }

    .lpTableSection .lpTdValue .RadListBox {
        width: 203px !important;
    }

.lpTableSection .lpSectionTitle {
    padding: 5px;
    font-size: 12px;
    color: White;
}

.lpTableSection .lpParagraph {
    font-weight: bold;
    height: 20px !important;
    white-space: normal !important;
}

.lpGridButtonAddNewCell input[type='button'] {
    background-image: url(icons/plus-blue.png) !important;
    background-repeat: no-repeat;
}

.lpGridButtonsCell .lpGridButtonEdit {
    background-image: url(icons/Edit.png) !important;
    background-repeat: no-repeat;
}

.lpGridButtonsCell .lpGridButtonDelete {
    background-image: url(icons/Trash.png) !important;
    background-repeat: no-repeat;
}

.lpGridButtonsCell .lpGridButtonSave {
    background-image: url(icons/Update.gif) !important;
    background-repeat: no-repeat;
}

.lpGridButtonsCell .lpGridButtonCancel {
    background-image: url(icons/wa_cancel.gif) !important;
    background-repeat: no-repeat;
}

.assessmentUploadedFilesNumber {
    display: inline-block;
    position: absolute;
    margin-left: -15px;
    border: 1px solid red;
    background-color: white;
    border-radius: 7px;
    min-width: 12px;
    margin-top: 18px;
    text-align: center;
    line-height: 12px;
    min-height: 12px;
    color: black;
}

.ui-dialog {
    box-shadow: 0px 0px 20px -6px rgba(0,0,0,1);
}

.loading {
    background-image: url('Icons/Loading.gif');
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 20px;
}

div.paging span.page:first-child:last-child {
    display: none;
}

div.paging span.page {
    border: 1px solid lightgray;
    background-color: white;
    color: black;
    border-radius: 10px;
    min-width: 11px;
    font-weight: normal;
    height: 16px;
    line-height: 16px;
    vertical-align: middle;
    text-align: center;
    margin-right: 2px;
    margin-left: 2px;
    padding-left: 3px;
    padding-right: 3px;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: background-color .2s, border-color .2s;
    transition: background-color .2s, border-color .2s;
}

    div.paging span.page:hover {
        background-color: lightgray;
        border-color: black;
    }

    div.paging span.page.selected {
        font-weight: bold;
        background-color: cornflowerblue;
    }

div.paging span.space {
    width: 20px;
    display: inline-block;
    text-align: center;
}

    div.paging span.space:before {
        content: '...';
    }

.k-pager-numbers .k-state-selected {
    font-weight: bold;
    background-color: cornflowerblue;
    border: 1px solid lightgray;
    color: black;
    margin-left: 2px;
}

.k-pager-numbers .k-link {
    border: 1px solid lightgray;
    background-color: white;
    color: black;
    margin-right: 2px;
    margin-left: 2px;
}

.scoreCard .statusOk, .scoreCard .statusNok {
    background-position: center center;
    background-repeat: no-repeat;
}

.scoreCard .statusOk {
    background-image: url('Icons/smileok.png');
}

.scoreCard .statusNok {
    background-image: url('Icons/smilenok.png');
}

/****** Begin: MessageBoard ******/

.messageBoard {
    width: 100%;
    text-align: left;
    border-bottom: solid 1px black;
    word-break: break-word;
    overflow: auto;
}

    .messageBoard .subject {
        font-weight: bold;
    }

    .messageBoard .message {
        white-space: normal;
    }

/****** End: MessageBoard ******/

.Box, .BoxTitle, .BoxSubTitle, .DialogFilter fieldset legend, fieldset legend, .CollapsePanelFilter legend, a.CrumbTrail:link, a.CrumbTrail:visited, a.CrumbTrail:hover,
.BoxContent, .BoxContentBackGround, .BoxItemPanel, .PortalTitle, .PortalLargeTitle, .PortalLargeTitle SPAN, .postgroup a {
    color: #2F96F6;
}

.forumheader, .topiclabel, .topiclabel a, .topicheader span, .topicsubheader span {
    color: #2F96F6 !important;
}

/*Início videoteca adição/remoção de favorito */
span.favorite {
    background-repeat: no-repeat;
    background-position-x: 200px;
}

span.favorite-text span.rbText {
    text-align: right !important;
    padding-right: 25px !important;
}
/*Fim videoteca adição/remoção de favorito */

.skype-wrapper {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: 0 solid #d8dcdf;
    background: none;
}
/* Trava linha do popup */
#tbDevPlan > thead {
    z-index: 1;
    padding: 2px !important;
    margin: 0px !important;
    background-color: #fff;
}
/* descobre a primeira linha da listagem */
#tbDevPlanElements > tr:nth-child(1) > th {
    padding-top: 30px;
}

#tbDevPlanElements > tr:nth-child(1) > td {
    padding-top: 30px;
}
/* deixa o dropdown por cima */
#_form > div:nth-child(1) {
    z-index: 2 !important;
    white-space: nowrap;
}
/* Ajusta colunas fixas */
table#tbDevPlan {
    table-layout: auto !important;
}

#tbDevPlanElements > tr.noDevPlan > td {
    width: 977px;
}

/* Define larguras */
#tbDevPlanElements > tr > td {
    white-space: nowrap;
}

#tbDevPlan > thead > tr > th {
    white-space: nowrap;
}

td.approval, th.header.headerapproval.ui-state-default {
    width: 64px !important;
    min-width: 64px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    margin: 0 !important;
}

td.status, th.header.headerstatus.ui-state-default {
    width: 30px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    margin: 0 !important;
    min-width: 30px !important;
}

td.action.ellipsisClass, th.header.headeraction.ui-state-default {
    width: 247px !important;
    min-width: 247px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    margin: 0 !important;
}

td.competency.ellipsisClass, th.header.headercompetency.ui-state-default {
    width: 151px !important;
    min-width: 151px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    margin: 0 !important;
}

th.header.headerperiod.ui-state-default, td.period {
    width: 114px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    margin: 0 !important;
    min-width: 114px !important;
}

th.header.headerstart.ui-state-default, td.start {
    width: 114px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    margin: 0 !important;
    min-width: 114px !important;
}

th.header.headerend.ui-state-default, td.end {
    width: 114px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    margin: 0 !important;
    min-width: 114px !important;
}

th.header.headerprogress.ui-state-default, td.progress {
    width: 114px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    margin: 0 !important;
    min-width: 114px !important;
}

th.header.headerbuttons.buttons.ui-state-default, td.buttons.colbuttons {
    width: 109px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    margin: 0 !important;
    min-width: 109px !important;
}

.instructor-alert-content .instructor-alert-data {
    overflow: hidden;
    width: 180px;
    text-overflow: ellipsis;
}

.student-alert-content .student-alert-data {
    overflow: hidden;
    width: 180px;
    text-overflow: ellipsis;
}

.table-user-profile {
    padding-top: 3px;
    margin-right: 10px;
}

    .table-user-profile .user-photo {
        border-radius: 50%;
        width: 69px;
        background-color: white;
    }

    .table-user-profile .user-name {
        text-transform: uppercase;
        font-weight: bold;
        color: #4d4d4d;
        padding: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 200px;
    }

    .table-user-profile .user-lastaccess {
        color: #4d4d4d;
    }

    .table-user-profile .panMilesScore {
        background-color: #ffffff;
        padding-top: 7px;
        text-align: center;
        padding-bottom: 7px;
        box-shadow: 0 0 13px -6px rgba(0,0,0,1);
        text-transform: uppercase;
    }

    .table-user-profile .hlMilesStatementHeader {
        font-size: 8px;
    }

.SideBar:empty {
    display: none;
}

.offsideMainContent {
    width: 70px;
    overflow: hidden;
}

    .offsideMainContent:empty {
        display: none;
    }

.BoxAdmin .chosen-container a:hover {
    text-decoration: none;
}

.TelerikModalOverlay {
    /*position: fixed;
    width: 99.9% !important;
    height: 100% !important;
    overflow: hidden !important;*/
}

.divCPContentRow {
    overflow: auto;
}

.owl-carousel .owl-item.active {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

/***** Ajustes Componentes Telerik ***************************************************************/
.BoxTransAjust .rlbGroup.rlbGroupRight {
    margin-right: 42px !important;
}

/*************************************************************************************************/

.content__title-bar {
    text-align: center;
    margin: 2rem 0 1rem;
    text-transform: uppercase !important;
    display: block;
}

.content__box-container {
    border-radius: 2px;
    overflow: hidden;
    padding: 1rem;
}
/*************************************************************************************************/

.HomeCustomerLogo img {
    width: 100%;
    max-width: 400px;
    display: block;
    height: auto;
    margin: 0 auto;
}

/* React Container */

.ReactLoading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(23,23,23,.25);
    z-index: 99999999;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

    .ReactLoading > img {
        margin: auto;
    }

.ReactContainer-root {
    margin: 0 auto;
    position: relative;
    max-width: calc(100vw - 32px);
    margin-bottom: 1rem;
}
/* Ajuste do espaçamento quando aberto pelo dialog do telerik */
#outerContent .ReactContainer-root {
    max-width: 100vw;
}

@media only screen and (max-width: 992px) {
    .ReactContainer-root {
        max-width: calc(100vw - 70px);
    }
}

.ReactLoading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(23,23,23,.25);
    z-index: 99999999;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

    .ReactLoading > img {
        margin: auto;
    }


.materialTextBoxTitleAdapter {
    display: -webkit-box;
    display: flex;
    position: relative;
}

    .materialTextBoxTitleAdapter > span {
        position: absolute;
        top: -10px;
        left: 5px;
        border: 1px solid lightgray;
        border-radius: 3px;
        padding-left: 3px;
        padding-right: 3px;
        background-color: white;
    }

    .materialTextBoxTitleAdapter > input {
        margin: 0;
        padding: 1em;
    }

.goals-progress-bar {
    background-color: #fff;
    border: 1px solid lightgray;
    border-radius: 4px;
    padding: 2px;
    position: relative;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
}

    .goals-progress-bar .percent-graph {
        background-color: #CED0D6;
        border-radius: 2px;
    }

    .goals-progress-bar .progress {
        color: #000;
        padding: 2px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        text-align: center;
    }

/* Função deste arquivo é remover o override do default.css sobre o tema do sweetalert! */

.swal2-styled:focus {
    box-shadow: none;
}

/***********************************************************************************/
/* Pop-up block alert */
/***********************************************************************************/
.popup-block-alert {
    height: 100vh;
    width: 100%;
    display: none;
    background-color: rgba(228,228,228,0.92);
    height: 100vh;
    position: absolute;
    top: 0;
    padding: 10px;
    color: #484545;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

    .popup-block-alert.open {
        display: flex;
    }

    .popup-block-alert a {
        font-weight: bold;
        cursor: pointer;
    }

/***********************************************************************************/