body {
	font-size: 14px;
	line-height: 1;
	color: #333;	
}

.form-control {
	font-size: 14px;
	line-height: 24px;
	min-height: 24px;	
}

* {
  box-sizing: border-box;
}

h2.tools {
	width: 100%;
	color: black;
	font-size: 18px;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 14px;	
}

input[type=text],input[type=password], input[type=date].form-control, input[type=time].form-control, select, select.form-control {
  width: 100%;
	height: 28px;
	line-height: 18px;
	min-height: 18px;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

input[type=number], input[type=number].form-control{
  width: 100%;
	height: 28px;
	line-height: 18px;
	min-height: 18px;
	padding-right: 1px;
  padding-left: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

textarea, textarea.form-control {
  width: 100%;
	min-height: 50px;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}



label {
  width:100%;
	padding: 6px 6px 6px 0;
  display: inline-block;
}

input[type=submit] {
  width:100%;
	background-color: #337ab7;
	border-color: #2e6da4;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
	background-color: #337ab7;
	border-color: #2e6da4;
}

input.form-btn {
  width:130px;
	background-color: #337ab7;
	border-color: #2e6da4;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: none;
	margin:10px;
}

input.form-btn:hover {
	background-color: #337ab7;
	border-color: #2e6da4;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  max-width: 600px;
}

.col-left {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding-right:10px;
  max-width: 300px;
}

.col-right {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding-left:10px;
  max-width: 300px;
}

.col-25 {
  float: left;
  width: 30%;
  margin-top: 0px;
  padding-right:10px;
  max-width: 180px;
}

.col-25r {
  float: left;
  width: 30%;
  margin-top: 0px;
  padding-right:10px;
  max-width: 180px;
	text-align:right;
}

.col-75 {
  float: left;
  width: 70%;
  margin-top: 0px;
  padding-left:10px;
  max-width: 420px;
}

.rowc {
	max-width: 600px; 
	text-align:center;
}

.row {
  max-width: 600px; 
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

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

/* 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-right, .col-75, input[type=submit] {
    width: 100%;
    max-width: 100%;
    margin-top: 0px;
    padding-left:0px;
    padding-right:0px;
  }
  .col-left, .col-25 {
    width: 100%;
    max-width: 100%;
    margin-top: 6px;
    padding-left:0px;
    padding-right:0px;
  }
	.col-25r {
    width: 100%;
    max-width: 100%;
    margin-top: 6px;
    padding-left:0px;
    padding-right:0px;
		text-align:left;
  }
	input.form-btn {
		width:100px;
    margin-top: 6px;
    padding-left:0px;
    padding-right:0px;
	}
	label {
		width:100%;
		padding: 6px 6px 0px 8px;
		display: inline-block;
		font-size: 12px;
	}	
	h2.tools {
		width: 100%;
		color: black;
		font-size: 14px;
		font-weight: bold;
		margin-top: 0px;
		margin-bottom: 6px;	
	}
	input.form-btn {
		width:80px;
		margin: 5px;
	}
}

