/*
Description:
    Contains all the styles for the winning wheel page.
    
Verison History:
    2012-01-28, Douglas McKechie
    - Created based off earlier version.
    
    2015-09-26, Douglas McKechie
    - Minor updates for the 2.0 winwheel example.
*/
/* Sets the background image for the wheel */
td.the_wheel
{
    background-image: url(./vong-quay.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 630px;
    height: 630px;
    background-size: 100%;
}

.quaydeu{
    width: 90px;
    height: 105px;
    background: url(./quay.png);
    color: #333;
    background-size: contain;
    border: 0;
    background-repeat: no-repeat;
}
.power_controls{
    position: absolute;
    right: 42%;
    top: 38%;
    max-width: 120px;
    margin-right: 0;
}

/* Do some css reset on selected elements */
h1, p
{
    margin: 0;
}

div.html5_logo
{
    margin-left:70px;
}

/* Styles for the power selection controls */
table.power
{
    background-color: #cccccc;
    cursor: pointer;
    border:1px solid #333333;
}

table.power th
{
    background-color: white;
    cursor: default;
}

td.pw1
{
    background-color: #6fe8f0;
}

td.pw2
{
    background-color: #86ef6f;
}

td.pw3
{
    background-color: #ef6f6f;
}

/* Style applied to the spin button once a power has been selected */
.clickable
{
    cursor: pointer;
}

/* Other misc styles */
.margin_bottom
{
    margin-bottom: 5px;
}