@charset "UTF-8";

/* ダウンロードしてくださって、ありがとうございます。
・プラグイン1と2は左のメニューに、プラグイン3はトップページのみ記事トップに来るように設定しています。
・記事幅以上の画像を貼るとレイアウトが崩れますので注意。
・アダルト・宗教・違法サイトは使用不可。
・カスタマイズ可ですが、カスタマイズ後もソースの再配布とフッターの著作権削除や改竄、見えにくくすること等は不可です。
・記事幅・メニュー幅変更や、左右入れ替えも簡単に出来ますので、「各部の幅と左右変更」のところを見てください。
・WINXPにて、IE5.5と6と7　OPERA、FireFox、Netscape、Safariの最新版で動作・表示確認しています。

何かあれば下記へどうぞ
http://dokode.blog87.fc2.com/

by どこドア
07年1月11日初登録、08年4月20日最終更新 */

/* ---------------------------------------
▼画面全体
---------------------------------------- */
/* 初期化 */
* {
margin:0;
padding:0;
word-break:break-all; /* IEで半角英数字を強制改行 */
}

body {
margin-top: 320px;
text-align:center; /* 中央に配置 */
color:#000; /* 画面全体の文字色 */
font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',Osaka,sans-serif; /* 画面全体のフォント指定 */
font-size:12px; /* 画面全体の文字サイズ */
background-color:#fff; /* 画面全体の背景の色 */
background-position:center top; /* 背景画像の位置*/
background-repeat   : no-repeat;

padding:0;

}


/* ---------------------------------------
▼各部の幅と左右変更
---------------------------------------- */
/* 全体のレイアウト（メニュー幅＋メイン幅＋余白＝全体のレイアウト＝ヘッダーです。メニューやメインを増やした分だけレイアウトとヘッダーに加算してください） */
#layout {
width:95%; /* レイアウトの幅 */
background-color:#F4F2E7; /* レイアウト部分の背景色 */
margin:0 auto; /* 左右のマージンを自動計算して中央に配置 */
padding:0;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}

/* ヘッダー */
#header {
text-align:left; /* 左寄せ */
width:98%;  /* ヘッダーの幅 */
height:110px; /* ヘッダーの高さ */
（変更したい場合はここを変えてください） */
background-repeat:no-repeat; /* 画像を繰り返さない */
background-position:left top; /* ヘッダー画像を左上に置いています */


padding:0;
margin:0;
}

/* メイン */
#main {
float:right; /* 右に回り込む（右メニューにしたい時はrightをleftに変更してください・左右変更箇所、全部で5つ、その1） */
width:65%; /* メイン幅 */
margin:0;
padding:0;

}

/* メニュー */
#menu {
float:left; /* 左に回り込む（右メニューにしたい時はleftをrightに変更してください・左右変更箇所その2） */
width:317px; /* メニューの幅 */
background-color:transparent; /* 背景を透明に */
margin-bottom:10px;
padding:0;
overflow:hidden; /* はみ出した部分を見えなくする */
}

/* 記事囲み */
.entry_block {
text-align:left;
border-collapse:collapse; /* 余白をなしに */
background-color:#fff; /* 背景色 */
border:1px solid #000; /* 記事を実線で囲んでいます */
padding:0;
margin:25px 15px 35px 0; /* 上右下左の順に記述（右メニューにしたい時は左右を入れ替えて25px 0 35px 15pxに・左右変更箇所その3） */
}

