/**
 * code_choices.css
 *
 * @package   OpenEMR
 * @link      http://www.open-emr.org
 * @author    Kevin Yeh <kevin.y@integralemr.com>
 * @copyright Copyright (c) 2014 Kevin Yeh <kevin.y@integralemr.com> and OEMR <www.oemr.org>
 * @license   https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
 */

div.code-choices
{
    font-size: 10pt;
    position:relative;
    z-index: 0;
}
div.category-display
{
    float:left;
    width: 33%;
    cursor: pointer;
    margin:5px;
}

div.category-display > button
{
    width: 25em;
    font-weight: bold;
    text-align: left;
    margin: 2px 5px 2px 10px;
}

div.category-display > button:hover
{
    color: blue;
}
.active-category
{
    position: absolute;
    z-index: 10;
    background-color: white;
    width: 99%;
    border: 1px black solid;
    padding: 4pt;
}

div.code-choice
{
    float:left;
    width: 33%;
    cursor: pointer;
    text-align: left;
}

div.code-choice:hover{
    background-color: yellow;
}
