@import url( http://fonts.googleapis.com/css?family=Open+Sans:300,400italic,400,600 );
body {
	 -webkit-font-smoothing: antialiased;
}


.ui-119 {
	margin: 5px 0px;
}
.ui-119 .ui-119-item {
	margin: 10px auto; padding: 15px 10px 15px 20px; transition:1s; position: relative; max-width: 100%; -webkit-transition: all 1s ease; -o-transition: all 1s ease; -moz-transition: all 1s ease;
}
.ui-119 .ui-119-item a.ui-119-icon i {
	color: rgb(119, 119, 119); font-size: 20px; margin-right: 5px;
}
.ui-119 .ui-119-item:hover {
	background: rgb(0,40,60);
}
.ui-119 .ui-119-item:hover h4 a {
	color: rgb(255, 255, 255);
}
.ui-119 .ui-119-item:hover a.ui-119-icon i {
	color: rgb(255, 255, 255);
}
.ui-119 .ui-119-item:hover p a {
	color: rgb(255, 255, 255);
}
.ui-119 .ui-119-item h4 {
	display: inline;
}
.ui-119 .ui-119-item h4 a {
	color: rgb(119, 119, 119);
}
.ui-119 .ui-119-item p a {
	color: rgb(119, 119, 119);
}



/* Hide on mobile devices */
@media only screen and (max-width: 840px) {
  .hideOnMobile {
    display: none !important; overflow: hidden;
  }
}

/* Hide on desktop devices */
@media only screen and (min-width: 768px) {
  .hideOnDesktop {
    display: none;
  }
}





   .mobileShow { display: none;}

   /* Smartphone Portrait and Landscape */

   @media only screen

   and (min-device-width : 320px)

   and (max-device-width : 480px){ .mobileShow { display: inline;}}




   .mobileHide { display: inline;}

   /* Smartphone Portrait and Landscape */

   @media only screen

   and (min-device-width : 320px)

   and (max-device-width : 480px){  .mobileHide { display: none;}}




/* Green Button Color for the front page of the site */
.greenbutt {
  background-color: #28A745;
  color: #ffffff;
  cursor: pointer;
}
.greenbutt:hover {
  background-color: #07774c;
  color: #ffffff;
}






.faq {
  max-width: 100%;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #efefef;
  cursor: pointer;
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.question h3 {
  font-size: 20px;
  color: #002E5B;
  font-weight: bold;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease-in-out;
}

.answer p {
  padding-top: 1rem;
  line-height: 1.6;
  font-size: 15px;
}

.faq.active .answer {
  max-height: 300px;
}

