@charset "utf-8";
/*************************************************
　リセット
*************************************************/

html, body, div, h1 ,h2, h3, h4, h5, h6, p, blockquote, 
dl, dt, dd, ul, ol, li, pre, form, fieldset, table, th, tr, td, address {
	margin: 0;
	padding: 0;
}

table 
	border-spacing: 0;
}

caption, th { text-align: left; }

ul, ol { list-style: none; }

img { border: 0; }

address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

q:before, 
q:after { content: ''; }


/*************************************************
 全体の基本設定
*************************************************/
/*===============================================
●style.css 画面の横幅が769px以上
===============================================*/
@media screen and (min-width: 769px){
img{
max-width: 100%;
height: auto;
width /***/:auto;　
}
#container{
width:100%;
}
～以下、画面の横幅が768pxまでの場合のスタイル記入～
}
/*===============================================
●tablet.css 画面の横幅が768pxまで
===============================================*/
@media screen and (max-width: 768px){
img{
max-width: 100%;
height: auto;
width /***/:auto;　
}
#container{
width:100%;
}
～以下、画面の横幅が768pxまでの場合のスタイル記入～
}
/*===============================================
●smart.css  画面の横幅が640pxまで
===============================================*/
@media screen and (max-width:640px){
img{
max-width: 100%;
height: auto;
width /***/:auto;　
}
#container{
width:100%;
}
～以下、画面の横幅が640pxまでの場合のスタイル記入～
}



body {
        margin:0; padding:0;
	font-size:90%; 
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",  "メイリオ", Meiryo, Arial,"ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color:#333;
	line-height:1.4;
	background-color:#FFF;
	text-align:center;
        letter-spacing:1px
}

/* 画像 
----------------------------------------------*/
img, a img {
	margin: 2px;
}

img.emoji {
	margin: 0 1px;
}


