nav {
  display: block;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: block;
  width: 800px;
  height: 800px;
  line-height: 800px;
  border-radius: 50%;
  position: absolute;
  margin: -400px -400px 0 0;
  top: 50%;
  right: -100px;
  overflow: hidden; }
  nav.isAnimating {
    -webkit-animation: OneSpinClockwise 1s ease-in-out 1;
            animation: OneSpinClockwise 1s ease-in-out 1; }
  nav li {
    z-index: 201;
    position: absolute;
    width: calc(800px / 2);
    height: calc(800px / 2);
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom; }
    nav li:nth-of-type(1) {
      -webkit-transform: rotate(-15deg);
              transform: rotate(-15deg); }
    nav li:nth-of-type(2) {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    nav li:nth-of-type(3) {
      -webkit-transform: rotate(-75deg);
              transform: rotate(-75deg); }
    nav li:nth-of-type(4) {
      -webkit-transform: rotate(-105deg);
              transform: rotate(-105deg); }
    nav li:nth-of-type(5) {
      -webkit-transform: rotate(-135deg);
              transform: rotate(-135deg); }
    nav li span {
      display: block;
      position: absolute;
      display: block;
      -webkit-transition: 0.5s ease-in-out;
      transition: 0.5s ease-in-out;
      text-shadow: 0px 0px 7px #f0f0f0;
      -webkit-transform-origin: left;
              transform-origin: left;
      -webkit-transform: rotate(80deg);
              transform: rotate(80deg);
      width: 0px;
      margin-right: -0px;
      right: 100px;
      top: 10px;
      font-size: 2em;
      line-height: 1em;
      cursor: pointer;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      border-bottom: 1px #e7b2c6 solid;
      font-family: 'mSimpleRoundFont'; }
      nav li span:hover {
        font-family: none;
        width: 200px;
        margin-right: -200px;
        color: #e7b2c6;
        box-shadow: 0 9px 12px -9px #e7b2c6;
        text-shadow: 0px 0px 7px #e7b2c6; }
    nav li.isSelected span {
      width: 200px;
      margin-right: -200px;
      color: #E4A53C;
      box-shadow: 0 9px 12px -9px #E4A53C;
      text-shadow: 0px 0px 7px #E4A53C;
      border-bottom: 1px #E4A53C solid; }
