@charset "UTF-8";
#view {
    background: none;
    text-align: center;
}

h2.corner_title {
    clear: both;
    margin: 0 0 6px 0;
    font-size: 131%;
    border-bottom: 1px solid #cccccc;
}

h3.corner_title {
    clear: both;
    margin: 0 0 6px 0;
    font-size: 116%;
}

@-moz-keyframes color-cycle {
  0%, 100% {
    background-color: blue;
}

  50% {
    background-color: red;
}
}

@-webkit-keyframes color-cycle {
  0%, 100% {
    background-color: blue;
}

  50% {
    background-color: red;
}
}

@-o-keyframes color-cycle {
  0%, 100% {
    background-color: blue;
}

  50% {
    background-color: red;
}
}

@-ms-keyframes color-cycle {
  0%, 100% {
    background-color: blue;
}

  50% {
    background-color: red;
}
}

@keyframes color-cycle {
  0%, 100% {
    background-color: blue;
}

  50% {
    background-color: red;
}
}

#css3-animation-cycle {
    height: 390px;
    background-color: silver;
    -webkit-animation: color-cycle 10s infinite;
    -moz-animation: color-cycle 10s infinite;
    -o-animation: color-cycle 10s infinite;
    -ms-animation: color-cycle 10s infinite;
    animation: color-cycle 10s infinite;
}
