@font-face
{
 src: url("BeyondWonderland.woff");
 font-family: "BeyondWonderland";
}
li h1.lei
{
 font-family: "BeyondWonderland","Times";
}

p
{
 font-family: "Comic Sans MS", "Times";
}

ul.lei
{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #104e8b;
}

li.lei 
{
  float: left;
}

li.lei a 
{
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li.lei a:hover 
{
  background-color: #111;
}

h1.lei
{
	background-color: #104e8b;
	color: white;
}

li.head
{
	display: initial;
	float: left;
}

* {box-sizing:border-box}

div.show
{
	max-width: 1066px;
    position: relative;
    margin: auto;
}

div.slide
{
	display: none;
}

a.prev, a.next 
{
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

a.next 
{
	right: 0;
	border-radius: 3px 0 0 3px;
}

a.prev:hover, a.next:hover
{
	background-color: rgba(0,0,0,0.8);
}

div.fade 
{
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade 
{
  from {opacity: .4}
  to {opacity: 1}
}