/* CSS Document */
body{
	padding:0;
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
}
.wrapper{
	padding:1% 0 0 0;
	text-align:center;
}
.wrapper img.logo{
	margin: 100px 0 0 0;
	
}
.wrapper a{
	font-size:12px;
	color:#333;
	font-weight:normal;
	text-decoration:none;
}
.wrapper a:hover{
	color:#ddd;
}
footer {
    clear: both;
    font-size: 12px;
    line-height: 18px;
    margin: 10px;
    text-align: center;
	position:absolute;
	bottom:0;
	right:0;
}
.highlights{
	position:absolute;
	bottom:0;
}
.oval {
	height: 110px;
	width: 160px;
	background-color: #555;
	border-radius: 50%;
	background: linear-gradient(to bottom, #393939 0%, #151515 100%);
	position: relative;
	cursor:pointer;
	margin: 10px 10px 0 0;
	float:left;
}
.oval a {
	color: #000;
	font-size: 18px;
	position: absolute;
	z-index: 1;
    top: 50%;
    left: 50%;
    height: 30%;
    width: 50%;
    margin: -8% 0 0 -25%;
}
.oval:hover a {
	color: #00F;
}
.oval:after {
	content: '';
	width: 156px;
	height: 97px;
	border-radius: 50%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	transform: rotate(1deg);
	left: 1px;
	top: -1px;
}
.oval:before {
	content: '';
	width: 163px;
	height: 113px;
	border-radius: 53%;
	background: #E8E51F;
	border: 0;
	position: absolute;
	left: -1px;
	top: -1px;
}
.oval:hover:before {
	background-color: #D2D034;
	border: 3px solid rgba(0,0,0,0.9);
}
.circle {
  height: 50px;
  width: 50px;
  background-color: #555;
  border-radius: 50%;
}
.square {
  height: 50px;
  width: 50px;
  background-color: #555;
}
.rectangle {
  height: 50px;
  width: 100px;
  background-color: #555;
}
.parallelogram {
	width: 100px;
	height: 50px;
	transform: skew(20deg);
	background: #555;
}
.trapezoid {
	border-bottom: 50px solid #555;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	height: 0;
	width: 125px;
}
.triangle-up {
	width: 0;
	height: 0;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	border-bottom: 50px solid #555;
}

@media only screen and (max-device-width: 480px) {
	img{
		width:100%;
	}
}

