/* Demo by http://creative-punch.net */

/*@import "http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css";*/

#circular_menu {
    width: 250px;
    height: 250px;
    position: absolute;
}
#circle {
    width: 250px;
    height: 250px;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.open#circle {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

#circle a {
	/*border: 1px solid black;*/
	border-radius: 50%;
	padding:10px;
    text-decoration: none;
    color: black;
    display: block;
    height: 67px;
    width: 67px;
    line-height: 40px;
    margin-left: -20px;
    margin-top: -20px;
    position: absolute;
    text-align: center;
    animation-name: pulsate;
    -webkit-animation-name: pulsate;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
#circle a:hover {
    color: #eef;
}

.menu_genie_walk, .menu_genie_run, .menu_genie_stay, .menu_genie_rock, .menu_genie_next, .menu_genie_prev{
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.menu_genie_stay{
    background-image: url("../image/contextmenu/person1.png");
}

.menu_genie_walk{
    background-image: url("../image/contextmenu/person2.png");
}

.menu_genie_run{
    background-image: url("../image/contextmenu/person3.png");
}

.menu_genie_rock{
    background-image: url("../image/contextmenu/person4.png");
}

.menu_genie_next{
    background-image: url("../image/contextmenu/next.png");
}

.menu_genie_prev{
    background-image: url("../image/contextmenu/prev.png");
}


@keyframes pulsate {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}
@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.95);
        opacity: 0.7;
    }
}