@charset "utf-8";

/* common style */

html,body {
        height:100%;
}

body {
        line-height:1.6;
        color:#333;
        font-size:14px;
        word-break:break-all;
}

body > #content {
        width:100%;
        position:relative;
        height:auto !important; /* IE ?????? */
        height:100%; /* IE ?????? */
        min-height:100%;
}
        
a {
        color: #f00;
        text-decoration: none;
}

/* float clear */

div:after {
        display:block;
        clear:both;
        content:"";
}

/* breadcramb */
.breadcramb li + li:before {
        margin:0 3px;
        content:">";
}

.breadcramb li a {
        padding:3px 0;
}


/* header */
body > #content > header {
}


/* footer */
body > #content > footer {
        position:absolute;
        left:0;
        bottom:0;
        width:100%;
        height:30px;
        background:#ccc;
}

/* アドレスバーを引っ込める */
window.onload = function(){
     setTimeout("scrollTo(0,1)", 100);
}

