@charset "utf-8";



body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #CCC;
}
.style1 {
	font-family: "微軟正黑體";
	color: #DBBFA4;
	font-size: 18px;
	line-height: 25px;
}
.style2 {
	color: #FF0;
	font-weight: bold;
	font-family: "微軟正黑體";
	line-height: 30px;

}
.style3 {
	font-size: 16px;
	line-height: 30px;
	color: #CCCCCC;
	font-family: "微軟正黑體";
	padding-left: 12px;
}
.style4 {
	font-family: "微軟正黑體";
	font-size: 18px;
	color: #00FFFF;
}
.style5 {
	font-family: "微軟正黑體";
	font-size: 18px;
	color: #FF6600;
}

#container {
	width: 100%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color: #000000;
} 
#header  h1  {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	background-color: #000000;
	height: 236px;
	background-image: url(images/main_content_bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	padding: 0;
}
#Content {
	margin-right: auto;
	margin-left: auto;
	background-repeat: repeat-x;

}
#footer  {
	background-color: #333333;
	height: 100px;
} 
#footer  p  {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#top_navi  {
	margin: auto;
	background-image: url(../All/images/navi/M_bg.gif);
	height: 36px;
	width: auto;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}

.img_1  {
	padding: 8px;
	border: 1px none #FFFFFF;
	margin: 8px;
	background-color: #CCC;
}

.myButton {
	-moz-box-shadow: inset 0px 1px 0px 0px #f29c93;
	-webkit-box-shadow: inset 0px 1px 0px 0px #f29c93;
	box-shadow: inset 0px 1px 0px 0px #f29c93;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100));
	background: -moz-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background: -webkit-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background: -o-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background: -ms-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background: linear-gradient(to bottom, #fe1a00 5%, #ce0100 100%);





	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100',GradientType=0);
	background-color: #fe1a00;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 21px;
	border: 1px solid #d83526;
	display: inline-block;
	cursor: pointer;
	color: #ffffff;
	font-family: "微軟正黑體";
	font-size: 18px;
	padding-top: 1px;
	padding-right: 24px;
	padding-left: 14px;
	padding-bottom: 1px;
	text-decoration: none;
	text-shadow: 1px 2px 1px #b23e35;
	margin-right: 8px;
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ce0100), color-stop(1, #fe1a00));
	background:-moz-linear-gradient(top, #ce0100 5%, #fe1a00 100%);
	background:-webkit-linear-gradient(top, #ce0100 5%, #fe1a00 100%);
	background:-o-linear-gradient(top, #ce0100 5%, #fe1a00 100%);
	background:-ms-linear-gradient(top, #ce0100 5%, #fe1a00 100%);
	background:linear-gradient(to bottom, #ce0100 5%, #fe1a00 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ce0100', endColorstr='#fe1a00',GradientType=0);
	background-color:#ce0100;
}
.myButton:active {
	position:relative;
	top:1px;
}

a:link{
	color: #FF0000;
	text-decoration: none;
}


a:hover{
	color: #FF9900;
	text-decoration: underline;
}
