/*------------------------*/
/* 画面全体の基本的な設定     */
/*------------------------*/
* {
    /* 全体のパディングとマージンをクリアする */
    margin  : 0px;
    padding : 0px;
    word-wrap : break-word;
    word-break : break-all;
}

#content_wrapper {
   /* 画面全体の背景や色、フォントの設定(ブログコンテンツ外側も含む) */
    font : 10px/1.5em "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka", "Verdana", sans-serif;
    color : #666;
    background : white url("/template/2002/img/background.png") repeat;
}

#content_wrapper #content {
    /* ブログコンテンツ全体の設定 */
    width  : 760px;
    margin : 0px auto;
}


/*------------------------------*/
/* ヘッダータイトルに関する指定 */
/*------------------------------*/
#content #header {
    /* タイトルの大きさや背景画像、文字色を定義する */
    height : 200px;
    background : url("/template/2002/img/header.png") no-repeat;
    border-top : 1px solid white; /* Firefox対応 */
    color : #039;
      
    /* 折り返しの対応 */
    line-height : 4px;
    position : relative;
    overflow : hidden;
}
 
#header #blogname {
    margin : 70px 280px 0px 32px;
    font-size : 24px;
    line-height : 24px;
    overflow : hidden;
}

#header #description {
    margin : 0px 280px 0px 32px;
    font-size : 14px;
    line-height : 14px;
    height : 45px;
    overflow : hidden;
}

#header #navigator {
    font-size : 12px;
    line-height : 12px;
    width : 760px; height : auto;
    font-weight : bold;
    text-align : center;
    
    /* 一番下に貼り付ける記述 */
    position : absolute;
    bottom : 10px;
}

#header a         { color : #039; text-decoration : none; background : none; }
#header a:link    { color : #039; text-decoration : none; background : none; }
#header a:visited { color : #039; text-decoration : none; background : none; }
#header a:active  { color : #039; text-decoration : none; background : none; }
#header a:hover   { color : #039; text-decoration : none; background : none; }


/*----------------------------*/
/* メニュー・記事に関する設定 */
/*----------------------------*/
#content #main {
    /* ブログ記事の表示位置の調整 */
    margin : 0px;
    overflow-x : hidden;
}

#main .left {
    /* サイドメニュー(左)の大きさ、背景の調整 */
    width : 165px;
    
    /* サイドメニュースペースと見出しの隙間は、ここで調整*/
    padding : 0px;
    float : left;
    background-color : white;
    overflow-x : hidden; 
}

#main .middle {
    /* 記事の幅(予定幅 - マージン左右 - パディング左右) */
    width : 570px;
    padding : 0px 0px 0px 25px;
    float : right;
    overflow-x : hidden;
}

/*--------------*/
/* メニュー設定 */
/*--------------*/
#content_wrapper #content .side {
    /* サイドの一項目（カレンダー・最新記事など）*/
    
    /* 項目と項目の隙間は、ここで指定します */
    padding-bottom : 15px;
}

.side .side_title {
    /*サイドメニューのタイトル */
    /* 高さは、画像のトータルサイズから、ボーダー・パディング分を引きます（基本値24px） */
    height : 24px;
    padding-top : 4px;
    padding-left : 24px;
    font-weight : bold;
    color : #006;
    background : white url("/template/2002/img/header_side.png") no-repeat;
}

.side .calendar_bg {
    /* カレンダー全体 */
    padding : 0px;
}

.side .calendar_bg th.calendar {
    /* 曜日 */
    padding : 0 2px;
    text-align : center;
}

.side .calendar_bg td.calendar {
    /* 日付 */
    padding : 0 2px;
    text-align : center;
}

.side .side_text, .side .profile_name_text {
    width : 147px;
    padding : 2px 9px;
    white-space : normal;
    overflow-x : hidden;
}

/* ぷろふのテキストは横パディングしない */
.side .profile_name_text .side_text, .side .side_text .side_text {
    padding : 2px 0px;
}

/*------------*/
/* 記事の設定 */
/*------------*/
#main .middle .entry {
    background-color : #EBF3FB;
    width : 570px;
    /* 記事と記事の間隔はここで指定 */
    padding-bottom : 10px;
    margin-bottom : 20px;
    /* フッター画像がある場合、ここで定義 */
    background : #EBF3FB url("/template/2002/img/footer_main.png") no-repeat left bottom;
}

#main .middle .entry .entry_header {
    /* 記事投稿日 */
    height : 21px;
    padding-top : 3px;
    padding-left : 24px;
    margin-bottom : 10px;
    font-weight : bold;
    color : #06F;
    background : #FFF url("/template/2002/img/header_main.png") no-repeat left top;
}