/* メニュータイトル */
.menu_title {
	text-align:left;
	font-size:12px; /* フォントサイズ */
	color:#fff; /* 文字色 */
	background-color:#000; /* 背景色 */
	font-weight:bold; /* 字の太さ */
	margin:25px 0 2px 10px; /* 上右下左の順に記述（右メニューにしたい時は左右を入れ替えて25px 10px 2px 0に・左右変更箇所その4）　*/
	padding:4px 5px;
	background-image: url(http://fc2-blog.net/img/variety/top/dayback2.jpg);
}

/* メニュー内枠 */
.menu_body {
margin-left:10px; /* 右メニューにしたい時はmargin-left:10px;をmargin-right:10px;に（左右変更箇所その5）　*/
padding:0;
}

/* ---------------------------------------
▼LINK
---------------------------------------- */
/* 画面全体のリンク色 */
/* 未閲覧 */
a:link {
color:#000; /* リンク色 */
text-decoration:none; /* 下線をなしに */
}
/* 閲覧済 */
a:visited {
color:#000;
text-decoration:none;
}
/* カーソルを乗せた時 */
a:hover {
	color:#000000;
	text-decoration:none;
	background-color: #CCCCCC;
position:relative; top:1px; left:1px;
}
/* クリック中 */
a:active {
color:#666;
text-decoration:none;
}

/* ブログタイトルのリンク設定 */
#header h1 a:link, #header h1 a:visited {
color:#000; /* リンク色 */
text-decoration:none; /* 下線をなしに */
}
/* カーソルを乗せた時 */
#header h1 a:hover {
color:#ff0033;
border-bottom:dotted 3px #ccc; /* 下にライン */
text-decoration:none;
}

/* 記事本文・コメント本文の未閲覧時 */
.entry_body a:link, comment_body a:link {
color:#000;
text-decoration:underline;/* 下線をありに */
}
/* 閲覧済 */
.entry_body a:visited, .comment_body a:visited {
color: #000;
text-decoration:underline; /* 下線をありに */
}
/* カーソルを乗せた時 */
.entry_body a:hover, .comment_body a:hover {
	color:#000000;
	text-decoration:underline; /* 下線をありに */
	background-color: #CCCCCC;
	padding-top: 2px;
	padding-bottom: 2px;
}

/* 記事移動と頁移動のカーソルを乗せた時 */
.navi a:hover, .pnavi a:hover {
background:#999; /* 背景色 */
color:#fff; /* 文字色 */
text-decoration:none;
}
/* フッターのカーソルを乗せた時 */
#footer a:hover {
background:#fff; /* 背景色 */
color:#000; /* 文字色 */
text-decoration:none;
}

/* ---------------------------------------
▼ヘッダー
---------------------------------------- */
/* 管理リンク */
.admin {
text-align:right; /* 右寄せ */
font-size:12px; /* 文字サイズ */
font-family:Arial,Helvetica,sans-serif; /* 文字種類 */
color:#666; /* 文字色 */
padding:0;
margin:5px 20px 0;
}

/* ブログタイトル */
#header h1 {
text-align:left; /* 左寄せ */
font-family: Verdana,Chicago,Arial,Helvetica,sans-serif; /* フォントの種類 */
font-size: 12px; /* 文字サイズ */
color:#000; /* 文字色 */
margin:0;
padding:5px 20px 20px 20px; /* ブログタイトルの位置、上・右・下・左の順に記述 */
}

/* ブログ説明文 */
.intro {
text-align: right; /* 右寄せ */
font-size: 12px; /* 説明文の大きさ */
color: #000; /* 説明文の色 */
font-weight:normal; /* 説明文の太さ */
margin: 0;
padding:15px 5px 20px 20px; /* 説明文の位置、上・右・下・左の順に記述 */
}

