jakewendt-surveyor 0.11.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (160) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +285 -0
  3. data/Rakefile +54 -0
  4. data/VERSION +1 -0
  5. data/app/controllers/surveyor_controller.rb +142 -0
  6. data/app/helpers/survey_form_builder.rb +37 -0
  7. data/app/helpers/surveyor_helper.rb +67 -0
  8. data/app/models/answer.rb +23 -0
  9. data/app/models/dependency.rb +50 -0
  10. data/app/models/dependency_condition.rb +47 -0
  11. data/app/models/question.rb +54 -0
  12. data/app/models/question_group.rb +33 -0
  13. data/app/models/response.rb +94 -0
  14. data/app/models/response_set.rb +316 -0
  15. data/app/models/survey.rb +172 -0
  16. data/app/models/survey_section.rb +18 -0
  17. data/app/models/validation.rb +38 -0
  18. data/app/models/validation_condition.rb +47 -0
  19. data/app/views/layouts/surveyor_default.html.erb +13 -0
  20. data/app/views/partials/_answer.html.haml +58 -0
  21. data/app/views/partials/_question.html.haml +80 -0
  22. data/app/views/partials/_question_group.html.haml +39 -0
  23. data/app/views/surveyor/edit.html.haml +38 -0
  24. data/app/views/surveyor/new.html.haml +16 -0
  25. data/app/views/surveyor/show.html.haml +12 -0
  26. data/config/routes.rb +11 -0
  27. data/features/step_definitions/surveyor_steps.rb +7 -0
  28. data/features/step_definitions/web_steps.rb +273 -0
  29. data/features/support/env.rb +57 -0
  30. data/features/support/paths.rb +25 -0
  31. data/features/surveyor.feature +11 -0
  32. data/generators/extend_surveyor/extend_surveyor_generator.rb +22 -0
  33. data/generators/extend_surveyor/templates/EXTENDING_SURVEYOR +17 -0
  34. data/generators/extend_surveyor/templates/extensions/survey_extensions.rb +24 -0
  35. data/generators/extend_surveyor/templates/extensions/surveyor_controller_extensions.rb +28 -0
  36. data/generators/extend_surveyor/templates/extensions/surveyor_custom.html.erb +13 -0
  37. data/generators/extend_surveyor/templates/extensions/surveyor_helper_extensions.rb +17 -0
  38. data/generators/surveyor/surveyor_generator.rb +67 -0
  39. data/generators/surveyor/templates/README +10 -0
  40. data/generators/surveyor/templates/assets/images/222222_11x11_icon_arrows_leftright.gif +0 -0
  41. data/generators/surveyor/templates/assets/images/222222_11x11_icon_arrows_updown.gif +0 -0
  42. data/generators/surveyor/templates/assets/images/222222_11x11_icon_close.gif +0 -0
  43. data/generators/surveyor/templates/assets/images/222222_11x11_icon_doc.gif +0 -0
  44. data/generators/surveyor/templates/assets/images/222222_11x11_icon_folder_closed.gif +0 -0
  45. data/generators/surveyor/templates/assets/images/222222_11x11_icon_folder_open.gif +0 -0
  46. data/generators/surveyor/templates/assets/images/222222_11x11_icon_minus.gif +0 -0
  47. data/generators/surveyor/templates/assets/images/222222_11x11_icon_plus.gif +0 -0
  48. data/generators/surveyor/templates/assets/images/222222_11x11_icon_resize_se.gif +0 -0
  49. data/generators/surveyor/templates/assets/images/222222_35x9_colorpicker_indicator.gif.gif +0 -0
  50. data/generators/surveyor/templates/assets/images/222222_7x7_arrow_down.gif +0 -0
  51. data/generators/surveyor/templates/assets/images/222222_7x7_arrow_left.gif +0 -0
  52. data/generators/surveyor/templates/assets/images/222222_7x7_arrow_right.gif +0 -0
  53. data/generators/surveyor/templates/assets/images/222222_7x7_arrow_up.gif +0 -0
  54. data/generators/surveyor/templates/assets/images/454545_11x11_icon_arrows_leftright.gif +0 -0
  55. data/generators/surveyor/templates/assets/images/454545_11x11_icon_arrows_updown.gif +0 -0
  56. data/generators/surveyor/templates/assets/images/454545_11x11_icon_close.gif +0 -0
  57. data/generators/surveyor/templates/assets/images/454545_11x11_icon_doc.gif +0 -0
  58. data/generators/surveyor/templates/assets/images/454545_11x11_icon_folder_closed.gif +0 -0
  59. data/generators/surveyor/templates/assets/images/454545_11x11_icon_folder_open.gif +0 -0
  60. data/generators/surveyor/templates/assets/images/454545_11x11_icon_minus.gif +0 -0
  61. data/generators/surveyor/templates/assets/images/454545_11x11_icon_plus.gif +0 -0
  62. data/generators/surveyor/templates/assets/images/454545_7x7_arrow_down.gif +0 -0
  63. data/generators/surveyor/templates/assets/images/454545_7x7_arrow_left.gif +0 -0
  64. data/generators/surveyor/templates/assets/images/454545_7x7_arrow_right.gif +0 -0
  65. data/generators/surveyor/templates/assets/images/454545_7x7_arrow_up.gif +0 -0
  66. data/generators/surveyor/templates/assets/images/888888_11x11_icon_arrows_leftright.gif +0 -0
  67. data/generators/surveyor/templates/assets/images/888888_11x11_icon_arrows_updown.gif +0 -0
  68. data/generators/surveyor/templates/assets/images/888888_11x11_icon_close.gif +0 -0
  69. data/generators/surveyor/templates/assets/images/888888_11x11_icon_doc.gif +0 -0
  70. data/generators/surveyor/templates/assets/images/888888_11x11_icon_folder_closed.gif +0 -0
  71. data/generators/surveyor/templates/assets/images/888888_11x11_icon_folder_open.gif +0 -0
  72. data/generators/surveyor/templates/assets/images/888888_11x11_icon_minus.gif +0 -0
  73. data/generators/surveyor/templates/assets/images/888888_11x11_icon_plus.gif +0 -0
  74. data/generators/surveyor/templates/assets/images/888888_7x7_arrow_down.gif +0 -0
  75. data/generators/surveyor/templates/assets/images/888888_7x7_arrow_left.gif +0 -0
  76. data/generators/surveyor/templates/assets/images/888888_7x7_arrow_right.gif +0 -0
  77. data/generators/surveyor/templates/assets/images/888888_7x7_arrow_up.gif +0 -0
  78. data/generators/surveyor/templates/assets/images/dadada_40x100_textures_02_glass_75.png +0 -0
  79. data/generators/surveyor/templates/assets/images/e6e6e6_40x100_textures_02_glass_75.png +0 -0
  80. data/generators/surveyor/templates/assets/images/ffffff_40x100_textures_01_flat_0.png +0 -0
  81. data/generators/surveyor/templates/assets/images/ffffff_40x100_textures_02_glass_65.png +0 -0
  82. data/generators/surveyor/templates/assets/javascripts/accessibleUISlider.jQuery.js +201 -0
  83. data/generators/surveyor/templates/assets/javascripts/jquery-1.2.6.js +3549 -0
  84. data/generators/surveyor/templates/assets/javascripts/jquery-ui-personalized-1.5.3.js +7616 -0
  85. data/generators/surveyor/templates/assets/javascripts/jquery.form.js +637 -0
  86. data/generators/surveyor/templates/assets/javascripts/surveyor.js +47 -0
  87. data/generators/surveyor/templates/assets/stylesheets/jquery-ui-slider-additions.css +71 -0
  88. data/generators/surveyor/templates/assets/stylesheets/reset.css +50 -0
  89. data/generators/surveyor/templates/assets/stylesheets/sass/surveyor.sass +243 -0
  90. data/generators/surveyor/templates/assets/stylesheets/surveyor.css +235 -0
  91. data/generators/surveyor/templates/assets/stylesheets/ui.theme.css +851 -0
  92. data/generators/surveyor/templates/initializers/haml.rb +8 -0
  93. data/generators/surveyor/templates/initializers/surveyor.rb +10 -0
  94. data/generators/surveyor/templates/migrate/add_correct_answer_id_to_questions.rb +9 -0
  95. data/generators/surveyor/templates/migrate/add_display_order_to_surveys.rb +9 -0
  96. data/generators/surveyor/templates/migrate/add_index_to_response_sets.rb +9 -0
  97. data/generators/surveyor/templates/migrate/add_index_to_surveys.rb +9 -0
  98. data/generators/surveyor/templates/migrate/add_manual_numbering.rb +11 -0
  99. data/generators/surveyor/templates/migrate/add_unique_indicies.rb +17 -0
  100. data/generators/surveyor/templates/migrate/create_answers.rb +37 -0
  101. data/generators/surveyor/templates/migrate/create_dependencies.rb +22 -0
  102. data/generators/surveyor/templates/migrate/create_dependency_conditions.rb +29 -0
  103. data/generators/surveyor/templates/migrate/create_question_groups.rb +27 -0
  104. data/generators/surveyor/templates/migrate/create_questions.rb +36 -0
  105. data/generators/surveyor/templates/migrate/create_response_sets.rb +22 -0
  106. data/generators/surveyor/templates/migrate/create_responses.rb +33 -0
  107. data/generators/surveyor/templates/migrate/create_survey_sections.rb +29 -0
  108. data/generators/surveyor/templates/migrate/create_surveys.rb +31 -0
  109. data/generators/surveyor/templates/migrate/create_validation_conditions.rb +32 -0
  110. data/generators/surveyor/templates/migrate/create_validations.rb +20 -0
  111. data/generators/surveyor/templates/surveys/kitchen_sink_survey.rb +218 -0
  112. data/generators/surveyor/templates/tasks/surveyor.rb +4 -0
  113. data/generators/test_surveyor/templates/TESTING_SURVEYOR +0 -0
  114. data/generators/test_surveyor/templates/environments/cucumber.rb +21 -0
  115. data/generators/test_surveyor/test_surveyor_generator.rb +15 -0
  116. data/jakewendt-surveyor.gemspec +212 -0
  117. data/lib/fixtures_extensions.rb +6 -0
  118. data/lib/jakewendt-surveyor.rb +1 -0
  119. data/lib/surveyor.rb +44 -0
  120. data/lib/surveyor/acts_as_response.rb +33 -0
  121. data/lib/surveyor/config.rb +45 -0
  122. data/lib/tasks/surveyor_tasks.rake +33 -0
  123. data/lib/xml_formatter.rb +12 -0
  124. data/rails/init.rb +1 -0
  125. data/script/surveyor/answer.rb +54 -0
  126. data/script/surveyor/base.rb +77 -0
  127. data/script/surveyor/dependency.rb +13 -0
  128. data/script/surveyor/dependency_condition.rb +40 -0
  129. data/script/surveyor/parser.rb +207 -0
  130. data/script/surveyor/question.rb +37 -0
  131. data/script/surveyor/question_group.rb +26 -0
  132. data/script/surveyor/specs/answer_spec.rb +29 -0
  133. data/script/surveyor/specs/question_spec.rb +63 -0
  134. data/script/surveyor/specs/spec_helper.rb +7 -0
  135. data/script/surveyor/specs/survey_section_spec.rb +23 -0
  136. data/script/surveyor/specs/validation_condition_spec.rb +20 -0
  137. data/script/surveyor/specs/validation_spec.rb +20 -0
  138. data/script/surveyor/survey.rb +35 -0
  139. data/script/surveyor/survey_section.rb +21 -0
  140. data/script/surveyor/validation.rb +21 -0
  141. data/script/surveyor/validation_condition.rb +21 -0
  142. data/script/surveyor/whr_dsl.tmproj +244 -0
  143. data/spec/controllers/surveyor_controller_spec.rb +193 -0
  144. data/spec/factories.rb +145 -0
  145. data/spec/lib/surveyor_spec.rb +44 -0
  146. data/spec/models/answer_spec.rb +29 -0
  147. data/spec/models/dependency_condition_spec.rb +321 -0
  148. data/spec/models/dependency_spec.rb +81 -0
  149. data/spec/models/question_group_spec.rb +35 -0
  150. data/spec/models/question_spec.rb +75 -0
  151. data/spec/models/response_set_spec.rb +245 -0
  152. data/spec/models/response_spec.rb +76 -0
  153. data/spec/models/survey_section_spec.rb +32 -0
  154. data/spec/models/survey_spec.rb +71 -0
  155. data/spec/models/validation_condition_spec.rb +105 -0
  156. data/spec/models/validation_spec.rb +59 -0
  157. data/spec/rcov.opts +2 -0
  158. data/spec/spec.opts +4 -0
  159. data/spec/spec_helper.rb +12 -0
  160. metadata +254 -0
