﻿/* DEFAULTS
----------------------------------------------------------*/
/*body   
{
    /*background: #e8e8e8;
    background: #FFFFFF;
    font-size: .80em;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    margin: 0px;
    padding: 0px;
    color: #696969;
    /*color: #FFFFFF;
    
}
*/
a:link, a:visited {
    color: #034af3;
}

a:hover {
    color: #1d60ff;
    text-decoration: none;
}

a:active {
    color: #034af3;
}

p {
    margin-bottom: 10px;
    line-height: 1.6em;
}

/* footer fixed */
html, body {
    font-size: .90em;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    height: 100%;
    min-height: 100%;
    margin: 0px;
    padding: 0px;
}

#wrap {
    min-height: 100%;
}

.main {
    position: relative;
    /*overflow: auto;*/
    /*padding-bottom: 150px;*/
    padding-bottom: 83px;
    width: 100%;
}
/* must be same height as the footer */

.footer {
    position: relative;
    margin-top: -83px; /* negative value of footer height */
    height: 83px;
    clear: both;
    width: 100%;
}

/*Opera Fix
body:before {
	content:"";
	height:100%;
	float:left;
	width:0;
	margin-top:-32767px;
}
*/

/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

.page {
    width: 960px;
    background-color: #fff;
    margin: 20px auto 0px auto;
    border: 1px solid #496077;
}

.header {
    position: relative;
    margin: 0px;
    padding: 0px;
    /*background: #4b6c9e;*/
    width: 100%;
}

    .header h1 {
        font-weight: 700;
        margin: 0px;
        padding: 0px 0px 0px 20px;
        color: #f9f9f9;
        border: none;
        line-height: 2em;
        font-size: 2em;
    }

/*html, body {height: 100%;}.main
{
    xpadding: 0px 12px;
    margin: 12px 8px 8px 8px;
    min-height: 420px;
    
}
*/

.leftCol {
    padding: 6px 0px;
    margin: 12px 8px 8px 8px;
    width: 200px;
    min-height: 200px;
}

/*.footer
{
    color: #4e5766;
    padding: 8px 0px 0px 0px;
    margin: 0px auto;
    text-align: center;
    line-height: normal;
}
*/

/* TAB MENU   
----------------------------------------------------------*/

div.hideSkiplink {
    background-color: #3a4f63;
    width: 100%;
}

div.menu {
    padding: 4px 0px 4px 8px;
}

    div.menu ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
        width: auto;
    }

        div.menu ul li a, div.menu ul li a:visited {
            background-color: #465c71;
            border: 1px #4e667d solid;
            color: #dde4ec;
            display: block;
            line-height: 1.35em;
            padding: 4px 20px;
            text-decoration: none;
            white-space: nowrap;
        }

            div.menu ul li a:hover {
                background-color: #bfcbd6;
                color: #465c71;
                text-decoration: none;
            }

            div.menu ul li a:active {
                background-color: #465c71;
                color: #cfdbe6;
                text-decoration: none;
            }

/* FORM ELEMENTS   
----------------------------------------------------------*/

fieldset {
    margin: 1em 0px;
    padding: 1em;
    border: 1px solid #ccc;
}

    fieldset p {
        margin: 2px 12px 10px 10px;
    }

    fieldset.login label, fieldset.register label, fieldset.changePassword label {
        display: block;
    }

    fieldset label.inline {
        display: inline;
    }

legend {
    font-size: 1.1em;
    font-weight: 600;
    padding: 2px 4px 8px 4px;
}

input.textEntry {
    width: 320px;
    border: 1px solid #ccc;
}

input.passwordEntry {
    width: 320px;
    border: 1px solid #ccc;
}

div.accountInfo {
    width: 42%;
}

/* MISC  
----------------------------------------------------------*/

.clear {
    clear: both;
}

.title {
    display: block;
    float: left;
    text-align: left;
    width: auto;
}

.loginDisplay {
    font-size: 1.1em;
    display: block;
    text-align: right;
    padding: 10px;
    color: White;
}

    .loginDisplay a:link {
        color: white;
    }

    .loginDisplay a:visited {
        color: white;
    }

    .loginDisplay a:hover {
        color: white;
    }

