@charset "UTF-8";

/*
    基本のスタイルシート (IE5～6も含む全ブラウザ用)
*/

/*----- 共通 -----*/
* {
	margin: 0;
	padding: 0;
}

/*----- HTML -----*/
html {
}

/*----- BODY -----*/
body {
	color: #000000;
	background: #efefef;
	font-size: 16px;
}

/* 全体部分 - コンテナ */
div#container {
/*	margin: 0 165px 0 135px; */
	margin: 0 165px 0 140px;
	padding: 2px 5px 2px 5px;
}

/* アスキーアート部 */
div.asciiart {
	font-family: "Mona","IPA MONAPGOTHIC","MS PGothic","ＭＳ Ｐゴシック","MS Pｺﾞｼｯｸ","MS Pゴシック",sans-serif;
}

/* サイドバー */
div.sidebar {
	position: fixed;
	
/*	width: 130px; */
	width: 135px;
	height: 100%;
	
	font-size: 12px;
	
	padding: 2px;
}

div#left-side {
	top: 0px; left: 0px;
}
div#right-side {
	top: 0px; right: 25px;
}

div.sidebar dl {
}
div.sidebar dt {
	font-weight: bold;
	color: #cc3300;
}
div.sidebar dd {
	font-weight: normal;
	color: #000000;
	margin-bottom: 1em;
}

/*----- 標準で使われるリンクタグの設定 -----*/
a:link {
	color: #0000ff;
	background: transparent;
	font-weight: bold;
	text-decoration: underline;
}
a:visited {
	color: #660099;
	background: transparent;
	font-weight: bold;
	text-decoration: underline;
}
a:hover, a:active {
	color: #ffffff;
	background: #0000ff;
	text-decoration: none;
}

a img {
	border: none;
	text-decoration: none;
}

/*----- 見出しタグ の設定 -----*/
div#container h1 {
	 color: #ff0000;
	 font-size: 19px;
	 font-weight: normal;
	 margin: 5px 0 16px 0; 
}

h2, h3, h4, h5, h6 {
}

div#container hr {
	 margin: 0 0 0 0; 
}

div.hdr {
	margin: 20px 0 18px 0;
}
div.hdrtitle {
	font-weight: bold;
}

div.navitop {
	margin: 0 0 3px 0;
	line-height: 1.1;
}

div.navibottom {
	margin: 3px 0 50px 0;
	line-height: 1.1;
}

/*----- 過去ログ本文部分の設定 -----*/
div#container dl dd {
	 margin: 0 0 1em 40px; 
}

/*-----  <strong> の設定 -----*/
strong {
	font-weight: bold;
	font-style: normal;
}

/*-----  <em> の設定 -----*/
em {
	font-weight: bold;
	font-style: normal;
}