/* ---------------------------------------
▼横カレンダー
---------------------------------------- */
.yoko_calender {
	color: #fff; /* 文字色 */
	font-size: 16px;
	font-weight: bold;
	background-color:#000; /* 左右のマージンを自動計算して中央に配置 */
	border-top-width: 1px;

	border-bottom-width: 5px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #;
	border-bottom-color: #0099CC;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10;
	margin-left: auto;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

.day {
margin:0 2px;
}

/* 横カレンダーのリンク色 */
.yoko_calender a, .yoko_calender a:link, .yoko_calender a:visited{
	color:#fff; /* 文字色 */
	text-decoration:none; /* 下線なし */
	font-weight:bold; /* 太字 */
　　　　font-size: 22px;
	margin-right: 40px;
	margin-top: 5px;
	margin-bottom: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 5px;
	padding-left: 5px;
}
/* マウスオーバー */
.yoko_calender a:hover {
background:#fff; /* 背景色 */
color:#000; /* 文字色 */
text-decoration:none;
}
/* クリックした時 */
.yoko_calender a:active {
color:#666;
text-decoration:none;
font-weight:bold;
}

/* 横カレンダーがいらない場合は、HTMLソースの横カレンダーここから、横カレンダーここまでの部分を削除してください */


/* ---------------------------------------
▼プラグインカレンダー
---------------------------------------- */
/* プラグインカレンダー */
table.calender {
font-size:12px; /* 文字サイズ */
width:98%; /* カレンダーの幅 */
font-family:Helvetica,Arial,sans-serif; /* 文字種類 */
border:dotted 1px #333; /* ラインで囲んでいます */
background:#fff; /* 背景色 */
border-collapse:separate;
}

/* 月表示部 */
caption {
text-align:center;
}
caption a {
font-weight:bold; /* リンクしてある月を太字に */
}

/* 曜日・日付け表示部 */
.calender td, .calender th {
text-align:center;
width:14%;
padding:0;
line-height:140%; /* 行間 */
}

/* リンク設定 */
.calender td a:link, .calender td a:visited {
font-weight:bold; /* 太字 */
color:#000; /* 文字色 */
background:#eee; /* 背景色 */
text-decoration:none;
display:block;
}
/* マウスオーバー  */
.calender td a:hover {
font-weight:bold;
color:#fff;
background:#ccc;
text-decoration:none;
}
/* クリックした時 */
.calender td a:active {
color:#666; /* 文字色 */
text-decoration:none;
}

/* 曜日表示部 */
.calender th {
padding-top:2px;
border-bottom:2px solid #ccc; /* 下にライン */
}

/* 土曜日 */
th#sat {
color:#00f;
border-bottom:2px solid #00f; /* 下にライン */
}
/* 日曜日 */
th#sun {
color:#c00;
border-bottom:2px solid #c00; /* 下にライン */
}

/* ---------------------------------------
▼メイン（記事部）
---------------------------------------- */
/* メイン内枠 */
#main_block {
margin:0;
padding:0;
}

