/*
.ptable Style - This is what you want
------------------------------------------------------------------ */
.ptable a:link {
	color: #666;
	font-weight: bold;
	text-decoration:none;
}
.ptable a:visited {
	color: #999999;
	font-weight:bold;
	text-decoration:none;
}
.ptable a:active,
.ptable a:hover {
	color: #bd5a35;
	text-decoration:underline;
}
.ptable {
	color:#333;
	font-size:13px;
	background:#eaebec;
	border:#ccc 1px solid;
	width:100%;
	margin: 0px auto;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;

}
.ptable th {
	padding:5px 10px;
	background: #aaa;
	color: #111;
	/*
	background: -webkit-gradient(linear, left top, left bottom, from(#bababa), to(#b1b1b1));
	background: -moz-linear-gradient(top,  #bababa,  #b1b1b1);
	*/
}
.ptable th:first-child{
	text-align: left;
	padding-left:25px;
	
}
.ptable tr:first-child th:first-child{
	-moz-border-radius-topleft:3px;
	-webkit-border-top-left-radius:3px;
	border-top-left-radius:3px;
}
.ptable tr:first-child th:last-child{
	-moz-border-radius-topright:3px;
	-webkit-border-top-right-radius:3px;
	border-top-right-radius:3px;
}
.ptable tr{
	text-align: center;
	padding-left:20px;
}

.ptable tr td{
	border-right:1px solid #ccc;
	border-bottom:1px solid #ccc;
	padding:3px;
}

.ptable tr:nth-child(even) td{
	background: #f6f6f6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
	background: -moz-linear-gradient(top,  #f8f8f8,  #f6f6f6);
}


.ptable tr td:last-child{
	border-right:none;
}

.ptable tr.even td{
	background: #f6f6f6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
	background: -moz-linear-gradient(top,  #f8f8f8,  #f6f6f6);
}
.ptable tr:last-child td{
	border-bottom:none;
}
.ptable tr:last-child td:first-child{
	-moz-border-radius-bottomleft:3px;
	-webkit-border-bottom-left-radius:3px;
	border-bottom-left-radius:3px;
}
.ptable tr:last-child td:last-child{
	-moz-border-radius-bottomright:3px;
	-webkit-border-bottom-right-radius:3px;
	border-bottom-right-radius:3px;
}
.ptable tr:hover td{
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
	background: -moz-linear-gradient(top,  #f2f2f2,  #f0f0f0);	
}

.rright{
	text-align: right;
}

.rcenter{
	text-align: center;
}

.rleft{
	text-align: left;
}
