
/* Tables */
table {
    border-spacing: 0;
    width: 100%;    
}

table.borderedHome {
	width: 100%; 
	margin-top: 3%;
	margin-bottom: 3%;	
}

.bordered, .borderedHome {
    border: solid #99C7FF 1px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;    
}

.bordered td, .bordered th, .borderedHome td, .borderedHome th {
    border-left: 1px solid #99C7FF;
    border-top: 1px solid #99C7FF;
    padding: 10px;
    text-align: left; 
	vertical-align:top;
	max-width:230px;	
}

.tableTitleCell {
	-ms-word-break: break-all;
	-ms-word-wrap: break-all;
	-webkit-word-break: break-word;
	-webkit-word-wrap: break-word;
	word-break: break-word;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

.bordered th, .borderedHome th {
    background-color: #99C7FF;
    border-top: none;
	color: white;
	text-align: center;	
	cursor: auto;
}

.bordered td:first-child, .bordered th:first-child, .borderedHome td:first-child, .borderedHome th:first-child {
    border-left: none;	
}

.bordered td:first-child, .borderedHome td:first-child {
	font-weight: bold;
	font-size: 12px;
}

.bordered th:first-child, .borderedHome th:first-child {
    -moz-border-radius: 4px 0 0 0;
    -webkit-border-radius: 4px 0 0 0;
    border-radius: 4px 0 0 0;
}

.bordered th:last-child, .borderedHome th:last-child {
    -moz-border-radius: 0 4px 0 0;
    -webkit-border-radius: 0 4px 0 0;
    border-radius: 0 4px 0 0;
}

.bordered th:only-child, .borderedHome th:only-child  {
    -moz-border-radius: 6px 6px 0 0;
    -webkit-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
}

.bordered tr:last-child td:first-child, .borderedHome tr:last-child td:first-child {
    -moz-border-radius: 0 0 0 6px;
    -webkit-border-radius: 0 0 0 6px;
    border-radius: 0 0 0 6px;
}

.bordered tr:last-child td:last-child, .borderedHome tr:last-child td:last-child{
    -moz-border-radius: 0 0 6px 0;
    -webkit-border-radius: 0 0 6px 0;
    border-radius: 0 0 6px 0;
}

.tableBigLetters {
	font-size:1em;
	text-align: center !important;
	color: #336DB2;
}

table.bordered tr:nth-child(odd) {
	background: #f1f3f5;
}

table.bordered tr:nth-child(even) {
	background: #fff;
}

table.bordered tr:hover {
	background: #ddd;
	color:white;
	cursor: pointer;
}

.tableImage img {
	max-width: 50%;
	-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
	text-align:center;
}

td.tableImage {
	text-align:center;
}

@media (max-width: 600px) {

	.tableImage img {
		width: 100%;	
	}
	
	table.bordered th, table.bordered td, table.bordered tr {
		padding: 8px;		
	}
	
	.bordered td, .bordered th {
	   font-size:14px;
	}
	
	.tableBigLetters {
		font-size:0.8em;		
	}
	
	.borderedHome th {
		font-size:0.8em;		
	}
}

@media (max-width: 440px) {

	.tableImage img {
		width: 100%;	
	}
	
	table.bordered th, table.bordered td, table.bordered tr {
		padding: 5px;		
	}
	
	.bordered td, .bordered th {
	   font-size:12px;
	}
	
	.tableBigLetters {
		font-size:0.6em;		
	}
	
	.borderedHome th {
		font-size:0.6em;		
	}
}


