/* Reset default values */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img,
ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, fieldset, form, label, legend, table, caption, tbody, tfoot,
thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup,  menu, nav, output, ruby, section, summary, time, mark,
audio, video, li, ul {
    margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
img {
    border:none;
}

body {
    font: 18px arial, sans-serif;
}

#splash {
    width: 100%;
    height: 379px;
    background-image: url('../img/bingo8.png');
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 98;
    text-indent: -999em;
}

#download {
    width: 100%;
    position: absolute;
    top: 400px;
}

#download .inner {
    width: 375px;
    margin: 0 auto 20px auto;
    background-color: #fff;
    border-radius: 50px;
    padding: 5px;
    border:1px #ccf solid;
}

#download p {
    float: right;
    margin-right: 20px;
}

#download img {
    margin-left: 20px;
    width: auto;
}

#download a {
    display:block;

}

#wrap {
    width: 100%;
    height: 100vh;
    background-image: url('../img/bg.jpg');
    background-size: cover;
}
#currentNumber, #oldNumbers {
    width: 960px;
    margin: auto;
    clear:both;
    overflow: hidden;
}

#currentNumber {
    height: 30%;
}

#callArea {
    height:100px;
    text-align: center;
    font-size: 25px;
}

/* Buttons */
#call {
    cursor: pointer;
    width: 200px;
    padding: 20px;
    background-color: #000;
    margin: auto;
    border-radius: 50px;
    border: 5px #000 solid;
    background: #7d7e7d;
    background: -moz-linear-gradient(top, #7d7e7d 0%, #0e0e0e 100%);
    background: -webkit-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%);
    background: linear-gradient(to bottom, #7d7e7d 0%,#0e0e0e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=0 );
    color: #fff;
}

#call:hover {
    border: 5px #ed9017 solid;
    background: #ed9017;
    background: -moz-linear-gradient(top, #f6e6b4 0%, #ed9017 100%);
    background: -webkit-linear-gradient(top, #f6e6b4 0%,#ed9017 100%);
    background: linear-gradient(to bottom, #f6e6b4 0%,#ed9017 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6e6b4', endColorstr='#ed9017',GradientType=0 );
}

#done {
    display: none;
}

/* Balls */

#ballA, #ballB, #ballC, #ballD, #ballE, #ballF, #ballG, #ballH {
    position: absolute;
    top:-250px;
    width:100px;
    height:100px;
    background-color: #ddd;
    border-radius: 50%;
    font-size: 80px;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    box-shadow: #9ff 0 0 20px;
}

.ball, .denary {
    height: auto;
    display: inline-table;
    font-weight: bold;
    overflow: hidden;
}

.ball {
    border-radius: 50%;
}

.denary {
    border: 1px #090 solid;
    color: #090;
    opacity:0;
    margin-left: 5px;
    border-radius: 30%;
}


/* Old numbers */

#oldNumbers {
    height: 450px;
}

#oldNumbers ul {
    width:960px;
    margin: auto;
}

li.old {
    width: 420px;
    display: inline-table;
    list-style: none;
    margin: 5px 5px 5px 35px;
    padding: 5px 0 5px 0;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    border: 1px #000 solid;
    background-color: #fff;
    opacity: 0.5;
}

li.old:hover {
    border: 1px #0ff solid;
    opacity: 1;
}

li.old .ball, li.old .denary {
    font-size: 150%;
    height: 30px;
    background-color: #fff;
    margin-right: 2px;
}
li.old .ball {
    width: 30px;
}
li.old .denary {
    width: 80px;
}

li.old .ball{
    border: #666 solid 1px;
}

li.old .ball:nth-child(4) {
    margin-right: 25px;
}

#footer {
    clear: both;
    /*width: 100%;*/
    height: 20px;
    text-align: right;
    background-color: #000;
    position: absolute;
    bottom:0;
    right: 0;
    padding: 10px;
    opacity: 0.5;
}
#footer a {
    font-size: 13px;
    color: #fff;
}