.failureNotification {
    font-size: 1.2em;
    color: Red;
}

.bold {
    font-weight: bold;
}

.submitButton {
    text-align: right;
    padding-right: 10px;
}

/* Mensagem de erro */

#dialogoverlay {
    /* set it to fill the whil screen */
    width: 100%;
    height: 100%;
    /* transparency for different browsers */
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    background: #000;
    /* make sure it appear behind the dialog box but above everything else */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    /* hide it by default */
    display: none;
}


#dialogbox {
    /* css3 drop shadow */
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    /* css3 border radius */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    /* styling of the dialog box, i have a fixed dimension for this demo */
    width: 100%;
    top: 50%;
    /* make sure it has the highest z-index */
    position: absolute;
    z-index: 5000;
    /* hide it by default */
    display: none;
}

    #dialogbox .dialogcontent {
        /* style the content */
        text-align: center;
        padding: 10px;
        margin: 13px;
        color: #666;
        font-family: arial;
        font-size: 11px;
        background: #eee;
        width: 328px;
        position: absolute;
        top: 35%;
        left: 35%;
    }

a.button {
    /* styles for button */
    margin: 10px auto 0 auto;
    text-align: center;
    display: block;
    width: 50px;
    padding: 5px 10px 6px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
    /* button color */
    background-color: #e33100;
    /* css3 implementation :) */
    /* rounded corner */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    /* drop shadow */
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    /* text shadow */
    text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(0,0,0,0.25);
    position: relative;
    cursor: pointer;
}

    a.button:hover {
        background-color: #c33100;
    }

/* extra styling */
#dialogbox .dialogcontent p {
    font-weight: 700;
    margin: 0;
}

#dialogbox .dialogcontent ul {
    margin: 10px 0 10px 20px;
    padding: 0;
    height: 50px;
}


/* HEADINGS   
----------------------------------------------------------

h1, h2, h3, h4, h5, h6
{
    font-size: 1.5em;
    color: #666666;
    font-variant: small-caps;
    text-transform: none;
    font-weight: 200;
    margin-bottom: 0px;
}

h1
{
    font-size: 1.6em;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

h2
{
    font-size: 1.5em;
    font-weight: 600;
}

h3
{
    font-size: 1.2em;
}

h4
{
    font-size: 1.1em;
}

h5, h6
{
    font-size: 1em;
}

/* this rule styles <h1> and <h2> tags that are the 
first child of the left and right table columns 
.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2
{
    margin-top: 0px;
}
*/

.loading {
    background-color: #fff;
    height: 100%;
    width: 100%;
}



/*Grids*/

