/*---------------------------- Default / ----------------------------*/

/* body要素 margin padding font 初期化 */
body {
 margin: 0;
 padding: 0;
 background:#ffffff;
 font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
}

/* ブロックレベル margin padding 初期化 */
p,h1,h2,h3,h4,h5,h6,ul,ol,li,pre,dl,dt,dd,div,table,th,td,noscript,blockquote,form,hr,fieldset,address {
 margin: 0;
 padding: 0;
}

/* img要素 border-style 初期化 */
img{
 border-style: none;
 font-size:0;
 line-height:0;
}

/* リスト要素 ul dl ol 初期化 */
ul,dl,ol{
 list-style:none;
}

/*----------------------------------------------------
		Link
----------------------------------------------------*/
a {
 text-decoration:none;
}

a:link {
 color: #000000;
}
a:visited {
 color: #000000;
}
a:hover {
 color: #000000;
}
a:active {
 color: #000000;
}

/*----------------------------------------------------
		Clear
----------------------------------------------------*/
.cl { clear:both; }
/*---------- clearfix ----------*/
.clearfix{
    min-height:1%;
    position:relative;/*for preview*/
}
.clearfix:after{/*for modern browser*/
    content:".";
    display: block;
    height:0px;
    clear:both;
    visibility:hidden;
}
* html .clearfix{
    /*\*/height:1%;/*for WinIE*/
    display:inline-table;/*for MacIE*/
}

