﻿h1, h2, h3, h4
{
    margin: 0;
    padding: 0;
}

body
{
    font-family: Calibri;
    font-size: 14px;
    color: #000;
    padding: 0px;
    margin: 0px;
   
   
   
}

.clear
{
    clear: both;
}








.fset
{
    border: 0px solid #444;
    padding: 5px;
    margin: 0px 0px 20px 0px;
    width: 96%;
    min-width: 800px;
    position: relative;
    left: 1.5%;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 1px 4px 0 #000;
    box-shadow: 0 1px 4px 0 #000;
    /*-webkit-border-radius: 0 10px 0 10px;*/
    /*border-radius: 0 10px 0 10px;*/
}

legend
{
    /*border: 1px solid #666;*/
    padding: 5px;
    font-weight: bold;
    color: #fff;
    
    
    text-shadow: 1px 1px 2px #000;
    -webkit-box-shadow: inset 0 0 3px 1px #000;
    box-shadow: inset 0 0 3px 1px #000;
    background-color: #FA6210 !important;
}

table
{
    /* min-width: 800px;*/
}

td
{
    padding-bottom: 3px;
}

.sh
{
    -moz-box-shadow: 1px 1px 1px #ccc;
    -webkit-box-shadow: 1px 1px 1px #ccc;
    box-shadow: 1px 1px 1px #ccc;
}

.err
{
    background-color: #FF3300;
    border: 1px solid #800000;
    color: #FFFFFF !important;
    padding: 3px;
    padding-right: 3px;
    text-align: left;
    font-family: verdana;
    font-size: 11px;
    width: auto;
    margin-left: 3px;
}

