#header {
    height:75px;
    border-bottom:1px solid #ddd;
    position:fixed;
    top:0px;
    left:0px;
    right:0px;
    background: rgba(100,100,100,0.7);
    z-index: 9999;
}

#header h1 {
	text-align: left;
	margin-left: 8px;
	clear: none;
}

#menu {
    margin: auto;
}

#menu h1 {
	position: absolute;
	padding: 0;
	font-size: 25px;
	left: 0;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.ca-menu{
    margin: 6px auto;
    max-width: 800px;
}

.menu-item-container {
    width: 30%;
    padding-left: 2px;
    padding-right: 2px;
    display: inline-block;
}

.menu-item {
    width: 100%;
    height: 80px;
    overflow: hidden;
    position: relative;
    float:left;
    background: #fff;
	line-height: 0px;
    -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.menu-item a{
    text-align: left;
    width: 100%;
    height: 100%;
    display: block;
    color: #333;
    z-index: 10001;
}
.ca-icon{
    font-size: 30px;
    color: #999;
    line-height: 30px;
    position: absolute;
    height: 30px;
    left: 0px;
    top: 5px;
	padding-left: 5px;
    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;
}

.menu-item.selected .ca-icon {
	color: #f900b0;
}

.ca-main{
    font-size: 36px;
    top: 0.5em;
    height: 40px;
    opacity: 0.8;
    text-align: center;
    color: #222;
    margin-bottom: 0;
    position: absolute;
    width: 100%;
	margin-top: 0;
}
.ca-sub{
    font-size: 1em;
    line-height: 1em;
    opacity: 0.8;
    text-align: center;
    color: #666;
    font-weight: normal;
    position: absolute;
    width: 100%;
    bottom: 0;
}
.ca-collapsed {
    font-size: 1em;
    line-height: 1em;
    opacity: 0;
    text-align: center;
    color: #666;
    font-weight: normal;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.menu-item.selected .ca-collapsed {
	font-weight: bold;
	color: black;
}

.menu-item:hover{
    border-color: #222;
    z-index: 999;
	background: darkorange;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
	box-shadow: 0 0 2px black;
}
.menu-item:hover .ca-icon{
    color: #555;
    font-size: 70px;
	opacity: 1;
    -webkit-animation: moveFromBottom 200ms ease;
    -moz-animation: moveFromBottom 200ms ease;
    -ms-animation: moveFromBottom 200ms ease;
}
.menu-item:hover .ca-main{
    color: white;
	text-shadow: 0px 0px 1px black;
	opacity: 1.0;
    -webkit-animation: moveFromBottom 300ms ease;
    -moz-animation: moveFromBottom 300ms ease;
    -ms-animation: moveFromBottom 300ms ease;
}
.menu-item:hover .ca-sub{
    color: white;
	text-shadow: 0px 0px 1px black;
	opacity: 1.0;
}

@-webkit-keyframes moveFromBottom {
    from {
        -webkit-transform: translateY(200%) scale(0.5);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0%) scale(1);
        opacity: 1;        
    }
}
@-moz-keyframes moveFromBottom {
    from {
        -moz-transform: translateY(200%) scale(0.5);
        opacity: 0;
    }
    to {
        -moz-transform: translateY(0%) scale(1);
        opacity: 1;        
    }
}
@-ms-keyframes moveFromBottom {
    from {
        -ms-transform: translateY(200%) scale(0.5);
        opacity: 0;
    }
    to {
        -ms-transform: translateY(0%) scale(1);
        opacity: 1;        
    }
}