/* Base */
@import url(/.shared-tpjbiz/themes/common/base-weblog.css);
/* Portal */
/* Theme */
/* Custom */
/*
カスタムCSSについて

TypePadのブログをカスタマイズする、代表的なCSS指定は、コメントアウトとして記述されています。コメントアウトを解除することで、CSS指定を有効にすることができます。TypePadのカスタムCSS講座も参照ください。
http://start.typepad.jp/manual/customcss.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; }

*/
/* basic page element styling */

body {
	margin:0;
	background-repeat: repeat-x;
	background-attachment: fixed;
	background-position: top left;
	color: #000000;
	background-color: #000000;
	background-image: url(http://bladechronicle.weblogs.jp/img/bg.jpg);
	font-family: 'lucida grande', helvetica, arial, sans-serif;
	font-size: 12px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'lucida grande', helvetica, arial, sans-serif;
}

a {
	color: #900;
}

a:hover {
	color: #600;
}


/* page layout basics */

#container {
	width: 945px;
	background-image: url(http://bladechronicle.weblogs.jp/img/bg_all.jpg);
}

#alpha {
	float: left;
	margin: 0 0 0 0px;
}

#alpha-inner {
	padding: 0 0 0px;
}

#beta {
	margin-top : 0px;
	margin-right : 0px;
	margin-bottom : 0px;
	margin-left: 0px;
	float: left;
}

#beta-inner {
	padding: 0 0 0px;
}

#gamma {
	float: left;
	margin: 0 0 0 0px;
}

#gamma-inner {
	padding: 0 0 0px;
}


/* container styling */
/*
#container-inner {
	border-color: #fff;
	border-width: 0 1px;
	border-style: solid;
}
*/

/* banner styling */
/*
#banner {
	width: 945px;
    height: 295px;
	margin: 0;
	border-top-width: 5px;
	border-top-style: solid;
	background-repeat: no-repeat;
	background-position: bottom left;
	border-top-color: #000;
	background-color: #fff;
	background-image: url(http://superblog.typepad.jp/blog/images/top01.jpg);
}
*/

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

#banner
{
　width: 945px;
  height: 295px;
　margin: 0;

  background-image: url(http://bladechronicle.weblogs.jp/img/top01.jpg);
  background-repeat: no-repeat;
  background-position:center;
  font-size:1px;
}



#banner a {
	color: #000;
	text-decoration: none;
}

#banner a:hover {
	text-decoration: underline;
}

#banner-inner {
	border-top-color: #fff;
	border-top-width: 0px;
	border-top-style: solid;
	padding-right: 0px;
}

#banner-header {
	color: #000;
	margin: 0;
	padding: 0px 0px 0px;
	font-family: georgia, 'times new roman', serif;
	font-size: 3px;
	font-weight: normal;
	line-height: 1;
}

#banner-description {
	color: #333;
	margin: 0;
	padding: 0px 0px 0px;
	font-family: georgia, 'times new roman', serif;
	font-size: 18px;
	line-height: 1.125;
	font-style: italic;
}


/* navigation bar styling */

#nav {
	background: #e5e6e8 url(/.shared-typepad/themes/walt/theme-asterisk_white_wide/nav.gif) repeat-x top left;
}

.nav-list {
	border-bottom: 1px solid #cdcdcd;
}

.nav-list-item {
	border-right: 1px solid #cdcdcd;
}

.nav-list-item a {
	font-size: 11px;
	padding: 6px 11px;
}


/* pagebody styling */

#pagebody {
	padding: 0px 0px;
}

#pagebody-inner {
	background-repeat: repeat-x;
	background-position: top center;
}


/* entry listing and entry styling 本文*/

.content-header {
	margin: 5px 0 20px;
	font-family: georgia, 'times new roman', serif;
	font-size: 28px;
	color: #000;
}

.content-nav {
	margin: 5px 0 20px;
}


.date-header {
	color: #666;
	margin: 5px 0;
	font-size: 10px;
}

