body{
    background: #dddddd;
    font-family: Arial, Helvetica, sans-serif;
}

h1{
    color: #002b55;
    font-size: 36px;
    letter-spacing: 2px;
    margin-top: 5px;
    text-align: center;
}

.content{
    background: #fff;
    max-width: 960px;
    margin: 10px auto;
    padding:  20px 30px;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 1px 3px 5px rgba(0,0,0,0.1)
}

ul{
    list-style-type: none;
    padding: 0;
}

li{
    padding: 20px;
    background: #f6f6f6;
    font-size: 20px;
    color: #002b55;
    position: relative;
    border-bottom: 1px solid #e6e6e6;
}

li:hover{
    background: #d1e2ff;
}

li span{
    display: block;
}

.font_size_16{
    font-size: 16px;
}

.font_size_10{
    font-size: 10px;
}

.font_size_12{
    font-size: 12px;
}

.font_size_14{
    font-size: 14px;
}

.margin_top_6{
    margin-top: 6px;
}

li div{
    position: absolute;
    top: 0;
    right: 0px;
    background: rgba(255,255,255,0.6);
    width: 40px;
    text-align: center;
    padding: 10px 0;
    font-weight:  bold;
    cursor:  pointer;
}

form{
    background: #eee;
    max-width: 960px;
    border-radius: 10px 10px 10px 10px;
}

form input{
    float: left;
    border: 0;
    border-bottom: 1px solid #eee;
    margin: 10px 1%;
    padding: 10px;
    display: block;
    box-sizing: border-box;
    font-size: 18px;
}

form select{
    float: left;
    border: 0;
    border-bottom: 1px solid #eee;
    margin: 10px 1%;
    padding: 10px;
    display: block;
    box-sizing: border-box;
    font-size: 18px;
}

form input:focus{
    outline: none;
    border-bottom: 3px solid #002b55;
    padding-bottom: 8px;
    transition: all ease 0.2s;
}

form:after{
    content: '';
    clear: both;
    display: block;
}

button{
    border: 0;
    background: #eee;
    border-radius: 10px;
    padding: 13px;
    box-shadow: -1px 0px 1px rgba(0,0,0,0.1);
    font-weight: bold;
    letter-spacing: 1px;
    color: #002b55;
    margin: 0 1%;
}

.pointer{
    cursor: pointer;
}

.center{
    text-align: center;
}

.lightBlue{
    background: #9bc1ff;
}

.lightGray{
    background: #dddddd;
}

.orange{
    background: orange;
}

div.table { 
    display: table; 
    border-collapse: collapse; 
}

div.tr { 
    display: table-row; 
}

div.td { 
    display: table-cell; 
    padding:5px; 
}

.setclear { 
    clear: both; 
}