        
/*---------------------*/
       h1 { 
          color: blue;
          text-decoration:underline;
        }
        
/*---------------------*/
div#div1_id,div#div2_id,div#div3_id,div#div4_id{
 display:inline-flex;  /*  <==  div   ul 2   "display:inline-flex;" style             . */
 flex-direction: row; 
 flex-wrap: nowrap ;
	width:1020px;font-size:13px;
	min-width:540px;
	margin: 0px 0px 0px 0px; /*top, right,bottom,left ;*/
}

  /*---------------*/
div#div1_id a,div#div2_id a{
	font-size: 16px;
text-decoration : none; /* 밑줄 없음. ("chrome,ie" 둘 다 적용된다.)*/
/*---font-style: italic;---*/
font-family:arial; /*courier;*/
color:black;
	margin: 0px 3px 0px 0px; /*top, right,bottom,left ;*/
}
  /*---------------*/
div#div1_id span,div#div2_id span{
	font-size: 19px;
    color:black;
	margin: 0px 0px 0px 0px; /*top, right,bottom,left ;*/
}
  /*---------------*/
div#div3_id input,div#div4_id input{
	font-size: 13px;
	margin: 0px 3px 0px 0px; /*top, right,bottom,left ;*/
}

div#div1_id a:hover,div#div2_id a:hover{     
font-size:17px;
color:#6183C0;
text-decoration : underline; /* 밑줄 없음. ("chrome,ie" 둘 다 적용된다.)*/
font-style: italic;
}

        