
/* linkの設定 */

a:link{
	color : #0000cc;
	text-decoration:none;
}

a:visited{
	color : #FF0000;
	text-decoration:none;
}

a:active{
	color : #a38292;
	text-decoration:none;
}


a:hover{
    color:#CC0000;
}



/* レイアウトの設定*/


body{
    font-size: 12px;
    text-align: left;
    margin: 0px;
    padding: 0px;
    background-image: url(../img/a8.gif);   
    background-repeat: repeat-y;
    background-position: left;
    background-attachment: fixed;
}


/* ラッパーの設定*/
#wrap{
    position:relative;
    width:600px;
    background-color:#ffffff;
    margin:0px auto;
    text-align:left;
}
/* ヘッダーの設定*/
#head{
    width:600px;
    height:100px;
    background-color:#ffffff;
	padding-top: 10px;
}

/* 左側の設定*/
#left{
    width:150px;
    height:400px;
    float:left;
    background-color:#ffffff;
}
/* 右側の設定*/
#right{
    width:450px;
    height:400px;
    float:right;
    background-color:#ffffff;
}
/* フッターの設定*/
#foot{
    position:relative;
    width:100%;
    height:40px;
    background-color: #ffffff;
    margin-left: 10px;
}



