@charset "UTF-8";

/**
 * CSS Default Initialize
 * 
 *    作成：Ze;Breyle
 *    更新：2009/06/01
 *    備考：エンコーディングはUTF-8です。
 *          ここには、CSS初期化設定を書きます。
 * 
--------------------------------------------*/
@import "layout_module.css";
@import "structure.css";
@import "common.css";



html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend
/*table, caption, tbody, tfoot, thead, tr, th, td*/{
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    font-size: 100%;
    font-style: normal;
    background: transparent;
    vertical-align: baseline;
}

html{
    height: 100%;
    overflow-y: scroll;
}

body{
    line-height: 1.6em;
    font-size: 14px;
    font-family: Tahoma, "MS Gothic", "ＭＳ Ｐゴシック", sans-serif;
    background: #eee;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Tahoma", "MS Gothic", "ＭＳ ゴシック", monospace;
}

a{
    color: #0066cc;
}
a:link    {text-decoration:none;}
a:visited {text-decoration:none;}
a:hover   {
    text-decoration:none;
    color: #660000;
}
a:active  {text-decoration:none;}
a:focus   {outline: 0;}

p{
    line-height: 1.5em;
}

strong, em{
    font-weight: bold;
}

blockquote p{
    padding: 0.5em;
}

blockquote p.cite{
    text-align: right;
    background-color: #f0f0e8;
}

blockquote, q{
    quotes: none;
}

q:before, q:after{
    content:'';
}

ins{
    text-decoration: none;
}

del{
    text-decoration: line-through;
}

/*
img{
    vertical-align: bottom;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th {
    text-align: left;
}
*/

ol, ul {
    list-style: none;
    list-style-position: outside;
}

ol {
    list-style-type: decimal;
}

ol li {
    zoom: normal;
}

br {
    letter-spacing: 0;
}

input {
    vertical-align: middle;
}

input[type="text"], input[type="password"], textarea, select {
    border-width: 1px;
    border-style: solid;
    border-color: #c0c0c0;
    font-size: 93%;
    color: #333;
    background-color: #fff;
}

input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
    border-width: 1px;
    border-style: solid;
    border-color: #6ddeff;
    font-size: 93%;
    color: #333;
    background-color: #fff;
}

form label, button, input[type="button"], select {
    cursor: pointer;
}  

optgroup {}

pre {
    font-family: "MS Gothic", "ＭＳ ゴシック", "Osaka-Mono", "Osaka－等幅", arial, 'Lucida Grande', monospace;
    line-height: 1.4;
    letter-spacing: 0;
    white-space: -moz-pre-wrap; /* Mozilla */
    white-space: -pre-wrap;     /* Opera 4-6 */
    white-space: -o-pre-wrap;   /* Opera 7 */
    white-space: pre-wrap;      /* CSS3 */
    word-wrap: break-word;      /* IE 5.5+ */
}

hr {
    margin: 0;
    padding: 0;
    border: 0;
    color: #000;
    background-color: #000;
    height: 1px;
}  
