body {
	background-color: #CCC;
}

.container {
	margin: auto;
	width: 1059px;
	height: 895px;
	padding: 10px;
	padding-top: 10px;
	background: white;
}

.img_1 {
	display: inline-block;
	padding-left: 7px;
}

.img_2 {
	margin-top: -2px;
	margin-right: -5px;
	float: right;
}

.img_3 {
	position: relative;
}

.img_4 {
	position: absolute;
	top: 35px;
	left: 520px;
}

.img_content {
	position: absolute;
	top: 93px;
	padding-left: 18px;
	z-index: 1;
	width: 355px;
    height: 790px;
    overflow: auto;
	overflow-x: hidden;
}

p.head_text {
	margin-top: 3px;
	margin-bottom: 11px;
	padding-left: 4px;
	font-size: 19px;
}

table.content_text {
	position: absolute;
    top: 24px;
    left: 20px;
	font-size: 18px;
	line-height: 1.9;
	font-family: Microsoft JhengHei;
}

div.content_text {
	position: absolute;
    top: 410px;
    left: 20px;
	font-size: 18px;
	font-weight: normal;
	/*font-weight: bold;*/
	font-family: Microsoft JhengHei;
}

.content_text_bottom {
	width: 682px;
	position: absolute;
	top: 635px;
	text-align: center;
}

table.content_text th {
	width: 145px;
	text-align: left;
}


table.content_text select {
	font-size: 18px;
}

p {
	font-family: Microsoft JhengHei;
	font-weight: bold;
	line-height: 1.5;
}



/* The container */
.ctnr {
    display: inline;
    position: relative;
    padding-left: 25px;
	padding-right: 5px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.ctnr input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #FFFFFF;
}

/* On mouse-over, add a grey background color */
.ctnr:hover input ~ .checkmark {
    background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.ctnr input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.ctnr input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.ctnr .checkmark:after {
    left: 6px;
    top: 1.5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}



.submit_button {
    border-radius: 20px;
	border: 1px solid #BEBDBE;
    width: 125px;
    height: 30px;
	font-size: 18px;
	margin-bottom: 10px;
    font-family: Microsoft JhengHei;
    background: #f4f4f4;
	margin-left: 6px;
}

.submit_button:active {
    background-color: #202334;
	color: white;
}

.cancel_button {
    border-radius: 20px;
	border: 1px solid #BEBDBE;
    width: 125px;
    height: 30px;
	font-size: 18px;
    font-family: Microsoft JhengHei;
    background: #f4f4f4;
}

.cancel_button:active {
    background-color: #202334;
	color: white;
}

/* width */
.img_content::-webkit-scrollbar {
	width: 15px;
}

/* Track */
.img_content::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey; 
	background: #f1f1f1; 
}
 
/* Handle */
.img_content::-webkit-scrollbar-thumb {
  background: #666; 
}

/* Handle on hover */
.img_content::-webkit-scrollbar-thumb:hover {
  background: #444; 
}