
html,
body {
   margin:0;
   padding:0;
   height:100%;
}
html {
    font-family: "Lucida Sans", sans-serif;
}
* {
    box-sizing: border-box;
}

.column {
	
	display: flex;
	flex-wrap: wrap;
	-webkit-flex-direction: row;
	flex-direction: row;
}

.row {
	margin-top: 10px;
	margin-bottom: 80px;
	display: flex;
	flex-wrap: wrap;
}

.row:after {
    content: "";
    clear: both;
    display: table;
}
/*
.table {
	margin-top: 10px;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 10px;
	text-align: center;
}
.table .col-9 {
	margin: auto;
	
}
 .table th,td {
	padding: 5px;
} 

.table th{
	background: #cbcbcb;
}
*/

.dastable {
	margin-top: 10px;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 10px;
	text-align: center;
}
.dastable .col-9 {
	margin: auto;	
}
.dastable th,.dastable td{
	padding: 5px;
}

.dastable th{
	background: #cbcbcb;
}



[class*="col-"] {
    float: left;
    /* padding: 15px; */
    /* border: 1px solid; */
    /* border-radius: 1px; */
    box-shadow: 5px 10px 8px #888888;
    background: #ffffff;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {flex: 25%;}
.col-3a {width: 24%;
margin-left:0.5%;
margin-right:0.5%;
}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {flex: 49%;
margin-left:0.5%;
margin-right:0.5%;
}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
.col-12a {width: 99%;
margin-left:0.5%;
margin-right:0.5%;
}

/* #container {
   min-height:100%;
   position:relative;
   background:#e0ffdb;
   padding: 0 0 100px;

} */

.header {
    /* padding: 10px; */
}
.footer {
	/* position:absolute;
   	width:100%;
    text-align: center;
    font-size: 14px;
    bottom:0; */
    text-align: center;
    font-size: 14px;
    flex-shrink: 0;
}
.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu li {
    padding: 8px;
    margin-bottom: 7px;
    background-color: #33b5e5;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.menu li:hover {
    background-color: #0099cc;
}

.login_header {
	text-align: center;
	background: #0a4e36;
	color: white;
	display: table; 
	overflow: hidden;
	width: 100%;
	/* border-radius: 9px 9px 0px 0px; */
}

.form_header {
	text-align: center;
	background: #0a4e36;
	color: white;
	display: table; 
	overflow: hidden;
	width: 100%;
	font-size: 20px;
	padding: 10px;
}

.login {
	padding: 10px;
}


/* Slideshow container */
.slideshow-container {
   max-width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Style the tab */
.tab {
    overflow: hidden;
    border-bottom: 2px solid #5a5a5a;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 16px;
    transition: 0.3s;
    font-size: 17px;
}

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

/* Create an active/current tablink class */
.tab button.active {
    background-color: #5a5a5a;
    color:#ffffff;
}

/* Style the tab content */
.tabcontent {
    display: none;
   /* padding: 6px 12px;
    border: 1px solid #ccc;n*/
    border-top: none;
}

.login input[type=text],.login input[type=password],.login select {

    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.login input[type=text]:focus,.login input[type=password]:focus {
    border: 1px solid green !important;
	box-shadow: 0 0 3px green !important;
	-moz-box-shadow: 0 0 3px green !important;
	-webkit-box-shadow: 0 0 3px green !important;
}

.login input[type=submit] {
    width: 100%;
    background-color: #0a4e36;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.login input[type=submit]:hover {
    background-color: #45a049;
}

input[type=text],input[type=password], select {

    width: 100%;
    padding: 10px 10px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin: 0px;
}

input[type=text]:focus,input[type=password]:focus {
    border: 1px solid green !important;
	box-shadow: 0 0 3px green !important;
	-moz-box-shadow: 0 0 3px green !important;
	-webkit-box-shadow: 0 0 3px green !important;
}
[class*="tablerow_"] input[type=submit],[class*="tablerow_"] input[type=reset],[class*="tablerow_"] input[type=button]{
    width: 100%;
    background-color: #0a4e36;
    color: white;
    padding: 14px 20px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
[class*="tablerow_"] input[type=submit]:hover,[class*="tablerow_"] input[type=reset]:hover,[class*="tablerow_"] input[type=button]:hover{
    background-color: #45a049;
}
.verify  {
	width: 15%;
    background-color: #0a4e36;
    color: white;
    padding: 11px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.verify:hover {
	background-color: #45a049;
}

.verify_disable {
	
	width: 15%;
    background-color: #babdb6;
    color: black;
    padding: 11px 10px;
    border: none;
    border-radius: 4px;
    cursor:not-allowed;
}

.verify_disable:hover {
	background-color: #babdb6;
}

.verify_div input[type=text]{width: 84%;}
.verify_disable_div input[type=text]{width: 84%;}
.verifycode_div {display:none;}
.verifycode_div input[type=text]{width: 68%;}

.verify_div input[type=button] {
	
	width: 15%;
    background-color: #0a4e36;
    color: white;
    padding: 11px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.verify_div input[type=button]:hover{
	
	background-color: #45a049;
}

.verify_disable_div input[type=button]{
	
	width: 15%;
    background-color: #babdb6;
    color: black;
    padding: 11px 10px;
    border: none;
    border-radius: 4px;
    cursor:not-allowed;
}
.verify_disable_div input[type=button]:hover{
	
	background-color: #babdb6;
}

.verifycode_div input[type=button] {
	
	width: 15%;
    background-color: #0a4e36;
    color: white;
    padding: 11px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.verifycode_div input[type=button]:hover{
	
	background-color: #45a049;
}

input[type=button].verify {
	
	width: 15%;
    background-color: #0a4e36;
    color: white;
    padding: 11px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
} 

input[type=button].verify_disable  {
	
	width: 15%;
    background-color: #babdb6;
    color: black;
    padding: 11px 10px;
    border: none;
    border-radius: 4px;
    cursor:not-allowed;
}

input[type=button]:hover.verify_disable {
	
	background-color: #babdb6;
}


label {
    padding: 10px 10px 10px 0;
    display: inline-block;
}

[class*="tablerow_"] {
float: left;
padding: 5px 10px 5px 10px;
}

.tablerow_100 {width:100%;}
.tablerow_50 {width:50%;}
.tablerow_33 {width:33.33%;}
.tablerow_25 {width:25%;}


[class*="tablerow_"]:after {
	 content: "";
    display: table;
    clear: both;
}

/* Color of Mandatory field indicator i.e * */
.MF {
	color : #FF0000 !important;
	font-size 	: 12pt !important;
	font-weight	: bold !important;
    }

.textfont {	
	font-size:11pt; 
	color: black; 
	text-shadow: 2px 2px 4px #ffffff;
}

.numfont {	
	font-size:16pt; 
	color: white; 
	text-shadow: 2px 2px 4px #000000;
	cursor: pointer;
}


@media screen and (max-width: 600px) {
  [class*="col-"] {
     flex: 100% ; /* The width is 100%, when the viewport is 600px or smaller */
    -webkit-flex-direction: column;
    flex-direction: column;
  } 
  .row {flex:1 0 auto;}
  [class*="tablerow_"] {
  width:100%;
  }
  input[type=submit],input[type=reset],[type=button] {
  width:100%;
  }
  .verify {width:100%;}
  .verify_div input[type=text]{width:100%;}
  .verifycode_div input[type=text]{width: 100%;}
}