﻿/***************************** Prop 47 Formatting ****************************************************/


    html,body{
        height:auto;
    }

    h2{
        color:#283560;
    }

    .tbl{
        border-collapse:collapse;
    }
    .tbl th{
        text-align:left;
		font-weight: bold;
		background-color:#DAE3ED;
		
        
        
    }
    .tbl td{
        padding:3px 0;
    }

        .tbl tr:nth-child(odd){
            background-color:#EBF0F5;
        }

    .invalid {
        color:red;
    }

    #valmessage{
        display:none;
    }

        #valmessage h4{
            color:red;
        }

    .modal {
        width: 50%;
        height: 50%;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        background-color: #EBF0F5;
        border: thin solid #aaa;
        position: fixed;
        top: 25%;
        left: 25%;
        z-index: 100;
        min-height: 500px;
        min-width: 400px;
        display:none;
    }

        .modal div{
            padding-bottom:25px;
            margin:10px;
        }

        .modal h1{
            font-size:14pt;
        }

    td.indent{
        padding-left:50px;
    }

    @media screen and (max-height:750px)
    {
        .modal{
            top:10px;
            bottom:10px;
            height:auto;
            position:fixed;
        }
    }

    @media screen and (max-width:675px){
        body .modal{
            top:10px;
            bottom:10px;
            left:10px;
            right:10px;
            width:auto;
            height:auto;
            position:fixed;
        }
    }