/* テーブルレイアウト部の基本設定 */
table {
  table-layout: fixed;
  border-spacing: 0;
  font-size:11px;
  margin-bottom:30px;
  clear: both;
}
table {
  width: auto;
  border-spacing: 0;
  font-size:14px;
}
table th {
  color: #000;
  padding: 8px 5px;
  background: #eee;
  background:-moz-linear-gradient(#eee, #ddd 50%);
  background:-webkit-gradient(linear, 100% 0%, 100% 50%, from(#eee), to(#ddd));
  font-weight: bold;
  border-top:1px solid #aaa;
  border-left:1px solid #bbb;
  border-bottom:1px solid #aaa;
line-height:1;
  text-align: center;
  text-shadow:0 -1px 0 rgba(255,255,255,0.9);
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
}
table th:first-child {
  border-left:1px solid #aaa;
  border-radius: 5px 0 0 0;	
}
table th:last-child {
  border-radius:0 5px 0 0;
  border-right:1px solid #aaa;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
table tr td {
  padding: 8px 5px;
  border-left: 1px solid #ddd;
  border-right:1px solid #ddd;
  text-align: center;
}
table tr td:first-child {
  border-left: 1px solid #aaa;
  border-right:1px solid #ddd;
}
table tr td:last-child {
  border-left: 1px solid #ddd;
  border-right: 1px solid #aaa;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
table tr {
  background: #fff;
}
table tr:nth-child(2n+1) {
  background: #f5f5f5;
}
table tr:last-child td {
  border-bottom:1px solid #aaa;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
table tr:hover {
  background: #ffea66;
  cursor:pointer;
}

/* フォームの基本指定 
------------------------------------------------*/
input, textarea {
	padding:2px;
	vertical-align:middle;
	border:solid 1px #CCC;
	background-color:#FFF;        
}

input { font-size: 109%; }  /* 

textarea { font-size: 125%; }  /*

/*************************************************
 見出し
*************************************************/
/* ブログタイトル */
h1 {
	font-size:360%;  
	font-family: '新ゴ M', 'メイリオ','Meiryo','ＭＳ Ｐゴシック','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',sans-serif;
}

/* 記事タイトル */
h2 {
	font-size:100%;  
}

/* チーム名、コメント、トラックバック、コメント編集見出し */
h3{
	font-size:180%; 
}

/* シーン名 */
h4{
	font-size:150%; 
        margin: 0.5em 0.5em;
	padding: 2px 5px;
        border-left:solid 8px  #CCC;
	border-bottom:2px dotted #666;

}

}

/* プラグイン、コメント、レス、トラックバックの見出しと記事内見出し */
h5, h6 {
}

/*************************************************
  リンクの設定
*************************************************/
/*通常のリンクの設定*/
a:link {
	color:#000;
	text-decoration:none;
}
/*過去に見たことがあるページのリンクの設定*/
a:visited{
	color:#777;
	text-decoration:none;
}
/*カーソルが合っている状態のリンクの設定*/
a{
    color: #EE5BA6;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}


/*アクティブ状態のリンクの設定*/
a:active {
	color:#00CED1;
	text-decoration:none;
}


/*  ブログのタイトル
------------------------------------------------*/
h1 a:link,
h1 a:visited {
	color:#000;
 display: inline-block;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}

h1 a:hover,
h1 a:active {
    -webkit-transform: scale(1.1,1.2);
    -moz-transform: scale(1.1,1.2);
    -o-transform: scale(1.1,1.2);
    -ms-transform: scale(1.1,1.2);
    transform: scale(1.1,1.2);
	color:#FFF;
}

div#FooterBlock a:hover {
	color:#EE5BA6;
}

/*  記事のタイトル
------------------------------------------------*/
h2.EntryTitle a:link,
h2.EntryTitle a:visited {
	color:#000;
}

h2.EntryTitle a:hover {
	color:##00CED1;
}

/*  記事のリンク
------------------------------------------------*/
div.EntryText a:link,
div.EntryText a:visited {
	color:#00CED1;
}

div.EntryText a:hover {
	color:#EE5BA6;
}

/* ページトップへのリンク 
------------------------------------------------*/
ul.EntryFooter .MoveTop:link,
ul.EntryFooter .MoveTop:visited {
	color:#00CED1;
}

ul.EntryFooter .MoveTop:hover {
	color:#EE5BA6;
}

/* ページナビ
------------------------------------------------*/
ul.PageLinkBlock li a:link,
ul.PageLinkBlock li a:visited {
	text-decoration: none;
	background-color:#00CED1;
	color:#000;
}

ul.PageLinkBlock li a:hover,
ul.PageLinkBlock li a:active {
	background-color: #EE5BA6;
	text-decoration: none;
	color: #000;
}

ul.PageLinkBlock li .PageLink:link,
ul.PageLinkBlock li .PageLink:visited {
	color: #777;
	background-color:transparent;
}

ul.PageLinkBlock li .PageLink:hover {
	color: #39F;
	background-color:transparent;
}


/*  コメントとトラックバックの情報リンク
------------------------------------------------*/
ul.CommentNavi a { text-decoration: underline; }

ul.TrackbackNavi li a { text-decoration: underline; }

/* プラグインタイトル 
------------------------------------------------*/
h5.PluginTitle a:link,
h5.PluginTitle :visited { color:#000; }

h5.PluginTitle a:hover { color:#999; }

/*  フッター
------------------------------------------------*/
div#FooterBlock a:link,
div#FooterBlock a:visited {
	color:#FFF;
}

div#FooterBlock a:hover {
	color:#00CED1;
}

/*  ページトップへ
------------------------------------------------*/
#back-top  {
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 1500;
}    
 
#back-top a {
    display: block;
    color: #000;
    padding: 10px;
    margin: 0;
    background-color: #CCC;
    border-radius: 5px;
    font-size: 0.8em;
}
 
#back-top a:hover {
    background: #666;
    color: #fff;
}

/*************************************************
  レイアウト
*************************************************/

div#MainContainer {
	width:980px;
	margin:0 auto;
	padding:0
	text-align:center;
	background:#fff url("http://file.football.game-waza.net/btitle-1.jpg") no-repeat  top center
}

/* ヘッダー */
div#TopBlock {
　　width:980px;
	height:190px;
	background:#fff url("http://file.football.game-waza.net/btitle-1.jpg") no-repeat  top center
	text-align:center;
}

