/* 
    Document   : ewok_basicStyle
    Created on : 18-oct-2014, 15:06:17
    Author     : ivo
    Description:
        Purpose of the stylesheet follows.
*/

root { 
    display: block;
}

body
{
    font-family: Verdana, Arial;
    font-size: 16px;
    color: #333;
}

label
{
    font-weight: bold;
}

.ewokComponent
{
    border-radius: 5px;
    border: #888 thin solid;
    background-color: #eee;
    padding: 5px;
    width: 200px;
    height: 34px;
    font-family: Verdana, Arial;
    font-size: 16px;
    color: #333;
}
.ewokComponentList
{
    border-radius: 5px;
    border: #888 thin solid;
    background-color: #eee;
    padding: 5px;
    width: 200px;
    /* height: 34px; */
    font-family: Verdana, Arial;
    font-size: 16px;
    color: #333;
}
.ewokComponent:hover
{
    background-color: lightyellow;
}
input.ewokComponent
{
    padding: 6px;
}
input.ewokComponent:disabled
{
    cursor: not-allowed;
}
input.ewokComponent:disabled:hover
{
    background-color: darkred;
    color: white;
}
button.ewokComponent
{
    width: 120px;
    font-weight: bold;
    vertical-align: top;
    background-color: white;
    cursor: pointer;
}
div.ewokComponent
{
    width: 188px;
    padding: 10px;
    border-radius: 0px;
    background-color: lightyellow;
}
div.ewokComponent:hover
{
     background-color: lightyellow;
}
.topInfoContainer
{
    position: absolute;
    display: inline-block;
    top: -1px;
    width: 350px;
    left: 50%;
    margin-left: -185px;
    min-height: 50px;
    background-color: lightyellow;
    padding: 10px;
    border: #333 thin solid;
    box-shadow: 2px 2px 2px #666;
}
.sText
{
    font-size: 12px;
}
.mText
{
    font-size: 14px;
}
.bText
{
    font-size: 16px;
}
.sSize
{
    width: 50px;
}
.mSize
{
    width: 100px;
}