﻿
.clearfix:after {
    display: block;
    height: 100%;
    _height: 100%;
    clear: both;
    content: '\020';
}

.clearfix {
    zoom: 1;
}

div.form {
    margin:0 auto;
    width: 90%;
    padding: 10px;
}

div.form_row {
    width: 100%;
    height: 30px;
    line-height: 30px;
    margin-bottom: 10px;
    border: 0px solid red;
}

div.form_item_half {
    display:inline-flex;
    line-height:30px;
    width: 49%;
    border: 0px solid black;
    
}

div.form_item_full {
    display: inline-flex;
    width: 98%;
    border: 0px solid black;
}

div.labelText {
    display: inline;
    width: 100px;
    text-align: right;
    padding-right: 10px;
}

div.form_selection {
    position: absolute;
    overflow: auto;
    background-color: #f9f9f9;
    border: 1px solid #888;
    box-shadow: 0 0 10px #888;
    color: #111;
    z-index:100000;
}

    div.form_selection ul {
        
        list-style-type: none;
        margin: 0px;
        line-height: 26px;
    }
        div.form_selection ul li {
            padding-left: 5px;
            cursor:pointer;
        }

        div.form_selection ul li:hover {
            background-color:orange;
        }
        
        div.form_selection ul li.selected {
            background-color: lightblue;
        }