/* 左メニューとエントリーのブロック */
div#MainBlock {
	clear:both;
	float:left;
	width:660px;
	text-align: left;
}

/* エントリー */
div#EntryBlock {
	width:740px;
    margin-left:25px
	text-align: left;
}

/* 左メニュー */
div.PluginBlock {
	float:left;
	width: 250px;
	margin:px 0 10px;
	text-align: left;
}

/* 右メニュー */
div#RightMenu {
	float:right;
	width:225px;
	margin:28px 0 10px;
	text-align: left;
}

/*フッター  */
div#FooterBlock {
	clear:both;
	padding:5px;
	background-color:#FFF;
	text-align: center;
	color:#000;
	font-family: Arial, Helvetica, sans-serif;font-family: 'メイリオ','Meiryo','ＭＳ Ｐゴシック','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',sans-serif;
}

/* コメント編集ページ */
div.CommentEditBlock {
	width:620px;
	margin:30px auto;
	padding:40px 60px 20px;
	text-align:center;
	background-color:#FFF;
	border:solid 1px #00CED1;
}

/*************************************************
 ヘッダー
*************************************************/

/*ページタイトル文字部分の設定*/
h1 { 
padding:20px 320px 0px 0px ;
}

/*ページタイトルの下に来るブログの説明文書*/
#TopBlock p {
    font-size:140%;   
    color:#000;
padding:20px 210px 0px 0px ;
margin-bottom:0px
}

/**
 * Minimalist theme
 *
 */
/* Slight reset to make the preview have ample padding. */
.cse .gsc-control-cse,
.gsc-control-cse {
  padding: 10;
  width: 400;
}
/*************************************************
  トップメニュー
*************************************************/

#nav, #nav ul{
	margin:0;
	padding:0;
	list-style-type:none;
	list-style-position:outside;
	position:relative;
　　line-height:1.4 
}

#nav {
　　margin-top:20px;
	width: 980px;
	height: 27px;
	border-top:solid 1px #AAA;
	border-bottom:solid 1px #AAA;
}

#nav a { display:block; }

#nav li {
	float:left;
	position:relative;
}

#nav .MenuBox {
	width:195px;
	height:25px;
	padding:1px 0px;
	background-image: url(http://bfile.shinobi.jp/5598/menu-01.gif);
	background-repeat:repeat-x;
	font-weight:bold;
	color:#000;
	border-right:solid 1px #AAA;	
}

#nav .MenuBoxEnd {
	width:145px;
	height:27px;
	padding:7px 5px 3px;
	background-image: url(http://bfile.shinobi.jp/5598/menu-01.gif);
	background-repeat:repeat-x;
	font-weight:bold;
	color:#777;	
}

#nav ul {
	position:absolute;
	display:none;
	width: 220px;
	top:25px;
	left: -1px;
	border-top: solid 1px #CCC;
	border-right: solid 1px #CCC;
	border-left: solid 1px #CCC;
	background-color:#F9F9F9;
}

#nav ul.First { left:0; }


#nav ul.Archiv { width: 154px; }

#nav li ul a{
	width:210px;
	height:auto;
	float:left;
	padding:4px 5px;
	border-bottom: solid 1px #CCC;
	text-align: left;
	color: #555;
}

#nav li ul .Arch{ width: 144px; }

#nav li ul a:hover {
	color: #EE5BA6;
	background-color:#;
}

#nav ul a span {
	color: #888;
	font-size: 92%;
}

#nav ul li img {
	margin: 0;
	vertical-align: top;
}

/*************************************************
  プラグインブロック
*************************************************/

div.PluginInnerBlock {
	margin-left:10px;
	padding:10px 0 10px 10px;
}

div.RightMenuInnerBlock {
	margin-right:10px;
	padding:10px 10px 10px 0;
}

h5.PluginTitle {
	padding:0 10px;
	border-bottom:solid 1px #555;
	border-left:solid 3px #00CED1;
}

div.PluginExplanation {
	padding: 5px;
}

div.PluginContents {
	padding:2px 5px 3px;
}

div.blogsearch {
	vertical-align:middle;
}

