body{
	font-family:tahoma;
	color:#5d5d5d;
	text-align:justify;

}

/* ----- Article styling ----- */

article p,
article ol,
article ul,
article dd,
article figcaption,
.column{
	line-height:21px;
}


article figure img{
	max-width:100%;
}


/* seo friendly tables */
.table{
	color: #6B6B6B;
    display: table !important;
    font-family: Tahoma;
    font-size: 14px;
    margin-bottom: 10px;
	width: 100%;
}
.table-head{
	 display: table-header-group !important; /* Defines a table header group */
}
.table-head .column{ /* Column inside the table-head */
	background: none repeat scroll 0 0 #4F4F4F;
    border-bottom: medium none;
    border-right: 1px solid #757575;
    color: #fff;
	text-align:center;
	width: 20%;
}
.row{
	display: table-row !important;
    font-size: 13px;
/*    text-align: center;
*/}
.row .column:nth-child(1){ /* First column in a row */
	border-left:1px solid #CCCCCC;
}
.row:last-child .column{  /* column in a last row */
/*	border-left: 1px solid #2C9456;
*/
}
.table-head .column:hover{
background:#222 none repeat scroll 0 0;
}
.column{
	border-bottom: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    display: table-cell !important;
    padding: 6px 3px;
	text-align:left;
}

/* Responsive table */
@media all and (max-width: 768px){
	.table,
	.row,
	.column,
	.column:before{
		display:block !important;	/* Converts a table, table row, table column and table column:before into a block element */
		text-align: center;
	}
	.table,
	.row .column:last-child{
		border-bottom:none;
	}
	.table-head{
		position:absolute;	/* Hides table head but not using display none */
		top:-1000em;
		left:-1000em;
	}
	.row{
		border:1px solid #CCCCCC;
		border-top:2px solid #CCCCCC;
		border-bottom:2px solid #CCCCCC;
		margin:20px 0 -8px;
	}
	.row .column:nth-child(1){ /* first column of the row */
		border-left:none;
	}
	.row .column:last-child{ /* last column of the row */
		border-right:none;
	}
	.row:last-child .column,
	.column{ /* Column in the last row and column */
		border-bottom:1px solid #CCCCCC;
	}
	.column:before{ /* prints the value of data-label attribute before the column data */
		font-weight:bold;
/*		padding-right:20px;
*/		font-size:12px;
		content:" "attr(data-label)"";	/* call the attribute value of data-label and adds a string // */
		text-align: center;
	}
}