.entry {
	background-image: url(http://bladechronicle.weblogs.jp/img/titlebn.jpg);
	background-repeat: no-repeat;
	background-position: top left;
}

.entry-header {
	color: #000;
	margin: 5px 25px 5px;
	font-family: georgia, 'times new roman', serif;
	font-size: 22px;
}

.entry-header a {
	color: #000;
	text-decoration: none;
}

.entry-header a:hover {
	text-decoration: underline;
}

.entry-content {
	margin: 5px 25px;
}

.entry-more-link {
	font-size: 11px;
	font-weight: bold;
}

.entry-footer {
	border-top-color: #e5e5e5;
	color: #666;
	font-size: 11px;
	margin: 10px 25px 20px;
	border-top-width: 1px;
	border-top-style: solid;
	padding-top: 5px;
	font-weight: normal;
}

.entry-footer a {
	color: #666;
}

.entry-footer a:hover {
	color: #333;
}

#comment-author,
#comment-email,
#comment-url,
#comment-text {
	width: 80%;
}


.trackbacks-header,
.comments-header,
.comments-open-header,
.archive-header {
	/* ie win (5, 5.5, 6) bugfix */
	p\osition: relative;
	width: 100%;
	w\idth: auto;

	margin: 0;
	padding: 5px 0;
	font-size: 14px;
	font-weight: bold;
	color: #000;
}

.trackback-content,
.comment-content,
.comments-open-content,
.comments-closed {
	margin: 5px 0;
}

.trackbacks-info,
.trackback-footer,
.comments-info,
.comment-footer,
.comments-open-footer,
.archive-content {
	margin: 5px 0 20px;
}


.trackback-footer,
.comment-footer {
	border-top-width: 1px;
	border-top-style: solid;
	padding-top: 5px;
	border-top-color: #e5e5e5;
	color: #666;
	font-size: 11px;
}

.comment-footer a {
	color: #666;
}

.comment-footer a:hover {
	color: #333;
}


/* sidebar module styling サイドの設定*/

.module-header {
	color: #000;
	/* ie win (5, 5.5, 6) bugfix */
	position: relative;
	width: 100%;
	margin: 0;
	padding: 5px 5px;
	font-size: 14px;
	font-weight: bold;
}

.module-header a {
	color: #000;
}

.module-content {
	margin: 5px 10px 10px;
	font-size: 11px;
}

.module-content a {
	color: #900;
}

.module-content a:hover {
	color: #600;
}


.module-calendar {
	font-size: 11px;
}


.module-powered {
	margin: 0;
	padding: 0;
}

.module-powered .module-content {
	margin: 15px 0;
	padding: 10px;
	text-align: center;
	background-repeat: repeat-x;
	background-position: top left;	
}

.module-powered .module-content a {
	color: #333;
}

.module-photo {
	border: 0;
	background: none;
}

.module-photo .module-content {
	margin: 10px;
}

.module-photo img {
	margin: 0px 15px;
	border: 0;
}


.module-featured-photo {
	width: 200px;
}

.module-featured-photo .module-content {
	margin: 15px 0 5px;
}

.module-featured-photo img {
	width: 200px;
}


.module-recent-photos {
	border: 0;
	margin-left: 2px;
}

.module-recent-photos .module-header {
	background-image: none;
}

.module-recent-photos .module-list {
	margin: 0;
}

.module-recent-photos .module-list-item {
	width: 64px; /* mac ie fix */
	margin: 0 5px 6px 0;
	padding: 0;
	background-image: none;
}

.module-recent-photos .module-list-item a {
	border-width: 1px;
	border-style: solid;
	padding: 1px;
	border-color: #ccc;
	background-color: #eee;
}

.module-recent-photos .module-list-item a:hover {
	border-color: #000;
}

.archive-list-item {
	margin-bottom: 5px;
}

.typelist-thumbnailed {
	margin: 0 0 20px;
}

.typelist-thumbnailed .module-list-item {
	margin: 1px 0;
	border-width: 1px;
	border-style: solid;
	padding: 0;
	background-repeat: repeat-x;
	background-position: top left;
	border-color: #e5e5e5;
	font-size: 11px;
}

/*
.typelist-thumbnail {
	background: #f3f3f3;
}
*/




/* バナー部分の中身 */
/*
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 { width:940; background-color:#0099CC}
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 { 
width: 225px; 
background-image: url(http://bladechronicle.weblogs.jp/img/bg_left.jpg);
background-repeat:repeat-y;
}
body.layout-two-column-left div#alpha-inner { width: 223px; }
body.layout-two-column-left div#beta { width: 720px; }
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 {}
*/