.blogsearch input.box {
	width:150px;
	margin-bottom:5px;
	margin-right:5px;
}
/*************************************************
  各プラグイン共通項目用設定
*************************************************/
/*各プラグイン処理内の基本デザイン*/
.plugin_data {
	text-align:left;
	padding:2px 5px;	
}

/* レスのアイコン */
.plugin_data .plugin_cm_with_res img {
	margin: 0 3px;
	vertical-align:top;
}

/*各プラグイン処理内基本デザインの下に記載する日付など*/
.plugin_data_date {
	text-align:right;
}

.left {
	text-align:left;
}

.center {
	text-align:center;
}

.right {
	text-align:right;
}

/*************************************************
  カテゴリー、アーカイブページ
*************************************************/

div.SearchTitle {
	margin:13px 20px 0;
	padding:2px 5px 1px;
	font-weight:bold;
	text-align:center;
	background-color:#000;
	color:#00CED1;
}

ul.SearchNavi {
	margin:5px 20px;
	text-align:center;
}

ul.SearchNavi li {
	display:inline;
	font-size:84%;    /* 10px */
}

ul.SearchContents {
	margin:0 20px 30px;
	padding:10px;
	border:dotted 1px #EE5BA6;	
}

ul.SearchContents li {
	padding:0 10px;
	list-style:inside square;
}

.fade {
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}
.fade:hover {
    opacity: 0.4;
    filter: alpha(opacity=60);
} 

/*************************************************
  記事上のプラグイン4（記事一覧ページのみ）
*************************************************/

/* プラグイン4のボックス
------------------------------------------------*/
div.Plugin4InnerBlock {
	margin: 13px 20px 25px;
	text-align: left;
}

/* プラグインタイトル */
h5.Plugin4Title {
	margin-bottom: 10px;
	padding-bottom: 1px;
	text-align: center;
	border-bottom: solid 2px #00CED1;
}

/* プラグイン表示部分 */
div.Plugin4Body {
	padding: 0 10px;
}

/* プラグイン本体 */
div.Plugin4Contents { margin: 10px 0; }


/*************************************************
  記事下のプラグイン5（記事詳細ページのみ）
*************************************************/

/* プラグイン5のボックス
------------------------------------------------*/
div.Plugin5InnerBlock {
	margin: 20px 20px 0;
	text-align: left;
}

/* プラグイン本体 */
div.Plugin5Contents { margin: 5px 0; }

/*************************************************
  記事ブロック
*************************************************/

div.EntryInnerBlock {
	margin:0 15px;
	padding:20px;
	text-align: left;
}

h2.EntryTitle {
	padding:3px 10px 5px;
	text-align: left;
	border-bottom:solid 2px #EE5BA6;
	text-align:center;
}


div.EntryTextBox {
	padding:10px 0 2px;
}

div.EntryText {
	padding: 10px 0 10px;
}

/*追記文書が記載される部分*/
div.EntryPsText {
	margin-top:10px;
	text-align: right;
}

/*ランキング用バナー設置個所*/
.

div.RankingBannerBlock {
	text-align:left;
	margin-top:10px;
}

