// 2010ポータル向け印刷用CSS
// トップメニューと左メニューは強制排除
// 印刷させたくないものには明示的にnoprintクラスを指定
// 2010/04/12 garu

* {
    font-family: "ＭＳ Ｐ明朝", serif;
    vertical-align: 0;
}

/* あんまり賑やかしくないように */
h1, h2, h3, th, dt, strong, a, #t-logo a, ul, li, #footer{
    margin: 0;
    padding: 0;
    font-family: "Century Gothic", Arial, sans-serif;
    font-weight: normal;
    color: #000000;
}

/* できるだけ全面を使う */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: white;
    background-image: none;
    font-size: 12pt;
    line-height: 1.4;
}

head+body {
/*    width: 165mm; */
    max-width: 100%;
    min-width: 80%;
    margin: 0 auto;
}

/* ギチギチにならないように本文は95%指定 */
.t-content, .contents #t_content{
    width: 95%;
    margin-left: auto;
    text-align: left;
}


table {
    margin-bottom: 1em;
    border-collapse: collapse;
    width: 100%;
}

/* 枠線はHTMLの指定に従う */
th, td {
/*    border: 1px solid #473533; */
    padding: 6px 8px;
    vertical-align: top;
    text-align: left;
    font-size: 10.5pt;
}

/* リンク先URLが表示される仕組みだけど、ちゃんと動いていない謎 */
a[href]:after {
　　content: " [" attr(href) "] ";
　　font-size: 90%;
}

/* ロゴ部分にはURLを表示しない */
.t-logo a[href]:after {
    content: "";
}


/* 余計なものを表示しない指定その1（ポータルのclass） */
.header_bar, .topmenu, .t-database, .h-tab-body, .facet-title {
	display:none;
}

/* 余計なものを表示しない指定その2（ポータルのid） */
#t_database, #h_tab_body{
	display:none;
}

/* 余計なものを表示しない指定その3（独自のclass/id） */
.noprint, .contentsitem, #contentsback {
	display:none;
}

