#selectOptions{
    width : 300px;
    height : auto;
    min-height : 150px;
    background-color : rgb(240,240,240);
    z-index : 10002;
    position : fixed;
    left : 50%;
    margin-left : -150px;
    top : 10%;
    opacity : 0.0;
    visibility : hidden;
    transition : opacity 0.5s;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    border-radius : 12px;
    -webkit-box-shadow: -1px 16px 30px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    -1px 16px 30px 0px rgba(50, 50, 50, 0.75);
    box-shadow:         -1px 16px 30px 0px rgba(50, 50, 50, 0.75);
}

#selectOptionsHeader {
    width : 100%;
    height : 25px;
    border-bottom : 1px solid rgb(60,60,60);
    background-color : rgb(200,200,200);
    border-top-left-radius : 12px;
    border-top-right-radius : 12px;
    text-align : center;
    display : table;
}

#selectOptionsHeader p {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    display : table-cell;
    vertical-align: middle;
}

#selectOptionsContainer {
    width : 100%;
    height : auto;
    min-height : 70px;
    text-align : center;
    margin-top : 20px;
}


#selectOptionsContainer select{
    display : inline-block;
    min-width : 100px;
    max-width : 250px;
}

#selectOptionsButton {
    height : 25px;
    width : 100%;
}

#selectOptionsButton button {
    height : 25px;
    float : right;
    margin-right : 20px;
    width : 60px;
}