/* 
    Document   : evo.zend.table
    Created on : 14 Des 11, 16:43:33
    Author     : eVo
    Description:
        CSS style for zend table
*/

.tableRoundedCorner
{
	font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
	font-size: 12px;
	margin: 45px;
	text-align: left;
	border-collapse: collapse;
}
.tableRoundedCorner thead, tfoot{
        text-align: center;
}
table.tableRoundedCorner tr:first-child th:first-child {
	border-top-left-radius: 10px;
}
table.tableRoundedCorner tr:first-child th:last-child {
	border-top-right-radius: 10px;
}
table.tableRoundedCorner tfoot tr:last-child td:first-child {
	border-bottom-left-radius: 10px;
}
table.tableRoundedCorner tfoot tr:last-child td:last-child {
	border-bottom-right-radius: 10px;
}
.tableRoundedCorner thead th.rounded-head-left
{
	background: #b9c9fe url('images/left.png') left -1px no-repeat;
}
.tableRoundedCorner thead th.rounded-head-right
{
	background: #b9c9fe url('images/right.png') right -1px no-repeat;
}
.tableRoundedCorner th
{
	padding: 8px;
	font-weight: normal;
	font-size: 13px;
	color: #039;
	background: #b9c9fe;
        text-align: center;
}

.tableRoundedCorner td
{
	padding: 0px;
	background: #e8edff;
	border-top: 1px solid #fff;
	color: #669;
}
.tableRoundedCorner tfoot td.rounded-foot-left
{
	background: #e8edff url('images/botleft.png') left bottom no-repeat;
}
.tableRoundedCorner tfoot td.rounded-foot-right
{
	background: #e8edff url('images/botright.png') right bottom no-repeat;
}
.tableRoundedCorner tbody tr:hover td
{
	background: #d0dafd;
}
table.tableRoundedCorner tbody tr td a {
	line-height: 1.5em;
}
