button, 
.button {
	border: none;
	cursor: pointer;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	padding: 2px 28px 0px 7px !important;
	overflow: hidden;
	background: #dd1313 none repeat scroll 0 0;
	text-decoration: none;
	height: auto;
	width: auto;
	color: #fff;
}

/*input does not support ::after*/
input.button {
	padding: 5px 7px !important;
}

button:hover, 
.button:hover {
	background: #ccc none repeat scroll 0 0;
}

button::after,
.button::after {
	content: "→";
	font-family: "PannoTextLight",Arial,sans-serif;
	font-size: 12px;
	color: inherit;
	position: absolute;
	top: 0px;
	right: 5px;
}


a.button.large {
  padding: 8px 38px 8px 14px;
  font-size:150%;
}

a.button.medium {
  font-size:100%;
}

a.button.small {
  padding: 0px 17px 0px 4px;
  font-size:75%;
}

.right,
img.align-right  {
	float:right;
	margin:7px 0 7px 7px;
}

.left,
img.align-left  {
	float:left;
	margin:7px 7px 0 7px;
}

.right:after,
.left:after,
img.align-right:after,
img.align-left:after,
p.imgcircle:after {
  content: "";
  display: table;
  clear: both;
}


ul.logo {
	list-style: none;
	display: flex;
	text-align: center;
	align-items: baseline;
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}

ul.logo li {
	padding: 2%;
	display: inline-block;
	text-align: left;
	position: relative;
	align-self: end;
}

ul.logo img {
  vertical-align: middle;
}

p.small{
	font-size:70%;
}

p.imgcircle > img {
border-radius:5000px;
}

.marginauto {
	margin:0 auto;
}

.flex {
display: flex;
flex-wrap: wrap;
flex-direction: row;
align-items: stretch;
}

.justify {
justify-content: space-evenly;
}