html {
	background: url('ting.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

body {
	background: #000000;
	font-size: 17px;
	font-family: Georgia;
	padding: 19px;
}

main {
	position: relative;
	background: white;
	height: 0px;
	width: 63%;
	margin: 0 auto;
	font-style: italic;
	padding: 10px;
	resize: both;
	border-style: double;
	border-color: #000;
}

main div {
	background: black;
	color: white;
	width: 220px;
	height: 40px;
	margin: -40px 0 0 -130px;
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 25px;
}

.parent {
	position: relative;
}

.child {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 70%;
}

ul {
	display: block;
	width: 55%;
	margin: 30% auto;
	padding: 0;
	list-style: none;
}

ul.container {
	box-shadow: 0px 0px 0px #000;
}

ul.submenu {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #000000;
}

a {
	display: block;
	padding: 10px;
	color: #fff;
	text-decoration: none;
	transition: all .3s ease;
	opacity: .8;
}

a:hover {
	color: #fff;
	transition: all .3s ease;
}

a.parent {
	transition: all .2s ease;
	color: #000;
	background: #fff;
	text-align: left;
}

a.tab {
	transition: all .3s ease;
	opacity: 0.9;
}

a.tab:hover {
	transition: all .3s ease;
	opacity: 1;
}

ul > li:hover > a.parent {
	transition: all .3s ease;
	opacity: 1;
}

footer {
	position: fixed;
	left: 0px;
	padding: 7px;
	text-align: center;
	font-size: 14px;
	font-family: sans-serif;
	color: #fff;
	bottom: 0px;
	height: 14px;
	text-decoration: none;
	width: 100%;
	background: #000;
}

::selection {
	background: black;
	color: white;
}

::-moz-selection {
	background: black;
	color: white;
}