<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*	CSS tamplated by Zacky for usually using	*/

@charset "UTF-8";

/*	標準設定   */
@import url("default.css");

/*  タグ覚書
	#id / .class
	* ：任意（全称）セレクタ
	a , b ：複数セレクタ
	a b ：子孫セレクタ（a内のb全て）
	a &gt; b ：子セレクタ（a直下のbのみ）
	a + b ：隣接セレクタ（a直後のbのみ）
	margin：外側 / padding：内側
		1：[上下左右]
		2：[上下][左右]
		3：[上][左右][下]
		4：[上][右][下][左]
*/

body{
	background: #fff url("bg.png");
	background-repeat: repeat-x;
	background-attachment: fixed;
	background-position: bottom;
}
div#container{
	background: rgba(192,192,255,0.1);
}
article{
	background: #fff url("article.png");
	background-repeat: repeat-y;
	background-position: right;
}
article &gt; .article_top{
	margin: -11px -11px 10px;
	/*	[上][左右]:-(article padding+1)	*/
	height: 30px;	/*	画像height	*/
	background: url("article_title.png");
	background-position: left bottom;
	background-repeat: no-repeat;
	border: 1px solid #000;
	border-bottom: 1px dashed #000;
	padding: 0;
	padding-left: 35px;
	border-radius: 0;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.4);
}
footer#menu_bar_wrapper{
	margin: 0;
	padding: 0;
	height: 35px;
}
div#menu_bar{
	position: fixed;
	bottom: 0;
	margin: 0 auto;
	padding: auto auto;
	height: 35px;
	width: 100%;
	z-index: 100;
	background-image: url("menu_bg.png");	/*	height = 35px	*/
	background-repeat: repeat-x;
	vertical-align: middle;
}
div#menu_bar ul{
	margin: 0;
	padding: 0;
}
div#menu_bar li{
	margin: 0 10px;
	padding: 0;
	display: inline;
}</pre></body></html>