ul.EntryFooter {
	margin-bottom:10px;
	padding:2px 5px;
	text-align:right;
	background-image: url(http://bfile.shinobi.jp/5599/back_02.gif);
	border-top:solid 1px #555;
}

ul.EntryFooter li {
	margin-left:5px;
	display:inline;
}


/* 記事内の画像
------------------------------------------------*/
.EntryText img, 
.EntryText a img {
	margin: 2px 4px;
}

/* ランキングバナー用画像
------------------------------------------------*/
.RankingBannerBlock img,
.RankingBannerBlock a img {
	margin: 1px;
}

/*罫線
-----------------------------------------------*/
hr {
	width:100%;
	margin-top:10px;
	margin-bottom:10px;
}

/* 記事内のリスト、定義リスト
------------------------------------------------*/
.EntryTextBox ul,
.EntryTextBox ol {
	margin: 1em 0;
	padding-left: 2em;
}

.EntryTextBox ul li { list-style: disc outside;	}

.EntryTextBox ol li { list-style: decimal outside; }

.EntryTextBox dl { margin: 1em 0; }

.EntryTextBox dl dt {
	font-weight: bold;
}

.EntryTextBox dl dd {
	margin: 0 1em 1em;
}


/* 記事内の引用文
------------------------------------------------*/
.EntryTextBox blockquote {
	margin: 1em 0.5em;
	padding: 10px;
	border-top:solid 1px #CCC;
	border-right:solid 1px #CCC;
	border-bottom:solid 1px #CCC;
	border-left:solid 3px  #CCC;
    background-color:#fffffb;
}

/* 記事内の短い引用文*/
q        { quotes : '"' '"' "'" "'" ; color: #669; }
q:before { content: open-quote; }
q:after  { content: close-quote; }


/* 記事アクセサリー
------------------------------------------------*/
.EntryTextBox p { margin: 1em 0; }

.EntryTextBox em {
	color: #03C;
}

.EntryTextBox pre {
	margin: 1em 0 1em auto;
	padding: 1em;
	border: 3px solid  #DDD;
	font-family: sans-serif;
	width: 92%;
	overflow: auto;
}

* html pre { overflow: scroll; } /* IE6 */

*:first-child+html pre { overflow: scroll; } /* IE7 */


code {
	font-family: "Lucida Console", Monaco, monospace;
	line-height : 1.4;
}

/* 拍手
------------------------------------------------*/
.EntryText .NinjaClap { padding-top: 10px; }

.NinjaClap img { vertical-align: middle; }


/* テキスト選択時の色
----------------------------------------------- */
::selection {
	background:#6EDDBC; /* Safari */
}

::-moz-selection {
	background:#6EDDBC; /* Firefox */　　 
}



/*************************************************
  コメントブロック
*************************************************/

div.CommentBlock{
	margin-top:10px;
	padding:10px 20px;
}

h3.CommentMenuTitle{
	padding:3px 8px;
	text-align: left;
	font-style:italic;
	color:#FFF;
	background-color:#000;
	color:#F9FFFF;	
}


div.CommentTextBox{
	margin: 10px 0;
	border-top:solid 1px #039;
	border-left:solid 3px #039;
	background-image:url(http://bfile.shinobi.jp/5599/e_back-01.gif);
}

h5.CommentTitle{
	padding:5px 10px;
	text-align: left;
	color:#555;
	border-bottom:dotted 1px #039;
}

div.CommentText{
	padding:5px 10px 10px;
}

ul.CommentNavi{
	text-align:right;
	padding:2px 10px;
}

ul.CommentNavi li { display: inline; }

/*************************************************
  コメントレス
*************************************************/

div.CommentResBlock {
	padding:0 0 10px;
}

div.CommentResBox {
	border-top:solid 1px #555;
	border-left:solid 3px #555;
}

h5.CommentResTitle {
	padding:5px 10px;
	color:#555;
	border-bottom:dotted 1px #555;
}

div.CommentResText {
	padding:5px 10px 10px;
}

ul.CommentResNavi {
	padding:2px 10px;
	text-align:right;
}

ul.CommentResNavi li {
	margin-left:5px;
	display:inline;
}

/*************************************************
  トラックバックブロック
*************************************************/

div.TrackbackBlock{
	margin-top:20px;
	padding:10px 20px;
}

h3.TrackbackMenuTitle{
	padding:2px 8px;
	text-align: left;
	font-style:italic;
	background-color:#000;
	color:#F9FFFF;
}

div.TrackbackTextBox{
	margin: 5px 0;
	border-top:solid 1px #039;
	border-left:solid 3px #039;
}

h5.TrackbackTitle{
	padding:5px 10px;
	text-align: left;
	color:#666;
	border-bottom:dotted 1px #039;
}

div.TrackbackText{
	padding:5px 10px 10px;
}

ul.TrackbackNavi{
	text-align:right;
	padding:2px 10px;
}

ul.TrackbackNavi li{
	margin-left:5px;
	display:inline;
}

/*この記事のトラックバック　と書かれた部分の設定*/
div.TrackbackURLTitle{
	padding:20px 0;
	text-align: left;
}

/*トラックバックする為のURLが記載されているフォーム部分の設定*/
input#TrackbackURL{
	width:300px;
}

/*************************************************
  コメント編集ページ
*************************************************/

h3.CommentEditTitle {
	padding:2px 8px;
	text-align: left;
	font-style:italic;
	color:#FFF;
	background-color:#000;
	color:#F9FFFF;
}

/*************************************************
  コメントフォーム
*************************************************/

div.CommentFormBlock{
	margin:10px 20px;
	padding:10px 0 10px 10px;
	text-align: left;
   font-family:  '新ゴ EL',Arial, Helvetica, sans-serif;font-family:  'メイリオ','Meiryo','ＭＳ Ｐゴシック','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',sans-serif;
}


/* フォーム
-----------------------------------------------*/
dl.Form dt {
	padding:2px 0 0;
	font-weight: bold;
}

dt span { font-weight: normal; }

dd input.CommentForms { width:250px;}

/* コメントを書く部分 */					  
dd textarea {
	width: 400px;
	padding: 2px;
}


/* 編集ページのメールアドレスを隠す */
.hide { display: none; }

/* 秘密コメントボタン */
input.check {
	border: none;
	background: none;
	margin-right: 0.5em;
	vertical-align: bottom;
}

/* 送信ボタン */
input.btn {
	background-color: #000;
	color: #F5F5F5;
}

dl.Form dd input.btn { 	margin-top: 10px; }

/* コメントページに戻るボタン */
input.BackButton {
	margin-top: 10px;
	background-color: #000;
	color: #F5F5F5;
}

/*************************************************
  プラグイン　カレンダー
*************************************************/
/*カレンダー日付移動用テーブル（前月、次月へのリンクなど）*/
.CalendarMoveTable {
	margin:0 auto;
	padding:2px;
	width:100%;
	background-image:url(http://bfile.shinobi.jp/5599/e_back-01.gif);
	border-bottom:dotted 1px #999;
	font-size:11px;
	font-family:Arial, Helvetica, sans-serif;
}
/*カレンダー日付移動用テーブル、<tr>タグ部分のデザイン*/
.CalendarMoveTr {
}
/*カレンダー日付移動用テーブル内、左側td部分のデザイン*/
.CalendarPrevTd {
	padding:2px 0;
}
/*カレンダー日付移動用テーブル内、中央td部分のデザイン*/
.CalendarNowTd {
}
/*カレンダー日付移動用テーブル内、右側td部分のデザイン*/
.CalendarNextTd {
}
/*カレンダー表示用テーブル*/
.CalendarTable {
	margin:0 auto;
	width:100%;
	padding:2px;
	font-family:Arial, Helvetica, sans-serif;
}

/*-------------------------------------------------------
  カレンダーテーブル -> 曜日表示部分デザイン
-------------------------------------------------------*/
/*曜日表示部分（<tr>タグ部分）のデザイン*/
.CalendarWdayTr {
}
/*曜日表示部分、日曜日の<th>タグ部分デザイン*/
.CalendarWdaySun {
	padding:2px 0;
	color:#F66;
	font-weight:bold;
}
/*曜日表示部分、平日の<th>タグ部分デザイン*/
.CalendarWday {
	font-weight:bold;
}
/*曜日表示部分、土曜日の<th>タグ部分デザイン*/
.CalendarWdaySat {
	color:#69F;
	font-weight:bold;
}
/*-------------------------------------------------------
  カレンダーテーブル -> 日付表示部分デザイン
-------------------------------------------------------*/
/*日付表示部分（<tr>タグ部分）のデザイン*/
.CalendarTr {
}
/*日付表示部分、日曜日の<td>タグ部分デザイン*/
.CalendarTdSun {
	padding:2px 0;
	color:#F66;
}
/*日付表示部分、土曜日の<td>タグ部分デザイン*/
.CalendarTdSat {
	color:#69F;
}
/*日付表示部分、平日曜日の<td>タグ部分デザイン*/
.CalendarTd {
	color:#999;
}
/*記事が存在する場所の設定*/
.CalendarTdLink {
}
/*記事が存在する日付の文字色の設定*/
.CalendarTdLinkFont {
	color:#03F;
	font-weight:bold;
}	