.mGrid {
    width: 100%;
    background-color: #fff;
    margin: 5px 0 10px 0;
    border: solid 1px #525252;
    border-collapse: collapse;
    font-size: 12px;
}

    .mGrid td {
        padding: 2px;
        border: solid 0px #c1c1c1;
        color: #717171;
        font-size: 12px;
    }

    .mGrid th {
        /*padding: 4px 2px; 000000 */
        color: black;
        background: #eaeaea url(../Images/gridHeaderBar.png) repeat-x top;
        border-left: solid 0px #525252;
        font-size: 0.9em;
        text-align: left;
        vertical-align: central;
        height: 24px;
    }

    .mGrid tr:hover {
        background: #d2d2d2;
    }

    .mGrid .alt {
        background: #f2f2f2;
    }

    .mGrid .pgr {
        border-top: solid 1px black;
        background: #d2d2d2;
        background: -webkit-linear-gradient(top, #d2d2d2 0%, #eaeaea 100%);
        background: -o-linear-gradient(top, #d2d2d2 0%, #eaeaea 100%);
        background: -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#eaeaea));
        background: linear-gradient(to bottom, #d2d2d2 0%, #eaeaea 100%);
        /*background: #ffffff url(../Images/grd_pgr.png) repeat-x top;*/
        /*424242*/
    }

        .mGrid .pgr:hover {
            border-top: solid 1px black;
            background: #d2d2d2;
            background: -webkit-linear-gradient(top, #d2d2d2 0%, #eaeaea 100%);
            background: -o-linear-gradient(top, #d2d2d2 0%, #eaeaea 100%);
            background: -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#eaeaea));
            background: linear-gradient(to bottom, #d2d2d2 0%, #eaeaea 100%);
        }

        .mGrid .pgr table {
            margin: 5px 0;
            /*background: #ffffff url(../Images/grd_pgr.png) repeat-x top;*/
        }

        .mGrid .pgr td {
            border-width: 0;
            padding: 0 6px;
            border-left: solid 1px #666;
            font-weight: bold;
            color: gray;
            line-height: 9px;
            background: #d2d2d2;
            background: -webkit-linear-gradient(top, #d2d2d2 0%, #eaeaea 100%);
            background: -o-linear-gradient(top, #d2d2d2 0%, #eaeaea 100%);
            background: -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#eaeaea));
            background: linear-gradient(to bottom, #d2d2d2 0%, #eaeaea 100%);
        }

            .mGrid .pgr td:hover {
                background: #d2d2d2;
                background: -webkit-linear-gradient(top, #d2d2d2 0%, #eaeaea 100%);
                background: -o-linear-gradient(top, #d2d2d2 0%, #eaeaea 100%);
                background: -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#eaeaea));
                background: linear-gradient(to bottom, #d2d2d2 0%, #eaeaea 100%);
            }

        .mGrid .pgr tr:hover {
        }


        /*.mGrid2 .pgr a { color: #88bdf3; text-decoration: none; }*/

        .mGrid .pgr a {
            /*color: #ff0822;*/
            background: #d2d2d2;
            background: -webkit-linear-gradient(top, #d2d2d2 0%, #eaeaea 100%);
            background: -o-linear-gradient(top, #d2d2d2 0%, #eaeaea 100%);
            background: -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#eaeaea));
            background: linear-gradient(to bottom, #d2d2d2 0%, #eaeaea 100%);
            /*background: #ffffff url(../Images/grd_pgr.png) repeat-x top;*/
        }

            .mGrid .pgr a:hover {
                color: #ff0822;
                /*text-decoration: none;*/
                /*background: #ffffff url(../Images/grd_pgr.png) repeat-x top;*/
            }

        .mGrid .pgr:hover {
            /*background: #ffffff url(../Images/grd_pgr.png) repeat-x top;*/
        }

.botoesgvuser {
    border: 1px solid #a2a2a2;
    background-color: #fafafa;
    /*font-family:Arial;*/
    font-size: 9pt;
    /*font-weight:bold;*/
    font-style: normal;
    color: black;
    /*background-image: url('../Images/grd_alt.png');*/
    height: 23px;
    /*border:1px solid;*/
    border-radius: 4px;
    width: auto;
    /*border-top: #e0e0e0;*/
}

    .botoesgvuser:hover {
        /*font-family:Arial;*/
        font-size: 9pt;
        /*font-weight:bold;*/
        font-style: normal;
        color: black;
        background-color: #e0e0e0;
        /*background-image: url('../Images/grd_alt_hover.png');*/
        border-style: outset;
        border-width: 1px;
        border-color: #000;
        height: 23px;
        /*border:1px solid;*/
        border-radius: 4px;
        cursor: pointer;
    }

.tabela {
    border: 1px solid #2F4F4F;
    padding: 0px 0px 0px 0px;
    background-color: #fff;
    border: 1px solid;
    border-radius: 5px;
}

.tabelaDouble {
    border: 1px solid #2F4F4F;
    padding: 0px 0px 0px 0px;
    background-color: #ffffff;
    border: 1px solid;
    border-radius: 5px;
}

.tdTop {
    background-image: url(../Images/TabelaTop.png);
    color: #000000;
    height: 26px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.tdTopDouble {
    /*background-image: url(../Images/TabelaTop.png);*/
    color: #000000;
    height: 26px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    background: -webkit-linear-gradient(#fdfdfd, #ebebeb); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#fdfdfd, #ebebeb); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#fdfdfd, #ebebeb); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#fdfdfd, #ebebeb); /* Standard syntax */
    border: 1px solid;
    border-color: #9d9d9d;
}

.normal_td {
    font-family: Verdana;
    font-weight: normal;
    font-size: 10pt;
    color: #505E69;
}

.normal_tdDouble {
    font-family: Verdana;
    font-weight: normal;
    font-size: 10pt;
    color: #505E69;
}

.TextBoxDefault {
    border: 1px solid #aaaaaa;
    min-width: 100px;
    width: 150px;
}


/*ALERST*/

.Alerta {
    z-index: 5001;
    position: absolute;
    display: none;
    width: 100%;
}

.AlertaTableInfo {
    border: 1px solid #99D9EA;
    padding: 0px 0px 0px 0px;
    background-color: #F9FAFB;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: normal;
    text-decoration: none;
}

.AlertaTableErro {
    border: 1px solid #FEAFB6;
    padding: 0px 0px 0px 0px;
    background-color: #FFE3DF;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: normal;
    text-decoration: none;
}

.AlertaTableOk {
    border: 1px solid #D1F17E;
    padding: 0px 0px 0px 0px;
    background-color: #F2FBD9;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: normal;
    text-decoration: none;
}


/*ALERST*/

/*div de fundo dos alertas*/
.divBackImageCss {
    opacity: 0.7;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    width: 100%;
    height: 100%;
    z-index: 500;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)';
    filter: alpha(opacity=50);
}

.ui-dialog {
    z-index: 600 !important;
}

.arrow_box {
    position: relative;
    background: #f9f9f9;
    border: 1px solid #9d9d9d;
    right: -25px;
    top: 33px;
    border-radius: 8px;
    /*box-shadow: 5px 5px 8px 5px #7a7a7a;*/
}

    .arrow_box:after, .arrow_box:before {
        right: 100%;
        top: 25%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .arrow_box:after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: #f9f9f9;
        border-width: 30px;
        margin-top: -30px;
    }

    .arrow_box:before {
        border-color: rgba(209, 209, 209, 0);
        border-right-color: #9d9d9d;
        border-width: 31px;
        margin-top: -31px;
    }


.simple_box {
    position: relative;
    background: #f9f9f9;
    border: 1px solid #9d9d9d;
    right: -25px;
    top: 33px;
    border-radius: 8px;
    /*box-shadow: 5px 5px 8px 5px #7a7a7a;*/
}

/*Retorno mostrar imagem de ajuda*/
/*#dvHelpImage {
    position: relative;
    cursor: pointer;
}

    #dvHelpImage .hoverImg {
        display: none;
        position: absolute;
        bottom: 0;
        left: -550px;
        -webkit-transition: 0.4s;
        transition: 0.4s;
        z-index: 999999;
    }

    #dvHelpImage:hover .hoverImg {
        display: block;
        background-color: black;
    }*/


.dvVolSample {
    display: none;
}

div.dvVolSample {
    position: absolute;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 999999;
    border: 1px solid black;
}

/*Retorno mostrar imagem de ajuda*/



/*CALENDAR*/

.CalendarExtenderCSS .ajax__calendar_container {
    width: 190px;
    border: 1px solid #ae3939;
    background-color: #F4F4F4;
    font-family: verdana,arial,helvetica,tahoma;
    -moz-border-radius-topleft: 8px /*{cornerRadius}*/;
    -webkit-border-top-left-radius: 8px /*{cornerRadius}*/;
    -khtml-border-top-left-radius: 8px /*{cornerRadius}*/;
    border-top-left-radius: 8px /*{cornerRadius}*/;
    -moz-border-radius-topright: 8px /*{cornerRadius}*/;
    -webkit-border-top-right-radius: 8px /*{cornerRadius}*/;
    -khtml-border-top-right-radius: 8px /*{cornerRadius}*/;
    border-top-right-radius: 8px /*{cornerRadius}*/;
    -moz-border-radius-bottomleft: 8px /*{cornerRadius}*/;
    -webkit-border-bottom-left-radius: 8px /*{cornerRadius}*/;
    -khtml-border-bottom-left-radius: 8px /*{cornerRadius}*/;
    border-bottom-left-radius: 8px /*{cornerRadius}*/;
    -moz-border-radius-bottomright: 8px /*{cornerRadius}*/;
    -webkit-border-bottom-right-radius: 8px /*{cornerRadius}*/;
    -khtml-border-bottom-right-radius: 8px /*{cornerRadius}*/;
    border-bottom-right-radius: 8px /*{cornerRadius}*/;
}

.CalendarExtenderCSS .ajax__calendar_body {
    width: 182px;
    height: 150px;
    background-color: #F4F4F4;
    border: solid 1px #eeeeee;
}

.CalendarExtenderCSS .ajax__calendar_header {
    background-color: #ae3939;
    margin-bottom: 8px;
    -moz-border-radius-topleft: 4px /*{cornerRadius}*/;
    -webkit-border-top-left-radius: 4px /*{cornerRadius}*/;
    -khtml-border-top-left-radius: 4px /*{cornerRadius}*/;
    border-top-left-radius: 4px /*{cornerRadius}*/;
    -moz-border-radius-topright: 4px /*{cornerRadius}*/;
    -webkit-border-top-right-radius: 4px /*{cornerRadius}*/;
    -khtml-border-top-right-radius: 4px /*{cornerRadius}*/;
    border-top-right-radius: 4px /*{cornerRadius}*/;
    -moz-border-radius-bottomleft: 4px /*{cornerRadius}*/;
    -webkit-border-bottom-left-radius: 4px /*{cornerRadius}*/;
    -khtml-border-bottom-left-radius: 4px /*{cornerRadius}*/;
    border-bottom-left-radius: 4px /*{cornerRadius}*/;
    -moz-border-radius-bottomright: 4px /*{cornerRadius}*/;
    -webkit-border-bottom-right-radius: 4px /*{cornerRadius}*/;
    -khtml-border-bottom-right-radius: 4px /*{cornerRadius}*/;
    border-bottom-right-radius: 4px /*{cornerRadius}*/;
}

.CalendarExtenderCSS .ajax__calendar_title {
    color: #ffffff;
    padding-top: 3px;
}

.CalendarExtenderCSS .ajax__calendar_prev {
    cursor: pointer;
    width: 15px;
    height: 15px;
    float: left;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url(<%=WebResource("AjaxControlToolkit.Calendar.arrow-left.gif")%>);
    border: solid 1px #ffffff;
    margin-top: 1px;
    margin-left: 1px;
    background-color: #ae3939;
    -moz-border-radius-topleft: 18px;
    -webkit-border-top-left-radius: 18px;
    -khtml-border-top-left-radius: 18px;
    border-top-left-radius: 18px;
    -moz-border-radius-topright: 18px;
    -webkit-border-top-right-radius: 18px;
    -khtml-border-top-right-radius: 18px;
    border-top-right-radius: 18px;
    -moz-border-radius-bottomleft: 18px;
    -webkit-border-bottom-left-radius: 18px;
    -khtml-border-bottom-left-radius: 18px;
    border-bottom-left-radius: 18px;
    -moz-border-radius-bottomright: 18px;
    -webkit-border-bottom-right-radius: 18px;
    -khtml-border-bottom-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

.CalendarExtenderCSS .ajax__calendar_next {
    cursor: pointer;
    width: 15px;
    height: 15px;
    float: right;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url(<%=WebResource("AjaxControlToolkit.Calendar.arrow-right.gif")%>);
    border: solid 1px #ffffff;
    margin-top: 1px;
    margin-right: 1px;
    background-color: #ae3939;
    -moz-border-radius-topleft: 18px;
    -webkit-border-top-left-radius: 18px;
    -khtml-border-top-left-radius: 18px;
    border-top-left-radius: 18px;
    -moz-border-radius-topright: 18px;
    -webkit-border-top-right-radius: 18px;
    -khtml-border-top-right-radius: 18px;
    border-top-right-radius: 18px;
    -moz-border-radius-bottomleft: 18px;
    -webkit-border-bottom-left-radius: 18px;
    -khtml-border-bottom-left-radius: 18px;
    border-bottom-left-radius: 18px;
    -moz-border-radius-bottomright: 18px;
    -webkit-border-bottom-right-radius: 18px;
    -khtml-border-bottom-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

.CalendarExtenderCSS .ajax__calendar_hover .ajax__calendar_next {
    border: solid 1px #FF7F50;
    margin-top: 1px;
    margin-right: 1px;
    background-color: #9c3333;
    -moz-border-radius-topleft: 18px;
    -webkit-border-top-left-radius: 18px;
    -khtml-border-top-left-radius: 18px;
    border-top-left-radius: 18px;
    -moz-border-radius-topright: 18px;
    -webkit-border-top-right-radius: 18px;
    -khtml-border-top-right-radius: 18px;
    border-top-right-radius: 18px;
    -moz-border-radius-bottomleft: 18px;
    -webkit-border-bottom-left-radius: 18px;
    -khtml-border-bottom-left-radius: 18px;
    border-bottom-left-radius: 18px;
    -moz-border-radius-bottomright: 18px;
    -webkit-border-bottom-right-radius: 18px;
    -khtml-border-bottom-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

.CalendarExtenderCSS .ajax__calendar_hover .ajax__calendar_prev {
    border: solid 1px #FF7F50;
    margin-top: 1px;
    margin-left: 1px;
    background-color: #9c3333;
    -moz-border-radius-topleft: 18px;
    -webkit-border-top-left-radius: 18px;
    -khtml-border-top-left-radius: 18px;
    border-top-left-radius: 18px;
    -moz-border-radius-topright: 18px;
    -webkit-border-top-right-radius: 18px;
    -khtml-border-top-right-radius: 18px;
    border-top-right-radius: 18px;
    -moz-border-radius-bottomleft: 18px;
    -webkit-border-bottom-left-radius: 18px;
    -khtml-border-bottom-left-radius: 18px;
    border-bottom-left-radius: 18px;
    -moz-border-radius-bottomright: 18px;
    -webkit-border-bottom-right-radius: 18px;
    -khtml-border-bottom-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

.CalendarExtenderCSS .ajax__calendar_dayname {
    text-align: center;
    margin-bottom: 4px;
    margin-top: 2px;
    color: #000000;
}

.CalendarExtenderCSS .ajax__calendar_day,
.CalendarExtenderCSS .ajax__calendar_month,
.CalendarExtenderCSS .ajax__calendar_year {
    margin: 1px 1px 1px 1px;
    text-align: right;
    border: solid 1px #eeeeee;
    color: #333333;
    background-color: #f1d6d6;
    font-size: 7pt;
}

.CalendarExtenderCSS .ajax__calendar_hover .ajax__calendar_day,
.CalendarExtenderCSS .ajax__calendar_hover .ajax__calendar_month,
.CalendarExtenderCSS .ajax__calendar_hover .ajax__calendar_year {
    color: #ffffff;
    font-weight: normal;
    background-color: #b83d3d;
    border: solid 1px #328BC8;
    font-size: 7pt;
}

.CalendarExtenderCSS .ajax__calendar_active .ajax__calendar_day,
.CalendarExtenderCSS .ajax__calendar_active .ajax__calendar_month,
.CalendarExtenderCSS .ajax__calendar_active .ajax__calendar_year {
    color: #ffffff;
    font-weight: bold;
    background-color: #F7B64A; /*background-color: #F7B64A;	*/
}

.CalendarExtenderCSS .ajax__calendar_today .ajax__calendar_day {
    color: #CC0505;
    font-weight: bold;
    background-color: #F4F4F4;
}

.ajax__calendar_days {
    background-color: #F4F4F4;
}

.CalendarExtenderCSS .ajax__calendar_other,
.CalendarExtenderCSS .ajax__calendar_hover .ajax__calendar_today {
    color: gray;
    font-weight: bold;
    background-color: #F4F4F4;
}

    .CalendarExtenderCSS .ajax__calendar_other .ajax__calendar_day {
        background-color: #F4F4F4;
        border-color: #ffffff;
        color: #9a9a9a;
    }

    .CalendarExtenderCSS .ajax__calendar_other .ajax__calendar_year {
        background-color: #F4F4F4;
        border-color: #ffffff;
        color: #9a9a9a;
    }

.stylink {
    color: #CCCCCC !important;
}

    .stylink :hover {
        color: #AAAAAA !important;
    }

.rounded_corners {
    border: 1px solid #c1c1c1;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
}

    .rounded_corners td, .rounded_corners th {
        border: 1px solid #c1c1c1;
        font-family: Arial;
        font-size: 10pt;
        text-align: center;
    }

    .rounded_corners table table td {
        border-style: none;
    }

    /*CALENDAR*/