@font-face {
  font-family: 'Roboto-Medium';
  src: url('Roboto-Medium.eot?#iefix') format('embedded-opentype'),  url('Roboto-Medium.woff') format('woff'), url('Roboto-Medium.ttf')  format('truetype'), url('Roboto-Medium.svg#Roboto-Medium') format('svg');
  font-weight: normal;
  font-style: normal;
}
h1 {font-family: 'Roboto-Medium';
text-align: center;
}
.index{
	background-color:#38cc70;
	border-radius: 5px;
	line-height:2.5em;
	font-family: 'Roboto-Medium';
}

img{
padding:15px;
}

.my_table{
font-family: 'Roboto-Medium';
font-weight:bold;
}
body {
  color: #2c3e50;
  background: #fff;
  font-family: 'Roboto-Medium';
}
.clr{
	background-color:#38cc70;
	border-radius: 5px;
	line-height:4em;
	font-family: 'Roboto-Medium';
}
a{
	text-decoration:none;
	font-family: 'Roboto-Medium';
	font-weight:bold;
	color: #2c3e50;

}
.container {
  padding:0 5px 0 5px;
  max-width:auto; /*  use your width here */
  font-weight:bold;

}
.half {
  float: left;
  width: 100%;
  padding:0 0 0 0;


}
/* Acordeon styles */
.tab {
  position: relative;
  margin-bottom: 1px;
  margin-right: 1px;
  width: auto;
  color: #000000;
  overflow: hidden;
  border-radius: 5px;
}
input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
label {
  position: relative;
  display: block;
  padding: 1.5em 2em 1.5em 1em;
  background: #38cc70;
  font-weight: bold;
  line-height: 1.5;
  cursor: pointer;
}

.tab-content {
  max-height: 0;
  overflow: hidden;
  text-align:justify;
  background: #FFFFFF;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
}

.tab-content p {
  margin: 1em;
	  font-family: 'Roboto-Medium';
}

input:checked ~ .tab-content {
  max-height: 1000em;
}
/* Icon */
label::after {
  position: absolute;
content: url(../images/ic_downarrow.png);
  right: 0;
  top: 0;
  display: block;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
input[type=checkbox] + label::after {
  content: url(../images/ic_downarrow.png);

}
input[type=checkbox]:checked + label::after {
-webkit-transform: rotate(-180deg);
          transform: rotate(-180deg) scaleX(-1);
  /*transform: rotate(315deg);
-ms-transform: rotate(-45deg);  IE 9 
    -webkit-transform: rotate(-45deg);  Chrome, Safari, Opera 
    transform: rotate(-45deg);*/
}
