@charset "UTF-8";
/* CSS Document */
.flex-container {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
}
.flex-container > div {
	background-color: #FFF;
	width: 100%;
	margin: 20px;
	text-align: center;
}
@media (max-width: 700px) {
  .flex-container {
    flex-direction: column;
	 width: 92%;
  }
}
.box {
	background-color: #FFF;
	width: 95%;
	text-align: left;
	box-shadow: 0 0 11px rgba(33,33,33,.4);
}
.box:hover {
  box-shadow: 0 0 11px rgba(33,33,33,.4); 
  background-color: #eff5f6;
}
.boxhome {
	text-align: center;
	padding: 0px 5px 0px 5px;
	font-size: 1.3em;
	font-weight: 700;
	color: #999;
	text-decoration: none;
	padding:20px;
}
.italic {
	text-align: center;
	padding: 0 5px;
	font-size: 1em;
	font-weight: normal;
	color: #999;
	text-decoration: none;
	-moz-hyphens: auto;
	-o-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}


