﻿body 
{
	font-family: Calibri;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	font-size: 12pt;
}

h2
{
    color: #CC0000;
}

#logo
{
	background-color: #CC0000;
	width: 100%;
	height: 73px;
	}

.logo-image
{
	margin: 10px 10px 10px 10px;
	border: 0px;
}

a:link a:visited
{
	color: #003366;
}

.link_color
{
	color: #CC0000;
}

#menu_bg
{
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	height: 20px;
}

#menu
{
	position: relative;
	top : 3px;
	left: 15px;
	width: 100%;
}

.menu_link
{
	text-decoration: none;
	color: White;
	font-weight: bold;
}

.menu_link:hover
{
	text-decoration: underline;
}

.title
{
    font-size: 20pt;
    font-weight:bold;
    text-align: center;
    color: #CC0000;
}

.table_header
{
    background-color: #666666;
    color: White;

}

.table_alternating_row
{
    background-color: #EEEEEE;
}

.table_row
{
    background-color: White;
}

.table_pager
{
    background-color: #FFFFFF;
}

#Content1
{
    text-align: left;
}

.table_main
{
    background: White;
}

.table_main tr td
{
    padding: 0px 0px 0px 0px;
}

.the_menu
{
    color: #003366;
    font-weight: bold;
    font-size: 9pt;
}

.table_form
{
    /*background-color: #EEEEEE;*/
    border-collapse: collapse;
    border: solid 1px #CCCCCC;
    
}

.cell_form
{
    border-style: none;
    /*background-color: #EEEEEE;*/
    border-top: solid 0px #CCCCCC;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
   
}

.cell_form_alternating
{
    border-style: none;
    /*background-color: #EEEEEE;*/
    border-top: solid 0px #CCCCCC;
    padding: 0px 0px 10px 0px;
   
}

.cell_view
{
    border-style: none;
    background-color: #EEEEEE;
    border-top: solid 1px #CCCCCC;
    border-right: solid 1px #CCCCCC;
    padding: 5px;
}

.grid_view_pager td
{
   padding-left: 4px;      
   padding-right: 4px;     
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black;  If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 700px;
    background-color: #333333;
    color: #fff;
    text-align: left;
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
 
    /* Position the tooltip text - Bottom Tooltip */
    top: 100%;
    left: 50%; 
    margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
    position: absolute;
    z-index: 1;

    /* Fade In Tooltip*/
    opacity: 0;
    transition: opacity 1s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;

    /* Fade In Tooltip*/
    opacity: 1;
}