@charset "UTF-8";
#calculatorPage{
        text-align: center;
}

#calculator{
        width:330px;
        margin: 0 auto;
        margin-bottom: 20px;
        text-align:center;
        height:450px;
        background-color:#562610;
        color:#FFFFFF;

        -moz-border-radius:5px;
        -webkit-border-radius:5px;
        -khtml-border-radius:5px;

}


.calculatorContainer{
        line-height:20px;

}
.calculatorContainer .sideTitle{
        width:100%;
}

.calculatorContainer .sideField{
        float:none;
        width:60%;
        margin:0 auto;
        text-align: center;
}

.calculatorContainer .sideField input{
        text-align:center;
        background-color:#FFFFFF;
        color:#000000;
        width: 100%;
}

#calculator  .sendButton{
        background-color:#dbCfb7;
        color:#000;
        font-family: Garamond,serif;
        font-weight:bold;
        height:25px;
        font-size:16px;

        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
}

#calcResult{
        margin: 30px auto 0px auto;
        text-align:center;
        width:80%;
}

