Simon Hunt | 195cb38 | 2014-11-03 17:50:51 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2014 Open Networking Laboratory |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | /* |
| 18 | ONOS GUI -- Topology view -- CSS file |
| 19 | |
| 20 | @author Simon Hunt |
| 21 | */ |
| 22 | |
Simon Hunt | 56d5185 | 2014-11-09 13:03:35 -0800 | [diff] [blame] | 23 | #topo svg #topo-bg { |
Simon Hunt | 142d003 | 2014-11-04 20:13:09 -0800 | [diff] [blame] | 24 | opacity: 0.5; |
| 25 | } |
| 26 | |
Paul Greyson | 6cb8ca0 | 2014-11-12 18:09:02 -0800 | [diff] [blame] | 27 | #topo #map { |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 28 | stroke-width: 2px; |
Thomas Vachuska | cd2920c | 2014-11-19 14:49:55 -0800 | [diff] [blame] | 29 | stroke: #eee; |
Paul Greyson | 6cb8ca0 | 2014-11-12 18:09:02 -0800 | [diff] [blame] | 30 | fill: transparent; |
| 31 | } |
| 32 | |
Simon Hunt | c72967b | 2014-11-20 09:21:42 -0800 | [diff] [blame] | 33 | /* TODO: move glyphs into framework */ |
Simon Hunt | ac9e24f | 2014-11-12 10:12:21 -0800 | [diff] [blame] | 34 | |
Simon Hunt | 9590801 | 2014-11-20 10:20:26 -0800 | [diff] [blame] | 35 | #topo-oibox svg .glyphIcon, |
Simon Hunt | c72967b | 2014-11-20 09:21:42 -0800 | [diff] [blame] | 36 | #topo svg .glyphIcon { |
| 37 | fill: black; |
| 38 | stroke: none; |
| 39 | fill-rule: evenodd; |
| 40 | } |
| 41 | #topo svg .glyphIcon rect { |
| 42 | fill: #ddd; |
Simon Hunt | 7fa116d | 2014-11-17 14:16:55 -0800 | [diff] [blame] | 43 | stroke: none; |
| 44 | } |
| 45 | |
Simon Hunt | 1a9eff9 | 2014-11-07 11:06:34 -0800 | [diff] [blame] | 46 | /* NODES */ |
| 47 | |
Simon Hunt | ac9e24f | 2014-11-12 10:12:21 -0800 | [diff] [blame] | 48 | #topo svg .node { |
Simon Hunt | 99c1384 | 2014-11-06 18:23:12 -0800 | [diff] [blame] | 49 | cursor: pointer; |
| 50 | } |
| 51 | |
Simon Hunt | ac9e24f | 2014-11-12 10:12:21 -0800 | [diff] [blame] | 52 | #topo svg .node.selected rect, |
| 53 | #topo svg .node.selected circle { |
Simon Hunt | 8dde232 | 2014-11-21 11:42:10 -0800 | [diff] [blame] | 54 | fill: #f90; |
Simon Hunt | ac9e24f | 2014-11-12 10:12:21 -0800 | [diff] [blame] | 55 | filter: url(#blue-glow); |
| 56 | } |
| 57 | |
Simon Hunt | ac9e24f | 2014-11-12 10:12:21 -0800 | [diff] [blame] | 58 | #topo svg .node text { |
| 59 | pointer-events: none; |
| 60 | } |
| 61 | |
| 62 | /* Device Nodes */ |
| 63 | |
| 64 | #topo svg .node.device { |
| 65 | } |
| 66 | |
Simon Hunt | 56d5185 | 2014-11-09 13:03:35 -0800 | [diff] [blame] | 67 | #topo svg .node.device rect { |
Simon Hunt | 1a9eff9 | 2014-11-07 11:06:34 -0800 | [diff] [blame] | 68 | stroke-width: 1.5px; |
| 69 | } |
| 70 | |
Simon Hunt | 56d5185 | 2014-11-09 13:03:35 -0800 | [diff] [blame] | 71 | #topo svg .node.device.fixed rect { |
Simon Hunt | 99c1384 | 2014-11-06 18:23:12 -0800 | [diff] [blame] | 72 | stroke-width: 1.5; |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 73 | stroke: #ccc; |
Simon Hunt | 99c1384 | 2014-11-06 18:23:12 -0800 | [diff] [blame] | 74 | } |
| 75 | |
Simon Hunt | bb282f5 | 2014-11-10 11:08:19 -0800 | [diff] [blame] | 76 | /* note: device is offline without the 'online' class */ |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 77 | #topo svg .node.device { |
| 78 | fill: #777; |
| 79 | } |
| 80 | |
Simon Hunt | 8dde232 | 2014-11-21 11:42:10 -0800 | [diff] [blame] | 81 | #topo svg .node.device.online { |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 82 | fill: #17f; |
| 83 | } |
| 84 | |
Simon Hunt | bb282f5 | 2014-11-10 11:08:19 -0800 | [diff] [blame] | 85 | /* note: device is offline without the 'online' class */ |
Simon Hunt | 7cd48f3 | 2014-11-09 23:42:50 -0800 | [diff] [blame] | 86 | #topo svg .node.device text { |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 87 | fill: #aaa; |
Simon Hunt | 99c1384 | 2014-11-06 18:23:12 -0800 | [diff] [blame] | 88 | font: 10pt sans-serif; |
Simon Hunt | 99c1384 | 2014-11-06 18:23:12 -0800 | [diff] [blame] | 89 | } |
| 90 | |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 91 | #topo svg .node.device.online text { |
| 92 | fill: white; |
| 93 | } |
| 94 | |
Simon Hunt | 8dde232 | 2014-11-21 11:42:10 -0800 | [diff] [blame] | 95 | #topo svg .node.device .glyphIcon rect { |
| 96 | fill: #aaa; |
| 97 | } |
| 98 | #topo svg .node.device .glyphIcon use { |
| 99 | fill: #777; |
| 100 | } |
| 101 | #topo svg .node.device.selected .glyphIcon rect { |
| 102 | fill: #f90; |
| 103 | } |
| 104 | #topo svg .node.device.online .glyphIcon rect { |
| 105 | fill: #8ab; |
| 106 | } |
| 107 | #topo svg .node.device.online .glyphIcon use { |
| 108 | fill: #000; |
| 109 | } |
| 110 | #topo svg .node.device.online.selected .glyphIcon rect { |
| 111 | fill: #f90; |
| 112 | } |
| 113 | |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 114 | |
Simon Hunt | ac9e24f | 2014-11-12 10:12:21 -0800 | [diff] [blame] | 115 | /* Host Nodes */ |
| 116 | |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 117 | #topo svg .node.host { |
| 118 | stroke: #000; |
| 119 | } |
| 120 | |
Simon Hunt | 7cd48f3 | 2014-11-09 23:42:50 -0800 | [diff] [blame] | 121 | #topo svg .node.host text { |
| 122 | fill: #846; |
Simon Hunt | 7fa116d | 2014-11-17 14:16:55 -0800 | [diff] [blame] | 123 | stroke: none; |
Simon Hunt | 7cd48f3 | 2014-11-09 23:42:50 -0800 | [diff] [blame] | 124 | font: 9pt sans-serif; |
Simon Hunt | 7cd48f3 | 2014-11-09 23:42:50 -0800 | [diff] [blame] | 125 | } |
| 126 | |
Simon Hunt | 7fa116d | 2014-11-17 14:16:55 -0800 | [diff] [blame] | 127 | svg .node.host circle { |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 128 | stroke: #000; |
Simon Hunt | 8dde232 | 2014-11-21 11:42:10 -0800 | [diff] [blame] | 129 | fill: #edb; |
Simon Hunt | 7fa116d | 2014-11-17 14:16:55 -0800 | [diff] [blame] | 130 | } |
| 131 | |
Simon Hunt | 1a9eff9 | 2014-11-07 11:06:34 -0800 | [diff] [blame] | 132 | /* LINKS */ |
| 133 | |
Simon Hunt | 56d5185 | 2014-11-09 13:03:35 -0800 | [diff] [blame] | 134 | #topo svg .link { |
Simon Hunt | 1a9eff9 | 2014-11-07 11:06:34 -0800 | [diff] [blame] | 135 | opacity: .7; |
| 136 | } |
| 137 | |
Thomas Vachuska | e4cebaf | 2014-11-15 18:49:34 -0800 | [diff] [blame] | 138 | #topo svg .link.inactive { |
| 139 | opacity: .2; |
| 140 | stroke-dasharray: 8 4; |
| 141 | } |
| 142 | |
Simon Hunt | a255a2c | 2014-11-13 22:29:35 -0800 | [diff] [blame] | 143 | #topo svg .link.secondary { |
Thomas Vachuska | a3148a7 | 2014-11-19 21:38:35 -0800 | [diff] [blame] | 144 | stroke: rgba(0,153,51,0.5); |
Thomas Vachuska | cd2920c | 2014-11-19 14:49:55 -0800 | [diff] [blame] | 145 | stroke-width: 3px; |
Simon Hunt | a255a2c | 2014-11-13 22:29:35 -0800 | [diff] [blame] | 146 | } |
Thomas Vachuska | 5fedb7a | 2014-11-20 00:55:08 -0800 | [diff] [blame] | 147 | #topo svg .link.primary { |
| 148 | stroke: #ffA300; |
| 149 | stroke-width: 4px; |
| 150 | } |
Simon Hunt | a255a2c | 2014-11-13 22:29:35 -0800 | [diff] [blame] | 151 | #topo svg .link.animated { |
Thomas Vachuska | a3148a7 | 2014-11-19 21:38:35 -0800 | [diff] [blame] | 152 | stroke: #ffA300; |
Simon Hunt | a255a2c | 2014-11-13 22:29:35 -0800 | [diff] [blame] | 153 | } |
| 154 | |
Simon Hunt | a255a2c | 2014-11-13 22:29:35 -0800 | [diff] [blame] | 155 | #topo svg .link.secondary.optical { |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 156 | stroke: rgba(128,64,255,0.5); |
Simon Hunt | a255a2c | 2014-11-13 22:29:35 -0800 | [diff] [blame] | 157 | stroke-width: 4px; |
| 158 | } |
Thomas Vachuska | 5fedb7a | 2014-11-20 00:55:08 -0800 | [diff] [blame] | 159 | #topo svg .link.primary.optical { |
| 160 | stroke: #74f; |
| 161 | stroke-width: 6px; |
| 162 | } |
Simon Hunt | a255a2c | 2014-11-13 22:29:35 -0800 | [diff] [blame] | 163 | #topo svg .link.animated.optical { |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 164 | stroke: #74f; |
Simon Hunt | a255a2c | 2014-11-13 22:29:35 -0800 | [diff] [blame] | 165 | stroke-width: 10px; |
| 166 | stroke-dasharray: 8 8 |
| 167 | } |
Thomas Vachuska | 4830d39 | 2014-11-09 17:09:56 -0800 | [diff] [blame] | 168 | |
Simon Hunt | e2575b6 | 2014-11-18 15:25:53 -0800 | [diff] [blame] | 169 | #topo svg .linkLabel rect { |
Thomas Vachuska | 20322ff | 2014-11-19 16:22:25 -0800 | [diff] [blame] | 170 | fill: #eee; |
| 171 | stroke: none; |
Simon Hunt | e2575b6 | 2014-11-18 15:25:53 -0800 | [diff] [blame] | 172 | } |
| 173 | #topo svg .linkLabel text { |
| 174 | text-anchor: middle; |
Thomas Vachuska | 20322ff | 2014-11-19 16:22:25 -0800 | [diff] [blame] | 175 | stroke: #777; |
| 176 | stroke-width: 0.1px; |
| 177 | font-size: 9pt; |
Simon Hunt | e2575b6 | 2014-11-18 15:25:53 -0800 | [diff] [blame] | 178 | } |
Simon Hunt | 61d0404 | 2014-11-11 17:27:16 -0800 | [diff] [blame] | 179 | |
Simon Hunt | ac9e24f | 2014-11-12 10:12:21 -0800 | [diff] [blame] | 180 | /* Fly-in details pane */ |
Simon Hunt | 61d0404 | 2014-11-11 17:27:16 -0800 | [diff] [blame] | 181 | |
| 182 | #topo-detail { |
| 183 | /* gets base CSS from .fpanel in floatPanel.css */ |
| 184 | } |
| 185 | |
Simon Hunt | a6a9fe7 | 2014-11-20 11:17:12 -0800 | [diff] [blame] | 186 | #topo-detail svg { |
| 187 | display: inline-block; |
| 188 | width: 42px; |
| 189 | height: 42px; |
Simon Hunt | 61d0404 | 2014-11-11 17:27:16 -0800 | [diff] [blame] | 190 | } |
| 191 | |
Simon Hunt | a6a9fe7 | 2014-11-20 11:17:12 -0800 | [diff] [blame] | 192 | #topo-detail svg .glyphIcon { |
| 193 | fill: black; |
| 194 | stroke: none; |
| 195 | fill-rule: evenodd; |
| 196 | } |
| 197 | |
| 198 | #topo-detail h2 { |
| 199 | position: absolute; |
Simon Hunt | a3dd957 | 2014-11-20 15:22:41 -0800 | [diff] [blame] | 200 | margin: 0px 4px; |
| 201 | top: 20px; |
| 202 | left: 50px; |
| 203 | color: black; |
| 204 | } |
| 205 | |
| 206 | #topo-detail h3 { |
Simon Hunt | a6a9fe7 | 2014-11-20 11:17:12 -0800 | [diff] [blame] | 207 | margin: 0px 4px; |
| 208 | top: 20px; |
| 209 | left: 50px; |
| 210 | color: black; |
Simon Hunt | 61d0404 | 2014-11-11 17:27:16 -0800 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | #topo-detail p, table { |
| 214 | margin: 4px 4px; |
| 215 | } |
| 216 | |
| 217 | #topo-detail td.label { |
| 218 | font-style: italic; |
| 219 | color: #777; |
| 220 | padding-right: 12px; |
| 221 | } |
| 222 | |
| 223 | #topo-detail td.value { |
Simon Hunt | 61d0404 | 2014-11-11 17:27:16 -0800 | [diff] [blame] | 224 | } |
| 225 | |
Simon Hunt | b53e068 | 2014-11-12 13:32:01 -0800 | [diff] [blame] | 226 | |
Simon Hunt | d72bc70 | 2014-11-13 18:38:04 -0800 | [diff] [blame] | 227 | #topo-detail .actionBtn { |
| 228 | margin: 6px 12px; |
| 229 | padding: 2px 6px; |
| 230 | font-size: 9pt; |
| 231 | cursor: pointer; |
| 232 | width: 50%; |
| 233 | text-align: center; |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 234 | |
| 235 | /* theme specific... */ |
Thomas Vachuska | 4731f12 | 2014-11-20 04:56:19 -0800 | [diff] [blame] | 236 | border: 2px solid #ddd; |
| 237 | border-radius: 4px; |
| 238 | color: #eee; |
| 239 | background: #888; |
Simon Hunt | d72bc70 | 2014-11-13 18:38:04 -0800 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | #topo-detail .actionBtn:hover { |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 243 | /* theme specific... */ |
Thomas Vachuska | 4731f12 | 2014-11-20 04:56:19 -0800 | [diff] [blame] | 244 | border: 2px solid #ddd; |
| 245 | color: #eee; |
| 246 | background: #444; |
Simon Hunt | d72bc70 | 2014-11-13 18:38:04 -0800 | [diff] [blame] | 247 | } |
| 248 | |
Simon Hunt | b53e068 | 2014-11-12 13:32:01 -0800 | [diff] [blame] | 249 | |
Simon Hunt | 61d0404 | 2014-11-11 17:27:16 -0800 | [diff] [blame] | 250 | #topo-detail hr { |
| 251 | height: 1px; |
| 252 | color: #ccc; |
| 253 | background-color: #ccc; |
| 254 | border: 0; |
| 255 | } |
| 256 | |
Simon Hunt | a5e8914 | 2014-11-14 07:00:33 -0800 | [diff] [blame] | 257 | /* ONOS instance stuff */ |
| 258 | |
| 259 | #topo-oibox { |
Simon Hunt | 9b228cb | 2014-11-19 13:18:57 -0800 | [diff] [blame] | 260 | width: 120px; |
Simon Hunt | a5e8914 | 2014-11-14 07:00:33 -0800 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | #topo-oibox .onosInst { |
Simon Hunt | 9c15eca | 2014-11-15 18:37:59 -0800 | [diff] [blame] | 264 | position: relative; |
Simon Hunt | 9b228cb | 2014-11-19 13:18:57 -0800 | [diff] [blame] | 265 | width: 88%; |
| 266 | left: 4%; |
Simon Hunt | 9c15eca | 2014-11-15 18:37:59 -0800 | [diff] [blame] | 267 | height: 80px; |
Simon Hunt | 9b228cb | 2014-11-19 13:18:57 -0800 | [diff] [blame] | 268 | margin: 8px 0; |
Simon Hunt | a5e8914 | 2014-11-14 07:00:33 -0800 | [diff] [blame] | 269 | cursor: pointer; |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 270 | |
Simon Hunt | 9b228cb | 2014-11-19 13:18:57 -0800 | [diff] [blame] | 271 | -moz-border-radius: 12px; |
| 272 | border-radius: 12px; |
| 273 | |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 274 | /* theme-related */ |
| 275 | color: #444; |
| 276 | background-color: #ccc; |
Simon Hunt | 9b228cb | 2014-11-19 13:18:57 -0800 | [diff] [blame] | 277 | border: 4px solid #aaa; |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | #topo-oibox .onosInst.online { |
| 281 | /* theme-related */ |
| 282 | color: #113; |
Simon Hunt | 9b228cb | 2014-11-19 13:18:57 -0800 | [diff] [blame] | 283 | background-color: #9cf; |
| 284 | border: 4px solid #357; |
Simon Hunt | a5e8914 | 2014-11-14 07:00:33 -0800 | [diff] [blame] | 285 | } |
| 286 | |
Simon Hunt | 9c15eca | 2014-11-15 18:37:59 -0800 | [diff] [blame] | 287 | #topo-oibox .onosInst .onosTitle { |
| 288 | text-align: center; |
Simon Hunt | 9b228cb | 2014-11-19 13:18:57 -0800 | [diff] [blame] | 289 | font-size: 10pt; |
Simon Hunt | 9c15eca | 2014-11-15 18:37:59 -0800 | [diff] [blame] | 290 | margin-top: 6px; |
Thomas Vachuska | 8954329 | 2014-11-19 11:28:33 -0800 | [diff] [blame] | 291 | color: #888; |
| 292 | } |
| 293 | |
| 294 | #topo-oibox .onosInst.online .onosTitle { |
| 295 | color: black; |
Simon Hunt | 9c15eca | 2014-11-15 18:37:59 -0800 | [diff] [blame] | 296 | } |
| 297 | |
Simon Hunt | 9590801 | 2014-11-20 10:20:26 -0800 | [diff] [blame] | 298 | #topo-oibox .onosInst svg .glyphIcon { |
Simon Hunt | 9c15eca | 2014-11-15 18:37:59 -0800 | [diff] [blame] | 299 | opacity: 0.5; |
Simon Hunt | 9590801 | 2014-11-20 10:20:26 -0800 | [diff] [blame] | 300 | fill: black; |
| 301 | stroke: none; |
| 302 | fill-rule: evenodd; |
Simon Hunt | 9c15eca | 2014-11-15 18:37:59 -0800 | [diff] [blame] | 303 | } |
Simon Hunt | 9590801 | 2014-11-20 10:20:26 -0800 | [diff] [blame] | 304 | #topo-oibox .onosInst.online svg .glyphIcon { |
| 305 | opacity: 1; |
| 306 | fill: black; |
| 307 | stroke: none; |
| 308 | fill-rule: evenodd; |
| 309 | } |
| 310 | |
Simon Hunt | 9c15eca | 2014-11-15 18:37:59 -0800 | [diff] [blame] | 311 | |
| 312 | #topo-oibox .onosInst.online img { |
| 313 | opacity: 1.0; |
Simon Hunt | fcfb46c | 2014-11-19 12:53:38 -0800 | [diff] [blame] | 314 | padding: 3px; |
Simon Hunt | 9c15eca | 2014-11-15 18:37:59 -0800 | [diff] [blame] | 315 | } |
| 316 | |
| 317 | #topo-oibox .onosInst img.ui { |
| 318 | opacity: 1; |
| 319 | position: absolute; |
| 320 | top: 3px; |
| 321 | right: 3px; |
| 322 | width: 20px; |
| 323 | height: 20px; |
| 324 | } |
| 325 | |
Simon Hunt | 9462e8c | 2014-11-14 17:28:09 -0800 | [diff] [blame] | 326 | #topo-oibox .onosInst.mastership { |
| 327 | opacity: 0.3; |
| 328 | } |
| 329 | #topo-oibox .onosInst.mastership.affinity { |
| 330 | opacity: 1.0; |
Simon Hunt | 7fa116d | 2014-11-17 14:16:55 -0800 | [diff] [blame] | 331 | box-shadow: 0 2px 8px #33e; |
Simon Hunt | 9462e8c | 2014-11-14 17:28:09 -0800 | [diff] [blame] | 332 | } |
| 333 | |
| 334 | |
| 335 | #topo svg .suppressed { |
Simon Hunt | a5e8914 | 2014-11-14 07:00:33 -0800 | [diff] [blame] | 336 | opacity: 0.2; |
| 337 | } |
| 338 | |
Simon Hunt | a6a9fe7 | 2014-11-20 11:17:12 -0800 | [diff] [blame] | 339 | /* Death Mask (starts hidden) */ |
Simon Hunt | 0c6d419 | 2014-11-12 12:07:10 -0800 | [diff] [blame] | 340 | |
| 341 | #topo-mask { |
| 342 | display: none; |
| 343 | position: absolute; |
| 344 | top: 0; |
| 345 | left: 0; |
| 346 | width: 10000px; |
| 347 | height: 8000px; |
| 348 | z-index: 5000; |
| 349 | background-color: rgba(0,0,0,0.75); |
| 350 | padding: 60px; |
| 351 | } |
| 352 | |
| 353 | #topo-mask p { |
| 354 | margin: 8px 20px; |
| 355 | color: #ddd; |
| 356 | font-size: 14pt; |
| 357 | font-style: italic; |
| 358 | } |
| 359 | |