/* プラグイン3タイトル */
.p3_title {
text-align:left;
font-size:14px; /* 文字サイズ */
font-weight:bold; /* 文字の太さ */
color:#000; /* 文字色 */
background-image:url(http://blog-imgs-14-origin.fc2.com/d/o/k/dokode/kabe01.gif); /* 背景画像URL */
background-color:#dcdcdc; /* 背景色 */
margin:0;
padding:5px;
}

/* エントリー（記事）*/
/* 記事日付 */
.entry_day {
	text-align:right; /* 右寄せ */
	font-size:14px; /* 文字サイズ */
	font-weight:bold; /* 文字太さ */
	font-family:Verdana,Chicago; /* 文字種類 */
	color:#fff; /* 文字色 */
	background-color:#000; /* 背景色 */
	margin:0;
	padding:4px 10px;
	background-image: url(http://fc2-blog.net/img/variety/top/dayback.jpg);
	background-repeat: repeat-x;
}

/* 記事タイトル */
.entry_title {
text-align:left; /* 左寄せ */
font-size:14px; /* 文字サイズ */
color:#666; /* 文字色 */
font-weight:bold; /* 文字太さ */
margin:0;
padding:10px 15px;
}

/* 記事本文 */
.entry_body {
	text-align:left; /* 左寄せ */
	font-size:12px; /* 文字サイズ */
	color:#000; /* 文字色 */
	margin:15px 15px;
	line-height:1.7; /* 行間 */
	background-image: url();
	background-repeat: no-repeat;
	background-position: center 600px;
}

/* 記事の投稿先テーマ・ジャンル */
.entry_body p.theme {
margin-top:10px;
}

/* 記事中に使われたタグのリンクリスト */
.entry_body p.tag_lnk {
margin-top:10px;
}

/* 続きを読む */
.more {
text-align:left; /* 左寄せ */
font-weight:normal; /* 文字太さ */
font-family:Verdana,Chicago; /* フォント種類 */
margin:10px 0 5px;
}

/* 記事下データ */
.entry_state {
text-align:right; /* 右寄せ */
font-size:12px; /* 文字サイズ */
color:#666; /* 文字色 */
padding:20px 10px 5px;
margin:0;
}

/* ---------------------------------------
▼全記事リスト
---------------------------------------- */




/* ---------------------------------------
▼ナビゲーション
---------------------------------------- */
/* 記事移動 */
.navi {
text-align:center; /* 中央寄せ */
font-size:13px; /* 文字サイズ */
color:#999; /* 文字色 */
margin:15px 0;
padding:10px;
line-height:130%; /* 行間 */
}

/* 頁移動 */
.pnavi {
text-align:center; /* 中央寄せ */
font-family:Verdana,Chicago;
font-size:12px; /* 文字サイズ */
color:#999; /* 文字色 */
line-height:130%; /* 行間 */
margin:30px 0;
padding:0 10px;
}

/* ---------------------------------------
▼コメント・トラックバック
---------------------------------------- */
/* コメント・トラックバック共通の見出し */
.ct {
text-align:left; /* 左寄せ */
font-size:14px; /* 文字サイズ */
font-weight:bold; /* 文字太さ */
font-family:Verdana,Chicago; /* 文字種類 */
color:#fff; /* 文字色 */
background-color:#000; /* 背景色 */
margin:0;
padding:4px 10px;
}

/* コメント・トラックバック共通のナビ */
.ct_navi {
text-align:left; /* 左寄せ */
font-size:13px; /* 文字サイズ */
font-weight:bold; /* 文字太さ */
color:#000; /* 文字色 */
border-bottom:2px solid #000; /* 下にライン */
margin:2px 10px 10px;
padding-top:10px;
}

/* コメント・トラックバックの共通タイトル */
.ct_title {
text-align:left; /* 左寄せ */
font-size:13px; /* 文字サイズ */
color:#000;/* 文字色 */
font-weight:bold; /* 文字太さ */
margin:0;
padding:5px 10px;
}

/* コメント本文 */
.comment_body {
text-align:left; /* 左寄せ */
font-size:12px; /* 文字サイズ */
color:#000; /* 本文の色 */
line-height:1.5; /* 行間 */
margin:5px 20px;
padding:0;
}

/* コメント日付 */
.comment_date {
text-align:right; /* 右寄せ */
font-size:12px; /* 文字サイズ */
color:#666; /* 文字色 */
border-bottom:1px dotted #666; /* 下にライン */
margin:5px;
padding:5px 10px;
}

/* トラックバックアドレス */
.tra_url {
text-align:left;
padding:4px 0 20px 10px;
}

/* トラックバック本文 */
.tra_body {
text-align:left; /* 左寄せ */
font-size:12px; /* 文字サイズ */
color:#666; /* 本文の色 */
margin:5px 20px;
line-height:1.3; /* 行間 */
}

/* トラックバック日付 */
.tra_date {
text-align:right;
font-size:12px; /* トラックバック日付文字サイズ */
color:#999; /* トラックバック日付色 */
margin:0;
padding:5px 15px 15px;
}

/* ---------------------------------------
▼フォーム
---------------------------------------- */
/* テキストエリア・フォーム等全般 */
textarea,input,select {
color:#000; /* 文字色 */
font-size:18px; /* 文字サイズ */
font-family : "\30D2\30E9\30AE\30CE\20Pro\20W3","Osaka","Verdana","Helvetica","Arial","\FF2D\FF33\20\FF30\30B4\30B7\30C3\30AF",sans-serif; /* MAC・IEバグ回避用フォント指定 */
background-color:#fff; /* 背景色 */
border:#000 1px solid; /* ラインで囲んでいます */
padding:1px;
margin:3px 0;
}

/* ---------------------------------------
▼サイドメニュー（プラグイン1、2）
---------------------------------------- */
/* メニュー字 */
.menu_text{
text-align:left;
font-size:12px; /* 文字サイズ */
color:#000; /* 文字色 */
line-height:140%; /* 行間 */
padding:5px 0 0 5px;
}
.menu_text p{
text-align:left;
font-size:12px;
color:#000;
margin:0;
}

/* メニューリスト */
/* リスト親要素 */
.menu_body ul {
text-align:left;
color:#000; /* リストの色 */
line-height:150%; /* 行間 */
text-decoration:none;
list-style-type:disc; /* リストマークの種類 */
margin:0;
padding-left:16px; /* リストマークの分、左に余白 */
}
/* メニューリスト子要素 */
.menu_body li {
text-align:left;
text-decoration:none;
border-bottom:1px dotted #999; /* 下に点線 */
padding:0;
}

/* ---------------------------------------
▼フッター
---------------------------------------- */
#footer {
clear:both; /* 回り込み解除 */
text-align:right; /* 右寄せ */
font-size:12px; /* 文字サイズ */
color:#666; /* 文字色 */
background-image:url(http://blog-imgs-14-origin.fc2.com/d/o/k/dokode/kabe01.gif); /* 背景壁紙 */
background-color:#dcdcdc; /* 背景色 */
line-height:140%; /* 行間 */
margin:10px 0 0;
padding:5px 10px;
}

/* ---------------------------------------
▼その他
---------------------------------------- */
/* 引用文 */
blockquote {
color:#333; /* 文字色 */
font-size:12px; /* 文字サイズ */
background-color:#f5f5f5; /* 背景色 */
border:1px dotted #999; /* ラインで囲んでいます */
margin:5px 10px;
padding:5px 10px;
}

/* スクロール色指定（IEのみ有効）*/


/* リスト */
ul {
text-align:left;
margin-left:15px;
padding:0;
}
ol {
text-align:left;
margin-left:25px;
padding:0;
}

/* 画像全般 */
img {
border:none;
border-width:0;
padding:0;
margin:0;
text-decoration:none;
}

/* 絵文字 */
.emoji {
float:none;
vertical-align:middle;
border:none;
padding:0;
margin:0;
}

/* プロフィール */
.pay {
text-align:center;
margin:10px 0;
}

/* 文字装飾 */
/* 強調 */
strong, b {
font-weight:bold;
}
/* 斜体 */
em, i {
font-style:italic;
}
/* 打ち消し線 */
s {
text-decoration:line-through;
}
/* 下線 */
u {
text-decoration: underline;
}

/* コード */
/* 記事中にプログラムコードなどを書く時に使います */
div.section pre {
margin:1em auto;
padding:0.5em;
border:1px solid #633;
font-family:sans-serif;
overflow:auto;
width:90%; /* pre element clearing bug in WinIE  */
}
/* MacIE用バグ対応 */
/* for without MacIE5 \*/
div.section pre {
overflow:scroll;
}/* */
div.section > pre {
width:auto;
}

div.section code {
font-family:monospace; /* 等幅フォントを指定 */
}

/* IEの改行バグ回避用 */
br {
letter-spacing:normal;
}

#newentrys {
	border: 1px solid #ccc;
	background-color: #FDFDFD;
	background-image: url(http://blog-imgs-27-origin.fc2.com/h/i/y/hiyokokun/hiyoko_new.jpg);
	background-repeat: repeat-x;
	font-size: 12px;
	background-position: left top;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	width: 590px;
}
#newentryname {
	margin: 0px 0px 7px;
	padding: 0px 0px 3px;
	color: #333333;
	background-image: none;
	text-indent: 0px;
	border-bottom: 1px dashed #CCCCCC;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
	background-color: transparent;
}

#newentrylist {
	margin: 0px;
	padding: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-image: none;
	background-color: transparent;
}

