﻿html, body, form {
    font: normal 14px/normal 微軟正黑體, Arial;
    padding: 0;
    margin: 0;
    height: 100%;
}

/* 背景圖片 */
html {
    background: url('../images/bg.jpg') center bottom no-repeat;
	background-attachment: fixed;
	background-size: cover;
}
/* 選單文字變色 */
.navbar .navbar-nav .nav-item .nav-link:hover {
	color: rgba(75, 190, 212, 1);
}
/* 項目文字凸排 */
.li-item {
	margin-left: 1rem;
	text-indent: -1rem;
}

/* 月曆用 */
.bg-orange, .bg-orange-alt:hover { background-color: #ff976f; }
.bg-red, .bg-red-alt:hover { background-color: #ff6075; }
.bg-red-orange, .bg-red-orange-alt:hover { background-color: #fe6d56; }
.bg-green, .bg-green-alt:hover { background-color: #00c98d; }
.bg-sky-blue,.bg-sky-blue-alt:hover { background-color: #4cc1e6; }
.bg-blue, .bg-blue-alt:hover { background-color: #2a94bc; }
.bg-dark-blue, .bg-dark-blue-alt:hover { background-color: #365b7b; }
.bg-cyan, .bg-cyan-alt:hover { background-color: #00a5a7; }
.bg-dark-cyan, .bg-dark-cyan-alt:hover { background-color: #537a8a; }
.bg-purple, .bg-purple-alt:hover { background-color: #6d5a79; }

.bg-orange-alt { background-color: #ffa881; }
.bg-red-alt { background-color: #ff7388; }
.bg-red-orange-alt { background-color: #fe8977; }
.bg-green-alt { background-color: #00d49e; }
.bg-sky-blue-alt { background-color: #68c6e4; }
.bg-blue-alt { background-color: #459bbb; }
.bg-dark-blue-alt { background-color: #45627b; }
.bg-cyan-alt { background-color: #00b5b8; }
.bg-dark-cyan-alt { background-color: #637e89; }
.bg-purple-alt { background-color: #726879; }

.bg-orange { background-color: #ff976f; }
.bg-red { background-color: #ff6075; }
.bg-red-orange { background-color: #fe6d56; }
.bg-green { background-color: #00c98d; }
.bg-sky-blue { background-color: #4cc1e6; }
.bg-blue { background-color: #2a94bc; }
.bg-dark-blue { background-color: #365b7b; }
.bg-cyan { background-color: #00a5a7; }
.bg-dark-cyan { background-color: #537a8a; }
.bg-purple { background-color: #6d5a79; }

/* RadioButton/CheckBox 樣式 */
input[type=radio],
input[type=checkbox] {
	display: none;
}
.cssRadioButton label,
.cssCheckBox label {
}
input[type=radio] + label,
input[type=checkbox] + label {
	display: inline;
	float: left;
	color: #000;
	cursor: pointer;
	text-indent: 2rem;
	white-space: nowrap;
	
	width: 1.625rem;
	height: 1.625rem;
	border: 1px solid #becad6;
	border-radius: 50%;
	background-color: #fff;
	transition: all 250ms cubic-bezier(.27,.01,.38,1.06);
	vertical-align: middle;
}
input[type=radio]:checked + label::before,
input[type=checkbox]:checked + label::before {
	content: "\2714";
	border-radius: 50%;
	color: white;
	background: #007bff;
	margin-left: -2rem;
	margin-right: 0.45rem;
	padding-top: 0.1rem;
	padding-bottom: 0.25rem;
	padding-left: 0.4rem;
	padding-right: 0.4rem;
	font-weight: 700;
}
input[type=radio]:disabled + label,
input[type=checkbox]:disabled + label {
    cursor: not-allowed;
}

footer {
    padding: 5px 0;
    background-image: url(../images/footer_bg_repeat2.jpg);
    background-repeat: repeat-x;
    letter-spacing: 2px;
    line-height: 27px;
    text-align: center;
    color: white;
    font-size: 15px;
    width: 100%;
    /*margin-top: 40px;*/
}

a {
    color: #000000;
    font-weight: bold;
    -webkit-transition: background 200ms linear;
    -moz-transition: background 200ms linear;
    -o-transition: background 200ms linear;
    -ms-transition: background 200ms linear;
    transition: background 200ms linear;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.outer {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    background-color: rgba(255, 255, 255, 0.2);
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.inner {
    margin-left: auto;
    margin-right: auto;
    padding: 2em;
    width: 14em;
    /*width: 100%;*/
    /*height: 100%;*/
    background-color: rgba(255, 255, 255, 0.75);
    font: normal 16px/normal 微軟正黑體, Arial;
}

.inner a {
    color: #0079FF;
}

#wrapper {
    position: absolute;
    top: 52px;
}

#header-body {}
/*
.row div {
    background-color: #D0D0D0;
}
*/
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
    border-bottom: 0;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
    /*text-align: center;*/
    display: none;
}

.tab-content > .active,
.pill-content > .active {
    display: block;
}

#sider-body {
    left: -400px;
    position: absolute;
    top: 50px;
    border: solid 1px #909090;
    max-width: 400px;
    background-color: #ffffff;
    overflow-y: scroll;
}

#footer-body {
    max-height: 12em !important;
    background-color: #ECECEC;
    text-align: center;
    border: solid 1px #909090;
    overflow-y: scroll;
}

.tabbable ul {
    white-space: nowrap;
}

.fixed-top {
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0px;
    height: 50px;
    opacity: 0.8;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.fixed-top#geoloc {
    left: 50px;
}

.fixed-top#tp3d {
    left: 100px;
}

.fixed-top#coordDiv {
    right: 0em;
    top: 50px;
}

.fixed-top#dtmDiv {
    right: 0em;
    top: 100px;
}

.fixed-top:hover {
    background-color: rgba(167, 190, 255, 0.67);
}

.fixed-top:active {
    background-color: rgba(167, 190, 255, 0.67);
}

.fixed-top img {
    margin: 5px 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.fixed-bottom {
    z-index: 50;
    position: absolute;
    bottom: 50px;
    right: 0px;
    left: 0px;
}

.fixed-bottom img {
    margin: 5px 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.related-bottom {
    background-color: rgba(255, 255, 255, 0.8);
    display: inline-block;
    opacity: 0.8;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.related-bottom:hover {
    background-color: rgba(167, 190, 255, 0.67);
}

.related-bottom:active {
    background-color: rgba(167, 190, 255, 0.67);
}

#sider-toggle {
    left: 0px;
}

#searchDiv {
    right: 0px;
    white-space: nowrap;
}

#searchDiv.inSearch {
    background-color: rgba(255, 0, 0, 0.25);
}

#searchInput {
    width: 130px;
    margin-left: 1em;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    padding: 5px 10px;
    border: 1px solid #b7b7b7;
    color: rgba(0, 50, 68, 1);
    -o-text-overflow: clip;
    text-overflow: clip;
    background: rgba(252, 252, 252, 1);
    -webkit-box-shadow: 2px 1px 2px 0 rgba(0, 0, 0, 0.2) inset;
    box-shadow: 2px 1px 2px 0 rgba(0, 0, 0, 0.2) inset;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

#coordInfo {
    position: relative;
    top: 4em;
    left: 50%;
    margin-left: -7em;
    font-size: 1em;
    font-weight: bold;
    color: #0096ff;
    text-shadow: -0.5px 0 #000, 0 0.5px #000, 0.5px 0 #000, 0 -0.5px #000;
}

.trigCoord {
    display: none;
}

#tplogo {
    position: absolute;
    right: 0px;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #3AA74F;
}

.navbar.always-open.navbar-fixed-top {
    margin-bottom: 0px;
    width: 55px;
    padding: 5px;
    opacity: 0.8;
}

.navbar.always-open.navbar-fixed-top .navbar-toggle {
    display: block;
    float: left;
    background-color: #ffffff;
}

.navbar.always-open.navbar-fixed-bottom {
    border: solid 1px #909090;
    opacity: 0.8;
}

.navbar.always-open.navbar-fixed-bottom .navbar-toggle {
    display: block;
    float: left;
}


.navbar.always-open.navbar-fixed-bottom .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    overflow: scroll !important;
    overflow-x: hidden !important;
}

.navbar.always-open.navbar-fixed-bottom .navbar-collapse.collapse {
    display: none !important;
}

.navbar.always-open.navbar-fixed-bottom .navbar-collapse.collapse.in {
    display: block !important;
}

.btnCntr {
    background-color: #E0ECFF;
}

.btnCntr .dataSrc {
    display: inline-block;
    width: 18pt;
}

.btnCntr .dataSrc img {
    width: 18pt;
    margin-left: 1.5pt;
}
/*
.btn {
    border-radius: 0px;
    width: 13em;
    display: inline-block;
    text-align: left;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer;
    padding: 10px 5px 10px 35px;
    border: none;
    color: #ffffff;
    -o-text-overflow: clip;
    text-overflow: clip;
    background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #64A0FF;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #64A0FF;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #64A0FF;
    background-position: 50% 50%;
    -webkit-background-origin: padding-box;
    background-origin: padding-box;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-background-size: auto auto;
    background-size: auto auto;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.btn:hover {
    color: #ffffff;
    background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #4071BF;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #4071BF;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #4071BF;
}

.btn.update {
    background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ff9900;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ff9900;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ff9900;
}

.btn.update:hover {
    background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #cc7a00;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #cc7a00;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #cc7a00;
}
*/
.btn.inv {
    color: rgba(20, 20, 20, 0.9);
    background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ffffff;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ffffff;
}

.btn.inv:hover {
    background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #AAC8FF;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #AAC8FF;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #AAC8FF;
}

.btnGroup {
	/* 2019-03 start */
	width:100%;
	padding: 10px 0px;	
	/* 2019-03 end */
	/* org--
	width: 15em;
	padding: 10px 20px;
	--org*/
    border-radius: 0px;
    display: inline-block;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer;
    border: none;
    color: #000000;
    -o-text-overflow: clip;
    text-overflow: clip;
    background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ECECEC;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ECECEC;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ECECEC;
    background-position: 50% 50%;
    -webkit-background-origin: padding-box;
    background-origin: padding-box;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-background-size: auto auto;
    background-size: auto auto;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.btnGroup:hover {
    color: #000000;
    background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #DBDBDB;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #DBDBDB;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #DBDBDB;
}

.queryHint {
    margin: 10px;
}

.queryLoc {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    color: rgba(20, 20, 20, 0.9);
    -o-text-overflow: clip;
    text-overflow: clip;
    background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ffffff;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ffffff;
    background-position: 50% 50%;
    -webkit-background-origin: padding-box;
    background-origin: padding-box;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-background-size: auto auto;
    background-size: auto auto;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.queryLoc:hover {
    color: rgba(20, 20, 20, 0.9);
    background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ECECEC;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ECECEC;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 85%, rgba(220, 220, 220, 0.7) 100%), #ECECEC;
}

div.infoCard {
    vertical-align: text-top;
    display: inline-block;
    margin: 5px;
    height: 100px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    width: 105px;
    padding: 5px;
    border: none;
    color: #555;
    text-align: center;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    background: #FCFCFC;
    -webkit-box-shadow: 3px 3px 1px 0 rgba(0, 0, 0, 0.3) inset;
    box-shadow: 3px 3px 1px 0 rgba(0, 0, 0, 0.3) inset;
}

div.infoCard p {
    margin-top: 3px;
    font-weight: bold;
}

div.infoCard p img {
    width: 28px;
    height: 28px;
}

div.infoCard #avgTempVal {
    color: #0096ff;
    font-size: 1.5em;
}

div.infoCard #avgTempLoc {
    color: #0096ff;
    font-size: 1em;
}

div.infoCard #resRainVal {
    color: #0096ff;
    font-size: 1.5em;
}

div.infoCard #resRainLoc {
    color: #0096ff;
    font-size: 1em;
}

div.infoCard #resUVIVal {
    color: #0096ff;
    font-size: 1.5em;
}

div.infoCard #resUVILoc {
    color: #0096ff;
    font-size: 1em;
}

div.infoCard #tomDayVal {
    color: #0096ff;
    font-size: 1em;
}

div.infoCard #tomDayTmp {
    color: #0096ff;
    font-size: 1.5em;
}

div.infoCard #tomEveVal {
    color: #0096ff;
    font-size: 1em;
}

div.infoCard #tomEveTmp {
    color: #0096ff;
    font-size: 1.5em;
}


/* Place Holder CSS */

::-webkit-input-placeholder {
    color: #000;
    opacity: 0.5;
    -webkit-transition: opacity 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out;
}

:-moz-placeholder {
    color: #000;
    opacity: 0.5;
    -moz-transition: opacity 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out;
}

::-moz-placeholder {
    color: #000;
    opacity: 0.5;
    -moz-transition: opacity 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out;
}

:-ms-input-placeholder {
    color: #000;
    opacity: 0.5;
    -ms-transition: opacity 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out;
}


/* Place Holder CSS for Focus */

:hover::-webkit-input-placeholder {
    opacity: 0.8;
    -webkit-transition: opacity 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out;
}

:hover:-moz-placeholder {
    opacity: 0.8;
    -moz-transition: opacity 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out;
}

:hover::-moz-placeholder {
    opacity: 0.8;
    -moz-transition: opacity 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out;
}

:hover:-ms-input-placeholder {
    opacity: 0.8;
    -ms-transition: opacity 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out;
}


/* Place Holder CSS for Focus */

:focus::-webkit-input-placeholder {
    opacity: 0.2;
    -webkit-transition: opacity 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out;
}

:focus:-moz-placeholder {
    opacity: 0.2;
    -moz-transition: opacity 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out;
}

:focus::-moz-placeholder {
    opacity: 0.2;
    -moz-transition: opacity 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out;
}

:focus:-ms-input-placeholder {
    opacity: 0.2;
    -ms-transition: opacity 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out;
}


/* scrollbar CSS */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-button {
    width: 8px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #eee;
    border: thin solid lightgray;
    box-shadow: 0px 0px 3px #dfdfdf inset;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #999;
    border: thin solid gray;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7d7d7d;
}


/* crosshair CSS */

.crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
}

.crosshair:before,
.crosshair:after {
    content: "";
    position: absolute;
    top: 50%;
    background: #0096ff;
}

.crosshair:before {
    left: 6px;
    width: 5px;
    height: 32px;
    top: -16px;
}

.crosshair:after {
    left: -8px;
    width: 32px;
    height: 5px;
    top: -2px;
}


/* ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** ***** */

.cssload {
    width: 30px;
    height: 15px;
    display: inline-block;
    position: relative;
    float: right;
    margin: auto;
}

.cssload_blockG {
    background-color: rgb(100, 159, 255);
    border: 1px solid rgb(255, 255, 255);
    float: left;
    height: 20px;
    margin-left: 2px;
    width: 5px;
    opacity: 0.1;
    animation-name: bounceG;
    -o-animation-name: bounceG;
    -ms-animation-name: bounceG;
    -webkit-animation-name: bounceG;
    -moz-animation-name: bounceG;
    animation-duration: 0.975s;
    -o-animation-duration: 0.975s;
    -ms-animation-duration: 0.975s;
    -webkit-animation-duration: 0.975s;
    -moz-animation-duration: 0.975s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
    transform: scale(0.7);
    -o-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
}

#blockG_1 {
    animation-delay: 0.2895s;
    -o-animation-delay: 0.2895s;
    -ms-animation-delay: 0.2895s;
    -webkit-animation-delay: 0.2895s;
    -moz-animation-delay: 0.2895s;
}

#blockG_2 {
    animation-delay: 0.386s;
    -o-animation-delay: 0.386s;
    -ms-animation-delay: 0.386s;
    -webkit-animation-delay: 0.386s;
    -moz-animation-delay: 0.386s;
}

#blockG_3 {
    animation-delay: 0.4825s;
    -o-animation-delay: 0.4825s;
    -ms-animation-delay: 0.4825s;
    -webkit-animation-delay: 0.4825s;
    -moz-animation-delay: 0.4825s;
}

@keyframes bounceG {
    0% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.7);
        opacity: 0.1;
    }
}

@-o-keyframes bounceG {
    0% {
        -o-transform: scale(1.2);
        opacity: 1;
    }
    100% {
        -o-transform: scale(0.7);
        opacity: 0.1;
    }
}

@-ms-keyframes bounceG {
    0% {
        -ms-transform: scale(1.2);
        opacity: 1;
    }
    100% {
        -ms-transform: scale(0.7);
        opacity: 0.1;
    }
}

@-webkit-keyframes bounceG {
    0% {
        -webkit-transform: scale(1.2);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.7);
        opacity: 0.1;
    }
}

@-moz-keyframes bounceG {
    0% {
        -moz-transform: scale(1.2);
        opacity: 1;
    }
    100% {
        -moz-transform: scale(0.7);
        opacity: 0.1;
    }
}