*{
    box-sizing: border-box;
    margin:  0;
    padding: 0;
}


*:after,
*:before{
    box-sizing: border-box;
}


html, body{
	border: 7px solid #efefef;
    height: 100%;
	color: #aeaeae;
	font-family: Verdana, sans-serif;
    position: relative;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


img{
    max-width: 100%;
    height: auto;
}


#nav{
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
    margin-top: -27.5px;
}

footer{
    width: 100%;
    left: 0;
	position: absolute;
	bottom: 0px;
	padding-bottom: 30px;
	text-align: center;
	font-family: Verdana;
	font-size: 10px;
}




a, a:visited{
    color: #cecece;
}

a:hover {
    color: #333;
    text-decoration: none;
    transition: all 1s;
    -webkit-transition: all 1s;
}

a:active {
    color: blue;
}