.crossword {
    background-color: #000;
    border-collapse: separate;
    border-left: 1px solid #000;
    border-spacing: 0;
    border-top: 1px solid #000;
    counter-reset: req;
    empty-cells: hide;
    max-width:100%;
}
.crossword caption h1 {
    display: inline;
    font-size: 2em;
    margin: 0;
    padding: 0;
}
.crossword caption h2 {
    display: inline;
    font-size: 1em;
    font-style: italic;
    font-weight: normal;
    margin: 0;
    padding: 0;
}
.crossword td {
    background-color: #FFF;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    height: 30px;
    padding: 1px;
    text-align: left;
    vertical-align: top;
    width: 30px;
    transition: all 0.2s ease;
}

.crossword td.sel {
    background-color: rgb(235, 247, 255);
}
.crossword td.err {
    background-color: #ffacac;
}
.crossword td.ok {
    background-color: #c6ffdb;
}
.crossword td[id] {
    counter-increment: req;
}
.crossword td[id]:before {
    content: counter(req);
    font-size: 10px;
    margin: 3px;
    position: absolute;
}
.crossword td input {
    background-color: transparent;
    border: 0 none;
    font-size: 15px;
    height: 100%;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    outline: 0 !important;
}
#check {
    padding: 8px 26px;
    margin-top: 10px;
    border: none;
    background: #17a8e3;
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    outline: none;
    border-radius: 3px;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
    cursor: pointer;
    width: 210px;
}
#definitions {
    float: left;
    width: 100%;
    overflow: auto;
}
.pointer {
	float: left;
    width: 30%;
}
#definitions .pointer li {
    cursor: pointer;
}
#definitions .pointer li:hover {
    background-color: #069;
    color: white;
}

#tooltip {
    background-color: #a10000;
    border: 1px solid #ffffff;
    color: #fff;
    display:none;
    opacity: 1;
    padding: 5px;
    position: absolute;
    width: 200px;
}

#create:after {
    clear: both;
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
}
#create fieldset {
    float: left;
    margin: 0;
    padding: 0;
}