#newentrys ul {
	color: #999999;
	padding: 0px;
	margin: 0px 0px 0px 22px;
}

div.summary22{
	font-size: 12px;
	background-color: #FFFFFF;
	padding: 10px;
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px dotted #000;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/information802.gif);
	background-repeat: no-repeat;
	background-position: right;
}


#antena {
	text-align:left;
	border-collapse:collapse; /* 余白をなしに */
	background-color:#000000; /* 背景色 */
	border:1px solid #FFFFFF; /* 上右下左の順に記述（右メニューにしたい時は左右を入れ替えて25px 0 35px 15pxに・左右変更箇所その3） */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	color: #FFFFFF;
	width: 220px;
	padding-top: 15;
	padding-bottom: 15;
	padding-left: 15;
}



/* 記事本文・コメント本文の未閲覧時 */
#antena a:link, comment_body a:link {
	color:#000000;/* 下線をありに */
	font-family: Georgia, "Times New Roman", Times, serif;
}
/* 閲覧済 */
#antena a:visited, .comment_body a:visited {
	color: #000000; /* 下線をありに */
	font-family: Georgia, "Times New Roman", Times, serif;
	
}
/* カーソルを乗せた時 */
#antena a:hover, .comment_body a:hover {
	color:#000000; /* 下線をありに */
	background-color: #FFFFFF;
	font-family: Georgia, "Times New Roman", Times, serif;
	
}

