/* [STC] le tabelle sono centrate di default: è centrato sia l'elemento tabella all'interno del
 * suo contenitore, sia il testo all'interno dei singoli td. sarebbe bello avere la possibilità
 * di specificare il valore di allineamento PER LE SINGOLE COLONNE (es, se io voglio una colonna
 * allineata a destra o sinistra) direttamente dall'oggetto table. grazie. */
table.defaultTable {
	margin: auto;
	text-align: center;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-spacing: 0px;
	empty-cells: show; /* figurati se IE lo capiva. */
}

table.defaultTable th, table.defaultTable td {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

table.defaultTable th {
	background-color: #048;
	padding: 4px;
	color: #fff;
	font-variant: small-caps;
}

table.defaultTable th a {
	color: #fff;
	background: url('/imgs/sublink_white.gif') repeat-x bottom;
}

table.defaultTable tr {

}

table.defaultTable .even {
	background-color: #fff;
}

table.defaultTable .odd {
	background-color: #ededed;
}

table.defaultTable td {
	padding: 3px;
}

/* questa classe contiene la riga con la paginazione */
table.defaultTable table.bottom {
	text-transform: lowercase;
	padding: 0px;
	border-spacing: 0px;
	border-collapse: collapse;
	border: 0px;
	width: 100%;
	font-size: 95%;
}

table.defaultTable table.bottom td {
	border: 0px;
	background-color: #aaa;
	font-weight: bold;
}

table.defaultTable table.bottom td.bottomLeft {
	width: 20%;
	text-align: left;
}

table.defaultTable table.bottom td.bottomCenter {
	width: 60%;
	text-align: center;
}

table.defaultTable table.bottom td.bottomRight {
	width: 20%;
	text-align: right;
}

table.defaultTable table.bottom a {
	text-decoration:none;
	color:#0033FF;
	cursor:pointer;
}

/**PAGINATORE**/
table.paging{
	padding:3px;
	font-size:7pt;
	color:#777;
	font-weight:bold;
	background: none;
	margin-top: 8px;
	text-align: center;
	width:100%;
}

table.paging a{
	padding: 1px 3px 1px 2px;
	margin:0px 1px 0px 1px;
	border:1px solid #5f74bb;
	background:#FFFFFF;
	color:#5f74bb;
	text-decoration:none;
}


table.paging a:hover{
	background:#5f74bb;
	color:#FFFFFF;
	text-decoration:none;
}

table.paging td {
	font-size: 7pt;
}

td.bottomLeft {
	width: 2%;
	text-align: left;
}

td.bottomCenter {
	width: 95%;
	text-align: center;
}

td.bottomRight {
	width: 2%;
	text-align: right;
}