﻿/*------------ table style set ------------*/
/*------------ table cont ------------*/

#table_cont{
	width: 60%;
	border-collapse: collapse;
	margin-left: auto;
	margin-right: auto;
}
#table_cont td,
#table_cont th{
	padding: 5px;
	border : 1px solid rgb(204, 204, 204);
  text-align : center;
  
  
}
#table_cont th{
	font-weight: bold;
        text-align: center;
	background : #0065CA;
        color : white;
}
#table_cont thead th{
	background : #0065CA;
        color : white;
        text-align: center;
}

#table_cont td{
        text-align : left;
}


@media only screen and (max-width:600px){
	#table_cont{
		display: block;
	        width: 100%;
	}
		#table_cont thead{
			display: none;
		}
		#table_cont tbody{
			display: block;
		}
			#table_cont tbody tr{
				display: block;
				margin-bottom: 1.5em;
			}
			#table_cont tbody th,
			#table_cont tbody td{
				display: block;
				border: none;
			}
			#table_cont tbody th{
				margin-bottom: 5px;
				list-style-type: none;
				color: #fff;
				background: #0065CA;
			}
			#table_cont tbody td{
				margin-left: 20px;
				padding: 0;
                                text-align: left;
			}
			#table_cont tbody td:nth-of-type(1):before { content: " "; }
}
