/* ========================== signature ==============================
File Name   : reset.css
Description : initial reset for html element.
Version     : 1
Author      : dev@authense.co.jp
==================================================================== */

/* --------------------------------------------------------------------
                    it referred to "YUI Reset CSS" - clear all element
*/
html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
th,
td,
dl,
dt,
dd,
ul,
ol,
li,
form,
fieldset,
input,
textarea {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

abbr,
acronym {
  border: 0;
}

a img {
  border: none;
}

/* scroll reset for firefox */
html {
  margin-bottom: 1px;
  height: 100%;
}


