
@charset "utf-8";
/* Common */
@import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;vertical-align:middle;background:transparent;line-height:1;}
img,fieldset{border:0;max-width:100%;vertical-align:top;}
ul,ol{list-style:none;}
em,address{font-style:normal;}
table{border-collapse:collapse; border-spacing:0;table-layout: fixed;
    max-width: none;
    width: 100%;
    min-width: 100%;}
a{text-decoration:none; box-sizing:border-box; color:#333}
a:hover,a:active,a:focus{text-decoration:none;}
.blind{visibility:hidden; overflow:hidden; position:absolute; top:0; left:0; width:1px; height:1px; font-size:0; line-height:0;}
caption.blind{position:static;}
.wrapper{width:100%;max-width:768px;margin:0 auto;position:relative}
.wrap{padding:0 10px;}
.wrap:after,
.cf:after{content:''; display:block; clear:both;}
.fr{float:right;}
.fl{float:left;}
.cb{clear:both}
html,body{font-size:14px; font-family:'Noto Sans KR', sans-serif;font-weight:400;}
.center{position:absolute;left:50%;transform:translate(-50%, -50%);top:50%;width:100%;}



/* ----------------------------------------------------------------------------------------------------
Super Form Reset
A couple of things to watch out for:
- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs
----------------------------------------------------------------------------------------------------*/

input,
label,
select,
button,
textarea
{
    margin:0;
    border:0;
    padding:0;
    display:inline-block;
    vertical-align:middle;
    white-space:normal;
    background:none;
    line-height:1;

    /* Browsers have different default form fonts */
    font-size:14px;
}
input[type="password"] {
    font-family: Arial;
}
/* Remove the stupid outer glow in Webkit */
input:focus
{
    outline:0;
}

/* Box Sizing Reset
-----------------------------------------------*/

/* All of our custom controls should be what we expect them to be */
input,
textarea
{
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    box-sizing:content-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select
{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}

/* Text Inputs
-----------------------------------------------*/

input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week]
{
}

/* Button Controls
-----------------------------------------------*/

input[type=checkbox],
input[type=radio]
{
    width:13px;
    height:13px;
}

/* File Uploads
-----------------------------------------------*/

input[type=file]
{

}

/* Search Input
-----------------------------------------------*/

/* Make webkit render the search input like a normal text field */
input[type=search]
{
    -webkit-appearance:textfield;
    -webkit-box-sizing:content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration
{
    display:none;
}

/* Buttons
-----------------------------------------------*/

button,
input[type="reset"],
input[type="button"],
input[type="submit"]
{
    /* Fix IE7 display bug */
    overflow:visible;
    width:auto;
    cursor:pointer
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button
{
    padding:0;
    border:0;
    background:none;
}

/* Textarea
-----------------------------------------------*/

textarea
{
    /* Move the label to the top */
    vertical-align:top;

    /* Turn off scroll bars in IE unless needed */
    overflow:auto;
}

/* Selects
-----------------------------------------------*/

select
{
    -webkit-appearance: none; /* Webkit */
    -moz-appearance: none; /* FF */
    -ms-appearance: none; /* Edge */
    -o-appearance: none;
    appearance: none; /* Future */
}
select::-ms-expand {
    display: none;
}
select[multiple]
{
    /* Move the label to the top */
    vertical-align:top;

}

.Specifications .tablebox{width:100%;overflow:auto;;margin-top:2em;}
.Specifications .tablebox .help-info{color:#ec3333;line-height:2em;}
.Specifications table.tbl{margin-bottom:20px;width:100%;border-top:2px solid #ccc;width:748px !important;}
.Specifications .tbl th,.content .tbl td{padding:5px;word-break:break-all;font-size:12px;}
.Specifications .tbl thead{text-align:center;border-bottom: 1px solid #f0f0f0;}
.Specifications .tbl thead th{background:#F6F6F6;line-height:28px;font-weight:bold;color:#444;border-bottom: 1px solid #f0f0f0;}
.Specifications .tbl thead td{border-bottom: 1px solid #f0f0f0;}
.Specifications .tbl tbody th {background:#F6F6F6;line-height:28px;border-bottom:1px solid #e3e3e3;color:#000;padding:5px 8px;font-weight:bold;text-align:center;}
.Specifications .tbl tbody td {text-align:center;border-right: 1px solid #E3E3E3;line-height:20px;border-bottom:1px solid #e3e3e3;color:#545454;}
.Specifications .tbl tbody td.end	{border-right:none;}


a[href^="tel"]{
    color:inherit;
    text-decoration:none;
}
