html {
	margin: 0;
	padding: 0;
	border: none;
}

/*
ページ全体の基本的な設定。背景色や文字色など
*/
body { 
	font-size: medium; /*標準文字サイズ*/
	color: #280606; /*暗い赤*/
	background-color:  #FFFFFF; /*背景白*/
	background-image: url(images/library_back.jpg);
	background-position: bottom right;
	background-repeat: no-repeat;
	background-attachment : fixed;
	border: none;
 } 

/*
DIVクラス要素の指定
*/

#title{
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	position: fixed;
	top: 0;
}

#sidebar{
	position: relative;
	top: 10px;
	left: 1px;
	width: 15%;
	margin: 0;
	padding: 5px;
}

#comics{
	position: absolute;
	top: 20%;
	left: 300px;
	margin: 0;
	padding: 25px;
}

#copyright{
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	bottom: 10px;
}


/*
見出し要素等の指定
*/

h1{
	PADDING-RIGHT: 0.3em;
	PADDING-LEFT: 0em;
	PADDING-BOTTOM: 0.3em;
	PADDING-TOP: 0.3em;
}

h2 {
	font-size: large;
	font-weight: bold;
	margin: 0;
	padding: 0em;
	color: #046b65
	background-color: #ffffff;
}

h3{
	font-weight: bold;
	margin: 10;
	padding: 0em;	
}

p{
	font-size: medium; /*標準文字サイズ*/
}

