* {
  box-sizing: border-box;
  margin:0px;
}

body {
 font-family: 'Roboto', sans-serif;
 background-color:#fff;

}

.mainheader{
background-color:#143D6C;
margin:none;
}

.maincontent{
padding:10px;
margin:0 auto;
}

p{

color:#555;
font-size:15px;
line-height: 1.7;
}

.tag p{
color:#000000;
margin:0 auto;
line-height: 1.6;
}
/* Header/Blog Title */
.header {
  padding: 30px;
  text-align: center;

}
.header h2{
margin:0 auto;
font-weight:normal;
color:#f1f1f1;
font-size:25px;
}

.header p {
color:#f1f1f1;
font-size:15px;
line-height: 1.7;

}

h2{
margin:0 auto;
font-weight:normal;
color:rgb(51, 51, 51);
font-size:29px;
}
h5{
margin:0 auto;
color:rgb(188, 60, 60);
font-size:25px;
font-weight:normal;
margin-bottom:5px;
}
h4{
 margin:0px;
 font-size:20px;
}

li{
list-style:none;
padding:5px;
font-size:15px;
}

.information{

margin-top:10px;
margin-bottom:10px;
}


.header h1 {
  font-size: 40px;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
}
.text-center{
text-align:center;
}

.topnavphone{
background-color: #143d6c;
overflow: hidden;
}

.topnavphone a {
  float: left;
  display: block;
  color: #f1f1f1;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnavphone a:hover {
  color: #2196F3;
}




/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f1f1f1;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  color: #2196F3;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 67%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 33%;

  padding-left: 20px;
  
}


.left {   
  float: left;
  width: 49%;
  background-color: #143d6c;
  overflow: hidden;
  min-height: 239px;
  color:#fff;
  margin-top:10px;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
}

/* Right column */
.right {
float: right;
width: 49%;
overflow: none;
background-color: #143d6c;
min-height: 239px;
color:#fff;
margin-top:10px;
box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
}


.rightinfo{
float:left;
width:50%;
}

.leftinfo{
overflow:hidden;
float:left
width:50%;
}

.list {

  width: 100%;
  padding-top: 10px;

}


.list a {
text-decoration:none;    
color:#143d6c;
display:inline-block;
margin-bottom: 15px;
margin-right: 10px;
}
/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  padding: 20px;
  margin-top: 20px;

}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #143D6C;
  margin-top: 20px;

}
.footer p{
color:#f1f1f1;
}
.footer a{
color:#f1f1f1;
text-decoration:none;
}



@media screen and (max-width: 500px) {
  .leftinfo, .rightinfo {   
    width: 100%;
    padding: 0;
  }
}


@media screen and (max-width: 1100px) {
  .left, .right {   
    width: 100%;
    padding: 0;

  }
}


/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}

.comment {
padding:20px;
border:1px solid #ccc;
background-color: #fff;
margin-bottom:8px;
border-radius:5px;
}

.comment p{
color:rgb(102, 102, 102);
}

.comment a{
text-decoration:none;
font-weight:bolder;
font-size:20px;
color:#143D6C;
}
/*form*/


.buttonsafe {
  background-color: white; 
  color: black; 
  border: 2px solid #4CAF50;
}

.buttonsafe:hover {
  background-color: #4CAF50;
  color: white;
}

.buttonunsafe {
  background-color: white; 
  color: black; 
  border: 2px solid #f44336;
}

.buttonunsafe:hover {
  background-color: #f44336;
  color: white;
}

.button {

margin: 0 auto;
border-radius: 4px;
background-color: #143D6C; 
border: none;
color: #FFFFFF;
text-align: center;
font-size: 20px;
padding: 16px;
max-width: 80%;
transition: all 0.5s;
cursor: pointer;
}

.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}

.button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}

.button:hover span {
padding-right: 25px;
}

.button:hover span:after {
opacity: 1;
right: 0;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit], .buttonsafe, .buttonunsafe, .buttonunknown {
    width: 100%;
    margin-top: 0;
  }
}
.comment_list{
max-height: 600px;
  overflow: auto;
  border:4px solid #143d6c;
  padding:10px;
  background-color: #143d6c;
}

.comment_list a{
text-decoration:none;
color:#143d6c;
}  

