/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
	padding: 20px;
}
	
.columnLeft {
  float: left;
  width: 33.33%;
	padding: 20px 20px 0px 0px;
}
	
.columnRight {
  float: left;
  width: 66.67%;
	padding: 20px 20px 0px 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
blockquote {
    margin-left: 20px;    
}
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}	
	
	/*https://codepen.io/oknoblich/pen/tfjFl*/
	

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}

p:not(:last-child) {
  margin: 0 0 20px;
}

main {
  max-width: 100%;
  margin: 40px 0 40px 0;
}

section {
  display: none;
  padding: 20px; /*changed from padding: 20px 0 0;*/
  border: 1px solid #abc; /*changed from border-top*/
}

input {
  display: none;
}

label {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-size: 1.5rem;
  text-align: center;
  color: #cccccc;
  border-top: 1px solid transparent;
}

label:before {
  font-weight: normal;
  margin-right: 10px;
}

label[for*='1']:before { content: url(../../MuniCorner/eTools/Icons/WrenchBlk30-47x50.gif); }
label[for*='2']:before { content: url(../../MuniCorner/eTools/Icons/RocketBlk30-47x50.gif); }
label[for*='3']:before { content: url(../../MuniCorner/eTools/Icons/MagnifyBlk30-47x50.gif); }
	
	
input:checked + label[for*='1']:before { content: url(../../MuniCorner/eTools/Icons/WrenchBlue47x50.gif); }	
input:checked + label[for*='2']:before { content: url(../../MuniCorner/eTools/Icons/RocketBlue47x50.gif); }	
input:checked + label[for*='3']:before { content: url(../../MuniCorner/eTools/Icons/MagnifyBlue47x50.gif); }	

label:hover {
  color: #505050;
  cursor: pointer;
}

input:checked + label {
  color: #505050;
  border: 1px solid #abc;
  border-top: 10px solid #ff7f45;
  border-bottom: 2px solid #fff;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3 {
  display: block;
}

@media screen and (max-width: 600px) {
  label {
    font-size: 0;
  }
  label:before {
    margin: 0;
    font-size: 18px;
  }
}

@media screen and (max-width: 500px) {
  label {
    padding: 15px;
  }
}
/* CSS Document */

