/*指定列印時的字型與大小，此英文字型列印時會比較清晰*/
body {
	font-family:"Times New Roman,serif";
	font-size:12pt;
}

h1,h2,h3{
	font-size:14pt;
}

.main_table_top {
	background-image: url(style_blue/background.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 20px;
	background-color: #3DDAF8;
}

/*將下面的這些區域在列印時都設為隱藏*/
.main_table_leftmenu , .main_table_bottom , .main_table_popmenu , .main_table_right ,#top_menu ,#top_title {
	display: none;
}
.title_img {
	display: block;
}

/*指定超連結顏色為藍色*/
a:link, a:visited {
	color:blue;
	text-decoration:underline;
}

/* 列印時讓在超連結之後顯示它所連結的網址內容*/
a:link:after,a:visited:after {
	content:"(" attr(href) ")";
}