1div.simileAjax-bubble-container {
2    margin:     0px;
3    padding:    0px;
4    border:     none;
5    position:   absolute;
6    z-index:    1000;
7}
8
9div.simileAjax-bubble-innerContainer {
10    margin:     0px;
11    padding:    0px;
12    border:     none;
13    position:   relative;
14    width:      100%;
15    height:     100%;
16    overflow:   visible;
17}
18
19div.simileAjax-bubble-contentContainer {
20    margin:     0px;
21    padding:    0px;
22    border:     none;
23    position:   absolute;
24    left:       0px;
25    top:        0px;
26    width:      100%;
27    height:     100%;
28    overflow:   auto;
29    background: white;
30}
31
32div.simileAjax-bubble-border-left {
33    position:   absolute;
34    left:       -50px;
35    top:        0px;
36    width:      50px;
37    height:     100%;
38}
39div.simileAjax-bubble-border-left-pngTranslucent {
40    background: url(../images/bubble-left.png) top right repeat-y;
41}
42
43div.simileAjax-bubble-border-right {
44    position:   absolute;
45    right:      -50px;
46    top:        0px;
47    width:      50px;
48    height:     100%;
49}
50.simileAjax-bubble-border-right-pngTranslucent {
51    background: url(../images/bubble-right.png) top left repeat-y;
52}
53
54div.simileAjax-bubble-border-top {
55    position:   absolute;
56    top:        -50px;
57    left:       0px;
58    width:      100%;
59    height:     50px;
60}
61.simileAjax-bubble-border-top-pngTranslucent {
62    background: url(../images/bubble-top.png) bottom left repeat-x;
63}
64
65div.simileAjax-bubble-border-bottom {
66    position:   absolute;
67    bottom:     -50px;
68    left:       0px;
69    width:      100%;
70    height:     50px;
71}
72.simileAjax-bubble-border-bottom-pngTranslucent {
73    background: url(../images/bubble-bottom.png) top left repeat-x;
74}
75
76div.simileAjax-bubble-border-top-left {
77    position:   absolute;
78    top:        -50px;
79    left:       -50px;
80    width:      50px;
81    height:     50px;
82}
83.simileAjax-bubble-border-top-left-pngTranslucent {
84    background: url(../images/bubble-top-left.png) bottom right no-repeat;
85}
86
87div.simileAjax-bubble-border-top-right {
88    position:   absolute;
89    top:        -50px;
90    right:      -50px;
91    width:      50px;
92    height:     50px;
93}
94.simileAjax-bubble-border-top-right-pngTranslucent {
95    background: url(../images/bubble-top-right.png) bottom left no-repeat;
96}
97
98div.simileAjax-bubble-border-bottom-left {
99    position:   absolute;
100    bottom:     -50px;
101    left:       -50px;
102    width:      50px;
103    height:     50px;
104}
105.simileAjax-bubble-border-bottom-left-pngTranslucent {
106    background: url(../images/bubble-bottom-left.png) top right no-repeat;
107}
108
109div.simileAjax-bubble-border-bottom-right {
110    position:   absolute;
111    bottom:     -50px;
112    right:      -50px;
113    width:      50px;
114    height:     50px;
115}
116.simileAjax-bubble-border-bottom-right-pngTranslucent {
117    background: url(../images/bubble-bottom-right.png) top left no-repeat;
118}
119
120div.simileAjax-bubble-arrow-point-left {
121    position:   absolute;
122    left:       -100px;
123    width:      100px;
124    height:     49px;
125}
126.simileAjax-bubble-arrow-point-left-pngTranslucent {
127    background: url(../images/bubble-arrow-point-left.png) center right no-repeat;
128}
129
130div.simileAjax-bubble-arrow-point-right {
131    position:   absolute;
132    right:      -100px;
133    width:      100px;
134    height:     49px;
135}
136.simileAjax-bubble-arrow-point-right-pngTranslucent {
137    background: url(../images/bubble-arrow-point-right.png) center left no-repeat;
138}
139
140div.simileAjax-bubble-arrow-point-up {
141    position:   absolute;
142    top:        -100px;
143    width:      49px;
144    height:     100px;
145}
146.simileAjax-bubble-arrow-point-up-pngTranslucent {
147    background: url(../images/bubble-arrow-point-up.png) bottom center no-repeat;
148}
149
150div.simileAjax-bubble-arrow-point-down {
151    position:   absolute;
152    bottom:     -100px;
153    width:      49px;
154    height:     100px;
155}
156.simileAjax-bubble-arrow-point-down-pngTranslucent {
157    background: url(../images/bubble-arrow-point-down.png) bottom center no-repeat;
158}
159
160
161div.simileAjax-bubble-close {
162    position:   absolute;
163    right:      -10px;
164    top:        -12px;
165    width:      16px;
166    height:     16px;
167    cursor:     pointer;
168}
169.simileAjax-bubble-close-pngTranslucent {
170    background: url(../images/close-button.png) no-repeat;
171}
172