@charset "utf-8";
/* CSS Document */

/* seo friendly tables */
.table{
	display:table;	/* Defines a Table */
	 font-family: 'OpenSansRegular';
	font-size:14px;
	border-right:1px solid #eeeee;
	border-left:1px solid #eeeee;
	color:#8d8d8d;
	margin:0;
	width:100%;
	float:left;
}

.table-head{
	 display: table-header-group; /* Defines a table header group */
	 border-radius:5px;
	 font-family: "roboto_slabregular";
}
.column.bz {
  background:#E4EBF3;
  border-right:1px solid #fff;
}
.column.bg{background:#E4EBF3; border-right:1px solid #fff;}

 .column{ /* Column inside the table-head */
	color:#000;
	border-right:1px solid #eeeeee;
	border-bottom:none;
	
}
/*.table-head .column:hover{ 
	background:#006699;
}*/
.row{
	display:table-row; /* Defines a table row */
	border-bottom:1px solid ;
}
.row .column:nth-child(1){ /* First column in a row */
	border-left:1px solid #eeeeee;
}

.column{
	display:table-cell; /* Defines a table cell */
	padding:10px 20px;
	border-bottom:1px solid #eeeeee;
	
	
	text-align:left;
}
.b1{color:#000;}
/*.column:hover{
	background:#f9f9f9;
}*/
/* Responsive table */
@media (min-width:200px) and (max-width: 840px){
	.table,
	.row,
	.column,
	.column:before{
		display:block;	/* Converts a table, table row, table column and table column:before into a block element */
		text-align:center;
	}
	.table{border:none; width:100%; 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 #eeeeee;
		border-top:2px solid #dddddd;
		border-bottom:2px solid #dddddd;
		margin:10px 4px;
		width:100%;
		float:left;
	}
	.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 */
		  content: " " attr(data-label) " //";
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 10px;
    padding-right: 20px;
    text-align: center;
    width: 100%;
	}
}

