/* base css */
@import url(/.shared-tpjbiz/themes/common/base-weblog.css);

/* portal css */

/* theme css */
@import url(/.shared-tpjbiz/themes/walt/theme-asterisk_white.css);

/* user css */

/* 背景*/
body {
	background: #FFEBCD;
	margin: 10px 0 10px 0;
}

/* 記事タイトル背景*/
div.entry h3.entry-header {
	background: #FFEBCD;
}

/* 記事部分ボーダー*/
#pagebody {
  border: 1px solid #A52A2A;
}

/* バナー領域のサイズ指定・ボーダー指定 デフォルトテーマのバナー画像上書き */
div#banner{
	width: 940px;
	height: 300px;
	background-image: url(http://tellus-gi.jp/titleimg.jpg);
	border-top: 1px solid #A52A2A;
	border-left: 1px solid #A52A2A;
	border-right: 1px solid #A52A2A;
}


/* マージン、パディングの初期化 */
#banner-header {  
	padding: 0px;
}
#banner-inner
{
	border-top-width: 0px;
	padding-right: 0px;
}
#banner-description
{
	margin: 0;
	padding: 0px;
	font-size: 0px;
	line-height: 0;
}

/* 文字タイトルの待避 */
h1#banner-header {  
	text-decoration: none;
	text-indent: -1000em;
}

/*　バナー画像の表示とリンクの関連づけ */
h1#banner-header a
{
	background-image: url(http://tellus-gi.typepad.jp/titleimg.jpg);
	background-repeat: no-repeat;
	display: block;
	width: 940px;
	height: 300px;
}

/*-----------------------------------------------------------------------------------------*/
/* カスタムCSSについて

TypePadのブログをカスタマイズする、代表的なCSS指定は、コメントアウトとして記述されています。コメントアウトを解除することで、CSS指定を有効にすることができます。TypePadのカスタムCSS講座も参照ください。
http://www.sixapart.jp/typepad/inside/2005/12/001261.html
http://support.typepad.jp/cgi-bin/typepad_jp.cfg/php/enduser/std_adp.php?p_faqid=373

CSSの詳しい記述方法については、WEBサイトや書籍などを、参考にしてください。
*/

/*
指定しているのにうまくいかない場合

CSSセレクタの個別性が原因でうまく指定が反映されない可能性があります。セレクタの個別性順序は以下のようになります。

*         { color: black; }
span        { color: blue; }
p span      { color: green; }
span.memo   { color: red; }
span#memo { color: gray; }

の場合、<p><span class="memo" id="memo">サンプル</span></p>の『サンプル』という文字は上記セレクタの順序がちがっても、グレーになります。
指定が反映されない原因が、セレクタの個別性かどうか確認するには、優先させたいプロパティの値のあとに、! important と追加して指定してみてください。

例)

span { color: red ! important; }

*/



/* ブログのバナー背景部分に画像を指定 */
/* 

div#banner
{
  background-image: url(http://example.typepad.jp/sample_design/myimages/background.jpg);
  background-repeat: no-repeat;
  background-position: center;
  text-align: right;
}

*/

/* バナー部分の中身 */
/*
div#banner-inner {}
div#banner-inner h1#banner-header {}
div#banner-inner h2#banner-description {}
*/

/* ページの各部分の指定 */
/* 詳しくは http://support.typepad.jp/cgi-bin/typepad_jp.cfg/php/enduser/std_adp.php?p_faqid=374 */
/*
body {}
div#container {}
div#container div#container-inner {}

div#pagebody {}
div#pagebody div#pagebody-inner {}

div.entry {}
div.entry h3.entry-header {}
div.entry div.entry-content {}
div.entry div.entry-content div.entry-body {}
div.entry p.entry-footer {}
*/

/* レイアウト毎に異なる指定 */
/* １カラム */
/*
body.layout-one-column div#alpha {}
body.layout-one-column div#alpha-inner {}
*/
/* ２カラム （左サイドバー = alpha | 本文 = beta） */
/*
body.layout-two-column-left div#alpha {}
body.layout-two-column-left div#alpha-inner {}
body.layout-two-column-left div#beta {}
body.layout-two-column-left div#beta-inner {}
*/

/* ２カラム （本文 = alpha | 右サイドバー = beta） */
/*
body.layout-two-column-right div#alpha {}
body.layout-two-column-right div#alpha-inner {}
body.layout-two-column-right div#beta {}
body.layout-two-column-right div#beta-inner {}
*/

/* ３カラム （左サイドバー = alpha | 本文 = beta | 右サイドバー = gamma) */
/*
body.layout-three-column div#alpha {}
body.layout-three-column div#alpha-inner {}
body.layout-three-column div#beta {}
body.layout-three-column div#beta-inner {}
body.layout-three-column div#gamma {}
body.layout-three-column div#gamma-inner {}
*/

/* サイドバー・モジュールの指定 */
/*
div.module {}
div.module h2.module-header {}
div.module div.module-content {}
div.module-content ul.module-list {}
div.module-content ul.module-list li.module-list-item {}
*/

/* メインのコメントプッシュ */

.topcom {
	padding: 10px;
	border: 1px solid #CC0000;
	margin: 10px 0px 20px 5px! important;
	color: #666666;
}




