﻿@charset "utf-8";
/* CSS Document */
body
{
    margin:0px;
	background:#f3f3f3;
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes blink {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

span.blink {
    -webkit-animation: blink 2s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation: blink 2s;
    -moz-animation-iteration-count: infinite;
    -o-animation: blink 2s;
    -o-animation-iteration-count: infinite;
}
span.status{
	width:10px;
	height:10px;
	border-radius:50px;
	z-index:1;
	display:block;
	margin:1px;
	}

	/*

*/
.status_red1{
	background-image:("icon/status_red.gif") no-repeat;
}
span.status_red {
	width:10px;
	height:10px;
	border-radius:50px;
	z-index:1;
	display:block;
	margin:1px;
    -webkit-animation: status_red 1s infinite;
    -webkit-animation-delay: 1s;
    animation: status_red 1s infinite;
    animation-delay: 1s;

	-o-animation: 1s;
    -o-animation-delay: infinite;

	-ms-animation: s1;
	-ms-animation-delay: infinite;
}

span.status_brown {
	width:10px;
	height:10px;
	border-radius:50px;
	z-index:1;
	display:block;
		margin:1px;

    -webkit-animation: status_brown 1s infinite; /*Safari and Chrome*/
    -webkit-animation-delay: 1s; /*Safari and Chrome*/
    animation: status_brown 1s infinite;
    animation-delay: 1s;

	-o-animation: 1s;
    -o-animation-delay: infinite;

	-ms-animation: 1s;
	-ms-animation-delay: infinite;
}
span.status_extra{
	width:15px;
	height:15px;
	border-radius:50px;
	z-index:1;
	display:block;
	margin:1px;
}
/*
span.status_blue {
	width:10px;
	height:10px;
	border-radius:50px;
	z-index:1;
	display:block;
		margin:1px;

    -webkit-animation: status_blue 0.5s infinite;
    -webkit-animation-delay: 0.5s;
    animation: status_blue 0.5s infinite;
    animation-delay: 0.5s;
}
span.status_green {
	width:10px;
	height:10px;
	border-radius:50px;
	z-index:1;
	display:block;
		margin:1px;

    -webkit-animation: status_green 0.5s infinite;
    -webkit-animation-delay: 0.5s;
    animation: status_green 0.5s infinite;
    animation-delay: 0.5s;
}

span.status_yellow {
	width:10px;
	height:10px;
	border-radius:50px;
	z-index:1;
	display:block;
		margin:1px;

    -webkit-animation: status_yellow 1s infinite;
    -webkit-animation-delay: 1s;
    animation: status_yellow 1s infinite;
    animation-delay: 1s;
}

span.status_gray {
	width:10px;
	height:10px;
	border-radius:50px;
	z-index:1;
	display:block;
		margin:1px;

    -webkit-animation: status_gray 1s infinite; //Safari and Chrome
    -webkit-animation-delay: 1s; Safari and Chrome
    animation: status_gray 1s infinite;
    animation-delay: 1s;
}
*/
.status_blue{
    background: none repeat scroll 0 0 #035cfe;
    border: 1px solid #42cafc;
    box-shadow: 1px 1px 3px #32b4f5;
}

.status_green{

    background: none repeat scroll 0 0 #04f810;
    border: 1px solid #75fa7b;
    box-shadow: 1px 1px 3px #3ffa48;
}

.status_yellow{
	background:#ffc000;
	border:1px solid #fff000;
	box-shadow: 1px 1px 3px #ffc000;
}
.yellow {
	color: #ffc000!important;
}
.status_gray{
	background:gray;
	border:1px solid #C6CED4;
	box-shadow: 1px 1px 3px #C6CED4;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes status_red {
    0%   {	    background: none repeat scroll 0 0 #fff;
    border: 1px solid #fd7072;
    box-shadow: 1px 1px 1px #fd7072;}
    100% {	    background: none repeat scroll 0 0 #fb0004;
    border: 1px solid #fd7072;
    box-shadow: 1px 1px 3px #fd7072;}
}

/* Standard syntax */
@keyframes status_red {
    0%   {	    background: none repeat scroll 0 0 #fff;
    border: 1px solid #fd7072;
    box-shadow: 1px 1px 1px #fd7072;}
    100% {	    background: none repeat scroll 0 0 #fb0004;
    border: 1px solid #fd7072;
    box-shadow: 1px 1px 3px #fd7072;}
}
/* Chrome, Safari, Opera */
@-webkit-keyframes status_brown {
    0%   {	      background:#E9C5AC;
	border:1px solid #95470F;
	box-shadow: 1px 1px 1px #6C4343;}
    100% {	     background:#7E3602;
	border:1px solid #95470F;
	box-shadow: 1px 1px 3px #B26C39;}
}

/* Standard syntax */
@keyframes status_brown {
    0%   {	       background:#E9C5AC;
	border:1px solid #95470F;
	box-shadow: 1px 1px 1px #6C4343;}
    100% {	     background:#7E3602;
	border:1px solid #95470F;
	box-shadow: 1px 1px 3px #B26C39;}
}

/*
 Chrome, Safari, Opera
@-webkit-keyframes status_yellow {
    0%   {	background:#3C7E9D;
	border:1px solid #3C7E9D;
}
    100% {	background:yellow;
	border:1px solid #FAF9C6;
	box-shadow: 1px 1px 3px #FAF9C6;}
}
 Standard syntax
@keyframes status_yellow {
    0%   {	background:#3C7E9D;
	border:1px solid #3C7E9D;
}
    100% {	background:yellow;
	border:1px solid #FAF9C6;
	box-shadow: 1px 1px 3px #FAF9C6;}
}Chrome, Safari, Opera
@-webkit-keyframes status_green {
    0%   {	        background: none repeat scroll 0 0 #fff;
    border: 1px solid #75fa7b;
    box-shadow: 1px 1px 1px #3ffa48;}
    100% {	       background: none repeat scroll 0 0 #04f810;
    border: 1px solid #75fa7b;
    box-shadow: 1px 1px 3px #3ffa48;}
}

 Standard syntax
@keyframes status_green {
    0%   {	        background: none repeat scroll 0 0 #fff;
    border: 1px solid #75fa7b;
    box-shadow: 1px 1px 1px #3ffa48;}
    100% {	       background: none repeat scroll 0 0 #04f810;
    border: 1px solid #75fa7b;
    box-shadow: 1px 1px 3px #3ffa48;}
}
 Chrome, Safari, Opera
@-webkit-keyframes status_blue {
    0%   {	       background: none repeat scroll 0 0 #fff;
    border: 1px solid #42cafc;
    box-shadow: 1px 1px 1px #32b4f5;}
    100% {	      background: none repeat scroll 0 0 #059ff8;
    border: 1px solid #42cafc;
    box-shadow: 1px 1px 3px #32b4f5;}
}

 Standard syntax
@keyframes status_blue {
    0%   {	       background: none repeat scroll 0 0 #fff;
    border: 1px solid #42cafc;
    box-shadow: 1px 1px 1px #32b4f5;}
    100% {	      background: none repeat scroll 0 0 #059ff8;
    border: 1px solid #42cafc;
    box-shadow: 1px 1px 3px #32b4f5;}
}

 Chrome, Safari, Opera
@-webkit-keyframes status_gray {
    0%   {	     background:#fff;
	border:1px solid #C6CED4;
	box-shadow: 1px 1px 1px #C6CED4;}
    100% {	    background:gray;
	border:1px solid #C6CED4;
	box-shadow: 1px 1px 3px #C6CED4;}
}

 Standard syntax
@keyframes status_gray {
    0%   {	      background:#fff;
	border:1px solid #C6CED4;
	box-shadow: 1px 1px 1px #C6CED4;}
    100% {	     background:gray;
	border:1px solid #C6CED4;
	box-shadow: 1px 1px 3px #C6CED4;}
}
*/
#ui-datepicker-div{
	z-index:600;
}

/*
.status_red{
    background: none repeat scroll 0 0 #fb0004;
    border: 1px solid #fd7072;
    box-shadow: 1px 1px 3px #fd7072;
}

.status_brown{
	background:#660000;
	border:1px solid #C3696D;
	box-shadow: 1px 1px 3px #C3696D;
}

*/
#CHM004 {
	position:absolute;
	left:146px;
	top:107px;
	width:136px;
	height:16px;
	z-index:1;
}
#P56A {
	position:absolute;
	left:398px;
	top:121px;
	width:158px;
	height:15px;
	z-index:1;
}
#P65 {
	position:absolute;
	left:3px;
	top:152px;
	width:123px;
	height:13px;
	z-index:1;
}
#CHM005 {
	position:absolute;
	left:91px;
	top:253px;
	width:132px;
	height:15px;
	z-index:1;
}
#P67 {
	position: absolute;
	left: 118px;
	top: 285px;
	width: 121px;
	height: 14px;
	z-index:1;
}
#PIN006 {
    height: 15px;
    left: 169px;
    position: absolute;
    top: 1059px;
    width: 138px;
	z-index:1;
}
#WARN-PIN006 {
    height: 13px;
    left: 141px;
    position: absolute;
    top: 1059px;
    width: 13px;
	z-index:1;
}
#CHM001 {
	position:absolute;
	left:169px;
	top:115px;
	width:138px;
	height:15px;
	z-index:1;
}

#DIV002 {
    height: 15px;
    left: 649px;
    position: absolute;
    top: 644px;
    width: 106px;
    z-index: 1;
}
#WARN-DIV002 {
    height: 13px;
    left: 720px;
    position: absolute;
    top: 693px;
    width: 13px;
	z-index:1;
}
#DIV003 {
    height: 15px;
    left: 842px;
    position: absolute;
    top: 344px;
    z-index: 1;
}
#WARN-DIV003 {
    height: 15px;
    left: 904px;
    position: absolute;
    top: 442px;
    width: 138px;
    z-index: 1;
}
#DIV004 {
    height: 15px;
    left: 779px;
    position: absolute;
    top: 687px;
    width: 109px;
    z-index: 1;
}
#WARN-DIV004 {
    height: 13px;
    left: 890px;
    position: absolute;
    top: 679px;
    width: 13px;
	z-index:1;
}
#DIV005 {
    height: 15px;
    left: 231px;
    position: absolute;
    top: 1018px;
    width: 138px;
	z-index:1;
}
#WARN-DIV005 {
    height: 13px;
    left: 231px;
    position: absolute;
    top: 997px;
    width: 13px;
	z-index:1;
}
#DIV006 {
    height: 15px;
    left: 385px;
    position: absolute;
    top: 709px;
    width: 138px;
    z-index: 1;
}
#WARN-DIV006 {
    height: 13px;
    left: 489px;
    position: absolute;
    top: 687px;
    width: 13px;
	z-index:1;
}
#P1 {
	position:absolute;
	left:105px;
	top:353px;
	width:124px;
	height:14px;
	z-index:1;
}
#P81 {
	position:absolute;
	left:391px;
	top:434px;
	width:117px;
	height:13px;
	z-index:1;
}
#P5 {
	position:absolute;
	left:331px;
	top:466px;
	width:154px;
	height:14px;
	z-index:1;
}
#PU01 {
	position:absolute;
	left:118px;
	top:464px;
	width:129px;
	height:15px;
	z-index:1;
}
#CHM006 {
	position:absolute;
	left:106px;
	top:497px;
	width:132px;
	height:15px;
	z-index:1;
}
#P85 {
	position:absolute;
	left:301px;
	top:517px;
	width:117px;
	height:15px;
	z-index:1;
}
#P14A {
	position:absolute;
	left:111px;
	top:613px;
	width:130px;
	height:15px;
	z-index:1;
}
#CHM002 {
	position:absolute;
	left:171px;
	top:224px;
	width:130px;
	height:14px;
	z-index:1;
}
#PU02 {
	position:absolute;
	left:113px;
	top:646px;
	width:128px;
	height:14px;
	z-index:1;
}
#PU03 {
	position:absolute;
	left:6px;
	top:666px;
	width:120px;
	height:15px;
	z-index:1;
}
#PU04 {
	position:absolute;
	left:4px;
	top:700px;
	width:130px;
	height:15px;
	z-index:1;
}
#PU05 {
	position:absolute;
	left:279px;
	top:803px;
	width:89px;
	height:14px;
	z-index:1;
}
#PD01 {
	position:absolute;
	left:278px;
	top:835px;
	width:122px;
	height:14px;
	z-index:1;
}
#W4A {
	position:absolute;
	left:300px;
	top:954px;
	width:90px;
	height:14px;
	z-index:1;
}
#WAN001 {
    height: 15px;
    left: 171px;
    position: absolute;
    top: 446px;
    width: 123px;
    z-index: 1;
}
#WD02 {
	position:absolute;
	left:373px;
	top:892px;
	width:109px;
	height:14px;
	z-index:1;
}
#WD01 {
	position:absolute;
	left:488px;
	top:893px;
	width:121px;
	height:13px;
	z-index:1;
}
#WAN002 {
    height: 15px;
    left: 303px;
    position: absolute;
    top: 522px;
    width: 119px;
	z-index:1;
}
#WAN003 {
    height: 14px;
    left: 384px;
    position: absolute;
    top: 467px;
    width: 119px;
    z-index: 1;
}
#WAN004 {
    height: 13px;
    left: 385px;
    position: absolute;
    top: 380px;
    z-index: 1;
}
#WAN005 {
    height: 14px;
    left: 384px;
    position: absolute;
    top: 263px;
    width: 140px;
	z-index:1;
}
#W10A {
	position:absolute;
	left:402px;
	top:667px;
	width:136px;
	height:14px;
	z-index:1;
}
#W16A {
	position:absolute;
	left:412px;
	top:584px;
	width:125px;
	height:14px;
	z-index:1;
}
#PD02 {
	position:absolute;
	left:117px;
	top:879px;
	width:132px;
	height:15px;
	z-index:1;
}
#PIN001 {
    height: 14px;
    left: 169px;
    position: absolute;
    top: 539px;
    width: 120px;
	z-index:1;
}
#PD03 {
	position:absolute;
	left:98px;
	top:968px;
	width:130px;
	height:14px;
	z-index:1;
}
#PD04 {
	position:absolute;
	left:98px;
	top:1032px;
	width:132px;
	height:14px;
	z-index:1;
}
#PIN003 {
    height: 15px;
    left: 176px;
    position: absolute;
    top: 936px;
    width: 130px;
	z-index:1;
}
#P2A {
	position: absolute;
	left: 280px;
	top: 994px;
	width: 151px;
	height: 14px;
	z-index:1;
}
#PIN002 {
    height: 15px;
    left: 174px;
    position: absolute;
    top: 755px;
    width: 136px;
	z-index:1;
}
#PD05 {
	position: absolute;
	left: 414px;
	top: 1028px;
	width: 140px;
	height: 15px;
	z-index:1;
}
#P7A {
	position:absolute;
	left:283px;
	top:1094px;
	width:122px;
	height:15px;
	z-index:1;
}
#PD06 {
	position:absolute;
	left:284px;
	top:1127px;
	width:128px;
	height:14px;
	z-index:1;
}
#PIN004 {
    height: 15px;
    left: 232px;
    position: absolute;
    top: 1162px;
    width: 129px;
	z-index:1;
}
#PIN005 {
    height: 15px;
    left: 498px;
    position: absolute;
    top: 1080px;
    width: 132px;
	z-index:1;
}
#DAM-3 {
	position:absolute;
	left:313px;
	top:211px;
	width:155px;
	height:49px;
	z-index:1;
}
#DAM-5 {
	position:absolute;
	left:416px;
	top:348px;
	width:156px;
	height:51px;
	z-index:1;
}
#DAM-1 {
    height: 50px;
    left: 171px;
    position: absolute;
    top: 332px;
    width: 155px;
	z-index:1;
}
#P17 {
	position: absolute;
	left: 270px;
	top: 1233px;
	width: 155px;
	height: 49px;
	z-index:1;
}
#W1C {
	position: absolute;
	left: 354px;
	top: 700px;
	width: 155px;
	height: 50px;
	z-index:1;
}
#DAM-4 {
    height: 56px;
    left: 384px;
    position: absolute;
    top: 191px;
    width: 154px;
	z-index:1;
}
#DAM-40 {
    height: 56px;
    left: 384px;
    position: absolute;
    top: 97px;
    width: 154px;
	z-index:1;
}
#YOM001 {
	position: absolute;
	left: 780px;
	top: 56px;
	width: 125px;
	height: 15px;
	z-index:1;
}
#YOM002 {
	position:absolute;
	left:782px;
	top:104px;
	width:122px;
	height:14px;
	z-index:50;
}
#Y20 {
	position: absolute;
	left: 626px;
	top: 159px;
	width: 118px;
	height: 16px;
	z-index: 51;
}
#REG-362 {
	position:absolute;
	left:783px;
	top:158px;
	width:125px;
	height:15px;
	z-index:52;
}
#YOM003 {
	position:absolute;
	left:782px;
	top:199px;
	width:130px;
	height:14px;
	z-index:53;
}
#YOM010 {
    height: 15px;
    left: 780px;
    position: absolute;
    top: 166px;
    width: 123px;
    z-index: 0;
}
#Y1C {
	position: absolute;
	left: 552px;
	top: 239px;
	width: 155px;
	height: 49px;
	z-index: 55;
}
#YOM004 {
	position:absolute;
	left:783px;
	top:330px;
	width:121px;
	height:16px;
	z-index:56;
}
#Y37 {
	position:absolute;
	left:626px;
	top:371px;
	width:117px;
	height:14px;
	z-index:57;
}
#Y14 {
	position:absolute;
	left:628px;
	top:417px;
	width:110px;
	height:15px;
	z-index:58;
}
#YOM005 {
    height: 14px;
    left: 671px;
    position: absolute;
    top: 277px;
    width: 125px;
    z-index: 59;
}
#Y6 {
	position:absolute;
	left:777px;
	top:507px;
	width:122px;
	height:16px;
	z-index:60;
}
#REG-1776 {
    left: 637px;
    position: absolute;
    top: 378px;
    z-index: 61;
}
#REG-1176 {
    left: 452px;
    position: absolute;
    top: 426px;
    z-index: 62;
}
#Y3A {
	position:absolute;
	left:778px;
	top:626px;
	width:111px;
	height:13px;
	z-index:63;
}
#YOM006 {
    height: 14px;
    left: 524px;
    position: absolute;
    top: 474px;
    width: 70px;
    z-index: 64;
}
#Y33 {
	position:absolute;
	left:778px;
	top:711px;
	width:114px;
	height:14px;
	z-index:65;
}
#YOM012 {
    height: 14px;
    left: 634px;
    position: absolute;
    top: 591px;
    width: 134px;
    z-index: 66;
}
#Y4 {
	position:absolute;
	left:624px;
	top:799px;
	width:120px;
	height:15px;
	z-index:67;
}
#REG-1777 {
    left: 500px;
    position: absolute;
    top: 641px;
    z-index: 68;
}
#YOM007 {
    height: 14px;
    left: 577px;
    position: absolute;
    top: 751px;
    width: 119px;
    z-index: 69;
}
#YOM008 {
    height: 14px;
    left: 587px;
    position: absolute;
    top: 859px;
    width: 118px;
    z-index: 70;
}
#Y16 {
	position:absolute;
	left:778px;
	top:942px;
	width:127px;
	height:14px;
	z-index:71;
}
#REG-1780 {
    left: 754px;
    position: absolute;
    top: 934px;
    z-index: 72;
}
#Y17 {
	position:absolute;
	left:626px;
	top:1053px;
	width:119px;
	height:15px;
	z-index:73;
}
#YOM009 {
    height: 13px;
    left: 674px;
    position: absolute;
    top: 1072px;
    width: 149px;
    z-index: 74;
}
#Y5 {
	position:absolute;
	left:874px;
	top:1085px;
	width:125px;
	height:14px;
	z-index:75;
}
#REG-1779 {
    left: 796px;
    position: absolute;
    top: 608px;
    z-index: 76;
}
#REG-1778 {
    left: 796px;
    position: absolute;
    top: 397px;
    z-index: 77;
}
#TU01 {
	position:absolute;
	left:1085px;
	top:53px;
	width:110px;
	height:13px;
	z-index:78;
}
#NAN001 {
	position:absolute;
	left:929px;
	top:76px;
	width:119px;
	height:15px;
	z-index:79;
}
#TU02 {
	position:absolute;
	left:1086px;
	top:115px;
	width:120px;
	height:15px;
	z-index:80;
}
#N64 {
	position:absolute;
	left:1087px;
	top:147px;
	width:115px;
	height:15px;
	z-index:81;
}
#NAN002 {
	position:absolute;
	left:932px;
	top:154px;
	width:116px;
	height:14px;
	z-index:82;
}
#N1 {
	position:absolute;
	left:1084px;
	top:192px;
	width:111px;
	height:15px;
	z-index:83;
}
#TU03 {
	position:absolute;
	left:1084px;
	top:227px;
	width:116px;
	height:15px;
	z-index:84;
}
#NAN003 {
    height: 13px;
    left: 1055px;
    position: absolute;
    top: 139px;
    width: 115px;
    z-index: 85;
}
#TU05 {
	position:absolute;
	left:1221px;
	top:214px;
	width:121px;
	height:15px;
	z-index:86;
}
#TU06 {
	position:absolute;
	left:1214px;
	top:287px;
	width:126px;
	height:14px;
	z-index:87;
}
#TU07 {
	position:absolute;
	left:1090px;
	top:286px;
	width:121px;
	height:15px;
	z-index:88;
}
#TU04 {
	position:absolute;
	left:1081px;
	top:322px;
	width:129px;
	height:14px;
	z-index:89;
}
#TU09 {
	position:absolute;
	left:1082px;
	top:352px;
	width:127px;
	height:14px;
	z-index:90;
}
#TU08 {
	position:absolute;
	left:916px;
	top:350px;
	width:127px;
	height:15px;
	z-index:91;
}
#TU10 {
	position:absolute;
	left:909px;
	top:382px;
	width:136px;
	height:13px;
	z-index:92;
}
#DAM-2 {
    height: 49px;
    left: 1056px;
    position: absolute;
    top: 218px;
    width: 155px;
    z-index: 93;
}
#TD05 {
	position:absolute;
	left:1307px;
	top:355px;
	width:128px;
	height:13px;
	z-index:94;
}
#NAN010 {
	position:absolute;
	left:1221px;
	top:485px;
	width:127px;
	height:13px;
	z-index:95;
}
#TD06 {
	position:absolute;
	left:1103px;
	top:485px;
	width:117px;
	height:13px;
	z-index:96;
}
#TD01 {
	position:absolute;
	left:912px;
	top:464px;
	width:135px;
	height:14px;
	z-index:97;
}
#N12A {
	position:absolute;
	left:931px;
	top:518px;
	width:117px;
	height:14px;
	z-index:98;
}
#TD02 {
	position:absolute;
	left:1086px;
	top:521px;
	width:137px;
	height:15px;
	z-index:99;
}
#NAN011 {
    height: 14px;
    left: 887px;
    position: absolute;
    top: 268px;
    width: 135px;
    z-index: 100;
}
#TD03 {
	position:absolute;
	left:1084px;
	top:586px;
	width:163px;
	height:14px;
	z-index:101;
}
#TD07 {
	position:absolute;
	left:1256px;
	top:592px;
	width:148px;
	height:14px;
	z-index:102;
}
#TD08 {
	position:absolute;
	left:1119px;
	top:645px;
	width:152px;
	height:14px;
	z-index:103;
}
#N60 {
	position: absolute;
	left: 928px;
	top: 599px;
	width: 117px;
	height: 15px;
	z-index: 104;
}
#TD04 {
	position: absolute;
	left: 929px;
	top: 630px;
	width: 114px;
	height: 13px;
	z-index: 105;
}
#NAN004 {
    height: 14px;
    left: 817px;
    position: absolute;
    top: 479px;
    width: 124px;
    z-index: 106;
}
#REG-1749 {
    height: 50px;
    left: 976px;
    position: absolute;
    top: 517px;
    width: 155px;
    z-index: 107;
}
#N27 {
	position: absolute;
	left: 933px;
	top: 789px;
	width: 115px;
	height: 13px;
	z-index: 108;
}
#KWN001 {
	position: absolute;
	left: 1319px;
	top: 728px;
	width: 137px;
	height: 14px;
	z-index: 109;
}
#DAM-41 {
    height: 49px;
    left: 996px;
    position: absolute;
    top: 448px;
    width: 154px;
    z-index: 110;
}
#TD09 {
	position:absolute;
	left:1317px;
	top:822px;
	width:155px;
	height:16px;
	z-index:111;
}
#N22 {
	position:absolute;
	left:1215px;
	top:843px;
	width:123px;
	height:14px;
	z-index:112;
}
#KWN002 {
    height: 12px;
    left: 1056px;
    position: absolute;
    top: 591px;
    width: 111px;
    z-index: 113;
}
#NAN006 {
    height: 15px;
    left: 924px;
    position: absolute;
    top: 865px;
    width: 122px;
    z-index: 114;
}
#NAN005 {
	position: absolute;
	left: 1265px;
	top: 945px;
	width: 121px;
	height: 13px;
	z-index: 115;
}
#NAN013 {
	position:absolute;
	left:1194px;
	top:1001px;
	width:91px;
	height:14px;
	z-index:116;
}
#N7A {
	position: absolute;
	left: 1082px;
	top: 1017px;
	width: 114px;
	height: 15px;
	z-index: 117;
}
#NAN007 {
    height: 14px;
    left: 891px;
    position: absolute;
    top: 1001px;
    width: 115px;
    z-index: 118;
}
#N8A {
	position:absolute;
	left:1073px;
	top:1080px;
	width:120px;
	height:14px;
	z-index:119;
}
#N67 {
	position: absolute;
	left: 969px;
	top: 1225px;
	width: 155px;
	height: 49px;
	z-index: 120;
}
#NAN008 {
    height: 15px;
    left: 796px;
    position: absolute;
    top: 1160px;
    width: 131px;
    z-index: 121;
}
#CPY001 {
    height: 30px;
    left: 601px;
    position: absolute;
    top: 1164px;
    width: 162px;
    z-index: 122;
}
#C2 {
    height: 48px;
    left: 367px;
    position: absolute;
    top: 1201px;
    width: 154px;
    z-index: 123;
}
#CPY002 {
	position:absolute;
	left:627px;
	top:1353px;
	width:184px;
	height:14px;
	z-index:124;
}
#REG-1783 {
	position: absolute;
	left: 447px;
	top: 1311px;
	width: 119px;
	height: 16px;
	z-index: 125;
}
#SKG002 {
    height: 14px;
    left: 410px;
    position: absolute;
    top: 1304px;
    width: 141px;
    z-index: 126;
}
#WARN-SKG002 {
    height: 14px;
    left: 506px;
    position: absolute;
    top: 1275px;
    width: 141px;
    z-index: 126;
}
#Ct19 {
	position:absolute;
	left:257px;
	top:1407px;
	width:129px;
	height:15px;
	z-index:127;
}
#Ct2A {
	position:absolute;
	left:324px;
	top:1351px;
	width:127px;
	height:14px;
	z-index:128;
}
#SKG001 {
	position:absolute;
	left:232px;
	top:1306px;
	width:151px;
	height:16px;
	z-index:129;
}
#DAM-25 {
    height: 50px;
    left: 9px;
    position: absolute;
    top: 1199px;
    width: 155px;
    z-index: 130;
}
#REG-1785 {
	position: absolute;
	left: 490px;
	top: 1440px;
	width: 97px;
	height: 17px;
	z-index: 131;
}
#REG-1784 {
	position: absolute;
	left: 735px;
	top: 1440px;
	width: 110px;
	height: 17px;
	z-index: 132;
}
#REG-1786 {
	position: absolute;
	left: 693px;
	top: 1480px;
	width: 82px;
	height: 12px;
	z-index: 133;
}
#ATG02 {
    height: 50px;
    left: 601px;
    position: absolute;
    top: 1410px;
    width: 155px;
    z-index: 134;
}
#CPY003 {
	position:absolute;
	left:794px;
	top:1494px;
	width:141px;
	height:16px;
	z-index:135;
}
#ATG18 {
    left: 1020px;
    position: absolute;
    top: 1463px;
    z-index: 136;
    height: 36px;
}
#REG-299 {
    left: 1027px;
    position: absolute;
    top: 1493px;
    z-index: 136;
}
#REG-529 {
    left: 1017px;
    position: absolute;
    top: 1809px;
    z-index: 137;
}
#REG-336 {
    left: 1019px;
    position: absolute;
    top: 1975px;
    z-index: 138;
}
#CPY004 {
	position:absolute;
	left:450px;
	top:1524px;
	width:134px;
	height:16px;
	z-index:139;
}
#C13 {
   height: 50px;
    left: 604px;
    position: absolute;
    top: 1730px;
    z-index: 140;
}
#CPY005 {
    height: 15px;
    left: 432px;
    position: absolute;
    top: 1783px;
    width: 140px;
    z-index: 141;
}
#CPY006 {
	position:absolute;
	left:630px;
	top:1976px;
	width:147px;
	height:13px;
	z-index:142;
}
#CPY007 {
	position:absolute;
	left:451px;
	top:2057px;
	width:120px;
	height:15px;
	z-index:144;
}
#C7A {
	position:absolute;
	left:450px;
	top:2089px;
	width:122px;
	height:14px;
	z-index:145;
}
#CPY008 {
    height: 14px;
    left: 602px;
    position: absolute;
    top: 1887px;
    width: 119px;
    z-index: 146;
}
#C35 {
	position:absolute;
	left:634px;
	top:2275px;
	width:129px;
	height:15px;
	z-index:147;
}
#CPY011 {
	position:absolute;
	left:449px;
	top:2318px;
	width:125px;
	height:14px;
	z-index:148;
}
#CPY012 {
	position:absolute;
	left:631px;
	top:2397px;
	width:146px;
	height:15px;
	z-index:149;
}
#C29A {
    height: 47px;
    left: 364px;
    position: absolute;
    top: 2304px;
    width: 156px;
    z-index: 150;
}
#C29 {
    height: 47px;
    left: 364px;
    position: absolute;
    top: 2304px;
    width: 156px;
    z-index: 150;
}
#CPY013 {
	position:absolute;
	left:451px;
	top:2537px;
	width:126px;
	height:14px;
	z-index:151;
}
#CPY014 {
    height: 15px;
    left: 380px;
    position: absolute;
    top: 2364px;
    width: 132px;
    z-index: 152;
}
#C22 {
	position:absolute;
	left:450px;
	top:2739px;
	width:126px;
	height:14px;
	z-index:153;
}
#C12 {
	position:absolute;
	left:448px;
	top:2911px;
	width:126px;
	height:13px;
	z-index:154;
}
#C4 {
	position:absolute;
	left:628px;
	top:3018px;
	width:141px;
	height:15px;
	z-index:155;
}
#CPY015 {
	position:absolute;
	left:630px;
	top:3077px;
	width:144px;
	height:13px;
	z-index:156;
}
#GLF001 {
    height: 15px;
    left: 610px;
    position: absolute;
    top: 2512px;
    z-index: 315;
}

