div.user_panel{
    margin: 55px 0px;
    text-align: center;
}
div.column{
    width:49%;
    display:inline-block;
    vertical-align: top;
}

.button {
    top:10px;
    width:200px;
    height:200px;
    cursor:pointer;
    position:relative;
    z-index:9999;
}

.button a{
    text-decoration:none;
}

div.button_text{
    width:180px;
    position: absolute;
    text-align:center;
    padding:0px 10px;
    font-size:16pt;
    text-shadow: 1px 1px 1px #757575;
    filter: dropshadow(color=#757575, offx=1, offy=1);
}

div.button_text img{
    max-width:150px;
    max-height:150px;
}

div.option {
    width:120px;
    height:120px;
    text-align:center;
    position: absolute;
    top:35px;
    left:40px;
    
    transition: transform 0.2s linear;
    -moz-transition: -moz-transform 0.2s linear;    /* FF3.7+ */
    -o-transition: -o-transform 0.2s linear;      /* Opera 10.5 */
    -webkit-transition: -webkit-transform 0.2s linear; /* Saf3.2+, Chrome */
}

div.option img{
    height:70px;
    
    
}

div.option:hover{
    -webkit-transform: scale(1.1);  
    -moz-transform: scale(1.1);  
    -ms-transform: scale(1.1);  
    -o-transform: scale(1.1);  
    transform: scale(1.1);  
}

div.text{
    /*margin-top:40px;*/
    padding: 0px 5px;
    font-size:12pt;
}

ul.reset,
ul.reset li {
    display:block;
    list-style:none;
    padding:0;
    margin:0;
}

ul.reset li {
    position:absolute;
}

ul.reset li a {
    outline:none;
}


div.circle {
    display:inline-block;
    width:220px;
    height:220px;
    cursor:pointer;
    position:relative;
    /*margin: 100px auto 150px auto;*/
    margin:60px;
    display:inline-block;
    color: blue;
}

div.outer-circle {
    background:transparent;
    width:220px;
    height:220px;
    -webkit-border-radius: 110px;
    -moz-border-radius: 110px;
    border-radius: 110px;
    border:1px solid #aaaaaa;
    position:absolute;
    z-index:800;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    -moz-transition: -moz-transform .2s ease-in-out;
    -o-transition: -o-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    
    box-shadow: 0px 0px 5px 0px #000000;
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.5);

}

div.outer-circle.hover {
    -moz-transform: scale(2.05);
    -o-transform: scale(2.05);
    -webkit-transform: scale(2.05);
    transform: scale(2.05);
}

div.middle-circle {
    margin:1px;
    width:220px;
    height:220px;
    -webkit-border-radius: 110px;
    -moz-border-radius: 110px;
    border-radius: 110px;
    background: #ececec; /* Old browsers */
    background: -moz-linear-gradient(top, #ececec 0%, #d8d8d8 100%);
    /*background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ececec), color-stop(100%,#d8d8d8));*/
    /*background: -webkit-linear-gradient(top, #ececec 0%,#d8d8d8 100%);*/
    background: -o-linear-gradient(top, #ececec 0%,#d8d8d8 100%);
    background: -ms-linear-gradient(top, #ececec 0%,#d8d8d8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ececec', endColorstr='#d8d8d8',GradientType=0 ); /* IE6-9 */
    background: linear-gradient(top, #ececec 0%,#d8d8d8 100%); /* W3C */
    position:absolute;
    z-index:900;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;

}

div.middle-circle.hover {
    -moz-transform: scale(2);
    -webkit-transform: scale(2);
    transform: scale(2);
}

div.inner-circle {
    background-color:transparent;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    width:200px;
    height:200px;
    top:10px;
    left:10px;
    position:absolute;
    z-index:1000;
    transition: background-color 0.5s linear, color 0.5s linear;
    -moz-transition: background-color 0.5s linear, color 0.5s linear;    /* FF3.7+ */
    -o-transition: background-color 0.5s linear, color 0.5s linear;      /* Opera 10.5 */
    -webkit-transition: background-color 0.5s linear, color 0.5s linear; /* Saf3.2+, Chrome */
}

div.inner-circle.hover {
    background-color:darkgray;
    border-bottom:1px solid #FFF;
    -webkit-box-shadow: inset 0px 1px 1px 0px #575757;
    -moz-box-shadow: inset 0px 1px 1px 0px #575757;
    box-shadow: inset 0px 1px 1px 0px #575757;
    color: white;
}