1.red {
2  color: #c30;
3}
4
5.red:hover {
6  color: #f30;
7}
8
9.bold {
10  font-weight: bold;
11}
12
13.graph-row td {
14  text-align: center;
15}
16
17.image-preview {
18  display: none;
19  position: absolute;
20  z-index: 100;
21  height: 240px;
22  width: 480px;
23}
24
25.white {
26  color: #fff;
27}
28
29.bubblingG {
30  text-align: center;
31  width: 125px;
32  height: 78px;
33}
34
35.bubblingG span {
36  display: inline-block;
37  vertical-align: middle;
38  width: 16px;
39  height: 16px;
40  margin: 39px auto;
41  background: #006FC4;
42  -moz-border-radius: 79px;
43  -moz-animation: bubblingG 0.9s infinite alternate;
44  -webkit-border-radius: 79px;
45  -webkit-animation: bubblingG 0.9s infinite alternate;
46  -ms-border-radius: 79px;
47  -ms-animation: bubblingG 0.9s infinite alternate;
48  -o-border-radius: 79px;
49  -o-animation: bubblingG 0.9s infinite alternate;
50  border-radius: 79px;
51  animation: bubblingG 0.9s infinite alternate;
52}
53
54#bubblingG_1 {
55  -moz-animation-delay: 0s;
56  -webkit-animation-delay: 0s;
57  -ms-animation-delay: 0s;
58  -o-animation-delay: 0s;
59  animation-delay: 0s;
60}
61
62#bubblingG_2 {
63  -moz-animation-delay: 0.27s;
64  -webkit-animation-delay: 0.27s;
65  -ms-animation-delay: 0.27s;
66  -o-animation-delay: 0.27s;
67  animation-delay: 0.27s;
68}
69
70#bubblingG_3 {
71  -moz-animation-delay: 0.54s;
72  -webkit-animation-delay: 0.54s;
73  -ms-animation-delay: 0.54s;
74  -o-animation-delay: 0.54s;
75  animation-delay: 0.54s;
76}
77
78@-moz-keyframes bubblingG {
79  0% {
80    width: 16px;
81    height: 16px;
82    background-color: #006FC4;
83    -moz-transform: translateY(0);
84  }
85  100% {
86    width: 38px;
87    height: 38px;
88    background-color: #FFFFFF;
89    -moz-transform: translateY(-33px);
90  }
91}
92@-webkit-keyframes bubblingG {
93  0% {
94    width: 16px;
95    height: 16px;
96    background-color: #006FC4;
97    -webkit-transform: translateY(0);
98  }
99  100% {
100    width: 38px;
101    height: 38px;
102    background-color: #FFFFFF;
103    -webkit-transform: translateY(-33px);
104  }
105}
106@-ms-keyframes bubblingG {
107  0% {
108    width: 16px;
109    height: 16px;
110    background-color: #006FC4;
111    -ms-transform: translateY(0);
112  }
113  100% {
114    width: 38px;
115    height: 38px;
116    background-color: #FFFFFF;
117    -ms-transform: translateY(-33px);
118  }
119}
120@-o-keyframes bubblingG {
121  0% {
122    width: 16px;
123    height: 16px;
124    background-color: #006FC4;
125    -o-transform: translateY(0);
126  }
127  100% {
128    width: 38px;
129    height: 38px;
130    background-color: #FFFFFF;
131    -o-transform: translateY(-33px);
132  }
133}
134@keyframes bubblingG {
135  0% {
136    width: 16px;
137    height: 16px;
138    background-color: #006FC4;
139    transform: translateY(0);
140  }
141  100% {
142    width: 38px;
143    height: 38px;
144    background-color: #FFFFFF;
145    transform: translateY(-33px);
146  }
147}
148.bubblingG {
149  position: absolute;
150  left: 0;
151  right: 0;
152  top: 0;
153  bottom: 0;
154  margin: auto;
155  max-width: 100%;
156  max-height: 100%;
157  overflow: auto;
158}
159
160.navbar-brand > img {
161  width: 30px;
162  height: 30px;
163  margin-right: 5px;
164  margin-top: -5px;
165  display: inline;
166}