.rd
{
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.subBtn
{
    text-align: center;
    border: 0px solid #000000;
    padding: 8px;
    margin: 5px;
    position: relative;
    width: 200px;
    color: #fff;
    background: #8fc400; /* Old browsers */
    background: -moz-linear-gradient(45deg, #8fc400 0%, #cbdd00 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#8fc400), color-stop(100%,#cbdd00)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(45deg, #8fc400 0%,#cbdd00 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(45deg, #8fc400 0%,#cbdd00 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(45deg, #8fc400 0%,#cbdd00 100%); /* IE10+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8fc400', endColorstr='#cbdd00',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}

    .subBtn:hover
    {
        background: #49c0f0; /* Old browsers */
        background: -moz-linear-gradient(45deg, #49c0f0 0%, #2cafe3 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#49c0f0), color-stop(100%,#2cafe3)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(45deg, #49c0f0 0%,#2cafe3 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(45deg, #49c0f0 0%,#2cafe3 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(45deg, #49c0f0 0%,#2cafe3 100%); /* IE10+ */
        background: linear-gradient(45deg, #49c0f0 0%,#2cafe3 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#49c0f0', endColorstr='#2cafe3',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    }

input[type='text'], input[type='password'], textarea, select
{
    border: 1px solid #ccc;
    font-family: verdana;
    font-size: 12px;
    padding: 5px;
}

    input[type='text']:focus, input[type='password']:focus, textarea:focus, select:focus
    {
        -webkit-box-shadow: 0 0 5px 0 #2D9CCC;
        box-shadow: 0 0 5px 0 #2D9CCC;
    }

.er
{
    background-color: #FFECEC;
    border: 1px solid #FF3300;
}
.frm input[type='text'], textarea
{
    text-transform:uppercase;
}
.frm .nocaps
{
    text-transform: lowercase !important;
}

#dialog-overlay
{
    /* 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: absolute;
    top: 0;
    left: 0;
    z-index: 3000; /* hide it by default */
    display: none;
}

#dialog-box
{
    /* 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;
    background: #eee; /* styling of the dialog box, i have a fixed dimension for this demo */
    width: 328px; /* make sure it has the highest z-index */
    position: absolute;
    z-index: 5000; /* hide it by default */
    display: none;
}

    #dialog-box .dialog-content
    {
        /* style the content */
        text-align: left;
        padding: 10px;
        margin: 13px;
        color: #666;
        font-family: arial;
        font-size: 11px;
    }

a.button
{
    /* styles for button */
    margin: 10px auto 0 auto;
    text-align: center;
    background-color: #e33100;
    display: block;
    width: 50px;
    padding: 5px 10px 6px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    line-height: 1; /* css3 implementation :) */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -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: 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 */
#dialog-box .dialog-content p
{
    font-weight: 700;
    margin: 0;
}

#dialog-box .dialog-content ul
{
    margin: 10px 0 10px 20px;
    padding: 0;
    height: 50px;
}

a.btnLink
{
    text-align: center;
    background-color: #0099FF;
    border: 1px solid #000000;
    padding: 5px;
    margin: 5px;
    width: auto;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
}

    a.btnLink:hover
    {
        text-align: center;
        background-color: #FF0066;
        border: 1px solid #000000;
        padding: 5px;
        margin: 5px;
        width: auto;
        text-decoration: none;
        color: #FFFFFF;
    }

a.btnLink1
{
    text-align: center;
    background-color: #FF0000;
    border: 1px solid #000000;
    padding: 5px;
    margin: 5px;
    width: auto;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
}

    a.btnLink1:hover
    {
        text-align: center;
        background-color: #FF0066;
        border: 1px solid #000000;
        padding: 5px;
        margin: 5px;
        width: auto;
        text-decoration: none;
        color: #FFFFFF;
    }

a.btnLink2
{
    text-align: center;
    border: 0px solid #000000;
    padding: 2px 5px;
    margin-left: 5px;
    width: auto;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
    background: #23538a; /* Old browsers */
    background: -moz-linear-gradient(45deg, #23538a 0%, #a7cfdf 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#23538a), color-stop(100%,#a7cfdf)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(45deg, #23538a 0%,#a7cfdf 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(45deg, #23538a 0%,#a7cfdf 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(45deg, #23538a 0%,#a7cfdf 100%); /* IE10+ */
    background: linear-gradient(45deg, #23538a 0%,#a7cfdf 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#23538a', endColorstr='#a7cfdf',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    -webkit-box-shadow: inset 0 0 3px 1px #000;
    box-shadow: inset 0 0 3px 1px #000;
    text-shadow: 1px 1px 2px #000;
}

    a.btnLink2:hover
    {
        background: #a7cfdf; /* Old browsers */
        background: -moz-linear-gradient(45deg, #a7cfdf 0%, #23538a 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#a7cfdf), color-stop(100%,#23538a)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(45deg, #a7cfdf 0%,#23538a 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(45deg, #a7cfdf 0%,#23538a 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(45deg, #a7cfdf 0%,#23538a 100%); /* IE10+ */
        background: linear-gradient(45deg, #a7cfdf 0%,#23538a 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a7cfdf', endColorstr='#23538a',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

       
    }

.printblock
{
    display: none;
}
.onprint{display:none;}
@media print
{
    
    .noprint
    {
        display: none;
    }

    #prForm
    {
        font-family: arial, Helvetica, sans-serif;
        font-size: 10px;
        color: #000000;
        width: 650px;
    }

    .printblock
    {
        text-align: left;
        page-break-before: always;
        font-family: arial, Helvetica, sans-serif;
        font-size: 13px;
        display: block;
    }
    .onprint{display:block;}
    .dec
    {
        font-size: 10px;
    }
}

.loginform
{
    border: 1px solid #666666;
    padding: 4px;
    min-width: 270px;
    background-color: #FFFFFF;
    font-family: verdana;
    font-size: 12px;
    text-align: left;
    float: left;
    position: fixed;
    top: 20%;
    left: 40%;
}

.rb
{
    min-width: 200px !important;
}

@font-face
{
    font-family: 'KrutiDev010';
    src: url('../font/k010-KrutiDev010_Webfont.eot');
    src: url('../font/k010-KrutiDev010_Webfont.eot?#iefix') format('embedded-opentype'), url('../font/k010-KrutiDev010_Webfont.woff') format('woff'), url('../font/k010-KrutiDev010_Webfont.ttf') format('truetype'), url('../font/k010-KrutiDev010_Webfont.svg#KrutiDev010Regular') format('svg');
    font-weight: bold;
    font-style: normal;
}

.hindi
{
    font-family: 'KrutiDev010' !important;
    font-size: 14px !important;
}

.MyCalendar .ajax__calendar_container
{
    border: 1px solid #646464;
    background-color: lemonchiffon;
    color: #0066FF;
    background-image: url( 'images/header.png' );
    background-repeat: repeat;
}

.MyCalendar .ajax__calendar_other .ajax__calendar_day,
.MyCalendar .ajax__calendar_other .ajax__calendar_year
{
    color: black;
}

.MyCalendar .ajax__calendar_hover .ajax__calendar_day,
.MyCalendar .ajax__calendar_hover .ajax__calendar_month,
.MyCalendar .ajax__calendar_hover .ajax__calendar_year
{
    color: black;
}

.MyCalendar .ajax__calendar_active .ajax__calendar_day,
.MyCalendar .ajax__calendar_active .ajax__calendar_month,
.MyCalendar .ajax__calendar_active .ajax__calendar_year
{
    color: black;
    font-weight: bold;
}

.tbl1
{
    background-color: #ffc;
    border: 1px solid #000000;
    text-align: left;
    color: #000000;
    width: 620px;
    margin-bottom: 5px;
}

    .tbl1 td
    {
        padding: 5px;
        width: 200px;
    }

.tab1
{
    border-collapse: collapse;
    font-family: Arial;
    font-size: 13px;
}

    .tab1 td
    {
        padding: 2px;
        text-align: left;
    }

.resTable
{
    background-color: #FFFFFF;
    border: 1px solid #000000;
    padding: 0px;
    margin: 5px;
    width: 70%;
}





.resError
{
    background-color: #CC0000;
    color: #FFFF99;
    font-weight: bold;
    text-align: center;
    border: 2px solid #000000;
    padding: 10px;
    margin: 10px;
    width: auto;
}

.resSuccess
{
    background-color: green;
    color: #FFFF99;
    font-weight: bold;
    text-align: center;
    border: 2px solid #000000;
    padding: 10px;
    margin: 10px;
    width: auto;
}



.content
{
    margin: 0 auto;
    width: 80%;
}

    .content input[type='text']
    {
        width: 80%;
    }

    .content table
    {
        margin: 0 auto;
        width: 80%;
    }

    .content td
    {
        padding: 5px;
    }

/********************* New Design ****************************/
.wrapper
{
    width: 100%;
    max-width: 100%;
    min-width: 1000px;
    margin: 0;
    padding: 0;
}


.containerBlock
{
    width: 95%;
    margin: 0 auto;    
}

.tsh1
{
    text-shadow: 1px 1px 2px #000;
    font-size: 26px;
    color: #002D88;
}

.tsh
{
    text-shadow: 1px 1px 2px #000;
   
}

.w_tbl tr td
{
    margin: 3px;
    border: 1px solid #CCCCCC;
    border-collapse: collapse;
}
/********************* New Design ****************************/
