@charset "utf-8";
/* CSS Document */

* {
	margin:0;
	padding:0;	
}

body {
	font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
	font-size:16px;
	line-height:1.5;
	background-image:url("../images/background.jpg");
	background-repeat:no-repeat;
	background-attachment:fixed;
	background-origin:center center;
	background-size:cover;
	margin-top:100px;
}

.container {
	max-width:960px;
	margin:0 auto;
	overflow:hidden;
}

.circle-menu {
	width:450px;
	height:450px;
	position:relative;
	border:3px solid grey;
	border-radius:50%;
	color:lightgreen;
	overflow:hidden;
}

.circle-menu ul {
	width:inherit;
	height:inherit;
	list-style-type:none;
	position:relative;
}

.circle-menu ul li {
	width:inherit;
	height:inherit;
	background-image:url(../images/black-alpha-bg.png);
	border:1px solid white;
	overflow:hidden;
	position:absolute;
	left:-50%;
	top:-50%;
	transform-origin:right bottom;
}

.circle-menu ul li:hover {
	background-image:url(../images/white-alpha-bg.png);
}

.circle-menu ul li .item {
	display:block;
	width:inherit;
	height:inherit;
	text-align:center;
	color:lightgreen;
	padding-top:15px;
	position:absolute;
	left:60%;
	top:60%;
	cursor:pointer;
}

.circle-menu a {
	text-decoration:none;
	color:white;
}

.circle-menu .circle-center {
	width:20%;
	height:20%;
	background-color:white;
	border-radius:50%;
	border:3px solid grey;
	position:absolute;
	left:40%;
	top:40%;
	background-image:url("../images/team-side-icon.png");
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
}