.accordion input {
	display: none;
}
.accordion label {
	position: relative;
	display: block;
	padding: 10px;
	border-bottom: 1px solid #029EBC;
	cursor: pointer;
	font-size:24px;
}
.accordion label::after {
	position: absolute;
	top: 50%;
	right: 10px;
	display: block;
	content: '';
	width: 8px;
	height: 8px;
	margin-top: -7px;
	border-top: 1px solid #888;
	border-right: 1px solid #888;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.accordion div {
	position: relative;
	height: 0;
	overflow: hidden;
	box-shadow: 0 1px 7px 0 rgba(0,0,0,0.1) inset;
	transition: height .2s ease-in-out;
}
.accordion input:checked + label::after {
	margin-top: -3px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.accordion input:checked ~ div {
	height: 200px;
	border-bottom: 1px solid #ccc;
}

.button{
  display: block;
  width:100%;
  text-align: center;
  text-decoration: none;
  padding:2em 0.2em;
  color: #FFF;
  background: #029EBC;
  box-sizing:border-box;
  text-transform: uppercase;     
  font-weight: bold; 
  font-size: 16px;
  border-radius: 4px;
}

.btn-style1{
    background-image: -moz-linear-gradient(top, #23bd52, #1ea347);
    background-image: -ms-linear-gradient(top, #23bd52, #1ea347);
    background-image: -webkit-linear-gradient(top, #23bd52, #1ea347);
    background-image: linear-gradient(top, #23bd52, #1ea347);
    background-clip: padding-box;
  }
  
.menuLineLightW {
	margin:0 0 10px 0;
	padding:2px 8px;
	border-width:0 0 5px 0 ;
	border-color:#029EBC;
	border-style:solid;
	background:#fff;
	color:#017589;
	line-height:140%;
	font-weight:bold;
	font-size:40px
}

