﻿/* ezSS.css */

input
{
    border           : none;
    width            : 80px;
    font-size        : large;
    padding          : 2px;
    background-color : transparent;
}

input:hover
{
    background-color : lightBlue;
}

input:focus
{
    background-color : lightGreen;
}

input:not(:focus)
{
    text-align : right;
}

table
{
    border-collapse : collapse;
}

table.errorBk
{
	background-color : red;
}

table.noErrorBk
{
	
	background-color : white;
}

td
{
	border  : thin solid gray;
    padding : 0px;
}

tr:first-child td, td:first-child
{
    background-color : yellow;
    padding          : 1px 3px;
    font-weight      : bold;
    font-size        : large;
    text-align       : center;
} 
