/*
	Author:	Munawar Ahmed Mohammed
	Website:	www.mobifreaks.com
	Demo URI:	http://www.mobifreaks.com/u/6
	Article URI:	http://www.mobifreaks.com/u/5
*/
	/* @import url(css/reset.css);		Resets html elements */

/* ----- Article styling ----- */

.nss_column{
	line-height:1.8em;
}


/* seo friendly tables */
.nsstable{
	display:table;	/* Defines a Table */
	color:#8d8d8d;
	margin:10px 0;
}
.nsstable-head{
	 display: table-header-group; /* Defines a table header group */
}
.nss_row{
	display:table-row; /* Defines a table row */
}
.nss_row:last-child .nss_column{  /* column in a last row */
	border-bottom:none;
}
.nss_column{
	display:table-cell; /* Defines a table cell */
	padding:10px 20px;
}
/* Responsive table */
@media all and (max-width: 640px){
	.nsstable,
	.nss_row,
	.nss_column,
	.nss_column:before{
		display:block;	/* Converts a table, table row, table column and table column:before into a block element */
	}
	.nsstable,
	.nss_row .nss_column:last-child{
		border-bottom:none;
	}
	.nsstable-head{
		position:absolute;	/* Hides table head but not using display none */
		top:-1000em;
		left:-1000em;
	}
	.nss_row{
		margin:20px 0;
	}
	.nss_row .nss_column:nth-child(1){ /* first column of the row */
		border-left:none;
	}
	.nss_row .nss_column:last-child{ /* last column of the row */
		border-right:none;
	}

	.nss_column:before{ /* prints the value of data-label attribute before the column data */
		font-weight:bold;
		padding-right:20px;
		/* content:" "attr(data-label)" //";	call the attribute value of data-label and adds a string // */
	}
}