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

/* --------------------------------------------------------  New Design -- */

.global_content_left_v2  .mainsubmitbutton { 
width:100%; 
padding:10px;
box-sizing:border-box;
background-color:#474747;
border:0;
color:#fff;
cursor:pointer;
border-radius: 0px 20px 20px 0px;
border:1px solid #474747;
}

.global_content_left_v2 .inputbox {
	position:relative;
	width:100%;
	padding:10px;
	box-sizing:border-box;
	font-size:14px;
	color:var(--boxcolor);
	margin-bottom:10px;
	background-color:var(--boxbg);
	border:var(--boxborder);
	border-radius: 0px 20px 20px 0px;
	margin-bottom:10px;
}

.global_content_left_v2 h2 {
	text-align:left;
	font-size:18px;
	margin-left:10px;
}

.global_content_left_v2 h3 {
	color:#000;
	font-size:16px;
	margin-left:10px;	
}


/* */

.global_content_left_v2 {
	position:relative;
	float:left;
	width:50%;
	max-width:50%;
	background-color:#4b6a7b;
	color:#000;
	padding:10px;
	text-align:left;
	font-size:12px;
	box-sizing: border-box; 
	height:100%;
	overflow: auto;
	padding-left:0px;
}

.global_content_right_v2 {
	position:relative;
	float:left;	
	width:50%;
	max-width:50%;	
	background-color:#fff;
	color:#000;
	padding:10px;
	text-align:left;
	font-size:12px;
	box-sizing: border-box; 
	height:100%;
	overflow: auto;	
}

.head_nav_container_sub_v2  {
	position:relative;
	width:100%;
	padding:10px;
	box-sizing:border-box;
	color:#fff;
	background-color:#0e3e5b;
}

.head_nav_content_sub_v2  {
	position:relative;
	width:100%;
	max-width:1000px;
	margin:0 auto;
	background-color:#0e3e5b;
	color:#fff;
	text-align:left;
	font-size:12px;
	box-sizing: border-box; 
}


.head_nav_right_sub_v2 ul {
	list-style:none;
	list-style-type:none;
	color:#fff;
	margin:0;
	text-align:center;
	padding:0;
}

.head_nav_right_sub_v2 li {
	padding:5px;
	padding:5px 15px 5px 15px;
	display:inline-block;
}

.head_nav_right_sub_v2 li a {
	font-weight:normal;
	color:#fff;
}

.head_nav_right_sub_v2 {
	width:100%;
	text-align:center;
	color:#fff;
}

/* -- Media Query -- */

@media screen and (max-width: 800px){

.global_content_left_v2 {
	position:relative;
	float:left;
	width:100%;
	max-width:100%;
	background-color:#4b6a7b;
	color:#000;
	padding:10px;
	text-align:left;
	height:100%;
	font-size:12px;
	box-sizing: border-box; 
	padding-left:0px;	
}

.global_content_right_v2 {
	position:relative;
	float:left;	
	width:100%;
	max-width:100%;	
	background-color:#fff;
	color:#000;
	padding:10px;
	text-align:left;
	height:100%;
	font-size:12px;
	box-sizing: border-box; 
}
	
}

/* -- Other -- */

 /* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
} 