/*
	Author:	Munawar Ahmed Mohammed
	Website:	www.mobifreaks.com
	Demo URI:	http://www.mobifreaks.com/u/6
	Article URI:	http://www.mobifreaks.com/u/5
*/

	

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


article figcaption,
article figure,
article dd,
article dt,
article pre,
article p,
article h1,
article h2,
article h3,
article h4{
	padding:10px 0;
}
article p,
article ol,
article ul,
article dd,
article figcaption,
.column{
	line-height:1.1em;
}
article ol,ul{
	margin:0 0 0 30px;
	padding:10px;
}
article ol{
	list-style:decimal;
}
article ul{
	list-style:disc;
}
article pre{
	margin:0 0 0 20px;
}
article code{

	font-size:12px;
	line-height:1.4em;
}
article blockquote{
	border-left:5px solid #dddddd;
	margin:10px 0 10px 20px;
	background:#eee;
	font-style:italic;
	padding:10px;
}
article b,strong{
	padding:5px;
	background:#ffdbcd;
}
article em{
	font-style:italic;
}
article a{
	color:#d86a3f;
	text-decoration:none;
	border-bottom:1px solid;
}
article a:hover{
	color:#5d5d5d;
}
article dl{
	margin:10px 0 10px 20px;
}
article dt{
	font-weight:bold;
}
article figure{
	text-align:center;
}
article figure img{
	max-width:100%;
}
article figcaption{
	color:#8d8d8d;
}

/* seo friendly tables */
.table{
	display:table;	/* Defines a Table */
	font-size:.85em;
	border-bottom:2px solid #dddddd;
	color:#777;
	margin:10px 0;
}
.table-head{
	 display: table-header-group; /* Defines a table header group */
}
.table-head .column{ /* Column inside the table-head */
	background:#BC4F3E;
	color:#555;
	border-right:1px dotted #aaa;
	border-bottom:none;
}
.table-head .column:hover{ /* Column hover inside the table-head */
	background:#FF7200; 	color:#fff;
}
.row{
	display:table-row; /* Defines a table row */
}
.row .column:nth-child(1){ /* First column in a row */
	border-left:1px solid #eeeeee;
}
.row:last-child .column{  /* column in a last row */
	border-bottom:none;
}
.column{display:table-cell; /* Defines a table cell */
	padding:10px 20px;
	border-bottom:1px solid #eeeeee;
	border-right:1px solid #eeeeee;}
	
.column:hover{	background:#FFDA9F;}


/* Responsive table */
@media all and (max-width: 640px){
	.table,
	.row,
	.column,
	.column:before{
		display:block;	/* Converts a table, table row, table column and table column:before into a block element */
	}
	.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 #ddd; background: #ffda9f;
		border-top:2px solid #eee;
		border-bottom:2px solid #eee;
		margin:30px 0 10px 0%; color: #333;
	}
	
	
	.row:hover {background: tomato;}
	.rowt{
		border:1px solid #ddd; background: #ff6;
		border-top:2px solid #eee;
		border-bottom:2px solid #eee;
		margin:30px 0 10px 0%; color: #333;
	}
	
	.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 #eeeeee;
	}
	.column:before{ /* prints the value of data-label attribute before the column data */
		font-weight:bold;
		padding-right:40px; 
		font-size:.85em;
		content:" "attr(data-label)" ";	/* call the attribute value of data-label and adds a string // */
	}
}