.prefix_list{
  max-height: 800px;
  overflow: auto;
  border:4px solid #143d6c;
  padding:10px;
}

.prefix_list li {
float:left;
margin:4px;

}

.prefix_list a{
text-decoration:none;
color:#143d6c;
}  



.recent_tag{
border:4px solid #ccc;
}
.recent_tag a{
text-decoration:none;
color:blue;
}


.table_list{
  height: 650px;
  overflow: auto;
  border:4px solid #143d6c;

}

.table_list a{
text-decoration:none;
color:#143d6c;
}
/*table*/
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  
}

td, th {
  border-bottom: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}
.search_response{
width:70%;
margin-bottom:20px;
}
.search_response p, h5{
margin:0 auto;
}

@media screen and (max-width: 700px) {
  .search_response{
    float: none;
    width: 100%;
  }
}

#search-box {
position: relative;
width:100%
margin: 0;
}


#search-form 
{
height: 40px;
border: 1px solid #999;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
background-color: #fff;
overflow: hidden;
}




form.search input[type=text] {
  padding: 10px;
  font-size: 17px;
  border:none;
  float: left;
  width: 80%;
  background: #ffffff;
}

form.search button {
  float: left;
  width: 20%;
  padding: 10px;
  background: #2196F3;
  color: white;
  font-size: 17px;
	
  border:none;
  cursor: pointer;
}

form.search button:hover {
  background: #0b7dda;
}

form.search::after {
  content: "";
  clear: both;
  display: table;
}





#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}






.form-style-2{
	padding: 20px 12px 10px 20px;
	font: 13px Arial, Helvetica, sans-serif;
	width:80%;
}

.form-style-2 label{
	display: block;
	margin: 0px 0px 15px 0px;
}
.form-style-2 label > span{
	width: 100px;
	font-weight: bold;
	float: left;
	padding-top: 8px;
	padding-right: 5px;
}
.form-style-2 span.required{
	color:red;
}

.form-style-2 input.input-field, .form-style-2 .select-field{
	width: 70%;	
}
.form-style-2 input.input-field, 
.form-style-2 .tel-number-field, 
.form-style-2 .textarea-field, 
 .form-style-2 .select-field{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: 1px solid #C2C2C2;
	box-shadow: 1px 1px 4px #EBEBEB;
	-moz-box-shadow: 1px 1px 4px #EBEBEB;
	-webkit-box-shadow: 1px 1px 4px #EBEBEB;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	padding: 7px;
	outline: none;
}
.form-style-2 .input-field:focus, 
.form-style-2 .tel-number-field:focus, 
.form-style-2 .textarea-field:focus,  
.form-style-2 .select-field:focus{
	border: 1px solid #0C0;
}
.form-style-2 .textarea-field{
	height:200px;
	width: 70%;
}
.form-style-2 input[type=submit],
.form-style-2 input[type=button]{
	border: none;
	padding: 8px 15px 8px 15px;
	background: #143d6c;
	color: #fff;
	box-shadow: 1px 1px 4px #DADADA;
	-moz-box-shadow: 1px 1px 4px #DADADA;
	-webkit-box-shadow: 1px 1px 4px #DADADA;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	cursor:pointer;
}
.form-style-2 input[type=submit]:hover,
.form-style-2 input[type=button]:hover{
	background: #143d6c;
	color: #fff;
}
@media screen and (max-width: 600px) {
  .form-style-2 input[type=submit], .form-style-2 input,  .form-style-2{
    width: 100%;
    margin-top: 0;
  }
}


.searchinfo {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  cursor: pointer;
}
.searchinfobtn {background-color: #008CBA;} /* Blue */
.searchinfobtn:hover {background-color:  #0b7dda;}


.tab {
  float: left;
  background-color: #f1f1f1;
  overflow:hiden;
}


/* Style the buttons inside the tab */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #143D6C;
  color:#fff;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  width: 70%;

}

.tabcontent a{
text-decoration:none;
color:#143D6C;
}


 /* Style the list */
ul.breadcrumb {
  padding:0px;
  list-style: none;
  color:#143d6c;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 14px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #143d6c;
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
} 

.pages{
 padding:10px; 
}

.pages a{
padding:5px;
text-decoration: none;  
}