.vwp_box {
	font-size: 14px;
	background-color: #FFFFCC;
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid #003399;
}


.amazon_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #FFFFFF;
	padding: 10px;
	margin-bottom: 20px;
	border: 2px solid #FFCC00;
	background-image: url(http://blog-imgs-37-origin.fc2.com/v/e/o/veohdownload/amazonbox004.gif);
	background-repeat: no-repeat;
	background-position: right top;	
}

.rakuten_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #FFFFFF;
	padding: 10px;
	margin-bottom: 20px;
	border: 2px solid #FF0000;
	background-image: url(http://blog-imgs-37-origin.fc2.com/v/e/o/veohdownload/rakuten004.gif);
	background-repeat: no-repeat;
	background-position: right top;	
}


.aiu-a_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv10326kk-6-1s.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-i_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-i.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-u_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-u.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-e_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-e.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-o_box {
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-o.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-ka_box {
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ka.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-ki_box {
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ki.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-ku_box {
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ku.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-ke_box {
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ke.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-ko_box {
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ko.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-sa_box {
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-sa.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-si_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-si.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-su_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-su.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-se_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-se.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-so_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-so.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-ta_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ta.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-ti_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ti.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-tu_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-tu.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-te_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-te.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-to_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-to.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-na_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-na.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-ni_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ni.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-nu_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-nu.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-ne_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ne.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-no_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-no.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}



.aiu-ha_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ha.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-hi_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-hi.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-hu_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-hu.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-he_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-he.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-ho_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ho.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-ma_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ma.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-mi_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-mi.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-mu_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-mu.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-me_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-me.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-mo_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-mo.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}



.aiu-ya_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ya.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}



.aiu-yu_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-yu.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}



.aiu-yo_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-yo.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-ra_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ra.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-ri_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ri.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-ru_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ru.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-re_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-re.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-ro_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-ro.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-wa_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-wa.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

.aiu-wo_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-wo.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}


.aiu-nn_box {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 20px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tv-nn.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}



.tweet_box {
	font-size: 12px;
	padding: 10px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/tweet-osieyo590f2.gif);
	background-repeat: no-repeat;
	background-position: right center;
	width: 580px;
	border: 1px dashed #CCCCCC;
}

.facebook_box {
	font-size: 12px;
	padding: 10px;
	background-repeat: no-repeat;
	background-position: right center;
	width: 580px;
	border: 1px dashed #CCCCCC;
}









.headline_box {
	font-size: 12px;
	padding: 10px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/headlinetop5905.gif);
	background-repeat: no-repeat;
	background-position: right center;
	width: 580px;
	border: 1px dashed #CCCCCC;
	background-color: #EEFFFF;
}

