1div.panoview_plugin {
2    position: relative;
3    top: 0;
4    left: 0;
5    border: solid 1px __border__;
6    background-color: #000;
7}
8div.panoview_plugin .well, div.panoview_plugin .surface {
9    margin: 0;
10    padding: 0;
11    width: 100%;
12    height: 100%;
13    position: absolute;
14    top: 0px;
15    left: 0px;
16    /* FIXME: let's apply this in GSV.js */
17    /*cursor: grab;*/
18    cursor: -moz-grab;
19        _cursor: url(gfx/grab.cur);
20}
21div.panoview_plugin .surface {
22    z-index: 20;
23    /*background: url(../gfx/center.gif) no-repeat center center;*/
24        _background: url(gfx/blank.gif) no-repeat center center; /* NOTE: required for IE to"see" the surface */
25}
26div.panoview_plugin .well {
27    overflow: hidden;
28    z-index: 10;
29}
30div.panoview_plugin .well .tile
31{
32    border: 0;
33    margin: 0;
34    padding: 0;
35    position: absolute;
36    top: 0px;
37    left: 0px;
38    display: block;
39    /*-moz-outline: 1px dashed #FF0000;*/
40}
41div.panoview_plugin .controls
42{
43    background-color: #FFFFFF;
44    position: absolute;
45    /* NOTE: the right and bottom can be adjusted when initialized */
46    right: 1px;
47    bottom: 1px;
48    width: 44px;
49    height: 20px;
50    margin: 0;
51    padding: 0 0 0 4px;
52    font-size: 12px;
53    line-height: 20px;
54    vertical-align: middle;
55    font-weight: bold;
56    border: 1px solid __border__;
57    z-index: 30;
58    opacity: 0.8;
59}
60div.panoview_plugin .controls a, div.panoview_plugin .controls span
61{
62    color: #000000;
63    text-decoration: none;
64    -moz-outline: none;
65    cursor: pointer;
66}
67div.panoview_plugin .controls a img, div.panoview_plugin .controls span img {
68    border: 0;
69    vertical-align: middle;
70}
71div.panoview_plugin .controls a:active, div.panoview_plugin .controls span:active {
72    color: #FF0000;
73}
74