





/*
	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{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:16px;
	padding:30px;
}
article h1,h2,h3,h4{
	font-family: 'Josefin Slab', serif;
	font-weight:normal;
	color:#ff4800;
}
article h1{
	font-size:2.6em;
}
article h2{
	font-size:2em;
}
article h3{
	font-size:1.6em;
}
article h4{
	font-size:1.2em;
}
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:1em;
}
article ol,ul{
	margin:0 0 0 30px;

}
article ol{
	list-style:decimal;
}
article ul{
	list-style:disc;
}
article pre{
	margin:0 0 0 20px;
}
article code{
	font-family:"Courier New", Courier, monospace;
	font-size:12px;
	line-height:1.6em;
}
article blockquote{
	border-left:5px solid #dddddd;
	margin:10px 0 10px 20px;
	background:#f9f9f9;
	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-family: Segoe;
	font-size: 15px;
	margin:10px 0;
	max-width:950px;
	margin-left:25px;
	border-bottom:1px solid #eeeeee;
}
.description-inner {
	max-width:700px;
	margin-bottom: 25px;
	margin-top: 5px;
}
.table-head{
	 display: table-header-group; /* Defines a table header group */
}
.table-head .column{ /* Column inside the table-head */
	background: #4897cc;
	color: #fff;
	/* border-right: 1px solid #5d5d5d; */
	border-bottom: none;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	text-align: center;
	font-weight: normal;
	padding-bottom: 8px;
}
.table-head .column2 {
	background: #f9f9f9;
	color: #333333;
	border-bottom: 1px solid #eeeeee;
	border-top: 1px solid #eeeeee;
	border-left: 1px solid #eeeeee;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	text-align: center;
}
.table-head .column:hover{ /* Column hover inside the table-head */
	background:#4897cc;
}
.table-head .column2:hover{ /* Column hover inside the table-head */
	background:#f9f9f9;
}
.row{
	display:table-row; /* Defines a table row */
	
	/* text-align: center; */
}
.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 */
	border-bottom:1px solid #eeeeee;
	border-right:1px solid #eeeeee;
	padding-left: 15px;
	padding-right: 12px;
	/* padding-bottom: 10px; */
	padding-top: 10px;
	font-weight: bold;
	display:table-cell;
	vertical-align:middle;
}
.column #left {
	text-align: center;
}
.column2{
	display:table-cell; /* Defines a table cell */
	border-bottom:1px solid #eeeeee;
	border-right:1px solid #eeeeee;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-top: 10px;
}
.column:hover{
	background:#f9f9f9;
}
/* 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 #eeeeee;
		border-top:2px solid #dddddd;
		border-bottom:2px solid #dddddd;
		margin:20px 0;
	}
	.row .column:nth-child(1){ /* first column of the row */
		border-left:none;
		padding-bottom: 23px;
	}
	.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:20px;
		font-size:12px;
		content:" "attr(data-label)" ";	/* call the attribute value of data-label and adds a string // */
	}
}