@font-face {
    font-family: 'WebSymbolsRegular';
    src: url('css/websymbols/websymbols-regular-webfont.eot');
    src: url('css/websymbols/websymbols-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('css/websymbols/websymbols-regular-webfont.woff') format('woff'),
         url('css/websymbols/websymbols-regular-webfont.ttf') format('truetype'),
         url('css/websymbols/websymbols-regular-webfont.svg#WebSymbolsRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
.main-menu{	
	height: 45px;
    padding:0;
	border:0;
    margin:0px auto;
}
.main-menu li{
	width: 80px;
	height: 45px;
	position: relative;
	overflow: hidden;
	float:left;
	background: #333;
	/*margin-right: 4px;*/
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}

.main-menu li a{	
    width: 100%;
    height: 100%;
	top:0px;
    display: block;
    color: #bbb;
    
}
.main-icon{
    font-family: 'WebSymbolsRegular', cursive;
	text-decoration:none;
    font-size: 16px;
    color: #bbb;
    text-shadow: 0px 0px 1px #333;
    /*line-height: 45px;*/
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0px;
    top: 6px;
    text-align: center;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.main-content{
    position: absolute;
    left: 0px;
    width: 100%;
    height: 50%;
    top: 23px;
}
.main-title{
    font-size: 13px;
	text-decoration:none;
    opacity: 0.8;
	vertical-align:text-top;
    text-align: center;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.main-menu li:hover{
    background-color: #000;
}
.main-menu li:hover .main-icon{
	color: #fff;
	font-size: 50px;
	opacity: 0.3;
}
.main-menu li:hover .main-title{
    color: #fff;
    -webkit-animation: moveFromLeftRotate 300ms ease;
    -moz-animation: moveFromLeftRotate 300ms ease;
    -ms-animation: moveFromLeftRotate 300ms ease;
}

@-webkit-keyframes moveFromLeftRotate {
    from {
	       -webkit-transform: translateX(-100%) rotate(-90deg);
}
    to {
        -webkit-transform: translateX(0%) rotate(0deg);
    }
}
@-moz-keyframes moveFromLeftRotate{
    from {
        -moz-transform: translateX(-100%) rotate(-90deg);
    }
    to {
        -moz-transform: translateX(0%) rotate(0deg);
    }
}
@-ms-keyframes moveFromLeftRotate{
    from {
        -ms-transform: translateX(-100%) rotate(-90deg);
    }
    to {
        -ms-transform: translateX(0%) rotate(0deg);
    }
}

@-webkit-keyframes moveFromBottom {
    from {
        -webkit-transform: translateY(100%);
    }
    to {
        -webkit-transform: translateY(0%);
    }
}
@-moz-keyframes moveFromBottom {
    from {
        -moz-transform: translateY(100%);
    }
    to {
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromBottom {
    from {
        -ms-transform: translateY(100%);
    }
    to {
        -ms-transform: translateY(0%);
    }
}
