﻿        /*전체 화면의 해상도 폭과 높이는 100% 사용(디바이스가 표현하는 전부를 사용한다)*/
    html, body {
        width: 100%;
        height: 100%;
    }

    /*데스크탑용(기본값)*/
    /*@media only screen and (min-width: 641px) {*/
        /*가용 해상도*/
            /*height:800px;*/
        /*#main {
            width: 600px;
            position: absolute;
            left: 50%;
            top: 1%;
            margin: 0 0 0 -300px;
        }*/
    /*}*/

    /*모바일용*/
        /*가용 해상도*/
    /*@media only screen and (max-width: 640px) {
        #main {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 5%;
            left: 0%;
            margin: 0 0 0 0px;
        }
    }*/

    /*테이블의 상위컨트롤(div)에 대한 폭은 100%*/
    table {
        width: 100%;
    }
    /*줄 높이*/
    tr {
        height: 35px;
    }

    .tab1_c1 {
        text-align: left;
        width: 50%;
        vertical-align:  central;
    }

    .tab1_c2 {
        text-align: right;
        width: 50%;
        vertical-align:  central;
    }

    .tab1_r2 {
        height: 2px;
    }

    .tab2_r1 .tab2_r3 {
        height: 20px;
    }

    .tab2_c1 {
        width: 15%;
    }

    .tab2_c2 {
        width: 70%;
    }

    .tab2_c3 {
        width: 15%;
    }

    .tab3_c1 {
        text-align: left;
        width: 65%;
    }

    .tab3_c2 {
        text-align: center;
        width: 35%;
    }
    /*로그인 부분의 색상*/
    #div2 {
        background-color: whitesmoke;
    }
    /*타이틀*/
    .title {
        text-align: right;
        color: #1E1E1E;
        font-size: x-large;
        font-weight: bold;
        padding-right:10px;
    }
    /*//버턴
    .btn {
        width: 100%;
        height: 50px;
        font-style: normal;
        font-size: Medium;
        color: White;
        border-width: 1px;
        border-style: Solid;
        border-color: Black;
        background-color: #585858;
    }*/
    /*라벨항목*/
    .idpasslabel {
        color: #1E1E1E;
        vertical-align: bottom;
    }
    /*입력필드*/
    .field {
        border-color: #666666;
        border-width: 1px;
        border-style: Solid;
        font-size: Medium;
        height: 35px;
        width: 100%;
    }

