﻿        #Main {
    /*-webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;

    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;*/
}
        table{
            width:100%;
        }
        table thead th{
            font-weight:bold;
            border:2px solid black;
            background-color:rgb(218,238,243);
            color:darkblue;
            padding:5px;
            text-align:center;
            vertical-align:middle;
        }

        table tbody td{
            border:1px solid black;
            color:black;
            font-weight:100;
            padding:5px;
            text-align:center;
            vertical-align:middle;
        }

        input.Qty{
            width:100%;
            font-weight:400;
            background:transparent;
            border: 1px solid transparent;
            text-align:center;
        }

        td.PanelName{
            background-color:yellow;
            color:darkblue;
            font-weight:bold;
            text-align:center;
        }