#C54 {
	position:absolute;
	left:631px;
	top:3389px;
	width:125px;
	height:15px;
	z-index:158;
}
#ATG04 {
    height: 50px;
    left: 364px;
    position: absolute;
    top: 1349px;
    width: 155px;
    z-index: 159;
}
#DAM-24 {
	position: absolute;
	left: 56px;
	top: 1647px;
	width: 154px;
	height: 44px;
	z-index: 160;
}
#THA003 {
	position:absolute;
	left:29px;
	top:1810px;
	width:124px;
	height:14px;
	z-index:161;
}
#THA001 {
	position:absolute;
	left:416px;
	top:1752px;
	width:128px;
	height:14px;
	z-index:162;
}
#ATG01 {
     height: 51px;
    left: 366px;
    position: absolute;
    top: 1491px;
    width: 155px;
    z-index: 163;
}
#ATG12 {
    height: 35px;
    left: 263px;
    position: absolute;
    top: 1594px;
    z-index: 164;
}
#REG-345 {
    left: 269px;
    position: absolute;
    top: 1624px;
    z-index: 164;
}
#REG-346 {
	position:absolute;
	left:228px;
	top:1769px;
	width:138px;
	height:15px;
	z-index:165;
}
#ATG13 {
    left: 263px;
    position: absolute;
    top: 1766px;
    z-index: 166;
    height: 35px;
}
#REG-930 {
    left: 268px;
    position: absolute;
    top: 1796px;
    z-index: 166;
}
#THA004 {
	position:absolute;
	left:229px;
	top:1842px;
	width:132px;
	height:15px;
	z-index:167;
}
#ATG14 {
    left: 262px;
    position: absolute;
    top: 1875px;
    z-index: 168;
    height: 33px;
}
#REG-347 {
    left: 268px;
    position: absolute;
    top: 1904px;
    z-index: 168;
}
#REG-350 {
	position:absolute;
	left:253px;
	top:2228px;
	width:129px;
	height:13px;
	z-index:169;
}
#THA005 {
	position:absolute;
	left:59px;
	top:2209px;
	width:136px;
	height:14px;
	z-index:170;
}
#THA010 {
	position:absolute;
	left:54px;
	top:2416px;
	width:133px;
	height:16px;
	z-index:171;
}
#THA011 {
	position: absolute;
	left: 65px;
	top: 2745px;
	width: 132px;
	height: 15px;
	z-index: 172;
}
#THA006 {
	position:absolute;
	left:65px;
	top:2515px;
	width:135px;
	height:16px;
	z-index:173;
}
#REG-702 {
	position:absolute;
	left:236px;
	top:2479px;
	width:133px;
	height:12px;
	z-index:174;
}
#CPY016 {
	position:absolute;
	left:287px;
	top:2533px;
	width:134px;
	height:13px;
	z-index:175;
}
#THA007 {
	position:absolute;
	left:65px;
	top:2689px;
	width:136px;
	height:14px;
	z-index:176;
}
#REG-395 {
	position:absolute;
	left:239px;
	top:2625px;
	width:138px;
	height:16px;
	z-index:177;
}
#BKK018 {
	position:absolute;
	left:298px;
	top:2658px;
	width:123px;
	height:13px;
	z-index:178;
}
#REG-1774 {
	position:absolute;
	left:236px;
	top:2722px;
	width:131px;
	height:14px;
	z-index:179;
}
#BKK019 {
	position:absolute;
	left:309px;
	top:2754px;
	width:132px;
	height:13px;
	z-index:180;
}
#REG-393 {
	position:absolute;
	left:425px;
	top:2658px;
	width:132px;
	height:15px;
	z-index:181;
}
#REG-696 {
	position:absolute;
	left:425px;
	top:2773px;
	width:129px;
	height:14px;
	z-index:182;
}
#REG-698 {
	position:absolute;
	left:235px;
	top:2825px;
	width:127px;
	height:15px;
	z-index:183;
}
#BKK007 {
	position:absolute;
	left:415px;
	top:2822px;
	width:131px;
	height:14px;
	z-index:184;
}
#REG-391 {
	position:absolute;
	left:426px;
	top:2479px;
	width:139px;
	height:14px;
	z-index:185;
}
#REG-397 {
	position:absolute;
	left:314px;
	top:2934px;
	width:126px;
	height:13px;
	z-index:186;
}
#REG-396 {
	position:absolute;
	left:63px;
	top:2924px;
	width:124px;
	height:15px;
	z-index:187;
}
#THA008 {
	position:absolute;
	left:63px;
	top:2959px;
	width:130px;
	height:15px;
	z-index:188;
}
#REG-1050 {
	position:absolute;
	left:40px;
	top:3024px;
	width:132px;
	height:16px;
	z-index:189;
}
#BKK003 {
	position:absolute;
	left:434px;
	top:2986px;
	width:127px;
	height:15px;
	z-index:190;
}
#REG-1730 {
	position:absolute;
	left:312px;
	top:2998px;
	width:129px;
	height:16px;
	z-index:191;
}
#BKK004 {
	position:absolute;
	left:313px;
	top:3030px;
	width:136px;
	height:15px;
	z-index:192;
}
#BKK005 {
	position:absolute;
	left:314px;
	top:3061px;
	width:131px;
	height:12px;
	z-index:193;
}
#REG-852 {
	position:absolute;
	left:233px;
	top:3117px;
	width:132px;
	height:13px;
	z-index:194;
}
#REG-1736 {
	position:absolute;
	left:405px;
	top:3119px;
	width:131px;
	height:13px;
	z-index:195;
}
#THA009 {
	position:absolute;
	left:66px;
	top:3234px;
	width:129px;
	height:13px;
	z-index:196;
}
#REG-1757 {
	position:absolute;
	left:230px;
	top:3246px;
	width:137px;
	height:14px;
	z-index:197;
}
#BKK006 {
	position:absolute;
	left:264px;
	top:3305px;
	width:135px;
	height:13px;
	z-index:198;
}
#REG-1788 {
	position:absolute;
	left:25px;
	top:3302px;
	width:129px;
	height:15px;
	z-index:199;
}
#GLF002 {
    height: 12px;
    left: 258px;
    position: absolute;
    top: 2513px;
    width: 145px;
    z-index: 200;
}
#CPY017 {
    height: 14px;
    left: 432px;
    position: absolute;
    top: 2236px;
    width: 126px;
    z-index: 201;
}
#ATG17 {
    height: 36px;
    left: 162px;
    position: absolute;
    top: 2196px;
    z-index: 202;
}
#REG-380 {
    left: 176px;
    position: absolute;
    top: 2226px;
    z-index: 202;
}
#CPY010 {
    height: 13px;
    left: 409px;
    position: absolute;
    top: 2135px;
    width: 126px;
    z-index: 203;
}
#C37 {
	position:absolute;
	left:427px;
	top:2233px;
	width:125px;
	height:12px;
	z-index:204;
}
#apDiv2 {
	position:absolute;
	left:401px;
	top:2215px;
	width:115px;
	height:13px;
	z-index:205;
}
#apDiv3 {
	position:absolute;
	left:401px;
	top:2214px;
	width:113px;
	height:14px;
	z-index:205;
}
#apDiv4 {
	position:absolute;
	left:402px;
	top:2214px;
	width:113px;
	height:15px;
	z-index:205;
}
#apDiv5 {
	position:absolute;
	left:573px;
	top:2381px;
	width:113px;
	height:13px;
	z-index:205;
}
#apDiv6 {
	position:absolute;
	left:402px;
	top:2215px;
	width:112px;
	height:13px;
	z-index:205;
}
#C3 {
	position:absolute;
	left:630px;
	top:2014px;
	width:131px;
	height:14px;
	z-index:205;
}
#apDiv7 {
	position:absolute;
	left:401px;
	top:2216px;
	width:115px;
	height:12px;
	z-index:206;
}
#apDiv8 {
	position:absolute;
	left:401px;
	top:2216px;
	width:114px;
	height:13px;
	z-index:206;
}
#CPY009 {
    height: 12px;
    left: 408px;
    position: absolute;
    top: 2003px;
    width: 130px;
    z-index: 206;
}
#apDiv9 {
	position:absolute;
	left:401px;
	top:2216px;
	width:114px;
	height:12px;
	z-index:207;
}
#C36 {
	position:absolute;
	left:380px;
	top:2201px;
	width:143px;
	height:14px;
	z-index:207;
}
#REG-361 {
	position:absolute;
	left:233px;
	top:2096px;
	width:133px;
	height:14px;
	z-index:208;
}
#ATG16 {
    left: 415px;
    position: absolute;
    top: 1923px;
    z-index: 209;
    height: 35px;
}
#REG-349 {
    left: 420px;
    position: absolute;
    top: 1955px;
    z-index: 209;
}
#ATG15 {
    left: 415px;
    position: absolute;
    top: 1842px;
    z-index: 210;
    height: 32px;
}
#REG-136 {
    left: 422px;
    position: absolute;
    top: 1871px;
    z-index: 210;
}
#REG-1720 {
	position:absolute;
	left:230px;
	top:1907px;
	width:139px;
	height:14px;
	z-index:211;
}
#THA002 {
	position:absolute;
	left:376px;
	top:1811px;
	width:126px;
	height:14px;
	z-index:212;
}
#ATG03 {
    height: 47px;
    left: 351px;
    position: absolute;
    top: 1645px;
    width: 155px;
    z-index: 213;
}
#ATG11 {
     height: 47px;
    left: 602px;
    position: absolute;
    top: 1524px;
    width: 155px;
    z-index: 214;
}
#REG-582 {
	position:absolute;
	left:655px;
	top:2077px;
	width:128px;
	height:14px;
	z-index:215;
}
#REG-593 {
	position:absolute;
	left:655px;
	top:2182px;
	width:128px;
	height:14px;
	z-index:216;
}
#REG-1793 {
	position:absolute;
	left:660px;
	top:2248px;
	width:129px;
	height:12px;
	z-index:217;
}
#LBI001 {
    height: 12px;
    left: 752px;
    position: absolute;
    top: 2133px;
    width: 128px;
    z-index: 218;
}
#LBI002 {
    left: 814px;
    position: absolute;
    top: 1779px;
    z-index: 219;
}
#L2B {
	position:absolute;
	left:825px;
	top:2060px;
	width:140px;
	height:12px;
	z-index:220;
}
#S5 {
	position:absolute;
	left:657px;
	top:2365px;
	width:137px;
	height:14px;
	z-index:221;
}
#PAS009 {
	position:absolute;
	left:841px;
	top:2366px;
	width:132px;
	height:14px;
	z-index:222;
}
#S26 {
	position:absolute;
	left:875px;
	top:2401px;
	width:133px;
	height:12px;
	z-index:223;
}
#REG-626 {
   height: 48px;
    left: 768px;
    position: absolute;
    top: 2218px;
    width: 185px;
    z-index: 224;
}
#PAS007 {
	position:absolute;
	left:1088px;
	top:2225px;
	width:123px;
	height:15px;
	z-index:225;
}
#S28A {
	position:absolute;
	left:1087px;
	top:2157px;
	width:127px;
	height:14px;
	z-index:226;
}
#PAS006 {
    height: 14px;
    left: 1155px;
    position: absolute;
    top: 2006px;
    width: 128px;
    z-index: 227;
}
#DAM-19 {
  height: 47px;
    left: 1156px;
    position: absolute;
    top: 1903px;
    width: 153px;
    z-index: 228;
}
#S39 {
	position:absolute;
	left:1088px;
	top:2020px;
	width:125px;
	height:13px;
	z-index:229;
}
#PAS005 {
	position:absolute;
	left:1087px;
	top:1987px;
	width:128px;
	height:13px;
	z-index:230;
}
#PAS004 {
	position:absolute;
	left:1242px;
	top:1953px;
	width:133px;
	height:13px;
	z-index:231;
}
#S42 {
	position:absolute;
	left:1242px;
	top:1922px;
	width:129px;
	height:15px;
	z-index:232;
}
#PAS003 {
	position:absolute;
	left:1087px;
	top:1899px;
	width:122px;
	height:14px;
	z-index:233;
}
#S4B {
	position:absolute;
	left:1242px;
	top:1872px;
	width:131px;
	height:14px;
	z-index:234;
}
#PAS002 {
	position:absolute;
	left:1243px;
	top:1839px;
	width:135px;
	height:15px;
	z-index:235;
}
#PAS001 {
	position:absolute;
	left:1088px;
	top:1805px;
	width:118px;
	height:14px;
	z-index:236;
}
#PAS008 {
	position: absolute;
	left: 844px;
	top: 2305px;
	width: 130px;
	height: 14px;
	z-index: 488;
}
#S3 {
	position:absolute;
	left:1089px;
	top:1775px;
	width:120px;
	height:13px;
	z-index:237;
}
#ATG05 {
    height: 50px;
    left: 1019px;
    position: absolute;
    top: 2222px;
    width: 155px;
    z-index: 238;
}
#REG-637 {
	position: absolute;
	left: 1092px;
	top: 2420px;
	width: 125px;
	height: 12px;
	z-index: 239;
}
#ATG07 {
    left: 829px;
    position: absolute;
    top: 2281px;
    z-index: 240;
}
#ATG06 {
    left: 1024px;
    position: absolute;
    top: 2304px;
    z-index: 241;
}
#ATG09 {
    left: 612px;
    position: absolute;
    top: 2299px;
    z-index: 242;
}
#CAN001 {
	position:absolute;
	left:726px;
	top:2557px;
	width:150px;
	height:14px;
	z-index:243;
}
#BKK013 {
	position:absolute;
	left:1084px;
	top:2560px;
	width:140px;
	height:13px;
	z-index:244;
}
#ATG10 {
    left: 610px;
    position: absolute;
    top: 2445px;
    z-index: 245;
}
#REG-278 {
	position:absolute;
	left:900px;
	top:2630px;
	width:137px;
	height:14px;
	z-index:246;
}
#ATG08 {
    left: 1024px;
    position: absolute;
    top: 2375px;
    z-index: 247;
}
#REG-342 {
	position:absolute;
	left:1234px;
	top:2625px;
	width:125px;
	height:12px;
	z-index:248;
}
#FROC01 {
	position:absolute;
	left:714px;
	top:2684px;
	width:131px;
	height:13px;
	z-index:249;
}
#BKK002 {
	position:absolute;
	left:664px;
	top:2716px;
	width:132px;
	height:13px;
	z-index:250;
}
#BKK020 {
	position:absolute;
	left:714px;
	top:2746px;
	width:156px;
	height:13px;
	z-index:251;
}
#REG-816 {
	position:absolute;
	left:772px;
	top:2776px;
	width:134px;
	height:14px;
	z-index:252;
}
#BKK015 {
	position:absolute;
	left:942px;
	top:2773px;
	width:128px;
	height:14px;
	z-index:253;
}
#BKK014 {
	position:absolute;
	left:1086px;
	top:2771px;
	width:130px;
	height:14px;
	z-index:254;
}
#FROC02 {
	position:absolute;
	left:1100px;
	top:2684px;
	width:128px;
	height:14px;
	z-index:255;
}
#REG-340 {
	position:absolute;
	left:1234px;
	top:2770px;
	width:131px;
	height:14px;
	z-index:256;
}
#REG-796 {
	position:absolute;
	left:711px;
	top:2840px;
	width:139px;
	height:15px;
	z-index:257;
}
#BKK001 {
	position:absolute;
	left:711px;
	top:2871px;
	width:128px;
	height:15px;
	z-index:258;
}
#BKK021 {
	position:absolute;
	left:712px;
	top:2906px;
	width:132px;
	height:13px;
	z-index:259;
}
#REG-802 {
	position:absolute;
	left:912px;
	top:2829px;
	width:123px;
	height:14px;
	z-index:260;
}
#REG-831 {
	position:absolute;
	left:893px;
	top:2867px;
	width:134px;
	height:14px;
	z-index:261;
}
#REG-276 {
	position:absolute;
	left:928px;
	top:2920px;
	width:122px;
	height:14px;
	z-index:262;
}
#BKK016 {
	position:absolute;
	left:1076px;
	top:2932px;
	width:132px;
	height:14px;
	z-index:263;
}
#REG-275 {
	position:absolute;
	left:1237px;
	top:2929px;
	width:130px;
	height:12px;
	z-index:264;
}
#BKK008 {
	position:absolute;
	left:723px;
	top:2987px;
	width:131px;
	height:13px;
	z-index:265;
}
#BKK010 {
	position:absolute;
	left:1085px;
	top:3060px;
	width:123px;
	height:12px;
	z-index:266;
}
#BKK009 {
	position:absolute;
	left:1086px;
	top:3088px;
	width:126px;
	height:12px;
	z-index:267;
}
#REG-301 {
	position:absolute;
	left:1238px;
	top:3029px;
	width:127px;
	height:12px;
	z-index:268;
}
#REG-324 {
	position:absolute;
	left:645px;
	top:3144px;
	width:138px;
	height:13px;
	z-index:269;
}
#REG-341 {
	position:absolute;
	left:649px;
	top:3250px;
	width:135px;
	height:14px;
	z-index:270;
}
#BKK012 {
	position:absolute;
	left:1000px;
	top:3246px;
	width:123px;
	height:14px;
	z-index:271;
}
#BKK011 {
	position:absolute;
	left:1086px;
	top:3147px;
	width:120px;
	height:15px;
	z-index:272;
}
#BKK017 {
	position:absolute;
	left:1148px;
	top:3184px;
	width:159px;
	height:13px;
	z-index:273;
}
#REG-302 {
	position:absolute;
	left:1238px;
	top:3141px;
	width:131px;
	height:13px;
	z-index:274;
}
#REG-313 {
	position:absolute;
	left:762px;
	top:3393px;
	width:131px;
	height:13px;
	z-index:275;
}
#REG-1769 {
	position:absolute;
	left:929px;
	top:3393px;
	width:130px;
	height:14px;
	z-index:276;
}
#REG-321 {
	position:absolute;
	left:1238px;
	top:3305px;
	width:120px;
	height:14px;
	z-index:277;
}
#REG-389 {
	position:absolute;
	left:1246px;
	top:3397px;
	width:136px;
	height:14px;
	z-index:278;
}
#REG-1782 {
	position:absolute;
	left:958px;
	top:3488px;
	width:99px;
	height:13px;
	z-index:279;
}
#REG-844 {
	position:absolute;
	left:1147px;
	top:3516px;
	width:101px;
	height:13px;
	z-index:280;
}
#REG-289 {
	position:absolute;
	left:1222px;
	top:3480px;
	width:100px;
	height:14px;
	z-index:281;
}
#BPK001 {
	position:absolute;
	left:1406px;
	top:3227px;
	width:124px;
	height:15px;
	z-index:282;
}
#BPK002 {
	position:absolute;
	left:1407px;
	top:3071px;
	width:121px;
	height:13px;
	z-index:283;
}
#BPK003 {
	position:absolute;
	left:1406px;
	top:2954px;
	width:125px;
	height:14px;
	z-index:284;
}
#PRC002 {
	position:absolute;
	left:1391px;
	top:2919px;
	width:137px;
	height:14px;
	z-index:285;
}
#NYK014 {
	position:absolute;
	left:1404px;
	top:2816px;
	width:127px;
	height:13px;
	z-index:286;
}
#NYK000 {
	position:absolute;
	left:1404px;
	top:2673px;
	width:124px;
	height:12px;
	z-index:287;
}
#DAM-38 {
	position: absolute;
	left: 1301px;
	top: 2483px;
	width: 154px;
	height: 51px;
	z-index: 288;
}
#REG-1787 {
	position: absolute;
	left: 485px;
	top: 1773px;
	width: 95px;
	height: 14px;
	z-index: 289;
}
#CCTV-BHUMIBOL {
    height: 11px;
    left: 135px;
    position: absolute;
    top: 360px;
    width: 17px;
    z-index: 290;
}
#CCTV-P17 {
    height: 10px;
    left: 427px;
    position: absolute;
    top: 1129px;
    width: 17px;
    z-index: 291;
}
#CCTV-N67 {
    height: 13px;
    left: 710px;
    position: absolute;
    top: 1129px;
    width: 18px;
    z-index: 292;
}
#CCTV-SIRIKIT {
    height: 13px;
    left: 1017px;
    position: absolute;
    top: 236px;
    width: 15px;
    z-index: 293;
}
#CCTV-NARESUAN {
    height: 13px;
    left: 933px;
    position: absolute;
    top: 539px;
    width: 16px;
    z-index: 294;
}
#CCTV-N5A {
    height: 12px;
    left: 933px;
    position: absolute;
    top: 717px;
    width: 18px;
    z-index: 295;
}
#CCTV-C2 {
    height: 12px;
    left: 556px;
    position: absolute;
    top: 1177px;
    width: 16px;
    z-index: 296;
}
#CCTV-SAKAEKRUNG {
    height: 12px;
    left: 529px;
    position: absolute;
    top: 1272px;
    width: 17px;
    z-index: 297;
}
#CCTV-MANOROM {
    height: 12px;
    left: 584px;
    position: absolute;
    top: 1379px;
    width: 15px;
    z-index: 298;
}
#CCTV-MAKHAMTHAO {
    height: 12px;
    left: 527px;
    position: absolute;
    top: 1421px;
    width: 17px;
    z-index: 299;
}
#CCTV-POLATHEP {
    height: 13px;
    left: 527px;
    position: absolute;
    top: 1561px;
    width: 16px;
    z-index: 300;
}
#CCTV-BAROMTHAT {
    height: 14px;
    left: 528px;
    position: absolute;
    top: 1710px;
    width: 16px;
    z-index: 301;
}
#CCTV-MAHARAT {
    height: 15px;
    left: 582px;
    position: absolute;
    top: 1594px;
    width: 16px;
    z-index: 302;
}
#CCTV-LOPBURI {
    height: 12px;
    left: 580px;
    position: absolute;
    top: 1820px;
    width: 15px;
    z-index: 303;
}
#CCTV-C13 {
    height: 10px;
    left: 555px;
    position: absolute;
    top: 1769px;
    width: 16px;
    z-index: 304;
}
#CCTV-KLONGBANGKAEW {
    height: 11px;
    left: 586px;
    position: absolute;
    top: 1929px;
    width: 16px;
    z-index: 305;
}
#CCTV-PONGPENG {
    height: 11px;
    left: 528px;
    position: absolute;
    top: 1974px;
    width: 17px;
    z-index: 306;
}
#CCTV-BANGBAN {
    height: 13px;
    left: 527px;
    position: absolute;
    top: 2108px;
    width: 18px;
    z-index: 307;
}
#CCTV-PASAK {
    height: 14px;
    left: 1117px;
    position: absolute;
    top: 1936px;
    width: 17px;
    z-index: 308;
}
#CCTV-RAMA6 {
    height: 13px;
    left: 924px;
    position: absolute;
    top: 2181px;
    width: 16px;
    z-index: 309;
}
#CCTV-C35 {
	position:absolute;
	left:581px;
	top:2259px;
	width:17px;
	height:14px;
	z-index:310;
}
#CCTV-S5 {
    height: 14px;
    left: 591px;
    position: absolute;
    top: 2179px;
    width: 17px;
    z-index: 311;
}
#CCTV-C29 {
    height: 15px;
    left: 555px;
    position: absolute;
    top: 2327px;
    width: 16px;
    z-index: 312;
}
#CCTV-C22 {
	position:absolute;
	left:580px;
	top:2728px;
	width:14px;
	height:11px;
	z-index:313;
}
#CCTV-C12 {
	position:absolute;
	left:579px;
	top:2897px;
	width:15px;
	height:12px;
	z-index:314;
}
#CCTV-KLONGLADPHO {
    height: 15px;
    left: 555px;
    position: absolute;
    top: 2492px;
    width: 19px;
    z-index: 315;
}
#WARN-CHM004 {
	position:absolute;
	left:238px;
	top:60px;
	width:13px;
	height:13px;
	z-index:316;
}
#WARN-CHM005 {
	position:absolute;
	left:206px;
	top:218px;
	width:13px;
	height:14px;
	z-index:317;
}
#WARN-P65 {
	position:absolute;
	left:117px;
	top:151px;
	width:13px;
	height:13px;
	z-index:318;
}
#WARN-P56A {
	position:absolute;
	left:364px;
	top:126px;
	width:13px;
	height:14px;
	z-index:319;
}
#WARN-DAM-3 {
	position:absolute;
	left:280px;
	top:182px;
	width:25px;
	height:22px;
	z-index:320;
}
#WARN-P67 {
	position:absolute;
	left:241px;
	top:266px;
	width:13px;
	height:12px;
	z-index:321;
}
#WARN-CHM001 {
	position:absolute;
	left:139px;
	top:115px;
	width:11px;
	height:11px;
	z-index:322;
}
#WARN-P1 {
	position:absolute;
	left:241px;
	top:358px;
	width:13px;
	height:14px;
	z-index:323;
}
#WARN-DAM-5 {
	position:absolute;
	left:365px;
	top:323px;
	width:25px;
	height:23px;
	z-index:324;
}
#WARN-P81 {
	position:absolute;
	left:347px;
	top:410px;
	width:13px;
	height:14px;
	z-index:325;
}
#WARN-P5 {
	position:absolute;
	left:286px;
	top:411px;
	width:12px;
	height:13px;
	z-index:326;
}
#WARN-PU01 {
	position:absolute;
	left:237px;
	top:465px;
	width:14px;
	height:13px;
	z-index:327;
}
#WARN-CHM006 {
	position:absolute;
	left:237px;
	top:495px;
	width:14px;
	height:13px;
	z-index:328;
}
#WARN-P85 {
	position:absolute;
	left:270px;
	top:537px;
	width:15px;
	height:14px;
	z-index:329;
}
#WARN-P14A {
	position:absolute;
	left:211px;
	top:583px;
	width:14px;
	height:13px;
	z-index:330;
}
#WARN-CHM002 {
	position:absolute;
	left:140px;
	top:224px;
	width:14px;
	height:14px;
	z-index:331;
}
#WARN-PU02 {
	position:absolute;
	left:238px;
	top:626px;
	width:11px;
	height:12px;
	z-index:332;
}
#WARN-PU03 {
	position:absolute;
	left:116px;
	top:678px;
	width:13px;
	height:13px;
	z-index:333;
}
#WARN-PU04 {
	position:absolute;
	left:119px;
	top:711px;
	width:14px;
	height:13px;
	z-index:334;
}
#WARN-DAM-1 {
    height: 23px;
    left: 320px;
    position: absolute;
    top: 334px;
    width: 24px;
    z-index: 335;
}
#WARN-PU05 {
	position:absolute;
	left:238px;
	top:803px;
	width:11px;
	height:13px;
	z-index:336;
}
#WARN-PD01 {
	position:absolute;
	left:238px;
	top:827px;
	width:14px;
	height:13px;
	z-index:337;
}
#WARN-PD02 {
	position:absolute;
	left:238px;
	top:879px;
	width:12px;
	height:12px;
	z-index:338;
}
#WARN-PIN001 {
    height: 14px;
    left: 140px;
    position: absolute;
    top: 536px;
    width: 14px;
    z-index: 339;
}
#WARN-PD03 {
	position:absolute;
	left:208px;
	top:934px;
	width:12px;
	height:12px;
	z-index:340;
}
#WARN-PD04 {
	position:absolute;
	left:208px;
	top:997px;
	width:14px;
	height:12px;
	z-index:341;
}
#WARN-P2A {
	position:absolute;
	left:242px;
	top:1001px;
	width:12px;
	height:12px;
	z-index:342;
}
#WARN-PIN002 {
    height: 14px;
    left: 140px;
    position: absolute;
    top: 754px;
    width: 15px;
    z-index: 343;
}
#WARN-PIN003 {
    height: 12px;
    left: 139px;
    position: absolute;
    top: 938px;
    width: 14px;
    z-index: 344;
}
#WARN-PD05 {
	position:absolute;
	left:384px;
	top:1030px;
	width:15px;
	height:13px;
	z-index:345;
}
#WARN-P7A {
	position:absolute;
	left:241px;
	top:1098px;
	width:14px;
	height:12px;
	z-index:346;
}
#WARN-PD06 {
	position:absolute;
	left:238px;
	top:1124px;
	width:12px;
	height:13px;
	z-index:347;
}
#WARN-PIN004 {
    height: 14px;
    left: 228px;
    position: absolute;
    top: 1132px;
    width: 14px;
    z-index: 348;
}
#WARN-P17 {
	position:absolute;
	left:441px;
	top:1184px;
	width:22px;
	height:20px;
	z-index:349;
}
#WARN-PIN005 {
    height: 13px;
    left: 496px;
    position: absolute;
    top: 1125px;
    width: 12px;
    z-index: 350;
}
#WARN-W4A {
	position:absolute;
	left:276px;
	top:859px;
	width:12px;
	height:14px;
	z-index:351;
}
#WARN-WAN001 {
    height: 13px;
    left: 197px;
    position: absolute;
    top: 494px;
    width: 15px;
    z-index: 352;
}
#WARN-WD02 {
	position:absolute;
	left:341px;
	top:857px;
	width:13px;
	height:13px;
	z-index:353;
}
#WARN-WAN002 {
	height: 15px;
    left: 300px;
    position: absolute;
    top: 495px;
    width: 14px;
    z-index: 354;
}
#WARN-WD01 {
	position:absolute;
	left:457px;
	top:855px;
	width:14px;
	height:14px;
	z-index:355;
}
#WARN-WAN003 {
    height: 13px;
    left: 354px;
    position: absolute;
    top: 471px;
    width: 13px;
    z-index: 356;
}
#WARN-WAN004 {
	position:absolute;
	left:354px;
	top:392px;
	width:15px;
	height:14px;
	z-index:357;
}
#WARN-W1C {
	position:absolute;
	left:530px;
	top:730px;
	width:20px;
	height:21px;
	z-index:358;
}
#WARN-WAN005 {
    height: 12px;
    left: 353px;
    position: absolute;
    top: 264px;
    width: 16px;
    z-index: 359;
}
#WARN-W10A {
	position:absolute;
	left:534px;
	top:674px;
	width:12px;
	height:12px;
	z-index:360;
}
#WARN-DAM-4 {
    height: 26px;
    left: 533px;
    position: absolute;
    top: 193px;
    width: 12px;
    z-index: 1;
}
#WARN-W16A {
	position:absolute;
	left:533px;
	top:584px;
	width:13px;
	height:14px;
	z-index:362;
}
#WARN-DAM-40 {
    height: 26px;
    left: 533px;
    position: absolute;
    top: 97px;
    width: 12px;
    z-index: 1;
}
#WARN-YOM001 {
	position:absolute;
	left:739px;
	top:58px;
	width:14px;
	height:14px;
	z-index:364;
}
#WARN-YOM0002 {
	position:absolute;
	left:739px;
	top:103px;
	width:15px;
	height:15px;
	z-index:365;
}
#WARN-Y20 {
	position:absolute;
	left:740px;
	top:145px;
	width:13px;
	height:12px;
	z-index:366;
}
#WARN-YOM003 {
	position:absolute;
	left:738px;
	top:200px;
	width:15px;
	height:15px;
	z-index:367;
}
#WARN-YOM010 {
    height: 15px;
    left: 746px;
    position: absolute;
    top: 172px;
    width: 14px;
    z-index: 1;
}
#WARN-Y1C {
	position:absolute;
	left:737px;
	top:287px;
	width:21px;
	height:20px;
	z-index:369;
}
#WARN-YOM004 {
	position:absolute;
	left:738px;
	top:330px;
	width:16px;
	height:15px;
	z-index:370;
}
#WARN-Y37 {
	position:absolute;
	left:741px;
	top:376px;
	width:13px;
	height:13px;
	z-index:371;
}
#WARN-Y14 {
	position:absolute;
	left:740px;
	top:424px;
	width:15px;
	height:13px;
	z-index:372;
}
#WARN-YOM005 {
    height: 16px;
    left: 665px;
    position: absolute;
    top: 247px;
    width: 16px;
    z-index: 373;
}
#WARN-Y6 {
	position:absolute;
	left:741px;
	top:511px;
	width:14px;
	height:13px;
	z-index:374;
}
#WARN-Y3A {
	position:absolute;
	left:741px;
	top:629px;
	width:13px;
	height:14px;
	z-index:375;
}
#WARN-YOM006 {
    height: 14px;
    left: 608px;
    position: absolute;
    top: 471px;
    width: 15px;
    z-index: 376;
}
#WARN-Y33 {
	position:absolute;
	left:740px;
	top:715px;
	width:16px;
	height:14px;
	z-index:377;
}
#WARN-YOM012 {
    height: 15px;
    left: 608px;
    position: absolute;
    top: 603px;
    width: 14px;
    z-index: 378;
}
#WARN-Y4 {
	position:absolute;
	left:741px;
	top:806px;
	width:13px;
	height:13px;
	z-index:379;
}
#WARN-YOM007 {
    height: 14px;
    left: 700px;
    position: absolute;
    top: 741px;
    width: 14px;
    z-index: 380;
}
#WARN-Y16 {
	position:absolute;
	left:739px;
	top:943px;
	width:17px;
	height:15px;
	z-index:381;
}
#WARN-YOM008 {
    height: 16px;
    left: 700px;
    position: absolute;
    top: 861px;
    width: 16px;
    z-index: 382;
}
#WARN-Y17 {
	position:absolute;
	left:740px;
	top:1062px;
	width:15px;
	height:14px;
	z-index:383;
}
#WARN-YOM009 {
    height: 13px;
    left: 761px;
    position: absolute;
    top: 1045px;
    width: 13px;
    z-index: 384;
}
#WARN-Y5 {
	position:absolute;
	left:993px;
	top:1110px;
	width:11px;
	height:13px;
	z-index:385;
}
#WARN-TU01 {
	position:absolute;
	left:1043px;
	top:50px;
	width:16px;
	height:13px;
	z-index:386;
}
#WARN-NAN001 {
	position:absolute;
	left:1044px;
	top:80px;
	width:14px;
	height:14px;
	z-index:387;
}
#WARN-TU02 {
	position:absolute;
	left:1044px;
	top:111px;
	width:13px;
	height:12px;
	z-index:388;
}
#WARN-N64 {
	position: absolute;
	left: 1045px;
	top: 129px;
	width: 14px;
	height: 12px;
	z-index: 389;
}
#WARN-NAN002 {
	position:absolute;
	left:1045px;
	top:159px;
	width:14px;
	height:13px;
	z-index:390;
}
#WARN-N1 {
	position:absolute;
	left:1041px;
	top:188px;
	width:13px;
	height:12px;
	z-index:391;
}
#WARN-TU03 {
	position:absolute;
	left:1043px;
	top:207px;
	width:13px;
	height:13px;
	z-index:392;
}
#WARN-NAN003 {
    height: 14px;
    left: 1021px;
    position: absolute;
    top: 156px;
    width: 16px;
    z-index: 393;
}
#WARN-TU05 {
	position:absolute;
	left:1186px;
	top:177px;
	width:16px;
	height:14px;
	z-index:394;
}
#WARN-TU06 {
	position:absolute;
	left:1179px;
	top:251px;
	width:13px;
	height:14px;
	z-index:395;
}
#WARN-TU07 {
	position:absolute;
	left:1067px;
	top:252px;
	width:15px;
	height:14px;
	z-index:396;
}
#WARN-NAN009 {
	position:absolute;
	left:1044px;
	top:274px;
	width:17px;
	height:13px;
	z-index:397;
}
#WARN-TU04 {
	position:absolute;
	left:1045px;
	top:293px;
	width:15px;
	height:15px;
	z-index:398;
}
#WARN-TU08 {
	position:absolute;
	left:1017px;
	top:318px;
	width:13px;
	height:14px;
	z-index:399;
}
#WARN-TU09 {
	position:absolute;
	left:1043px;
	top:345px;
	width:12px;
	height:14px;
	z-index:400;
}
#WARN-TU10 {
	position:absolute;
	left:1043px;
	top:377px;
	width:12px;
	height:13px;
	z-index:401;
}
#WARN-DAM-2 {
    height: 22px;
    left: 1205px;
    position: absolute;
    top: 219px;
    width: 25px;
    z-index: 402;
}
#WARN-TD01 {
	position:absolute;
	left:1043px;
	top:434px;
	width:13px;
	height:12px;
	z-index:403;
}
#WARN-TD06 {
	position:absolute;
	left:1075px;
	top:445px;
	width:14px;
	height:14px;
	z-index:404;
}
#WARN-NAN010 {
	position:absolute;
	left:1195px;
	top:445px;
	width:14px;
	height:15px;
	z-index:405;
}
#WARN-TD05 {
	position:absolute;
	left:1277px;
	top:365px;
	width:15px;
	height:13px;
	z-index:406;
}
#WARN-N12A {
	position:absolute;
	left:1043px;
	top:491px;
	width:14px;
	height:14px;
	z-index:407;
}
#WARN-TD02 {
	position:absolute;
	left:1044px;
	top:519px;
	width:12px;
	height:14px;
	z-index:408;
}
#WARN-NAN011 {
    height: 12px;
    left: 1021px;
    position: absolute;
    top: 267px;
    width: 12px;
    z-index: 409;
}
#WARN-TD03 {
	position:absolute;
	left:1043px;
	top:585px;
	width:12px;
	height:13px;
	z-index:410;
}
#WARN-TD08 {
	position:absolute;
	left:1092px;
	top:607px;
	width:15px;
	height:14px;
	z-index:411;
}
#WARN-TD07 {
	position:absolute;
	left:1225px;
	top:606px;
	width:13px;
	height:14px;
	z-index:412;
}
#WARN-N60 {
	position:absolute;
	left:1043px;
	top:617px;
	width:13px;
	height:12px;
	z-index:413;
}
#WARN-TD04 {
	position:absolute;
	left:1043px;
	top:636px;
	width:13px;
	height:12px;
	z-index:414;
}
#WARN-NAN004 {
    height: 13px;
    left: 938px;
    position: absolute;
    top: 484px;
    width: 13px;
    z-index: 415;
}
#WARN-N27 {
	position:absolute;
	left:1044px;
	top:791px;
	width:17px;
	height:15px;
	z-index:416;
}
#WARN-KWN002 {
    height: 14px;
    left: 1173px;
    position: absolute;
    top: 598px;
    width: 16px;
    z-index: 417;
}
#WARN-N22 {
	position:absolute;
	left:1187px;
	top:812px;
	width:14px;
	height:13px;
	z-index:418;
}
#WARN-TD09 {
	position:absolute;
	left:1279px;
	top:803px;
	width:13px;
	height:14px;
	z-index:419;
}
#WARN-KWN001 {
	position:absolute;
	left:1280px;
	top:740px;
	width:15px;
	height:14px;
	z-index:420;
}
#WARN-N5A {
	position: absolute;
	left: 1045px;
	top: 851px;
	width: 13px;
	height: 13px;
	z-index: 421;
}
#WARN-NAN006 {
    height: 14px;
    left: 892px;
    position: absolute;
    top: 844px;
    width: 16px;
    z-index: 422;
}
#WARN-NAN013 {
	position:absolute;
	left:1162px;
	top:962px;
	width:16px;
	height:17px;
	z-index:423;
}
#WARN-NAN005 {
	position:absolute;
	left:1222px;
	top:962px;
	width:15px;
	height:17px;
	z-index:424;
}
#WARN-N7A {
	position:absolute;
	left:1046px;
	top:1013px;
	width:13px;
	height:13px;
	z-index:425;
}
#WARN-NAN007 {
    height: 13px;
    left: 853px;
    position: absolute;
    top: 1006px;
    width: 13px;
    z-index: 426;
}
#WARN-N8A {
	position:absolute;
	left:1046px;
	top:1083px;
	width:15px;
	height:13px;
	z-index:427;
}
#WARN-N67 {
	position:absolute;
	left:926px;
	top:1184px;
	width:20px;
	height:20px;
	z-index:428;
}
#WARN-NAN008 {
    height: 13px;
    left: 792px;
    position: absolute;
    top: 1132px;
    width: 13px;
    z-index: 429;
}
#WARN-CPY001 {
    height: 13px;
    left: 561px;
    position: absolute;
    top: 1162px;
    width: 14px;
    z-index: 430;
}
#WARN-C2 {
    height: 15px;
    left: 559px;
    position: absolute;
    top: 1202px;
    width: 15px;
    z-index: 431;
}
#WARN-CPY002 {
	position:absolute;
	left:581px;
	top:1325px;
	width:15px;
	height:12px;
	z-index:432;
}
#WARN-CPY004 {
	position:absolute;
	left:576px;
	top:1539px;
	width:17px;
	height:15px;
	z-index:433;
}
#WARN-C13 {
	position: absolute;
	left: 582px;
	top: 1900px;
	width: 15px;
	height: 15px;
	z-index: 434;
}
#WARN-CPY005 {
    height: 13px;
    left: 560px;
    position: absolute;
    top: 1794px;
    width: 12px;
    z-index: 435;
}
#WARN-CPY006 {
	position:absolute;
	left:580px;
	top:1962px;
	width:16px;
	height:12px;
	z-index:436;
}
#WARN-C3 {
	position:absolute;
	left:581px;
	top:1997px;
	width:15px;
	height:13px;
	z-index:437;
}
#WARN-CPY007 {
	position:absolute;
	left:577px;
	top:2060px;
	width:14px;
	height:13px;
	z-index:438;
}
#WARN-C7A {
	position:absolute;
	left:581px;
	top:2091px;
	width:12px;
	height:12px;
	z-index:439;
}
#WARN-CPY008 {
    height: 15px;
    left: 561px;
    position: absolute;
    top: 1931px;
    width: 13px;
    z-index: 440;
}
#WARN-C35 {
	position:absolute;
	left:581px;
	top:2274px;
	width:16px;
	height:13px;
	z-index:441;
}
#WARN-CPY011 {
	position:absolute;
	left:581px;
	top:2293px;
	width:15px;
	height:15px;
	z-index:442;
}
#WARN-CPY012 {
	position:absolute;
	left:581px;
	top:2372px;
	width:15px;
	height:13px;
	z-index:443;
}
#WARN-C29 {
    height: 27px;
    left: 559px;
    position: absolute;
    top: 2305px;
    width: 31px;
    z-index: 444;
}
#WARN-CPY013 {
	position:absolute;
	left:577px;
	top:2512px;
	width:12px;
	height:14px;
	z-index:445;
}
#WARN-CPY014 {
    height: 12px;
    left: 565px;
    position: absolute;
    top: 2410px;
    width: 14px;
    z-index: 446;
}
#WARN-C22 {
	position:absolute;
	left:581px;
	top:2743px;
	width:12px;
	height:12px;
	z-index:447;
}
#WARN-C12 {
	position:absolute;
	left:581px;
	top:2911px;
	width:13px;
	height:13px;
	z-index:448;
}
#WARN-C4 {
	position:absolute;
	left:583px;
	top:3005px;
	width:14px;
	height:13px;
	z-index:449;
}
#WARN-CPY015 {
	position:absolute;
	left:581px;
	top:3084px;
	width:14px;
	height:16px;
	z-index:450;
}
#WARN-GLF001 {
    height: 15px;
    left: 561px;
    position: absolute;
    top: 2520px;
    z-index: 315;
}
#WARN-C54 {
	position:absolute;
	left:582px;
	top:3391px;
	width:17px;
	height:13px;
	z-index:452;
}
#WARN-DAM-25 {
    height: 25px;
    left: 158px;
    position: absolute;
    top: 1201px;
    width: 25px;
    z-index: 453;
}
#WARN-SKG001 {
	position:absolute;
	left:204px;
	top:1326px;
	width:14px;
	height:14px;
	z-index:454;
}
#WARN-Ct19 {
	position:absolute;
	left:369px;
	top:1372px;
	width:14px;
	height:14px;
	z-index:455;
}
#WARN-Ct2A {
	position:absolute;
	left:438px;
	top:1371px;
	width:12px;
	height:16px;
	z-index:456;
}
#WARN-CPY003 {
	position:absolute;
	left:757px;
	top:1513px;
	width:13px;
	height:14px;
	z-index:457;
}
#WARN-DAM-24 {
	position:absolute;
	left:3px;
	top:1722px;
	width:26px;
	height:24px;
	z-index:458;
}
#WARN-THA003 {
	position:absolute;
	left:8px;
	top:1751px;
	width:16px;
	height:13px;
	z-index:459;
}
#WARN-THA004 {
	position:absolute;
	left:184px;
	top:1822px;
	width:14px;
	height:12px;
	z-index:460;
}
#WARN-THA005 {
	position:absolute;
	left:184px;
	top:2190px;
	width:15px;
	height:15px;
	z-index:461;
}
#WARN-THA011 {
	position: absolute;
	left: 167px;
	top: 2713px;
	width: 15px;
	height: 15px;
	z-index: 462;
}
#WARN-THA010 {
	position:absolute;
	left:161px;
	top:2436px;
	width:14px;
	height:15px;
	z-index:463;
}
#WARN-THA006 {
	position:absolute;
	left:182px;
	top:2525px;
	width:14px;
	height:14px;
	z-index:464;
}
#WARN-CPY016 {
	position:absolute;
	left:258px;
	top:2499px;
	width:15px;
	height:15px;
	z-index:465;
}
#WARN-THA007 {
	position:absolute;
	left:182px;
	top:2701px;
	width:15px;
	height:15px;
	z-index:466;
}
#WARN-BKK018 {
	position:absolute;
	left:270px;
	top:2676px;
	width:15px;
	height:14px;
	z-index:467;
}
#WARN-BKK019 {
	position:absolute;
	left:272px;
	top:2764px;
	width:15px;
	height:15px;
	z-index:468;
}
#WARN-BKK007 {
	position:absolute;
	left:523px;
	top:2790px;
	width:14px;
	height:16px;
	z-index:469;
}
#WARN-THA008 {
	position:absolute;
	left:182px;
	top:2969px;
	width:15px;
	height:13px;
	z-index:470;
}
#WARN-BKK004 {
	position:absolute;
	left:272px;
	top:2987px;
	width:15px;
	height:15px;
	z-index:471;
}
#WARN-BKK005 {
	position:absolute;
	left:288px;
	top:3079px;
	width:15px;
	height:15px;
	z-index:472;
}
#WARN-BKK003 {
	position:absolute;
	left:541px;
	top:2952px;
	width:16px;
	height:15px;
	z-index:473;
}
#WARN-THA009 {
	position:absolute;
	left:183px;
	top:3244px;
	width:16px;
	height:15px;
	z-index:474;
}
#WARN-GLF002 {
    height: 15px;
    left: 234px;
    position: absolute;
    top: 2519px;
    width: 15px;
    z-index: 475;
}
#WARN-BKK006 {
	position:absolute;
	left:231px;
	top:3272px;
	width:15px;
	height:14px;
	z-index:476;
}
#WARN-THA002 {
	position:absolute;
	left:489px;
	top:1828px;
	width:14px;
	height:14px;
	z-index:477;
}
#WARN-C36 {
	position:absolute;
	left:497px;
	top:2170px;
	width:15px;
	height:14px;
	z-index:478;
}
#WARN-CPY009 {
    height: 15px;
    left: 512px;
    position: absolute;
    top: 1981px;
    width: 14px;
    z-index: 479;
}
#WARN-C37 {
	position:absolute;
	left:402px;
	top:2249px;
	width:14px;
	height:12px;
	z-index:480;
}
#WARN-CPY010 {
    height: 14px;
    left: 510px;
    position: absolute;
    top: 2113px;
    width: 14px;
    z-index: 481;
}
#WARN-CPY017 {
    height: 14px;
    left: 508px;
    position: absolute;
    top: 2214px;
    width: 15px;
    z-index: 482;
}
#WARN-L2B {
	position:absolute;
	left:789px;
	top:2055px;
	width:14px;
	height:12px;
	z-index:483;
}
#WARN-LBI002 {
    height: 12px;
    left: 818px;
    position: absolute;
    top: 1825px;
    width: 14px;
    z-index: 484;
}
#WARN-LBI001 {
    height: 13px;
    left: 859px;
    position: absolute;
    top: 2152px;
    width: 15px;
    z-index: 485;
}
#WARN-S5 {
	position:absolute;
	left:632px;
	top:2326px;
	width:14px;
	height:13px;
	z-index:486;
}
#WARN-PAS009 {
	position:absolute;
	left:806px;
	top:2323px;
	width:15px;
	height:13px;
	z-index:487;
}
#WARN-PAS008 {
	position: absolute;
	left: 964px;
	top: 2325px;
	width: 14px;
	height: 14px;
	z-index: 488;
}
#WARN-S26 {
	position:absolute;
	left:999px;
	top:2324px;
	width:13px;
	height:15px;
	z-index:489;
}
#WARN-626 {
	position:absolute;
	left:1025px;
	top:2311px;
	width:19px;
	height:45px;
	z-index:490;
}
#WARN-1749 {
	position:absolute;
	left:1031px;
	top:752px;
	width:39px;
	height:20px;
	z-index:491;
}
#WARN-PAS007 {
	position:absolute;
	left:1206px;
	top:2227px;
	width:16px;
	height:15px;
	z-index:492;
}
#WARN-S28A {
	position:absolute;
	left:1209px;
	top:2160px;
	width:13px;
	height:14px;
	z-index:493;
}
#WARN-PAS006 {
    height: 13px;
    left: 1122px;
    position: absolute;
    top: 2010px;
    width: 14px;
    z-index: 494;
}
#WARN-DAM-19 {
    height: 24px;
    left: 1293px;
    position: absolute;
    top: 1906px;
    width: 24px;
    z-index: 495;
}
#WARN-S39 {
	position:absolute;
	left:1208px;
	top:2022px;
	width:12px;
	height:14px;
	z-index:496;
}
#WARN-PAS005 {
	position:absolute;
	left:1208px;
	top:1986px;
	width:14px;
	height:14px;
	z-index:497;
}
#WARN-PAS004 {
	position:absolute;
	left:1208px;
	top:1952px;
	width:15px;
	height:14px;
	z-index:498;
}
#WARN-S42 {
	position:absolute;
	left:1209px;
	top:1930px;
	width:13px;
	height:13px;
	z-index:499;
}
#WARN-PAS003 {
	position:absolute;
	left:1207px;
	top:1901px;
	width:14px;
	height:14px;
	z-index:500;
}
#WARN-S4B {
	position:absolute;
	left:1208px;
	top:1870px;
	width:14px;
	height:13px;
	z-index:501;
}
#WARN-PAS002 {
	position:absolute;
	left:1207px;
	top:1836px;
	width:13px;
	height:13px;
	z-index:502;
}
#WARN-PAS001 {
	position:absolute;
	left:1207px;
	top:1805px;
	width:12px;
	height:13px;
	z-index:503;
}
#WARN-S3 {
	position:absolute;
	left:1208px;
	top:1777px;
	width:12px;
	height:13px;
	z-index:504;
}
#WARN-CAN001 {
	position:absolute;
	left:854px;
	top:2525px;
	width:14px;
	height:14px;
	z-index:505;
}
#WARN-BKK013 {
	position:absolute;
	left:1050px;
	top:2556px;
	width:16px;
	height:16px;
	z-index:506;
}
#WARN-FROC01 {
	position:absolute;
	left:679px;
	top:2651px;
	width:14px;
	height:14px;
	z-index:507;
}
#WARN-BKK002 {
	position:absolute;
	left:625px;
	top:2668px;
	width:16px;
	height:15px;
	z-index:508;
}
#WARN-FROC02 {
	position:absolute;
	left:1073px;
	top:2650px;
	width:16px;
	height:15px;
	z-index:509;
}
#WARN-BKK020 {
	position:absolute;
	left:681px;
	top:2773px;
	width:15px;
	height:16px;
	z-index:510;
}
#WARN-BKK015 {
	position:absolute;
	left:908px;
	top:2790px;
	width:15px;
	height:16px;
	z-index:511;
}
#WARN-BKK014 {
	position:absolute;
	left:1049px;
	top:2774px;
	width:13px;
	height:14px;
	z-index:512;
}
#WARN-BKK001 {
	position:absolute;
	left:679px;
	top:2827px;
	width:13px;
	height:15px;
	z-index:513;
}
#WARN-BKK021 {
	position:absolute;
	left:681px;
	top:2867px;
	width:14px;
	height:14px;
	z-index:514;
}
#WARN-BKK008 {
	position:absolute;
	left:695px;
	top:2952px;
	width:14px;
	height:13px;
	z-index:515;
}
#WARN-BKK016 {
	position:absolute;
	left:1190px;
	top:2952px;
	width:13px;
	height:16px;
	z-index:516;
}
#WARN-BKK010 {
	position:absolute;
	left:1206px;
	top:3035px;
	width:15px;
	height:15px;
	z-index:517;
}
#WARN-BKK009 {
	position:absolute;
	left:1049px;
	top:3090px;
	width:14px;
	height:14px;
	z-index:518;
}
#WARN-BKK017 {
	position:absolute;
	left:1115px;
	top:3184px;
	width:15px;
	height:15px;
	z-index:519;
}
#WARN-BKK011 {
	position:absolute;
	left:1208px;
	top:3125px;
	width:16px;
	height:15px;
	z-index:520;
}
#WARN-BKK012 {
	position:absolute;
	left:1118px;
	top:3267px;
	width:15px;
	height:15px;
	z-index:521;
}
#WARN-BPK001 {
	position:absolute;
	left:1369px;
	top:3228px;
	width:13px;
	height:14px;
	z-index:522;
}
#WARN-BPK002 {
	position:absolute;
	left:1370px;
	top:3070px;
	width:15px;
	height:13px;
	z-index:523;
}
#WARN-BPK003 {
	position:absolute;
	left:1369px;
	top:2953px;
	width:14px;
	height:14px;
	z-index:524;
}
#WARN-NYK014 {
	position:absolute;
	left:1368px;
	top:2813px;
	width:16px;
	height:12px;
	z-index:525;
}
#WARN-NYK000 {
	position:absolute;
	left:1370px;
	top:2668px;
	width:15px;
	height:13px;
	z-index:526;
}
#WARN-DAM-38 {
	position:absolute;
	left:1479px;
	top:2534px;
	width:27px;
	height:24px;
	z-index:527;
}
#WARN-PRC002 {
	position:absolute;
	left:1506px;
	top:2882px;
	width:15px;
	height:12px;
	z-index:528;
}
#WARN-DAM-41 {
    height: 22px;
    left: 1145px;
    position: absolute;
    top: 450px;
    width: 24px;
    z-index: 529;
}
#YOM011 {
	position: absolute;
	left: 484px;
	top: 78px;
	width: 130px;
	height: 13px;
	z-index: 530;
}
#NAN014 {
    height: 16px;
    left: 1050px;
    position: absolute;
    top: 389px;
    width: 113px;
    z-index: 531;
}
#WARN-NAN014 {
    height: 14px;
    left: 978px;
    position: absolute;
    top: 397px;
    width: 15px;
    z-index: 532;
}
#WARN-YOM011 {
	position: absolute;
	left: 601px;
	top: 86px;
	width: 15px;
	height: 15px;
	z-index: 533;
}
#N5A {
	position: absolute;
	left: 927px;
	top: 850px;
	width: 96px;
	height: 15px;
	z-index: 534;
}
#NAN012 {
    height: 15px;
    left: 973px;
    position: absolute;
    top: 677px;
    width: 123px;
    z-index: 535;
}
#WARN-NAN012 {
    height: 14px;
    left: 937px;
    position: absolute;
    top: 679px;
    width: 13px;
    z-index: 536;
}
#DIV001 {
    left: 656px;
    position: absolute;
    top: 448px;
    width: 104px;
    z-index: 77;
}
#WARN-DIV001 {
    left: 772px;
    position: absolute;
    top: 444px;
    z-index: 77;
}

