/*!
* jquery.fixedHeaderTable. The jQuery fixedHeaderTable plugin
*
* Copyright (c) 2011 Mark Malek
* http://fixedheadertable.com
*
* Licensed under MIT
* http://www.opensource.org/licenses/mit-license.php
* 
* http://docs.jquery.com/Plugins/Authoring
* jQuery authoring guidelines
*
* Launch  : October 2009
* Version : 1.3
* Released: May 9th, 2011
*
* 
* all CSS sizing (width,height) is done in pixels (px)
*/

/* @group Reset */

.fht-table,
.fht-table thead,
.fht-table tfoot,
.fht-table tbody,
.fht-table tr,
.fht-table th,
.fht-table td {
    /* position */
    margin: 0;
    
    /* size */
    padding: 0;

    /* text */
    font-size: 100%;
    font: inherit;
    vertical-align: top;
    }

.fht-table {
    /* appearance */
    border-collapse: collapse;
    border-spacing: 0;
    }

/* @end */

/* @group Content */

.fht-table-wrapper,
.fht-table-wrapper .fht-thead,
.fht-table-wrapper .fht-tfoot,
.fht-table-wrapper .fht-fixed-column .fht-tbody,
.fht-table-wrapper .fht-fixed-body .fht-tbody,
.fht-table-wrapper .fht-tbody {
    /* appearance */
    overflow: hidden;
    
    /* position */
    position: relative;
    }

    .fht-table-wrapper .fht-fixed-body .fht-tbody,
    .fht-table-wrapper .fht-tbody {
        /* appearance */
        overflow: auto;
        }

        .fht-table-wrapper .fht-table .fht-cell {
            /* appearance */
            overflow: hidden;
            
            /* size */
            height: 1px;
            }
    
    .fht-table-wrapper .fht-fixed-column,
    .fht-table-wrapper .fht-fixed-body {
        /* position */
        top: 0;
        left: 0;
        position: absolute;
        }
        
    .fht-table-wrapper .fht-fixed-column {
        /* position */
        z-index: 1;
        }


.divider {
    margin-top: 40px;
}

.button {
    /* appearance */
    background-color: #3f3f3f;
    background-image: -moz-linear-gradient(
            top,
            rgba(255,255,255,0.0) 0%,
            rgba(255,255,255,0.1) 50%);

    background-image: -webkit-gradient(
            linear, left top, left bottom,
            color-stop(100%,rgba(255,255,255,0.0)),
            color-stop(50%,rgba(255,255,255,0.1)));
    border: 1px solid #000000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 0 rgba(139,139,139,1) inset, 0 1px 0 rgba(88,88,88,1);
    -moz-box-shadow: 0 1px 0 rgba(139,139,139,1) inset, 0 1px 0 rgba(88,88,88,1);
    box-shadow: 0 1px 0 rgba(139,139,139,1) inset, 0 1px 0 rgba(88,88,88,1);
    cursor: pointer;

    /* position */
    display: inline-block;
    margin: 10px;

    /* size */
    padding: 0 10px;

    /* text */
    color: #eaeaea;
    font-size: 12px;
    line-height: 30px;
    text-decoration: none;
    white-space: nowrap;
}
.button:hover {
    /* appearance */
    background-color: #6495ed;
    -webkit-box-shadow: 0 0 3px #6495ed;
    -moz-box-shadow: 0 0 3px #6495ed;
    box-shadow: 0 0 3px #6495ed;
}

.myTableWrapper {
    width: 800px;
    height: 500px;
}

.height250 {
    height: 250px;
    overflow-x: auto;
    overflow-y: auto;
}

.height400 {
    height: 400px;
    overflow-x: auto;
    overflow-y: auto;
}

.fixedtable td, .fixedtable th {
    /* appearance */
    border: 1px solid #778899;

    /* size */
    padding: 1px;
}

.fixedtable {
    /* text */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.fixedtable tbody tr td {
    /* appearance */
    /*
        background-color: #eef2f9;
           background-image: -moz-linear-gradient(
            top,
            rgba(255,255,255,0.4) 0%,
            rgba(255,255,255,0.2) 50%,
            rgba(255,255,255,0.1) 51%,
            rgba(255,255,255,0.0) 100%);

        background-image: -webkit-gradient(
            linear, left top, left bottom,
            color-stop(0%,rgba(255,255,255,0.4)),
            color-stop(50%,rgba(255,255,255,0.2)),
            color-stop(51%,rgba(255,255,255,0.1)),
            color-stop(100%,rgba(255,255,255,0.0)));  */

    /* text */
    color: #262c31;
    font-size: 11px;
}

.fixedtable tbody tr.odd td {
    /* appearance */

    /*   background-color: #d6e0ef;
     background-image: -moz-linear-gradient(
           top,
           rgba(255,255,255,0.4) 0%,
           rgba(255,255,255,0.2) 50%,
           rgba(255,255,255,0.1) 51%,
           rgba(255,255,255,0.0) 100%);

       background-image: -webkit-gradient(
           linear, left top, left bottom,
           color-stop(0%,rgba(255,255,255,0.4)),
           color-stop(50%,rgba(255,255,255,0.2)),
           color-stop(51%,rgba(255,255,255,0.1)),
           color-stop(100%,rgba(255,255,255,0.0)));  */
}

table.table  tr.trfooter td,
.fixedtable thead tr th,
.fixedtable thead tr td,
.fixedtable tfoot tr th,
.fixedtable tfoot tr td {
    /* appearance */
    background-color: #8ca9cf;
    background-image: -moz-linear-gradient(
            top,
            rgba(255,255,255,0.4) 0%,
            rgba(255,255,255,0.2) 50%,
            rgba(255,255,255,0.1) 51%,
            rgba(255,255,255,0.0) 100%);

    background-image: -webkit-gradient(
            linear, left top, left bottom,
            color-stop(0%,rgba(255,255,255,0.4)),
            color-stop(50%,rgba(255,255,255,0.2)),
            color-stop(51%,rgba(255,255,255,0.1)),
            color-stop(100%,rgba(255,255,255,0.0)));

    /* text */
    color: #121517;
    font-size: 12px;
    font-weight: bold;
    /*text-shadow: 0 1px 1px #e8ebee;  */
}
.fixedtable thead tr th a  {
    color: white;
    /*text-shadow: 0 1px 1px #e8ebee;       */
}

table.table  tr.trheader th {
    color: brown;
    /*background-color: #eeeeee;*/
    border-top:   1px solid blue;
}
table.table  tr.trfooter td {
    font-size: 0px;
}


.fixedtable tbody tr td a  {
    color :maroon;

}


.fixedtable tbody tr.i-edit td     {
    border-color: aqua;

}
.fixedtable tbody tr.i-edit td     {
    border-color: aqua;

}
.fixedtable input.datepicker {
    width:39pt;
    padding:0px;
    font-size:7pt;
}

div.i-edit    {
    /*     margin:0px;
         padding:2px;
         padding-right:1px;
         border-top:  2px solid gray;
         border-left: 2px solid gray;
         border-bottom:  1px solid lightgray;
         border-right:  1px solid lightgray;
         */
    background-color: #FFFFFF ;
}

.fixedtable  tr.i-find td      {
    background-color: #ddd ;
}



/* @end */