﻿@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);

* {
	font-family: "Noto Sans TC", sans-serif;
	font-size: 14px;
	box-sizing: border-box;
	padding-left: 0px;
	margin-top: 0px;
	margin-left: 0px;
	text-decoration: none;
}

a :hover{color: #0094ff;}
td {
	color: #000000;
	text-align: left;
	vertical-align: top;
	padding-bottom: 8px;
	top: 0;
	left: 0;
}

.td_title {width: 14%;}
.td_content{width: 86%;}

/* button_group*/
.button_group .button {
	display: block;
	background-color: #8b0000;
	border: none;
	padding: 4px 0px 6px 4px;
	width: 100%;
	color: white;
	font-size: 14px;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}

.button_group .button:not(:last-child) {
	border-bottom: none; /* Prevent double borders */
}
.button_group .button:hover {
	background-color: #dddddd;
    color: #8b0000;
}

.Button_Group_With_Label {
	font-size: 14px;
	color: #ffffff;
	margin-left: 0px;
	padding: 5px 0px 5px 0px; /* top right bottom left */
	background-color: #4B0082;
}

.button_copyright {
	display: block;
	background-color: #8b0000;
	border: none;
	padding: 0px;
	color: #ffffff;
	text-align: left;
	cursor: pointer;
}
        .left_frame {
            position: absolute;
            top: 0;
            left: 0;
            width: 19%;
            height: 100%;
            background-color: #8b0000;
            margin-top: 0px;
            margin-left: 0px;
        }

        .right_frame {
            width: 78%;
            background-color:#FFE4B5; 
        }
		.row:after {
			content: "";
			display: block;
		}
        .iframe {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            right: 0;
            width: 81%;
            height: 100%;
            border: none;
        }

        /*
		.Link_return{
				position: fixed;
				bottom: 20px;
				left: 10px;
			}
		.Link_search{
				position: fixed;
				bottom: 20px;
				left: 35px;
			}
		*/
		.Link_copyright{
				position: fixed;
				top: 0px;
				left: 0px;}
				
		/* Tooltip container */
		.tooltip {
				position: relative;
				display: inline-block;
		}
		
		/* Tooltip text */
		.tooltip .tooltip_text {
				visibility: hidden;
				width: 80px;
				background-color: #555;
				color: #fff;
				text-align: center;
				padding: 0px 4px 0px 4px;
				
				/* Position the tooltip text */
				position: absolute;
				z-index: 1;
				bottom: 45px;
				left: 0px;
				margin-left: -25px;
				
				/* Fade in tooltip */
				opacity: 0;
				transition: opacity 0.3s;
		}
		
		/* Tooltip arrow */
		.tooltip .tooltip_text::after {
				content: "";
				position: absolute;
				bottom: -10px;
				/*top: 100%;
				left: 50%;
				margin-left: -5px;
				border-width: 5px;
				border-style: solid;
				border-color: #555 transparent transparent transparent;*/
		}
		/* Show the tooltip text when you mouse over the tooltip container */
		.tooltip:hover .tooltip_text {
				visibility: visible;
				opacity: 1;
		}
		
        @media screen and (min-width:601px) {
            
            .area{
                text-align: left;
                font-size:13px;
            }
        }

        @media screen and (max-width:600px) {
            
            .area_600 {
                
                text-align: justify;
                font-size:13px;
            }
        }