@font-face {
        font-family: "Kittithada Medium 65 (กิตติธาดา มีเดียม 65)";
        src: url('fonts/253967286-PSL244pro.eot');
        src: url('fonts/253967286-PSL244pro.eot?#iefix') format('embedded-opentype'),
        url('fonts/253967286-PSL244pro.svg#Kittithada Medium 65 (กิตติธาดา มีเดียม 65)') format('svg'),
        url('fonts/253967286-PSL244pro.woff') format('woff'),
        url('fonts/253967286-PSL244pro.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }
.title h1{ font-family: 'THSarabunNew', sans-serif;  color:#472E0D; font-size:2.5em;}
.title h2{ font-family: 'THSarabunNew', sans-serif;  color:#472E0D; font-size:2em;    line-height: 100%;}
.title h4{ font-family: 'Kittithada Medium 65 (กิตติธาดา มีเดียม 65)', sans-serif;  color:#472E0D; font-size:1.8em;}
.title h5{ font-family: 'Kittithada Medium 65 (กิตติธาดา มีเดียม 65)', sans-serif;  color:#472E0D; font-size:1.5em;}

footer {
    background: none repeat scroll 0 0 #04485F;
    border-top: 1px solid #2789A4;

    color: #FFFFFF;
    font-size: 0.7em;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 600;
	line-height:1px;
	opacity:0.9;
}
.ragion-icon {
	margin-left:20px;
}
.region-icon > li {
    float: left;
      list-style: none outside none;
  margin:0px 5px 0px 5px;
}
.region-icon > li > p {
  margin:-20px 5px 15px 33px;
}

.level-warn ul {
    list-style: none outside none;
    position: relative;
    text-align: left;
    z-index: 600;
}
.level-warn ul li {
    float: left;
    line-height: 9px;
	margin-left:12px;
}
.level-warn ul li p {
    margin-left: 18px;
    line-height: 1px;
    margin-top: -6px;
}
.powered {
    float: right;
    position: relative;
    text-align: right;
    z-index: 600;
	padding-right:10px;
}
div.line {
    background: none repeat scroll 0 0 #226d86;
    box-shadow: 0 0 8px #ccc;
    height: 19px;

    transform-origin: 0 50% 0;
    transition: transform 1s ease 0s;
}
.text {
	font-family:Tahoma, Geneva, sans-serif;
	font-size: 11px;
	line-height:12px;

	text-align:left;
}
.text_red {
	font-family:Tahoma, Geneva, sans-serif;
	font-size: 11px;
	line-height:12px;
	color:#F00;
	text-align:center;
}
.text_small {
	font-family:Tahoma, Geneva, sans-serif;
	font-size: 8px;
	line-height:1em;
	color:#666;
	text-align:center;
}
.title_text {
	font-family:Tahoma, Geneva, sans-serif;
	font-size: 10px;
	line-height:12px;
	color:#000;
	text-align:center;
}
.box-cctv{
    background-color: red;
    border: 1px solid #167aae;
    border-radius: 3px;
    box-shadow: 1px 1px 3px #166c99;
    display: table-cell;
    padding: 5px;
    text-align: left;
	color:#fff;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
	width:25px;
	height:25px;
}
.box{
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 1px 1px 3px #ccc;
    display: table-cell;
    padding: 5px;
    text-align: left;
	color:#555;

}
.box:hover{
    background-color: #ccc;
    border: 1px solid #555;
    border-radius: 3px;
    box-shadow: 1px 1px 3px #333;
    display: table-cell;
    padding: 5px;
    text-align: left;
	color:#333;
}
.box a{
	color:#555;
}
.box-hl{
    background: none repeat scroll 0 0 #a5cbf5;
    border: 1px solid #4894b5;
}
.box-hl:hover{
	background: none repeat scroll 0 0 #ccc;
	 border: 2px solid #999;
}
.box-hl a{
	color:#333;
}
a:link {
	text-decoration: none;

}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
.btn{
    background: none repeat scroll 0 0 #1F6D87;
    padding: 6px;
    color: #fff;
    font-size: 1.5em;
	 border-radius: 3px;
	  border:1px solid #2a819e;
	  margin:5px;
	  cursor:pointer;
}
.banner{
	background: none repeat scroll 0 0 #1F6D87;
	width:100%;
	height:84px;
	position:relative;
}
.headding{
	margin:auto;
	position:absolute;
}
.search{
  background: none repeat scroll 0 0 #04485f;
  border-top:1px solid #2a819e;
  color:#fff;
  font-size:0.6em;
}
/* Preloader */
#preloader {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#fff; /* change if the mask should have another color then white */
	z-index:99; /* makes sure it stays on top */
}