@@ -0,0 +1,851 @@
1
+ /*
2
+ * jQuery UI screen structure and presentation
3
+ * This CSS file was generated by ThemeRoller, a Filament Group Project for jQuery UI
4
+ * Author: Scott Jehl, scott@filamentgroup.com, http://www.filamentgroup.com
5
+ * Visit ThemeRoller.com
6
+ */
7
+
8
+ /*
9
+ * Note: If your ThemeRoller settings have a font size set in ems, your components will scale according to their parent element's font size.
10
+ * As a rule of thumb, set your body's font size to 62.5% to make 1em = 10px.
11
+ * body {font-size: 62.5%;}
12
+ */
13
+
14
+
15
+
16
+ /*UI accordion*/
17
+ .ui-accordion {
18
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
19
+ font-family: Verdana, Arial, sans-serif;
20
+ font-size: 1.1em;
21
+ border-bottom: 1px solid #d3d3d3;
22
+ }
23
+ .ui-accordion-group {
24
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
25
+ border: 1px solid #d3d3d3;
26
+ border-bottom: none;
27
+ }
28
+ .ui-accordion-header {
29
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
30
+ cursor: pointer;
31
+ background: #e6e6e6 url(/images/surveyor/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
32
+ }
33
+ .ui-accordion-header a {
34
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
35
+ display: block;
36
+ font-size: 1em;
37
+ font-weight: normal;
38
+ text-decoration: none;
39
+ padding: .5em .5em .5em 1.7em;
40
+ color: #555555;
41
+ background: url(/images/surveyor/888888_7x7_arrow_right.gif) .5em 50% no-repeat;
42
+ }
43
+ .ui-accordion-header a:hover {
44
+ background: url(/images/surveyor/454545_7x7_arrow_right.gif) .5em 50% no-repeat;
45
+ color: #212121;
46
+ }
47
+ .ui-accordion-header:hover {
48
+ background: #dadada url(/images/surveyor/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
49
+ color: #212121;
50
+ }
51
+ .selected .ui-accordion-header, .selected .ui-accordion-header:hover {
52
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
53
+ }
54
+ .selected .ui-accordion-header a, .selected .ui-accordion-header a:hover {
55
+ color: #222222;
56
+ background: url(/images/surveyor/222222_7x7_arrow_down.gif) .5em 50% no-repeat;
57
+ }
58
+ .ui-accordion-content {
59
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
60
+ color: #222222;
61
+ font-size: 1em;
62
+ }
63
+ .ui-accordion-content p {
64
+ padding: 1em 1.7em 0.6em;
65
+ }
66
+
67
+
68
+
69
+
70
+
71
+
72
+ /*UI tabs*/
73
+ .ui-tabs-nav {
74
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
75
+ font-family: Verdana, Arial, sans-serif;
76
+ font-size: 1.1em;
77
+ float: left;
78
+ position: relative;
79
+ z-index: 1;
80
+ border-right: 1px solid #d3d3d3;
81
+ bottom: -1px;
82
+ }
83
+ .ui-tabs-nav li {
84
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
85
+ float: left;
86
+ border: 1px solid #d3d3d3;
87
+ border-right: none;
88
+ }
89
+ .ui-tabs-nav li a {
90
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
91
+ float: left;
92
+ font-size: 1em;
93
+ font-weight: normal;
94
+ text-decoration: none;
95
+ padding: .5em 1.7em;
96
+ color: #555555;
97
+ background: #e6e6e6 url(/images/surveyor/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
98
+ }
99
+ .ui-tabs-nav li a:hover {
100
+ background: #dadada url(/images/surveyor/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
101
+ color: #212121;
102
+ }
103
+ .ui-tabs-nav li.ui-tabs-selected {
104
+ border-bottom-color: #ffffff;
105
+ }
106
+ .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs-nav li.ui-tabs-selected a:hover {
107
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
108
+ color: #222222;
109
+ }
110
+ .ui-tabs-panel {
111
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
112
+ font-family: Verdana, Arial, sans-serif;
113
+ clear:left;
114
+ border: 1px solid #d3d3d3;
115
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
116
+ color: #222222;
117
+ padding: 1.5em 1.7em;
118
+ font-size: 1.1em;
119
+ }
120
+ .ui-tabs-hide {
121
+ display: none;/* for accessible hiding: position: absolute; left: -99999999px*/;
122
+ }
123
+
124
+
125
+
126
+
127
+
128
+ /*slider*/
129
+ .ui-slider {
130
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
131
+ font-family: Verdana, Arial, sans-serif;
132
+ font-size: 1.1em;
133
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
134
+ border: 1px solid #dddddd;
135
+ height: .8em;
136
+ position: relative;
137
+ }
138
+ .ui-slider-handle {
139
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
140
+ position: absolute;
141
+ z-index: 2;
142
+ top: -3px;
143
+ width: 1.2em;
144
+ height: 1.2em;
145
+ background: #e6e6e6 url(/images/surveyor/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
146
+ border: 1px solid #d3d3d3;
147
+ }
148
+ .ui-slider-handle:hover {
149
+ background: #dadada url(/images/surveyor/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
150
+ border: 1px solid #999999;
151
+ }
152
+ .ui-slider-handle-active, .ui-slider-handle-active:hover {
153
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
154
+ border: 1px solid #dddddd;
155
+ }
156
+ .ui-slider-range {
157
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
158
+ height: .8em;
159
+ background: #dadada url(/images/surveyor/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
160
+ position: absolute;
161
+ border: 1px solid #d3d3d3;
162
+ border-left: 0;
163
+ border-right: 0;
164
+ top: -1px;
165
+ z-index: 1;
166
+ opacity:.7;
167
+ filter:Alpha(Opacity=70);
168
+ }
169
+
170
+
171
+
172
+
173
+
174
+
175
+ /*dialog*/
176
+ .ui-dialog {
177
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
178
+ font-family: Verdana, Arial, sans-serif;
179
+ font-size: 1.1em;
180
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
181
+ color: #222222;
182
+ border: 4px solid #dddddd;
183
+ position: relative;
184
+ }
185
+ .ui-resizable-handle {
186
+ position: absolute;
187
+ font-size: 0.1px;
188
+ z-index: 99999;
189
+ }
190
+ .ui-resizable .ui-resizable-handle {
191
+ display: block;
192
+ }
193
+ body .ui-resizable-disabled .ui-resizable-handle { display: none; } /* use 'body' to make it more specific (css order) */
194
+ body .ui-resizable-autohide .ui-resizable-handle { display: none; } /* use 'body' to make it more specific (css order) */
195
+ .ui-resizable-n {
196
+ cursor: n-resize;
197
+ height: 7px;
198
+ width: 100%;
199
+ top: -5px;
200
+ left: 0px;
201
+ }
202
+ .ui-resizable-s {
203
+ cursor: s-resize;
204
+ height: 7px;
205
+ width: 100%;
206
+ bottom: -5px;
207
+ left: 0px;
208
+ }
209
+ .ui-resizable-e {
210
+ cursor: e-resize;
211
+ width: 7px;
212
+ right: -5px;
213
+ top: 0px;
214
+ height: 100%;
215
+ }
216
+ .ui-resizable-w {
217
+ cursor: w-resize;
218
+ width: 7px;
219
+ left: -5px;
220
+ top: 0px;
221
+ height: 100%;
222
+ }
223
+ .ui-resizable-se {
224
+ cursor: se-resize;
225
+ width: 13px;
226
+ height: 13px;
227
+ right: 0px;
228
+ bottom: 0px;
229
+ background: url(/images/surveyor/222222_11x11_icon_resize_se.gif) no-repeat 0 0;
230
+ }
231
+ .ui-resizable-sw {
232
+ cursor: sw-resize;
233
+ width: 9px;
234
+ height: 9px;
235
+ left: 0px;
236
+ bottom: 0px;
237
+ }
238
+ .ui-resizable-nw {
239
+ cursor: nw-resize;
240
+ width: 9px;
241
+ height: 9px;
242
+ left: 0px;
243
+ top: 0px;
244
+ }
245
+ .ui-resizable-ne {
246
+ cursor: ne-resize;
247
+ width: 9px;
248
+ height: 9px;
249
+ right: 0px;
250
+ top: 0px;
251
+ }
252
+ .ui-dialog-titlebar {
253
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
254
+ padding: .5em 1.5em .5em 1em;
255
+ color: #555555;
256
+ background: #e6e6e6 url(/images/surveyor/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
257
+ border-bottom: 1px solid #d3d3d3;
258
+ font-size: 1em;
259
+ font-weight: normal;
260
+ position: relative;
261
+ }
262
+ .ui-dialog-title {}
263
+ .ui-dialog-titlebar-close {
264
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
265
+ background: url(/images/surveyor/888888_11x11_icon_close.gif) 0 0 no-repeat;
266
+ position: absolute;
267
+ right: 8px;
268
+ top: .7em;
269
+ width: 11px;
270
+ height: 11px;
271
+ z-index: 100;
272
+ }
273
+ .ui-dialog-titlebar-close-hover, .ui-dialog-titlebar-close:hover {
274
+ background: url(/images/surveyor/454545_11x11_icon_close.gif) 0 0 no-repeat;
275
+ }
276
+ .ui-dialog-titlebar-close:active {
277
+ background: url(/images/surveyor/222222_11x11_icon_close.gif) 0 0 no-repeat;
278
+ }
279
+ .ui-dialog-titlebar-close span {
280
+ display: none;
281
+ }
282
+ .ui-dialog-content {
283
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
284
+ color: #222222;
285
+ padding: 1.5em 1.7em;
286
+ }
287
+ .ui-dialog-buttonpane {
288
+ position: absolute;
289
+ bottom: 0;
290
+ width: 100%;
291
+ text-align: left;
292
+ border-top: 1px solid #dddddd;
293
+ background: #ffffff;
294
+ }
295
+ .ui-dialog-buttonpane button {
296
+ margin: .5em 0 .5em 8px;
297
+ color: #555555;
298
+ background: #e6e6e6 url(/images/surveyor/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
299
+ font-size: 1em;
300
+ border: 1px solid #d3d3d3;
301
+ cursor: pointer;
302
+ padding: .2em .6em .3em .6em;
303
+ line-height: 1.4em;
304
+ }
305
+ .ui-dialog-buttonpane button:hover {
306
+ color: #212121;
307
+ background: #dadada url(/images/surveyor/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
308
+ border: 1px solid #999999;
309
+ }
310
+ .ui-dialog-buttonpane button:active {
311
+ color: #222222;
312
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
313
+ border: 1px solid #dddddd;
314
+ }
315
+ /* This file skins dialog */
316
+ .ui-dialog.ui-draggable .ui-dialog-titlebar,
317
+ .ui-dialog.ui-draggable .ui-dialog-titlebar {
318
+ cursor: move;
319
+ }
320
+
321
+ /*datepicker*/
322
+ /* Main Style Sheet for jQuery UI date picker */
323
+ .ui-datepicker-div, .ui-datepicker-inline, #ui-datepicker-div {
324
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
325
+ font-family: Verdana, Arial, sans-serif;
326
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
327
+ font-size: 1.1em;
328
+ border: 4px solid #dddddd;
329
+ width: 15.5em;
330
+ padding: 2.5em .5em .5em .5em;
331
+ position: relative;
332
+ }
333
+ .ui-datepicker-div, #ui-datepicker-div {
334
+ z-index: 9999; /*must have*/
335
+ display: none;
336
+ }
337
+ .ui-datepicker-inline {
338
+ float: left;
339
+ display: block;
340
+ }
341
+ .ui-datepicker-control {
342
+ display: none;
343
+ }
344
+ .ui-datepicker-current {
345
+ display: none;
346
+ }
347
+ .ui-datepicker-next, .ui-datepicker-prev {
348
+ position: absolute;
349
+ left: .5em;
350
+ top: .5em;
351
+ background: #e6e6e6 url(/images/surveyor/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
352
+ }
353
+ .ui-datepicker-next {
354
+ left: 14.6em;
355
+ }
356
+ .ui-datepicker-next:hover, .ui-datepicker-prev:hover {
357
+ background: #dadada url(/images/surveyor/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
358
+ }
359
+ .ui-datepicker-next a, .ui-datepicker-prev a {
360
+ text-indent: -999999px;
361
+ width: 1.3em;
362
+ height: 1.4em;
363
+ display: block;
364
+ font-size: 1em;
365
+ background: url(/images/surveyor/888888_7x7_arrow_left.gif) 50% 50% no-repeat;
366
+ border: 1px solid #d3d3d3;
367
+ cursor: pointer;
368
+ }
369
+ .ui-datepicker-next a {
370
+ background: url(/images/surveyor/888888_7x7_arrow_right.gif) 50% 50% no-repeat;
371
+ }
372
+ .ui-datepicker-prev a:hover {
373
+ background: url(/images/surveyor/454545_7x7_arrow_left.gif) 50% 50% no-repeat;
374
+ }
375
+ .ui-datepicker-next a:hover {
376
+ background: url(/images/surveyor/454545_7x7_arrow_right.gif) 50% 50% no-repeat;
377
+ }
378
+ .ui-datepicker-prev a:active {
379
+ background: url(/images/surveyor/222222_7x7_arrow_left.gif) 50% 50% no-repeat;
380
+ }
381
+ .ui-datepicker-next a:active {
382
+ background: url(/images/surveyor/222222_7x7_arrow_right.gif) 50% 50% no-repeat;
383
+ }
384
+ .ui-datepicker-header select {
385
+ border: 1px solid #d3d3d3;
386
+ color: #555555;
387
+ background: #e6e6e6;
388
+ font-size: 1em;
389
+ line-height: 1.4em;
390
+ position: absolute;
391
+ top: .5em;
392
+ margin: 0 !important;
393
+ }
394
+ .ui-datepicker-header option:focus, .ui-datepicker-header option:hover {
395
+ background: #dadada;
396
+ }
397
+ .ui-datepicker-header select.ui-datepicker-new-month {
398
+ width: 7em;
399
+ left: 2.2em;
400
+ }
401
+ .ui-datepicker-header select.ui-datepicker-new-year {
402
+ width: 5em;
403
+ left: 9.4em;
404
+ }
405
+ table.ui-datepicker {
406
+ width: 15.5em;
407
+ text-align: right;
408
+ }
409
+ table.ui-datepicker td a {
410
+ padding: .1em .3em .1em 0;
411
+ display: block;
412
+ color: #555555;
413
+ background: #e6e6e6 url(/images/surveyor/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
414
+ cursor: pointer;
415
+ border: 1px solid #ffffff;
416
+ }
417
+ table.ui-datepicker td a:hover {
418
+ border: 1px solid #999999;
419
+ color: #212121;
420
+ background: #dadada url(/images/surveyor/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
421
+ }
422
+ table.ui-datepicker td a:active {
423
+ border: 1px solid #dddddd;
424
+ color: #222222;
425
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
426
+ }
427
+ table.ui-datepicker .ui-datepicker-title-row td {
428
+ padding: .3em 0;
429
+ text-align: center;
430
+ font-size: .9em;
431
+ color: #222222;
432
+ text-transform: uppercase;
433
+ }
434
+ table.ui-datepicker .ui-datepicker-title-row td a {
435
+ color: #222222;
436
+ }
437
+ .ui-datepicker-cover {
438
+ display: none;
439
+ display/**/: block;
440
+ position: absolute;
441
+ z-index: -1;
442
+ filter: mask();
443
+ top: -4px;
444
+ left: -4px;
445
+ width: 193px;
446
+ height: 200px;
447
+ }
448
+
449
+
450
+
451
+
452
+
453
+
454
+
455
+
456
+
457
+
458
+
459
+ /* ui-autocomplete */
460
+ /*
461
+ .ui-autocomplete-input {
462
+ border: 1px solid #dddddd;
463
+ color: #222222;
464
+ background: #ffffff;
465
+ }
466
+ */
467
+ .ui-autocomplete-results {
468
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
469
+ font-family: Verdana, Arial, sans-serif;
470
+ font-size: 1.1em;
471
+ z-index: 9999;
472
+ }
473
+ .ui-autocomplete-results ul, .ui-autocomplete-results li {
474
+ margin: 0;
475
+ padding: 0;
476
+ list-style: none;
477
+ }
478
+ .ui-autocomplete-results ul {
479
+ border: 1px solid #dddddd;
480
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
481
+ border-top: 0;
482
+ border-bottom: 0;
483
+ margin-bottom: -1px;
484
+ }
485
+ .ui-autocomplete-results li {
486
+ color: #222222;
487
+ padding: .4em .5em;
488
+ font-size: 1em;
489
+ font-weight: normal;
490
+ position: relative;
491
+ margin: 1px 0;
492
+ }
493
+ .ui-autocomplete-results li.ui-hover-state, .ui-autocomplete-results li.ui-active-state {
494
+ margin: 0;
495
+ }
496
+
497
+ .ui-autocomplete-results li.ui-autocomplete-over {
498
+ border-top: 1px solid #999999;
499
+ border-bottom: 1px solid #999999;
500
+ background: #dadada url(/images/surveyor/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
501
+ color: #212121 !important;
502
+ }
503
+ .ui-autocomplete-results li.ui-autocomplete-active {
504
+ border-top: 1px solid #dddddd;
505
+ border-bottom: 1px solid #dddddd;
506
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
507
+ color: #222222 !important;
508
+ outline: none;
509
+ }
510
+ .ui-autocomplete-results li:first-child, .ui-autocomplete-results li.first {
511
+ margin-top: 0;
512
+ }
513
+ .ui-autocomplete-results li:last-child, .ui-autocomplete-results li.last {
514
+ margin-bottom: 0;
515
+ }
516
+
517
+
518
+
519
+
520
+
521
+
522
+
523
+
524
+
525
+
526
+
527
+ /*UI ProgressBar */
528
+ .ui-progressbar {
529
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
530
+ font-family: Verdana, Arial, sans-serif;
531
+ font-size: 1.1em;
532
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
533
+ border: 1px solid #dddddd;
534
+ position: relative;
535
+ height: 1.8em;
536
+ }
537
+ .ui-progressbar-bar {
538
+ background: #e6e6e6 url(/images/surveyor/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
539
+ overflow: hidden;
540
+ border: 1px solid #d3d3d3;
541
+ margin:-1px;
542
+ z-index: 2;
543
+ position: relative;
544
+ height: 1.8em;
545
+ opacity:.7;
546
+ filter:Alpha(Opacity=70);
547
+ }
548
+ .ui-progressbar-wrap {
549
+ position: absolute;
550
+ top: 0;
551
+ left: 0;
552
+ }
553
+ .ui-progressbar-text {
554
+ color: #555555;
555
+ padding: .2em .5em;
556
+ font-weight: normal;
557
+ position: absolute;
558
+ top: 0;
559
+ left: 0;
560
+ }
561
+ .ui-progressbar-text-back {
562
+ color: #222222;
563
+ z-index: 0;
564
+ }
565
+ .ui-progressbar-disabled {
566
+ opacity:.5;
567
+ filter:Alpha(Opacity=50);
568
+ }
569
+
570
+
571
+
572
+
573
+
574
+
575
+ /*UI Colorpicker */
576
+ .ui-colorpicker {
577
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
578
+ font-family: Verdana, Arial, sans-serif;
579
+ font-size: 1.1em;
580
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
581
+ border: 4px solid #dddddd;
582
+ padding: 5px;
583
+ width: 360px;
584
+ position: relative;
585
+ }
586
+ .ui-colorpicker-color {
587
+ float: left;
588
+ width: 150px;
589
+ height: 150px;
590
+ margin-right: 15px;
591
+ }
592
+ .ui-colorpicker-color div { /* is this extra div needed? why not just .ui-colorpicker-color ? */
593
+ border: 1px solid #d3d3d3;
594
+ height: 150px;
595
+ background: url(/images/surveyor/_x_.);
596
+ position: relative;
597
+ }
598
+ .ui-colorpicker-color div div {/* shouldn't this have a class like ui-colorpicker-selector ? */
599
+ width: 11px;
600
+ height: 11px;
601
+ background: url(/images/surveyor/_x_.);
602
+ position: absolute;
603
+ border: 0;
604
+ margin: -5px 0 0 -5px;
605
+ float: none;
606
+ }
607
+ .ui-colorpicker-hue {
608
+ border: 1px solid #d3d3d3;
609
+ float: left;
610
+ width: 17px;
611
+ height: 150px;
612
+ background: url(/images/surveyor/_x_.);
613
+ position: relative;
614
+ margin-right: 15px;
615
+ }
616
+ .ui-colorpicker-hue div {
617
+ background:transparent url(/images/surveyor/222222_35x9_colorpicker_indicator.gif.gif);
618
+ height:9px;
619
+ left:-9px;
620
+ margin:-4px 0 0;
621
+ position:absolute;
622
+ width:35px;
623
+ cursor: ns-resize;
624
+ }
625
+ .ui-colorpicker-new-color, .ui-colorpicker-current-color {
626
+ float: left;
627
+ width: 6.5em;
628
+ height: 30px;
629
+ border: 1px solid #d3d3d3;
630
+ margin-right: 5px;
631
+ }
632
+ .ui-colorpicker-current-color {
633
+ margin-right: 0;
634
+ }
635
+
636
+ .ui-colorpicker-field, .ui-colorpicker-hex {
637
+ position: absolute;
638
+ width: 6em;
639
+ }
640
+ .ui-colorpicker-field label, .ui-colorpicker-field input,
641
+ .ui-colorpicker-hex label, .ui-colorpicker-hex input {
642
+ font-size: 1em;
643
+ color: #222222;
644
+ }
645
+ .ui-colorpicker-field label, .ui-colorpicker-hex label {
646
+ width: 1em;
647
+ margin-right: .3em;
648
+ }
649
+ .ui-colorpicker-field input, .ui-colorpicker-hex input {
650
+ border: 1px solid #dddddd;
651
+ color: #222222;
652
+ background: #ffffff;
653
+ width: 4.6em;
654
+ }
655
+ .ui-colorpicker-hex {
656
+ left: 205px;
657
+ top: 134px;
658
+ }
659
+ .ui-colorpicker-rgb-r {
660
+ top: 52px;
661
+ left: 205px;
662
+ }
663
+ .ui-colorpicker-rgb-g {
664
+ top: 78px;
665
+ left: 205px;
666
+ }
667
+ .ui-colorpicker-rgb-b {
668
+ top: 105px;
669
+ left: 205px;
670
+ }
671
+ .ui-colorpicker-hsb-h {
672
+ top: 52px;
673
+ left: 290px;
674
+ }
675
+ .ui-colorpicker-hsb-s {
676
+ top: 78px;
677
+ left: 290px;
678
+ }
679
+ .ui-colorpicker-hsb-b {
680
+ top: 105px;
681
+ left: 290px;
682
+ }
683
+
684
+ .ui-colorpicker-field label {
685
+ font-weight: normal;
686
+ }
687
+ .ui-colorpicker-field span {
688
+ width: 7px;
689
+ background: url(/images/surveyor/888888_11x11_icon_arrows_updown.gif) 50% 50% no-repeat;
690
+ right: 5px;
691
+ top: 0;
692
+ height: 20px;
693
+ position: absolute;
694
+ }
695
+ .ui-colorpicker-field span:hover {
696
+ background: url(/images/surveyor/454545_11x11_icon_arrows_updown.gif) 50% 50% no-repeat;
697
+ }
698
+
699
+ .ui-colorpicker-submit {
700
+ right: 14px;
701
+ top: 134px;
702
+ position: absolute;
703
+ }
704
+
705
+
706
+
707
+
708
+
709
+
710
+
711
+
712
+ /*
713
+ Generic ThemeRoller Classes
714
+ >> Make your jQuery Components ThemeRoller-Compatible!
715
+ */
716
+
717
+ /*component global class*/
718
+ .ui-component {
719
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
720
+ font-family: Verdana, Arial, sans-serif;
721
+ font-size: 1.1em;
722
+ }
723
+ /*component content styles*/
724
+ .ui-component-content {
725
+ border: 1px solid #dddddd;
726
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_01_flat_0.png) 0 0 repeat-x;
727
+ color: #222222;
728
+ }
729
+ .ui-component-content a {
730
+ color: #222222;
731
+ text-decoration: underline;
732
+ }
733
+ /*component states*/
734
+ .ui-default-state {
735
+ border: 1px solid #d3d3d3;
736
+ background: #e6e6e6 url(/images/surveyor/e6e6e6_40x100_textures_02_glass_75.png) 0 50% repeat-x;
737
+ font-weight: normal;
738
+ color: #555555 !important;
739
+ }
740
+ .ui-default-state a {
741
+ color: #555555;
742
+ }
743
+ .ui-default-state:hover, .ui-hover-state {
744
+ border: 1px solid #999999;
745
+ background: #dadada url(/images/surveyor/dadada_40x100_textures_02_glass_75.png) 0 50% repeat-x;
746
+ font-weight: normal;
747
+ color: #212121 !important;
748
+ }
749
+ .ui-hover-state a {
750
+ color: #212121;
751
+ }
752
+ .ui-default-state:active, .ui-active-state {
753
+ border: 1px solid #dddddd;
754
+ background: #ffffff url(/images/surveyor/ffffff_40x100_textures_02_glass_65.png) 0 50% repeat-x;
755
+ font-weight: normal;
756
+ color: #222222 !important;
757
+ outline: none;
758
+ }
759
+ .ui-active-state a {
760
+ color: #222222;
761
+ outline: none;
762
+ }
763
+ /*icons*/
764
+ .ui-arrow-right-default {background: url(/images/surveyor/888888_7x7_arrow_right.gif) no-repeat 50% 50%;}
765
+ .ui-arrow-right-default:hover, .ui-arrow-right-hover {background: url(/images/surveyor/454545_7x7_arrow_right.gif) no-repeat 50% 50%;}
766
+ .ui-arrow-right-default:active, .ui-arrow-right-active {background: url(/images/surveyor/222222_7x7_arrow_right.gif) no-repeat 50% 50%;}
767
+ .ui-arrow-right-content {background: url(/images/surveyor/222222_7x7_arrow_right.gif) no-repeat 50% 50%;}
768
+
769
+ .ui-arrow-left-default {background: url(/images/surveyor/888888_7x7_arrow_left.gif) no-repeat 50% 50%;}
770
+ .ui-arrow-left-default:hover, .ui-arrow-left-hover {background: url(/images/surveyor/454545_7x7_arrow_left.gif) no-repeat 50% 50%;}
771
+ .ui-arrow-left-default:active, .ui-arrow-left-active {background: url(/images/surveyor/222222_7x7_arrow_left.gif) no-repeat 50% 50%;}
772
+ .ui-arrow-left-content {background: url(/images/surveyor/222222_7x7_arrow_left.gif) no-repeat 50% 50%;}
773
+
774
+ .ui-arrow-down-default {background: url(/images/surveyor/888888_7x7_arrow_down.gif) no-repeat 50% 50%;}
775
+ .ui-arrow-down-default:hover, .ui-arrow-down-hover {background: url(/images/surveyor/454545_7x7_arrow_down.gif) no-repeat 50% 50%;}
776
+ .ui-arrow-down-default:active, .ui-arrow-down-active {background: url(/images/surveyor/222222_7x7_arrow_down.gif) no-repeat 50% 50%;}
777
+ .ui-arrow-down-content {background: url(/images/surveyor/222222_7x7_arrow_down.gif) no-repeat 50% 50%;}
778
+
779
+ .ui-arrow-up-default {background: url(/images/surveyor/888888_7x7_arrow_up.gif) no-repeat 50% 50%;}
780
+ .ui-arrow-up-default:hover, .ui-arrow-up-hover {background: url(/images/surveyor/454545_7x7_arrow_up.gif) no-repeat 50% 50%;}
781
+ .ui-arrow-up-default:active, .ui-arrow-up-active {background: url(/images/surveyor/222222_7x7_arrow_up.gif) no-repeat 50% 50%;}
782
+ .ui-arrow-up-content {background: url(/images/surveyor/222222_7x7_arrow_up.gif) no-repeat 50% 50%;}
783
+
784
+ .ui-close-default {background: url(/images/surveyor/888888_11x11_icon_close.gif) no-repeat 50% 50%;}
785
+ .ui-close-default:hover, .ui-close-hover {background: url(/images/surveyor/454545_11x11_icon_close.gif) no-repeat 50% 50%;}
786
+ .ui-close-default:active, .ui-close-active {background: url(/images/surveyor/222222_11x11_icon_close.gif) no-repeat 50% 50%;}
787
+ .ui-close-content {background: url(/images/surveyor/222222_11x11_icon_close.gif) no-repeat 50% 50%;}
788
+
789
+ .ui-folder-closed-default {background: url(/images/surveyor/888888_11x11_icon_folder_closed.gif) no-repeat 50% 50%;}
790
+ .ui-folder-closed-default:hover, .ui-folder-closed-hover {background: url(/images/surveyor/454545_11x11_icon_folder_closed.gif) no-repeat 50% 50%;}
791
+ .ui-folder-closed-default:active, .ui-folder-closed-active {background: url(/images/surveyor/222222_11x11_icon_folder_closed.gif) no-repeat 50% 50%;}
792
+ .ui-folder-closed-content {background: url(/images/surveyor/888888_11x11_icon_folder_closed.gif) no-repeat 50% 50%;}
793
+
794
+ .ui-folder-open-default {background: url(/images/surveyor/888888_11x11_icon_folder_open.gif) no-repeat 50% 50%;}
795
+ .ui-folder-open-default:hover, .ui-folder-open-hover {background: url(/images/surveyor/454545_11x11_icon_folder_open.gif) no-repeat 50% 50%;}
796
+ .ui-folder-open-default:active, .ui-folder-open-active {background: url(/images/surveyor/222222_11x11_icon_folder_open.gif) no-repeat 50% 50%;}
797
+ .ui-folder-open-content {background: url(/images/surveyor/222222_11x11_icon_folder_open.gif) no-repeat 50% 50%;}
798
+
799
+ .ui-doc-default {background: url(/images/surveyor/888888_11x11_icon_doc.gif) no-repeat 50% 50%;}
800
+ .ui-doc-default:hover, .ui-doc-hover {background: url(/images/surveyor/454545_11x11_icon_doc.gif) no-repeat 50% 50%;}
801
+ .ui-doc-default:active, .ui-doc-active {background: url(/images/surveyor/222222_11x11_icon_doc.gif) no-repeat 50% 50%;}
802
+ .ui-doc-content {background: url(/images/surveyor/222222_11x11_icon_doc.gif) no-repeat 50% 50%;}
803
+
804
+ .ui-arrows-leftright-default {background: url(/images/surveyor/888888_11x11_icon_arrows_leftright.gif) no-repeat 50% 50%;}
805
+ .ui-arrows-leftright-default:hover, .ui-arrows-leftright-hover {background: url(/images/surveyor/454545_11x11_icon_arrows_leftright.gif) no-repeat 50% 50%;}
806
+ .ui-arrows-leftright-default:active, .ui-arrows-leftright-active {background: url(/images/surveyor/222222_11x11_icon_arrows_leftright.gif) no-repeat 50% 50%;}
807
+ .ui-arrows-leftright-content {background: url(/images/surveyor/222222_11x11_icon_arrows_leftright.gif) no-repeat 50% 50%;}
808
+
809
+ .ui-arrows-updown-default {background: url(/images/surveyor/888888_11x11_icon_arrows_updown.gif) no-repeat 50% 50%;}
810
+ .ui-arrows-updown-default:hover, .ui-arrows-updown-hover {background: url(/images/surveyor/454545_11x11_icon_arrows_updown.gif) no-repeat 50% 50%;}
811
+ .ui-arrows-updown-default:active, .ui-arrows-updown-active {background: url(/images/surveyor/222222_11x11_icon_arrows_updown.gif) no-repeat 50% 50%;}
812
+ .ui-arrows-updown-content {background: url(/images/surveyor/222222_11x11_icon_arrows_updown.gif) no-repeat 50% 50%;}
813
+
814
+ .ui-minus-default {background: url(/images/surveyor/888888_11x11_icon_minus.gif) no-repeat 50% 50%;}
815
+ .ui-minus-default:hover, .ui-minus-hover {background: url(/images/surveyor/454545_11x11_icon_minus.gif) no-repeat 50% 50%;}
816
+ .ui-minus-default:active, .ui-minus-active {background: url(/images/surveyor/222222_11x11_icon_minus.gif) no-repeat 50% 50%;}
817
+ .ui-minus-content {background: url(/images/surveyor/222222_11x11_icon_minus.gif) no-repeat 50% 50%;}
818
+
819
+ .ui-plus-default {background: url(/images/surveyor/888888_11x11_icon_plus.gif) no-repeat 50% 50%;}
820
+ .ui-plus-default:hover, .ui-plus-hover {background: url(/images/surveyor/454545_11x11_icon_plus.gif) no-repeat 50% 50%;}
821
+ .ui-plus-default:active, .ui-plus-active {background: url(/images/surveyor/222222_11x11_icon_plus.gif) no-repeat 50% 50%;}
822
+ .ui-plus-content {background: url(/images/surveyor/222222_11x11_icon_plus.gif) no-repeat 50% 50%;}
823
+
824
+ /*hidden elements*/
825
+ .ui-hidden {
826
+ display: none;/* for accessible hiding: position: absolute; left: -99999999px*/;
827
+ }
828
+ .ui-accessible-hidden {
829
+ position: absolute; left: -99999999px;
830
+ }
831
+ /*reset styles*/
832
+ .ui-reset {
833
+ /*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
834
+ }
835
+ /*clearfix class*/
836
+ .ui-clearfix:after {
837
+ content: ".";
838
+ display: block;
839
+ height: 0;
840
+ clear: both;
841
+ visibility: hidden;
842
+ }
843
+ .ui-clearfix {display: inline-block;}
844
+ /* Hides from IE-mac \*/
845
+ * html .ui-clearfix {height: 1%;}
846
+ .ui-clearfix {display: block;}
847
+ /* End hide from IE-mac */
848
+
849
+ /* Note: for resizable styles, use the styles listed above in the dialog section */
850
+
851
+