
input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
	 margin: 4px 2px;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.otherbutton {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
	 margin: 4px 2px;
}

.otherbutton:hover {
    background-color: #45a049;
}
/*
input[type=text], select, textarea{
    width: 75%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
}
*/

.mdet_main {
    margin-top: 5%;    
    margin-right: 3%;
    margin-left: 3%;
	background-color: lightblue;
    padding-top: 50px;
    padding-right: 5px;
    padding-bottom: 50px;
    padding-left: 5px;
}

.col-25 {
    float: left;
	width: 15%;	
    margin-top: 6px;
	text-align:left;
}

.col-75 {
    float: left;
    width: 85%;
    margin-top: 6px;
}

.mdetcol-100 {
    float: left;
	height: 30px;
	margin-right: 3%;
    margin-left: 3%;
    width: 93.9%;
    margin-top: 0px;
    padding-left: 1px;	
	background-color: #99b3ff;
	font-size: 17px;
	font-weight: bold;
}

.col-100 {
    float: left;
	height: 30px;
	margin-right: 25%;
    margin-left: 25%;
    width: 50%;
    margin-top: 0px;
    padding-left: 1px;	
	background-color: #99b3ff;
	font-size: 17px;
	font-weight: bold;
}



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

.button {
	 margin-top: 5%;
  display: inline-block;
  padding: 15px 25px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #4CAF50;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}

.button:hover {background-color: #3e8e41}

.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

/* 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 (max-width: 600px) {
    .col-25, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 6px;
    }

