| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 | | .topPanelContainer { |  |     text-align:left; |  |     border:1px solid #ccc; |  | } |  |   |  | .topPanel { |  |     background-color: white; |  |     border: 1px solid #ccc; |  |     padding: 0px; |  |     margin-top: 10px; |  |     margin-bottom: 0px; |  |     margin-left: 10px; |  |     margin-right: 10px; |  | } |  |   |  | .title { |  |     font-size: larger; |  |     font-weight: bold; |  | } |  |   |  | .poweredByImage { |  |     vertical-align: middle; |  |     margin:12px 8px 8px 0; |  | } |  |   |  | img { |  |     border: none; |  | } | 
 |