﻿.frame {
    background-color: white;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.frame_white {
    border: solid 2px white;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: silver;
}

.frametitle {
    font-weight: bold;
    color: #808080;
    padding-top: 3px;
}

.button {
    border: none;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    height: 20px;
    border: solid 1px lightgray;
    background-color: #f1f1f1;
    color: dodgerblue;
}

    .button:hover {
        border: solid 1px skyblue;
        background-color: skyblue;
        cursor: pointer;
        color: #555555;
    }

.button_no_height {
    border: none;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    padding: 1px 7px 1px 7px;
    border: solid 1px lightgray;
    background-color: #f1f1f1;
    color: dodgerblue;
}

    .button_no_height:hover {
        border: solid 1px skyblue;
        background-color: skyblue;
        cursor: pointer;
        color: #555555;
    }