body {
	margin: 0 auto;
	padding: 0px;
	font: arial;
	font-size: 16px;
	font-weight: normal;
	overflow-y: scroll;
	z-index: 1;
	max-width: 80%;
}

.logo {
	width: 185px;
	padding: 0px 5px;
	float:left;
}

.logo_img {
	padding: 5px;
}

.logo_txt {
	text-align: center;
	padding-left: 5px;
	font-size: 11px;
	font-style: italic;
	color: #2E74B5;
}

.div_title {
	float:left;
	width:80%;
}

.clear {
	clear: both;
}

.frame {
	border: 2px solid #c0c2c1;
	padding: 20px;
}

.doc_title {
	margin: 10px auto;
	text-align: center;
	/*color:#2E74B5;*/
	color: #00b4c1;
	font-size: 40px;
	text-transform: uppercase;
	padding: 0px 5px;
}

.page_title {
	text-align: center;
	color: green;
	margin-bottom: 0px;
}

.form_container{
	position:relative;
	max-width: 40%;
	margin:0 auto;
}

.frame_container{
	position:relative;
	max-width: 80%;
	margin:0 auto;
}

.radio_div{
	float: left;
	margin-right: 30px;
}

.limit_input{
	max-width:300px;
}

.pagination {
	justify-content: center;
}

.table_results tr:hover{
	background-color: #e3ffff !important;
}

.td_last_child td:last-child{
    width:1%;
    white-space:nowrap;
}

.new_search {
	float:right;
	padding-bottom:20px;
}

.new_search_bottom {
	position:absolute;
	right:0px;
	top:0px;
}

.table_company_name {
	font-size: 22px;
}

.table_details td:last-child{
	font-weight: bold;
}

.tot_results {
	float: left;
	padding: 20px;
	margin-left:15px;
}

/*** Checkbox ***/
/* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 8px;
  height: 13px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}