.headmenu2_box {
	font-size: 14px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/hedomenuline003.gif);
	background-repeat: no-repeat;
	background-position: left top;
	width: 90%;
	border: 1px dashed #CCCCCC;
	background-color: #FFE8FF;
	padding-top: 35px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	margin-bottom: 10px;
	font-style: italic;
	font-family: "メイリオ";
}


.protected_box {
	font-size: 12px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/protected001.gif);
	background-repeat: no-repeat;
	background-position: left top;
	width: 580px;
	border: 1px dashed #CCCCCC;
	background-color: #E7E7E7;
	padding-top: 35px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
　　　　margin-bottom: 10px;
}

.protected2_box {
	font-size: 12px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/protected003b.gif);
	background-repeat: no-repeat;
	background-position: left top;
	width: 580px;
	border: 1px dashed #CCCCCC;
	background-color: #CEE1FF;
	padding-top: 35px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
　　　　margin-bottom: 10px;
        margin-top: 10px;
}

.protected3_box {
	font-size: 16px;
	background-repeat: no-repeat;
	background-position: left top;
	width: 580px;
	border: 1px dashed #CCCCCC;
	background-color: #CEE1FF;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
　　　　margin-bottom: 10px;
        margin-top: 10px;
}





.tabi_box {
	font-size: 12px;
	padding: 10px;
	width: 580px;
	border: 1px dashed #CCCCCC;
　　　　margin-top: 5px;
}

.onetrakuten_box {
	font-size: 12px;
	background-image: url(http://blog-imgs-44-origin.fc2.com/v/e/o/veohdownload/onetrakuten2.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	width: 580px;
	border: 1px dashed #CCCCCC;
	background-color: #ffffff;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
　　margin-bottom: 10px;
}






.headmenu3_box {
	font-size: 12px;
	background-image: url(http://blog-imgs-45-origin.fc2.com/v/e/o/veohdownload/hedomenuline004.gif);
	background-repeat: no-repeat;
	background-position: left top;
	width: 580px;
	border: 1px dashed #CCCCCC;
	background-color: #FFFFCC;
	padding-top: 35px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	margin-bottom: 10px;
}


div.blocka {
   float: left;
   width: 60%;
}
div.blockb {
   padding-top: 30px;

   float: right;
   font-weight: bold;
}
div.blockc {
   width: 100%;
}

.style2 {font-size: 16px}
.style3 {font-size: 24px; font-weight: bold; }
.style4 {font-size: 24px}





/* CSS Document */

.protected6_box {
	font-size: 16px;
	width: 580px;
	border: thick solid #33CCFF;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-style: italic;
	font-family: "メイリオ";
}



.protected7_box {
	font-size: 16px;
	width: 580px;
	border: thick solid #FF9900;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-style: italic;
	font-family: "メイリオ";
}



.protected8_box {
	font-size: 16px;
	width: 580px;
	border: thick solid #FF3399;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-style: italic;
	font-family: "メイリオ";
}




.protected9_box {
	font-size: 16px;
	width: 580px;
	border: thick solid #4B67A1;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-style: italic;
	font-family: "メイリオ";
}






















.drecomrss_blog_list_category {

 
font-weight:bold;/*--カテゴリー名を太字にする--*/

background: url(http://blog-imgs-24-origin.fc2.com/v/e/o/veohdownload/rss_ba.jpg) center;

margin:0; 

width:100%;

color:#000000;/*--カテゴリー名の文字色--*/

line-height: 25px;/*--背景画像の高さと同じに設定--*/

text-align:center;/*--カテゴリー名を中央寄せにする--*/

display:inline-block;

}