﻿@charset "utf-8";
/* CSS Document */

body
{
	/*border: 2px solid #000;*/
	
	margin: 0px 0px 0px 0px; /* margin 外邊界距離: top right bottom left ，特別的是 margin 可以設定負値 ，0 、auto 就是置中 */
	/*padding: 0px 0px 0px 0px;*/ /* padding 內邊界距離: top right bottom left */
	/*position: relative;*//* position 位置: static預設 、absolute絕對 、relative相對 、fixed固定 */
	
	font-family: 微軟正黑體, Microsoft JhengHei;
}

#layout
{
	width: 100%;
	
	margin: auto;
}

#header
{
	width: 100%;
	height: 150px;
	
	margin: auto;
}

#header_logo
{
	margin: 40px 0px 0px 40px; /* 上20px 右 下 左20px */
	
	float: left; /* float 浮動: 左 */
}	

#header_list
{
	margin: 0px 0px 0px 0px; /* 上 右30px 下 左 */
	
	float: right; /* float 浮動: 右 */
	
	font-size: 30px;
}

#banner 
{
	width: 960px;
	height: 400px;
	
	margin: auto;
}

#banner_pic_content 
{
	width: 960px;
	height: 100px;
	
	background-color: #58595B;
}

#text 
{
	text-align: right; /*text-align 水平對齊 */
	position: relative;
	left: 500px;
	
	font-size: 30px;
	color:#FFFFFF;
}

#footer
{
	width: 100%;
	height: 240px;
	
	background-color: #58595B;
}

#footer_layout
{
	width: 960px;
	height: 240px;
	
	margin: auto;
}

#footer_content
{
	width: 800px;
	
	position: relative;
	top: 15px;
	left: 90px;
	
	font-size: 24px;
	color: #FFFFFF;
}

/*----------外掛----------*/

/*a href 連結*/
a
{
	text-decoration: none;/*文字效果-刪底線*/
	color: #000;
}

.logoblock{
	float:left;
	margin-bottom:10px;

	}