.mc-esay {
  font-family: "sans-serif";
}

.mc-esay p {
  font-size: 14px;
  line-height: 26px;
  color: #555;
  font-weight: normal;
}

.mc-esay h3 {
  font-size: 16px;
  margin: 0;
  font-weight: bold;
  color: #333;
  padding: 20px 0px;
}

.mc-esay-date {
  color: #ccc !important;
}

.accordion dl,
.accordion-list {
  border: 0px solid #ddd;
}
.accordion dl:after,
.accordion-list:after {
  content: "";
  display: block;
  height: 0em;
  width: 100%;
  background-color: #f2f2f2;
}

.accordion dd,
.accordion__panel {
  background-color: #f2f2f2;
  font-size: 1em;
  line-height: 1.5em;
}

.accordion p {
  padding: 1em 2em 1em 2em;
}

.accordion {
  position: relative;
  background-color: #f2f2f2;
}

.accordionTitle,
.accordion__Heading {
  background-color: #f2f2f2;
  text-align: center;
  font-weight: 600;
  padding: 2em;
  display: block;
  text-decoration: none;
  color: #555;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  border-bottom: 0px solid #30bb64;
}
.accordionTitle:before,
.accordion__Heading:before {
  content:"＋";
  font-size: 1.5em;
  line-height: 0.5em;
  float: left;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.accordionTitle:hover,
.accordion__Heading:hover {
  background-color: #f2f2f2;
}

.accordionTitleActive,
.accordionTitle.is-expanded {
  background-color: #f2f2f2;
}
.accordionTitleActive:before,
.accordionTitle.is-expanded:before {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
}
.accordion a:visited {
	color:#339BEB;
	text-decoration:none;
}
.accordionItem {
  height: auto;
  overflow: hidden;
  max-height: 500em;
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
}

/* Reset */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.container{
  margin: 0 auto;
}

@media screen and (min-width: 48em) {
  .accordionItem {
    max-height: 20em;
    -webkit-transition: max-height 0.5s;
    transition: max-height 0.5s;
  }
}

.accordionItem.is-collapsed {
  max-height: 0;
}

.no-js .accordionItem.is-collapsed {
  max-height: auto;
}

.animateIn {
  -webkit-animation: accordionIn 0.45s normal ease-in-out both 1;
          animation: accordionIn 0.45s normal ease-in-out both 1;
}

.animateOut {
  -webkit-animation: accordionOut 0.45s alternate ease-in-out both 1;
          animation: accordionOut 0.45s alternate ease-in-out both 1;
}

@-webkit-keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
            transform: scale(0.9) rotateX(-60deg);
    -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
            transform: scale(0.9) rotateX(-60deg);
    -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes accordionOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
            transform: scale(0.9) rotateX(-60deg);
  }
}
@keyframes accordionOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
            transform: scale(0.9) rotateX(-60deg);
  }
}
@keyframes Mefic {
	0% {
		background:#f2f2f2;
		left:100px;
		top:0px;
	}
	100% {
		background:red;
		left:1000px;
		top:0px;
	}
}
@-webkit-keyframes Mefic {
	0% {
		background:#f2f2f2;
		left:100px;
		top:0px;
		-webkit-transform:rotate(0deg)
	}
	100% {
		background:red;
		left:1000px;
		top:0px;
		-webkit-transform:rotate(330deg)
	}
}
.mefic_ani:hover {
	animation:Mefic 5s;
-webkit-animation:Mefic 1s;
-webkit-animation-iteration-count:1;
-webkit-animation-fill-mode:forwards;


}