@charset "utf-8";
/* CSS Document */
input.text {
	font-size: 12px;
	font-family:"Courier New", Courier, monospace;
	border:none;
}

select.text {
	font-size: 12px;
	font-family:"Courier New", Courier, monospace;
	border:none;
}

table {
    font-family:Verdana, Arial, Helvetica, sans-serif;
    color: #333;
    border: solid 1px #66f;
    padding: 3px;
    border-spacing: 1px;
    margin-bottom: 2px;
    -moz-border-radius-topright: 5px;
	border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
	border-top-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
	border-bottom-right-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-left-radius: 5px;
}

table th {
    padding-top: 2px;
    padding-bottom: 2px;
    border: hidden 1px;
    text-shadow: 1px 1px 1px #fff;
    background: -webkit-linear-gradient(#e6e6ff, #d0d0ff);
    background: -o-linear-gradient(#e6e6ff, #d0d0ff);
    background: linear-gradient(#e6e6ff, #d0d0ff);
}
 
table tr {
    line-height: 20px;
    background: -webkit-linear-gradient(#fcfcfc, #f9f9f9);
    background: -o-linear-gradient(#fcfcfc, #f9f9f9);
    background: linear-gradient(#fcfcfc, #f9f9f9);
}

table tr:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#fed), to(#fee));
    background: -moz-linear-gradient(top, #fed, #fee);
    background: linear-gradient(#fed, #fee);
	border-bottom: solid 1px #F30;    
    border-top: solid 1px #F30;
}

table tr.even {
    line-height: 20px;
    background: -webkit-linear-gradient(#f3f3ff, #f0f0ff);
    background: -o-linear-gradient(#f3f3ff, #f0f0ff);
    background: linear-gradient(#f3f3ff, #f0f0ff);
}

table tr.even:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#fed), to(#fee));
    background: -moz-linear-gradient(top, #fed, #fee);
    background: linear-gradient(#fde, #fee);
	border-bottom: solid 1px #F30;    
    border-top: solid 1px #F30;
}

table td {
    line-height: 20px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px;
}

.error {
    line-height: 20px;
    border: solid 1px #f00;
    background:#fa0;
    color: #500;
}