body{
	font-family: 微軟正黑體 !important;
	overflow-y:hidden;
  background-color: black !important;
  color:white !important;
	}

.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#3a78d4;text-align:left;list-style:none;background-color:#070376;background-clip:padding-box;border:2px solid rgb(82, 99, 230);border-radius:.25rem;z-index: 999;}

.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#6291d8;text-align:inherit;white-space:nowrap;background-color:transparent;border:0;z-index: 999;}
.dropdown-item:focus,.dropdown-item:hover{color:#50f5f8;text-decoration:none;background-color:#0a5aab}


input[type="button"],button {
	font-family: 微軟正黑體 !important;
	font-weight:bold !important;
	}	
	
	a{
    font-family: 微軟正黑體;
    text-decoration: none;
    color: #1688c6;
    font-weight: bold;
	cursor:pointer !important;
}

     a:hover{
    color:#36bfde;
		outline:1px dashed #9cfdb2;
		background-color: rgba(235, 254, 234, 0.2) !important;
        -webkit-transition-property: all !important;
        transition-property: all;
        -webkit-transition-duration: .25s;
        transition-duration: .25s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

     a:active{
	    color: #77edf5 !important;
      outline:1px dashed #69caf7;
        -webkit-transition-property: all !important;
        transition-property: all;
        -webkit-transition-duration: .25s;
        transition-duration: .25s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }


	.div_a {
    margin: auto;
    text-align: center;
    align-items: center;
    width: 120px;
    font-size: 20px;
    font-family: 微軟正黑體;
    text-decoration: none;
    color: rgb(24, 136, 177);
    font-weight: bold;
	cursor:pointer !important;
	}
	.div_a:hover {
    color:#36bfde;
		outline:1px dashed #b7e2fc;
    font-weight: bold;
		background-color: rgb(235,254,234,0.2) !important;
        -webkit-transition-property: all !important;
        transition-property: all;
        -webkit-transition-duration: .25s;
        transition-duration: .25s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }
	.div_a:active {
	    color: #77edf5 !important;
      outline:1px dashed #69caf7;
        -webkit-transition-property: all !important;
        transition-property: all;
        -webkit-transition-duration: .25s;
        transition-duration: .25s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }



	
	tbody tr:hover{
        color: #0EA00E !important;
		background-color: rgb(235,254,234,0.8) !important;
        -webkit-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: .2s;
        transition-duration: .2s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

	tbody tr td:hover{
		background-color: rgb(225,255,225) !important;
		border-bottom:1px solid rgb(125,185,125);
        -webkit-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: .15s;
        transition-duration: .15s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }


.custom-checkbox .custom-control-label::before {
	border-color: green;
}

.custom-control-input:checked~.custom-control-label::before{
	color: green;
    border-color: rgb(235,254,234,0.9);
    background-color: #28a745;
}

.custom-control-input:focus~.custom-control-label::before{
	box-shadow:0 0 0 .2rem rgb(170,252,150);
}
.custom-control-input:not(:disabled):active~.custom-control-label::before{
	background-color:rgb(170,252,150);
}

.form-control:focus{
	color:#495057;
	background-color:#fff;
	border-color:#28a745;
	outline:0;
	box-shadow:0 0 0 .2rem rgb(170,252,150);
}

option{
	min-height:14px !important;
	max-height:14px !important;
	padding:0px;
	line-height:14px !important;
}

.custom-select:focus{
	border-color:#1e83db;
	box-shadow:0 0 0 .2rem rgb(150, 230, 252);
}

.custom-file-input:focus~.custom-file-label{
	border-color:#255dd6;
	box-shadow:0 0 0 .2rem rgb(150, 206, 252) !important;
}

iframe > body { background-color: rgb(0, 0, 0) }


#flotcontainer,#flotcontainer2,#flotcontainer3,#flotcontainer4 {
	width: 600px;
	height: 350px;
}






.svg-wrapper {
  height: 40px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  cursor:pointer;
}

.shape {
  fill: transparent;
  stroke-dasharray: 0 760;
  stroke-dashoffset: 0;
  stroke-width: 2px;
  stroke: #18e7f9;
}

.btn_svg_text {
  color: rgb(21, 122, 205);
  font-family: 'Roboto Condensed';
  font-size: 18px;
  /* letter-spacing: 8px; */
  /* line-height: 40px; */
  position: relative;
  top: -32px;
  text-align:center;
  width: 120px;
}


@keyframes draw {
  0% {
    stroke-dasharray: 1 2000;
    stroke-dashoffset: -250;
    stroke-width: 2px;
  }
  100% {
    stroke-dasharray: 760;
    stroke-dashoffset: 0;
    stroke-width: 2px;
  }
}

.svg-wrapper:hover .shape {
  -webkit-animation: 0.45s draw linear forwards;
  animation: 0.45s draw linear forwards;
}

.svg-wrapper:hover .btn_svg_text{
	color:#36bfde;
	-webkit-transition-property: all !important;
	transition-property: all;
	-webkit-transition-duration: .25s;
	transition-duration: .25s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.svg-wrapper:active .btn_svg_text,.svg-wrapper:active .shape {
	    color: #77edf5 !important;
		stroke: #0fd4f7;
		opacity:0.7;
        -webkit-transition-property: all !important;
        transition-property: all;
        -webkit-transition-duration: .25s;
        transition-duration: .25s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
	
}


/*scroll bar*/

::-webkit-scrollbar {
	 display: block;
    width: 16px;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1); 
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgb(59, 96, 217); 
	background: rgba(115, 122, 217, 0.2); 
}





#container_yearcost,#container_worksheetamo {
	width:85em;
	/* height: 550px; */
}

.highcharts-figure,
.highcharts-data-table table {
  min-width: 310px;
  max-width: 800px;
  margin: 0;
}

.highcharts-data-table table {
  font-family: Verdana, sans-serif;
  border-collapse: collapse;
  border: 1px solid #ebebeb;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.highcharts-data-table caption {
  padding: 1em 0;
  font-size: 1.2em;
  color: #555;
}

.highcharts-data-table th {
  font-weight: 600;
  padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
  padding: 0.5em;
  
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
  background: #f8f8f8;
   font-size: 18px;
}

.highcharts-data-table tr:hover {
  background: #f1f7ff;
}


iframe { width: 100%; height: 100%; border: 0px solid #000000; }



