div.code {
    padding: 10px;
}
div.code table {
    width: 400px;
}
div.code table tr {}
div.code table tr td {}
div.code table tr td:first-child {
}
div.code table tr td:last-child {
    line-height: 20px;
}
div.code table tr td input[type="submit"] {
    width: 280px;
    border-radius: 2px;
    padding: 7px 0;
    font-size: 13px;
    letter-spacing: 1px;
    word-wrap: break-word;
    outline: none;
}
div.code table tr td input {
    padding: 5px 10px;
    width: 256px;
    font-size: 13px;
}
div.pre {
    padding: 20px;
    width: 360px;
    color:#001C96;
    font-family: monospace;
    line-height: 20px;
    background: #F5F5F5;
    border-radius: 2px;
    margin-top: 10px;
}
.visible {display: inherit;}
.hidden {display: none;}

.blink {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;

    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: 1;

    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@-moz-keyframes blinker {
    0% { background: #DDDDDD; }
    50% { background: #ECECEC; }
    100% { background: #F5F5F5; }
}

@-webkit-keyframes blinker {
    0% { background: #DDDDDD; }
    50% { background: #ECECEC; }
    100% { background: #F5F5F5; }
}

@keyframes blinker {
    0% { background: #DDDDDD; }
    50% { background: #ECECEC; }
    100% { background: #F5F5F5; }
}