#main .middle .title {
    /* 記事のタイトル */
    padding : 10px;
    font-weight : bold;
    color : #006;
    background-color : #EBF3FB;
}

#main .middle .entry div.text, .comment_layer {
    /* 本文 */
    width : 550px;
    padding : 0px 10px;
    font-size : 12px;
    line-height : 18px;
    background-color : #EBF3FB;
}

#main .middle .continue {
    /* 続きを読む */
    font-size : 12px;
    padding : 10px;
    background-color : #EBF3FB;
}

#main .middle .entry .posted {
    /* 記事の投稿者 */
    padding : 10px;
    color : #039;
    text-align : right;
}

.middle .comments .posted2 {
    /* 記事の投稿者 */
    padding-top : 10px;
    font-size : 10px;
    color : #039;
    text-align : right;
}

#content #footer {
    margin : 0px auto;
    text-align : center;
}

ul {
    list-style-type : none;
}


/* -------------- */
/* リンク色の設定 */
/* -------------- */
 a         { color : #039; text-decoration : underline; background : none; }
 a:link    { color : #039; text-decoration : underline; background : none; }
 a:visited { color : #039; text-decoration : underline; background : none; }
 a:active  { color : #039; text-decoration : underline; background : none; }
 a:hover   { color : #FFF; text-decoration : underline; background : #998; }

.left .side a         { color : #666; text-decoration : underline; background : none; }
.left .side a:link    { color : #666; text-decoration : underline; background : none; }
.left .side a:visited { color : #666; text-decoration : underline; background : none; }
.left .side a:active  { color : #666; text-decoration : underline; background : none; }
.left .side a:hover   { color : #FFF; text-decoration : none; background : #998; }

.left .side .side_title a         { color : #039; text-decoration : none; background : none; }
.left .side .side_title a:link    { color : #039; text-decoration : none; background : none; }
.left .side .side_title a:visited { color : #039; text-decoration : none; background : none; }
.left .side .side_title a:active  { color : #039; text-decoration : none; background : none; }
.left .side .side_title a:hover   { color : #039; text-decoration : none; background : #998; }

.left td.calendar .side a         { color : #039; text-decoration : underline; background : none; }
.left td.calendar .side a:link    { color : #039; text-decoration : underline; background : none; }
.left td.calendar .side a:visited { color : #039; text-decoration : underline; background : none; }
.left td.calendar .side a:active  { color : #039; text-decoration : underline; background : none; }
.left td.calendar .side a:hover   { color : #039; text-decoration : underline; background : #998; }


/*----------------------*/
/* マイポータル共通記述 */
/*----------------------*/
#portal_left {
    /* サイドメニュー(左)の大きさ、背景の調整 */
    width : 165px;
    padding-right : 20px;
    
    /* サイドメニュースペースと見出しの隙間は、ここで調整*/
    float : left;
    background-color : white;
    overflow-x : hidden;
}

#portal_left .side_title {
    /* サイドメニュー(左)のタイトル部 */
    font-weight : bold;
    text-align : left;
}

#portal_left .side_text {
    /* サイドメニュー(左)のテキスト部 */
    text-align : left;
}

#portal_right {
    /* 記事の幅(予定幅 - マージン左右 - パディング左右) */
    width : 570px;
    padding-bottom : 20px;
    float : right;
    overflow-x : hidden;
    /* フッター画像がある場合、ここで定義 */
    background : #EBF3FB url("/template/2002/img/footer_main.png") no-repeat left bottom;
}

#portal_right .portal_title_box {
    /* 記事投稿日 */
    width : 546px;
    height : 21px;
    padding-top : 3px;
    padding-left : 24px;
    font-weight : bold;
    color : #006;
    background : #FFF url("/template/2002/img/header_main.png") no-repeat left center;
}

#portal_right .portal_title {
    /* 特別な場合のみ指定 */
    text-align : left;
}

#portal_right .portal_text {
    /* 本文 */
    font-size : 12px;
    padding : 5px 10px;
    text-align : left;
    background-color : #EBF3FB;
}

#portal_right th.portal_text {
    color : #069;
}

.cl { clear : both; padding : 0px; }

.head a         { font : 28px bold; color : white; text-decoration : none; background : none; padding-right: 10px; }
.head a:link    { font : 28px bold; color : white; text-decoration : none; background : none; padding-right: 10px; }
.head a:visited { font : 28px bold; color : white; text-decoration : none; background : none; padding-right: 10px; }
.head a:active  { font : 28px bold; color : white; text-decoration : none; background : none; padding-right: 10px; }
.head a:hover   { font : 28px bold; color : white; text-decoration : none; background : #998; padding-right: 10px; }