@charset "EUC-KR";
/* autotab.css 2009/04/16 07:28:13 hongdoohee */
/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.autotablive .childtabhide {
 display:none;
}

/*--------------------------------------------------
  .autotab = before the autotab interface is set up
  .autotablive = after the autotab interface is set up
  --------------------------------------------------*/
.autotab {
}
.autotablive {
}

/*--------------------------------------------------
  ul.autotabnav = the tab navigation list
  li.autotabactive = the active tab
  --------------------------------------------------*/
ul.autotabnav
{
 margin:0;
 padding: 3px 0;
 border-bottom: 1px solid #778;
 font: bold 12px ±¼¸²;
}

ul.autotabnav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.autotabnav li a
{
 padding: 3px;
 margin-left: 0px;
 border: 1px solid #778;
 border-bottom: none;
 background: #EFEFEE;
 text-decoration: none;
}

ul.autotabnav li a:link { color: #448; }
ul.autotabnav li a:visited { color: #667; }

ul.autotabnav li a:hover
{
 color: #000;
 background: #DDE;
 border-color: #227;
}

ul.autotabnav li.autotabactive a
{
 background-color: #fff;
 border-bottom: 1px solid #fff;
}

ul.autotabnav li.autotabactive a:hover
{
 color: #000;
 background: white;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .childtab = the tab content
  Add style only after the autotab interface is set up (.autotablive)
  --------------------------------------------------*/
.autotablive .childtab {
 padding:5px;
 border:1px solid #aaa;
 border-top:0;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 /* height:200px; */

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

 /* overflow:auto; */
}

/* If desired, hide the heading since a heading is provided by the tab */
.autotablive .childtab h2 {
 display:none;
}
.autotablive .childtab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page
.autotablive#tab1 {
}
.autotablive#tab2 {
}
.autotablive#tab2 .childtab {
 height:200px;
 overflow:auto;
}
*/



