/* 
    Document   : _style
    Created on : 1 Mar 18, 15:45:19
    Author     : Fransesco Palang Ama
    Description:
        Purpose of the stylesheet follows.
*/

body {
	font-family: "Arial", serif;
	line-height: 1.25;
	padding: 0px 0px;
	background-color: none;
}

* html .threepxfix{ 
	margin-left: 3px; 
}

.header{
	text-align: center;
	border-bottom: 1px solid #ddd;
}

table {
	border: 1px solid #CECCCA;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	width: 100%;
}

table caption {
	background: #ab230d;
	font-size: 1.5em;
	margin: -1em 0 .75em;
}

table tr {
	border: 1px solid #CECCCA;
	padding: .35em;
}

table th{
	font: bold 11px Arial;
	font-weight: bold; 
	padding: 5px 5px 5px 5px;
	text-align: center;
	color: #EEEEEE;
	border-right: 1px solid #CECCCA;
	border-bottom: 1px solid #CECCCA;
	border-top: 1px solid #CECCCA;
}

table td {
	font: bold 11px Arial;
	padding: 6px 6px 6px 6px;
	text-align: left;
	color: black;
	border-right: 0.1em solid #CECCCA; 
	border-bottom: 0.1em solid #CECCCA; 
	border-left: 0.1em solid #CECCCA; 
	border-top: 0.1em solid #CECCCA;
}

table th {
	letter-spacing: 2px;
	text-transform: uppercase;
	background: #FFA500;
	color: black;
}

table td img {
	text-align: center;
}

@media screen and (max-width: 600px) {
	table {
		border: 0;
	}

	table caption {
		font-size: 1.3em;
	}

	table thead {
		display: none;
	}

	table tr {
		border-bottom: 3px solid green;
		display: block;
		margin-bottom: .725em;
	}

	table td {
		border-bottom: 1px solid green;
		display: block;
		font-size: .8em;
		text-align: right;
	}

	table td:before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
		text-transform: uppercase;
	}

	table td:last-child {
		border-bottom: 0;
	}
}