#visuals
{
  position: absolute;
	width: 100%; height: 100%;
	overflow: hidden;
}

#visuals .images
{
	width: 100%; height: 100%;
	overflow: hidden;
	position: relative;
}

#visuals .image
{
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;

	width: 100%; height: 100%;
	float: left;
	position: relative;
}

#visuals .arrow
{
	position: absolute;
	background-color: rgba(110, 155, 177, .7);
	width: 50px; height: 50px;
	top: 50%;
	cursor: pointer;
}

#visuals .arrow:hover{ background-color: #C67273; }

#visuals .arrow > div
{
	position: absolute;
	width: 0; height: 0;
	top: 15px;

	border-style: solid;
}

#visuals .arrow.next
{
	right: 25px;
  border-radius: 100%;
}

#visuals .arrow.next > div
{
	left: 22px;

	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent #FFF;
}

#visuals .arrow.prev
{
	left: 25px;
  border-radius: 100%;
}

#visuals .arrow.prev > div
{
	right: 22px;

	border-width: 10px 10px 10px 0;
	border-color: transparent #FFF transparent transparent;
}

#visuals .navigator
{
	position: absolute;
	width: 100%;
	bottom: 0; left: 0;
	text-align: center;
}

#visuals .items
{
	display: inline-block;
	background-color: rgba(33, 33, 33, .7);
	padding: 0 10px;

	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

#visuals .items > div
{
	display: inline-block;
	background-color: #918F6E;
	width: 10px; height: 10px;
	margin: 15px 10px;
	cursor: pointer;

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#visuals .items > div.active,
#visuals .items > div:hover
{ background-color: #E6E6E6; }
