coupler 0.0.1-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (258) hide show
  1. data/.document +5 -0
  2. data/.gitmodules +3 -0
  3. data/.rvmrc +1 -0
  4. data/.vimrc +40 -0
  5. data/Gemfile +27 -0
  6. data/Gemfile.lock +71 -0
  7. data/LICENSE +20 -0
  8. data/NOTES +6 -0
  9. data/README.rdoc +18 -0
  10. data/Rakefile +42 -0
  11. data/TODO +11 -0
  12. data/VERSION +1 -0
  13. data/bin/coupler +7 -0
  14. data/db/.gitignore +6 -0
  15. data/db/migrate/001_initial_schema.rb +166 -0
  16. data/db/migrate/002_stub.rb +4 -0
  17. data/db/migrate/003_stub.rb +4 -0
  18. data/db/migrate/004_create_comparisons.rb +28 -0
  19. data/db/migrate/005_move_database_name.rb +19 -0
  20. data/db/migrate/006_upgrade_comparisons.rb +34 -0
  21. data/db/migrate/007_add_which_to_comparisons.rb +23 -0
  22. data/db/migrate/008_add_result_field_to_transformations.rb +33 -0
  23. data/db/migrate/009_add_generated_flag_to_fields.rb +13 -0
  24. data/db/migrate/010_create_imports.rb +24 -0
  25. data/db/migrate/011_add_primary_key_type.rb +13 -0
  26. data/db/migrate/012_add_transformed_with_to_resources.rb +13 -0
  27. data/db/migrate/013_add_run_count_to_scenarios.rb +13 -0
  28. data/db/migrate/014_add_last_accessed_at_to_some_tables.rb +13 -0
  29. data/db/migrate/015_add_run_number_to_results.rb +15 -0
  30. data/db/migrate/016_fix_scenario_run_count.rb +27 -0
  31. data/db/migrate/017_rename_comparison_columns.rb +14 -0
  32. data/db/migrate/018_fix_scenario_linkage_type.rb +8 -0
  33. data/db/migrate/019_add_columns_to_imports.rb +24 -0
  34. data/db/migrate/020_rename_import_columns.rb +12 -0
  35. data/db/migrate/021_add_fields_to_connections.rb +15 -0
  36. data/db/migrate/022_remove_database_name_from_resources.rb +11 -0
  37. data/features/connections.feature +28 -0
  38. data/features/matchers.feature +35 -0
  39. data/features/projects.feature +11 -0
  40. data/features/resources.feature +62 -0
  41. data/features/scenarios.feature +45 -0
  42. data/features/step_definitions/coupler_steps.rb +145 -0
  43. data/features/step_definitions/matchers_steps.rb +26 -0
  44. data/features/step_definitions/resources_steps.rb +12 -0
  45. data/features/step_definitions/scenarios_steps.rb +7 -0
  46. data/features/step_definitions/transformations_steps.rb +3 -0
  47. data/features/support/env.rb +128 -0
  48. data/features/transformations.feature +22 -0
  49. data/features/wizard.feature +10 -0
  50. data/gfx/coupler-header.svg +213 -0
  51. data/gfx/coupler-sidebar.svg +656 -0
  52. data/gfx/coupler.svg +184 -0
  53. data/gfx/icon.svg +75 -0
  54. data/lib/coupler/base.rb +63 -0
  55. data/lib/coupler/config.rb +128 -0
  56. data/lib/coupler/data_uploader.rb +20 -0
  57. data/lib/coupler/database.rb +31 -0
  58. data/lib/coupler/extensions/connections.rb +57 -0
  59. data/lib/coupler/extensions/exceptions.rb +58 -0
  60. data/lib/coupler/extensions/imports.rb +43 -0
  61. data/lib/coupler/extensions/jobs.rb +21 -0
  62. data/lib/coupler/extensions/matchers.rb +64 -0
  63. data/lib/coupler/extensions/projects.rb +62 -0
  64. data/lib/coupler/extensions/resources.rb +89 -0
  65. data/lib/coupler/extensions/results.rb +100 -0
  66. data/lib/coupler/extensions/scenarios.rb +50 -0
  67. data/lib/coupler/extensions/transformations.rb +70 -0
  68. data/lib/coupler/extensions/transformers.rb +58 -0
  69. data/lib/coupler/extensions.rb +16 -0
  70. data/lib/coupler/helpers.rb +121 -0
  71. data/lib/coupler/import_buffer.rb +48 -0
  72. data/lib/coupler/logger.rb +16 -0
  73. data/lib/coupler/models/common_model.rb +104 -0
  74. data/lib/coupler/models/comparison.rb +166 -0
  75. data/lib/coupler/models/connection.rb +59 -0
  76. data/lib/coupler/models/field.rb +55 -0
  77. data/lib/coupler/models/import.rb +238 -0
  78. data/lib/coupler/models/job.rb +42 -0
  79. data/lib/coupler/models/jobify.rb +17 -0
  80. data/lib/coupler/models/matcher.rb +36 -0
  81. data/lib/coupler/models/project.rb +40 -0
  82. data/lib/coupler/models/resource.rb +287 -0
  83. data/lib/coupler/models/result.rb +92 -0
  84. data/lib/coupler/models/scenario/runner.rb +357 -0
  85. data/lib/coupler/models/scenario.rb +115 -0
  86. data/lib/coupler/models/transformation.rb +117 -0
  87. data/lib/coupler/models/transformer/runner.rb +28 -0
  88. data/lib/coupler/models/transformer.rb +110 -0
  89. data/lib/coupler/models.rb +30 -0
  90. data/lib/coupler/runner.rb +76 -0
  91. data/lib/coupler/scheduler.rb +56 -0
  92. data/lib/coupler.rb +34 -0
  93. data/log/.gitignore +1 -0
  94. data/misc/README +5 -0
  95. data/misc/jruby-json.license +57 -0
  96. data/misc/rack-flash.license +22 -0
  97. data/script/dbconsole.rb +5 -0
  98. data/src/edu/vanderbilt/coupler/Main.java +116 -0
  99. data/src/edu/vanderbilt/coupler/jruby.properties +1 -0
  100. data/tasks/annotations.rake +84 -0
  101. data/tasks/db.rake +120 -0
  102. data/tasks/environment.rake +12 -0
  103. data/tasks/jeweler.rake +43 -0
  104. data/tasks/package.rake +58 -0
  105. data/tasks/rdoc.rake +13 -0
  106. data/tasks/test.rake +63 -0
  107. data/tasks/vendor.rake +43 -0
  108. data/test/README.txt +6 -0
  109. data/test/config.yml +9 -0
  110. data/test/coupler/models/test_import.rb +221 -0
  111. data/test/factories.rb +91 -0
  112. data/test/fixtures/duplicate-keys.csv +5 -0
  113. data/test/fixtures/no-headers.csv +50 -0
  114. data/test/fixtures/people.csv +51 -0
  115. data/test/fixtures/varying-row-size.csv +4 -0
  116. data/test/helper.rb +156 -0
  117. data/test/integration/extensions/test_connections.rb +80 -0
  118. data/test/integration/extensions/test_imports.rb +94 -0
  119. data/test/integration/extensions/test_jobs.rb +52 -0
  120. data/test/integration/extensions/test_matchers.rb +134 -0
  121. data/test/integration/extensions/test_projects.rb +82 -0
  122. data/test/integration/extensions/test_resources.rb +150 -0
  123. data/test/integration/extensions/test_results.rb +89 -0
  124. data/test/integration/extensions/test_scenarios.rb +88 -0
  125. data/test/integration/extensions/test_transformations.rb +113 -0
  126. data/test/integration/extensions/test_transformers.rb +80 -0
  127. data/test/integration/test_field.rb +45 -0
  128. data/test/integration/test_import.rb +78 -0
  129. data/test/integration/test_running_scenarios.rb +379 -0
  130. data/test/integration/test_transformation.rb +56 -0
  131. data/test/integration/test_transforming.rb +154 -0
  132. data/test/table_sets.rb +76 -0
  133. data/test/unit/models/test_common_model.rb +130 -0
  134. data/test/unit/models/test_comparison.rb +619 -0
  135. data/test/unit/models/test_connection.rb +115 -0
  136. data/test/unit/models/test_field.rb +99 -0
  137. data/test/unit/models/test_import.rb +130 -0
  138. data/test/unit/models/test_job.rb +115 -0
  139. data/test/unit/models/test_matcher.rb +82 -0
  140. data/test/unit/models/test_project.rb +102 -0
  141. data/test/unit/models/test_resource.rb +564 -0
  142. data/test/unit/models/test_result.rb +90 -0
  143. data/test/unit/models/test_scenario.rb +199 -0
  144. data/test/unit/models/test_transformation.rb +193 -0
  145. data/test/unit/models/test_transformer.rb +188 -0
  146. data/test/unit/test_base.rb +60 -0
  147. data/test/unit/test_data_uploader.rb +27 -0
  148. data/test/unit/test_database.rb +23 -0
  149. data/test/unit/test_helpers.rb +58 -0
  150. data/test/unit/test_logger.rb +10 -0
  151. data/test/unit/test_models.rb +12 -0
  152. data/test/unit/test_runner.rb +76 -0
  153. data/test/unit/test_scheduler.rb +66 -0
  154. data/uploads/.gitignore +2 -0
  155. data/vendor/java/.gitignore +5 -0
  156. data/webroot/public/css/960.css +1 -0
  157. data/webroot/public/css/dataTables.css +1057 -0
  158. data/webroot/public/css/jquery-ui.css +572 -0
  159. data/webroot/public/css/jquery.treeview.css +68 -0
  160. data/webroot/public/css/reset.css +1 -0
  161. data/webroot/public/css/style.css +504 -0
  162. data/webroot/public/css/text.css +1 -0
  163. data/webroot/public/favicon.ico +0 -0
  164. data/webroot/public/images/12_col.gif +0 -0
  165. data/webroot/public/images/16_col.gif +0 -0
  166. data/webroot/public/images/add.png +0 -0
  167. data/webroot/public/images/ajax-loader.gif +0 -0
  168. data/webroot/public/images/cog.png +0 -0
  169. data/webroot/public/images/coupler.png +0 -0
  170. data/webroot/public/images/foo.png +0 -0
  171. data/webroot/public/images/hammer.png +0 -0
  172. data/webroot/public/images/header.png +0 -0
  173. data/webroot/public/images/home.gif +0 -0
  174. data/webroot/public/images/jobs.gif +0 -0
  175. data/webroot/public/images/sidebar-bottom.png +0 -0
  176. data/webroot/public/images/sidebar.png +0 -0
  177. data/webroot/public/images/treeview-default-line.gif +0 -0
  178. data/webroot/public/images/treeview-default.gif +0 -0
  179. data/webroot/public/images/ui-anim_basic_16x16.gif +0 -0
  180. data/webroot/public/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  181. data/webroot/public/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  182. data/webroot/public/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  183. data/webroot/public/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  184. data/webroot/public/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  185. data/webroot/public/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  186. data/webroot/public/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  187. data/webroot/public/images/ui-bg_highlight-hard_30_565356_1x100.png +0 -0
  188. data/webroot/public/images/ui-bg_highlight-hard_75_888588_1x100.png +0 -0
  189. data/webroot/public/images/ui-bg_highlight-soft_30_6e3b3a_1x100.png +0 -0
  190. data/webroot/public/images/ui-bg_highlight-soft_35_8e8b8e_1x100.png +0 -0
  191. data/webroot/public/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  192. data/webroot/public/images/ui-icons_222222_256x240.png +0 -0
  193. data/webroot/public/images/ui-icons_2e83ff_256x240.png +0 -0
  194. data/webroot/public/images/ui-icons_454545_256x240.png +0 -0
  195. data/webroot/public/images/ui-icons_888888_256x240.png +0 -0
  196. data/webroot/public/images/ui-icons_cd0a0a_256x240.png +0 -0
  197. data/webroot/public/images/ui-icons_ffffff_256x240.png +0 -0
  198. data/webroot/public/js/ajaxupload.js +673 -0
  199. data/webroot/public/js/application.js +40 -0
  200. data/webroot/public/js/jquery-ui.combobox.js +98 -0
  201. data/webroot/public/js/jquery-ui.js +9867 -0
  202. data/webroot/public/js/jquery-ui.min.js +559 -0
  203. data/webroot/public/js/jquery.dataTables.min.js +587 -0
  204. data/webroot/public/js/jquery.min.js +154 -0
  205. data/webroot/public/js/jquery.timeago.js +140 -0
  206. data/webroot/public/js/jquery.tooltip.min.js +19 -0
  207. data/webroot/public/js/jquery.treeview.min.js +15 -0
  208. data/webroot/public/js/resource.js +11 -0
  209. data/webroot/public/js/results.js +56 -0
  210. data/webroot/public/js/transformations.js +95 -0
  211. data/webroot/views/connections/index.erb +5 -0
  212. data/webroot/views/connections/list.erb +34 -0
  213. data/webroot/views/connections/new.erb +55 -0
  214. data/webroot/views/connections/show.erb +36 -0
  215. data/webroot/views/imports/edit.erb +60 -0
  216. data/webroot/views/imports/form.erb +81 -0
  217. data/webroot/views/imports/new.erb +89 -0
  218. data/webroot/views/index.erb +12 -0
  219. data/webroot/views/jobs/index.erb +7 -0
  220. data/webroot/views/jobs/list.erb +24 -0
  221. data/webroot/views/layout.erb +38 -0
  222. data/webroot/views/matchers/form.erb +250 -0
  223. data/webroot/views/matchers/list.erb +32 -0
  224. data/webroot/views/projects/form.erb +14 -0
  225. data/webroot/views/projects/index.erb +96 -0
  226. data/webroot/views/projects/show.erb +24 -0
  227. data/webroot/views/resources/edit.erb +88 -0
  228. data/webroot/views/resources/index.erb +5 -0
  229. data/webroot/views/resources/list.erb +27 -0
  230. data/webroot/views/resources/new.erb +121 -0
  231. data/webroot/views/resources/show.erb +86 -0
  232. data/webroot/views/resources/transform.erb +2 -0
  233. data/webroot/views/results/csv.erb +12 -0
  234. data/webroot/views/results/details.erb +15 -0
  235. data/webroot/views/results/index.erb +2 -0
  236. data/webroot/views/results/list.erb +22 -0
  237. data/webroot/views/results/record.erb +24 -0
  238. data/webroot/views/results/show.erb +68 -0
  239. data/webroot/views/scenarios/index.erb +5 -0
  240. data/webroot/views/scenarios/list.erb +20 -0
  241. data/webroot/views/scenarios/new.erb +99 -0
  242. data/webroot/views/scenarios/run.erb +2 -0
  243. data/webroot/views/scenarios/show.erb +50 -0
  244. data/webroot/views/sidebar.erb +106 -0
  245. data/webroot/views/transformations/create.erb +115 -0
  246. data/webroot/views/transformations/for.erb +16 -0
  247. data/webroot/views/transformations/index.erb +2 -0
  248. data/webroot/views/transformations/list.erb +29 -0
  249. data/webroot/views/transformations/new.erb +126 -0
  250. data/webroot/views/transformations/preview.erb +46 -0
  251. data/webroot/views/transformers/edit.erb +6 -0
  252. data/webroot/views/transformers/form.erb +58 -0
  253. data/webroot/views/transformers/index.erb +2 -0
  254. data/webroot/views/transformers/list.erb +25 -0
  255. data/webroot/views/transformers/new.erb +5 -0
  256. data/webroot/views/transformers/preview.erb +23 -0
  257. data/webroot/views/transformers/show.erb +0 -0
  258. metadata +558 -0
@@ -0,0 +1,1057 @@
1
+ /*
2
+ * File: demo_table.css
3
+ * CVS: $Id$
4
+ * Description: CSS descriptions for DataTables demo pages
5
+ * Author: Allan Jardine
6
+ * Created: Tue May 12 06:47:22 BST 2009
7
+ * Modified: $Date$ by $Author$
8
+ * Language: CSS
9
+ * Project: DataTables
10
+ *
11
+ * Copyright 2009 Allan Jardine. All Rights Reserved.
12
+ *
13
+ * ***************************************************************************
14
+ * DESCRIPTION
15
+ *
16
+ * The styles given here are suitable for the demos that are used with the standard DataTables
17
+ * distribution (see www.datatables.net). You will most likely wish to modify these styles to
18
+ * meet the layout requirements of your site.
19
+ *
20
+ * Common issues:
21
+ * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
22
+ * no conflict between the two pagination types. If you want to use full_numbers pagination
23
+ * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
24
+ * modify that selector.
25
+ * Note that the path used for Images is relative. All images are by default located in
26
+ * ../images/ - relative to this CSS file.
27
+ */
28
+
29
+ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
30
+ * DataTables features
31
+ */
32
+
33
+ table.dataTable {
34
+ margin-bottom: 0;
35
+ width: 100%;
36
+ }
37
+ table.dataTable td {
38
+ padding: 0.3em 0.5em;
39
+ }
40
+
41
+ .dataTables_wrapper {
42
+ position: relative;
43
+ clear: both;
44
+ zoom: 1; /* Feeling sorry for IE */
45
+ margin-bottom: 1em;
46
+ }
47
+
48
+ .dataTables_processing {
49
+ position: absolute;
50
+ top: 50%;
51
+ left: 50%;
52
+ width: 250px;
53
+ height: 30px;
54
+ margin-left: -125px;
55
+ margin-top: -15px;
56
+ padding: 14px 0 2px 0;
57
+ border: 1px solid #ddd;
58
+ text-align: center;
59
+ color: #999;
60
+ font-size: 14px;
61
+ background-color: white;
62
+ }
63
+
64
+ .fg-toolbar {
65
+ padding: 0.3em 0.5em;
66
+ }
67
+
68
+ .css_right {
69
+ float: right;
70
+ }
71
+
72
+ .dataTables_length {
73
+ width: 40%;
74
+ float: left;
75
+ }
76
+
77
+ .dataTables_filter {
78
+ width: 50%;
79
+ float: right;
80
+ text-align: right;
81
+ }
82
+
83
+ .dataTables_info {
84
+ width: 60%;
85
+ float: left;
86
+ }
87
+
88
+ .dataTables_paginate {
89
+ width: 44px;
90
+ * width: 50px;
91
+ float: right;
92
+ text-align: right;
93
+ }
94
+ .dataTables_paginate span {
95
+ margin-top: 2px;
96
+ margin-left: 5px;
97
+ float: left;
98
+ vertical-align: middle;
99
+ }
100
+
101
+ /* Pagination nested */
102
+ .paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
103
+ height: 19px;
104
+ width: 19px;
105
+ margin-left: 3px;
106
+ float: left;
107
+ }
108
+
109
+ .paginate_disabled_previous {
110
+ background-image: url('../images/back_disabled.jpg');
111
+ }
112
+
113
+ .paginate_enabled_previous {
114
+ background-image: url('../images/back_enabled.jpg');
115
+ }
116
+
117
+ .paginate_disabled_next {
118
+ background-image: url('../images/forward_disabled.jpg');
119
+ }
120
+
121
+ .paginate_enabled_next {
122
+ background-image: url('../images/forward_enabled.jpg');
123
+ }
124
+
125
+
126
+
127
+ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
128
+ * DataTables display
129
+ */
130
+ table.display {
131
+ margin: 0 auto;
132
+ width: 100%;
133
+ clear: both;
134
+ }
135
+
136
+ table.display thead th {
137
+ padding: 3px 18px 3px 10px;
138
+ border-bottom: 1px solid black;
139
+ font-weight: bold;
140
+ cursor: pointer;
141
+ * cursor: hand;
142
+ }
143
+
144
+ table.display tfoot th {
145
+ padding: 3px 10px;
146
+ border-top: 1px solid black;
147
+ font-weight: bold;
148
+ }
149
+
150
+ table.display tr.heading2 td {
151
+ border-bottom: 1px solid #aaa;
152
+ }
153
+
154
+ table.display td {
155
+ padding: 3px 10px;
156
+ }
157
+
158
+ table.display td.center {
159
+ text-align: center;
160
+ }
161
+
162
+
163
+
164
+ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
165
+ * DataTables sorting
166
+ */
167
+
168
+ .sorting_asc {
169
+ background: url('../images/sort_asc.png') no-repeat center right;
170
+ }
171
+
172
+ .sorting_desc {
173
+ background: url('../images/sort_desc.png') no-repeat center right;
174
+ }
175
+
176
+ .sorting {
177
+ background: url('../images/sort_both.png') no-repeat center right;
178
+ }
179
+
180
+ .sorting_asc_disabled {
181
+ background: url('../images/sort_asc_disabled.png') no-repeat center right;
182
+ }
183
+
184
+ .sorting_desc_disabled {
185
+ background: url('../images/sort_desc_disabled.png') no-repeat center right;
186
+ }
187
+
188
+
189
+
190
+
191
+
192
+ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
193
+ * DataTables row classes
194
+ */
195
+
196
+ tr.even {
197
+ background-color: #eee;
198
+ }
199
+
200
+ tr.odd {
201
+ background-color: white;
202
+ }
203
+
204
+
205
+
206
+
207
+
208
+ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
209
+ * Misc
210
+ */
211
+ .top, .bottom {
212
+ padding: 15px;
213
+ background-color: #F5F5F5;
214
+ border: 1px solid #CCCCCC;
215
+ }
216
+
217
+ .top .dataTables_info {
218
+ float: none;
219
+ }
220
+
221
+ .clear {
222
+ clear: both;
223
+ }
224
+
225
+ .dataTables_empty {
226
+ text-align: center;
227
+ }
228
+
229
+ tfoot input {
230
+ margin: 0.5em 0;
231
+ width: 100%;
232
+ color: #444;
233
+ }
234
+
235
+ tfoot input.search_init {
236
+ color: #999;
237
+ }
238
+
239
+ td.group {
240
+ background-color: #d1cfd0;
241
+ border-bottom: 2px solid #A19B9E;
242
+ border-top: 2px solid #A19B9E;
243
+ }
244
+
245
+ td.details {
246
+ background-color: #d1cfd0;
247
+ border: 2px solid #A19B9E;
248
+ }
249
+
250
+
251
+ .example_alt_pagination div.dataTables_info {
252
+ width: 40%;
253
+ }
254
+
255
+ .paging_full_numbers {
256
+ float: right;
257
+ height: 22px;
258
+ line-height: 22px;
259
+ }
260
+
261
+ .paging_full_numbers span.paginate_button,
262
+ .paging_full_numbers span.paginate_active {
263
+ border: 1px solid #aaa;
264
+ -webkit-border-radius: 5px;
265
+ -moz-border-radius: 5px;
266
+ padding: 2px 5px;
267
+ margin: 0 3px;
268
+ cursor: pointer;
269
+ *cursor: hand;
270
+ }
271
+
272
+ .paging_full_numbers span.paginate_button {
273
+ background-color: #ddd;
274
+ }
275
+
276
+ .paging_full_numbers span.paginate_button:hover {
277
+ background-color: #ccc;
278
+ }
279
+
280
+ .paging_full_numbers span.paginate_active {
281
+ background-color: #99B3FF;
282
+ }
283
+
284
+ table.display tr.even.row_selected td {
285
+ background-color: #B0BED9;
286
+ }
287
+
288
+ table.display tr.odd.row_selected td {
289
+ background-color: #9FAFD1;
290
+ }
291
+
292
+
293
+ /*
294
+ * Sorting classes for columns
295
+ */
296
+ /* For the standard odd/even */
297
+ tr.odd td.sorting_1 {
298
+ background-color: #D3D6FF;
299
+ }
300
+
301
+ tr.odd td.sorting_2 {
302
+ background-color: #DADCFF;
303
+ }
304
+
305
+ tr.odd td.sorting_3 {
306
+ background-color: #E0E2FF;
307
+ }
308
+
309
+ tr.even td.sorting_1 {
310
+ background-color: #EAEBFF;
311
+ }
312
+
313
+ tr.even td.sorting_2 {
314
+ background-color: #F2F3FF;
315
+ }
316
+
317
+ tr.even td.sorting_3 {
318
+ background-color: #F9F9FF;
319
+ }
320
+
321
+
322
+ /* For the Conditional-CSS grading rows */
323
+ /*
324
+ Colour calculations (based off the main row colours)
325
+ Level 1:
326
+ dd > c4
327
+ ee > d5
328
+ Level 2:
329
+ dd > d1
330
+ ee > e2
331
+ */
332
+ tr.odd.gradeA td.sorting_1 {
333
+ background-color: #c4ffc4;
334
+ }
335
+
336
+ tr.odd.gradeA td.sorting_2 {
337
+ background-color: #d1ffd1;
338
+ }
339
+
340
+ tr.odd.gradeA td.sorting_3 {
341
+ background-color: #d1ffd1;
342
+ }
343
+
344
+ tr.even.gradeA td.sorting_1 {
345
+ background-color: #d5ffd5;
346
+ }
347
+
348
+ tr.even.gradeA td.sorting_2 {
349
+ background-color: #e2ffe2;
350
+ }
351
+
352
+ tr.even.gradeA td.sorting_3 {
353
+ background-color: #e2ffe2;
354
+ }
355
+
356
+ tr.odd.gradeC td.sorting_1 {
357
+ background-color: #c4c4ff;
358
+ }
359
+
360
+ tr.odd.gradeC td.sorting_2 {
361
+ background-color: #d1d1ff;
362
+ }
363
+
364
+ tr.odd.gradeC td.sorting_3 {
365
+ background-color: #d1d1ff;
366
+ }
367
+
368
+ tr.even.gradeC td.sorting_1 {
369
+ background-color: #d5d5ff;
370
+ }
371
+
372
+ tr.even.gradeC td.sorting_2 {
373
+ background-color: #e2e2ff;
374
+ }
375
+
376
+ tr.even.gradeC td.sorting_3 {
377
+ background-color: #e2e2ff;
378
+ }
379
+
380
+ tr.odd.gradeX td.sorting_1 {
381
+ background-color: #ffc4c4;
382
+ }
383
+
384
+ tr.odd.gradeX td.sorting_2 {
385
+ background-color: #ffd1d1;
386
+ }
387
+
388
+ tr.odd.gradeX td.sorting_3 {
389
+ background-color: #ffd1d1;
390
+ }
391
+
392
+ tr.even.gradeX td.sorting_1 {
393
+ background-color: #ffd5d5;
394
+ }
395
+
396
+ tr.even.gradeX td.sorting_2 {
397
+ background-color: #ffe2e2;
398
+ }
399
+
400
+ tr.even.gradeX td.sorting_3 {
401
+ background-color: #ffe2e2;
402
+ }
403
+
404
+ tr.odd.gradeU td.sorting_1 {
405
+ background-color: #c4c4c4;
406
+ }
407
+
408
+ tr.odd.gradeU td.sorting_2 {
409
+ background-color: #d1d1d1;
410
+ }
411
+
412
+ tr.odd.gradeU td.sorting_3 {
413
+ background-color: #d1d1d1;
414
+ }
415
+
416
+ tr.even.gradeU td.sorting_1 {
417
+ background-color: #d5d5d5;
418
+ }
419
+
420
+ tr.even.gradeU td.sorting_2 {
421
+ background-color: #e2e2e2;
422
+ }
423
+
424
+ tr.even.gradeU td.sorting_3 {
425
+ background-color: #e2e2e2;
426
+ }
427
+
428
+
429
+ /*
430
+ * Row highlighting example
431
+ */
432
+ .ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
433
+ background-color: #ECFFB3;
434
+ }
435
+
436
+ .ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
437
+ background-color: #E6FF99;
438
+ }
439
+
440
+
441
+ /*
442
+ * KeyTable
443
+ */
444
+ table.KeyTable td {
445
+ border: 3px solid transparent;
446
+ }
447
+
448
+ table.KeyTable td.focus {
449
+ border: 3px solid #3366FF;
450
+ }
451
+
452
+ table.display tr.gradeA {
453
+ background-color: #eeffee;
454
+ }
455
+
456
+ table.display tr.gradeC {
457
+ background-color: #ddddff;
458
+ }
459
+
460
+ table.display tr.gradeX {
461
+ background-color: #ffdddd;
462
+ }
463
+
464
+ table.display tr.gradeU {
465
+ background-color: #ddd;
466
+ }
467
+
468
+ div.box {
469
+ height: 100px;
470
+ padding: 10px;
471
+ overflow: auto;
472
+ border: 1px solid #8080FF;
473
+ background-color: #E5E5FF;
474
+ }
475
+
476
+ tr.monospace td {
477
+ font-family: monospace;
478
+ }
479
+
480
+
481
+ /*
482
+ * jQuery UI CSS Framework 1.8.6
483
+ *
484
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
485
+ * Dual licensed under the MIT or GPL Version 2 licenses.
486
+ * http://jquery.org/license
487
+ *
488
+ * http://docs.jquery.com/UI/Theming/API
489
+ */
490
+
491
+ /* Layout helpers
492
+ ----------------------------------*/
493
+ .dataTables_wrapper .ui-helper-hidden { display: none; }
494
+ .dataTables_wrapper .ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
495
+ .dataTables_wrapper .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
496
+ .dataTables_wrapper .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
497
+ .dataTables_wrapper .ui-helper-clearfix { display: inline-block; }
498
+ /* required comment for clearfix to work in Opera \*/
499
+ * html .ui-helper-clearfix { height:1%; }
500
+ .dataTables_wrapper .ui-helper-clearfix { display:block; }
501
+ /* end clearfix */
502
+ .dataTables_wrapper .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
503
+
504
+
505
+ /* Interaction Cues
506
+ ----------------------------------*/
507
+ .dataTables_wrapper .ui-state-disabled { cursor: default !important; }
508
+
509
+
510
+ /* Icons
511
+ ----------------------------------*/
512
+
513
+ /* states and images */
514
+ .dataTables_wrapper .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
515
+
516
+
517
+ /* Misc visuals
518
+ ----------------------------------*/
519
+
520
+ /* Overlays */
521
+ .dataTables_wrapper .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
522
+
523
+
524
+ /*
525
+ * jQuery UI CSS Framework 1.8.6
526
+ *
527
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
528
+ * Dual licensed under the MIT or GPL Version 2 licenses.
529
+ * http://jquery.org/license
530
+ *
531
+ * http://docs.jquery.com/UI/Theming/API
532
+ *
533
+ * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana,Arial,sans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=02_glass.png&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=02_glass.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
534
+ */
535
+
536
+
537
+ /* Component containers
538
+ ----------------------------------*/
539
+ .dataTables_wrapper .ui-widget { font-family: Verdana,Arial,sans-serif; font-size: 1.1em; }
540
+ .dataTables_wrapper .ui-widget .ui-widget { font-size: 1em; }
541
+ .dataTables_wrapper .ui-widget input, .dataTables_wrapper .ui-widget select, .dataTables_wrapper .ui-widget textarea, .dataTables_wrapper .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; }
542
+ .dataTables_wrapper .ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(../images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; }
543
+ .dataTables_wrapper .ui-widget-content a { color: #222222; }
544
+ .dataTables_wrapper .ui-widget-header { border: 1px solid #aaaaaa; background: #cccccc url(../images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; }
545
+ .dataTables_wrapper .ui-widget-header a { color: #222222; }
546
+
547
+ /* Interaction states
548
+ ----------------------------------*/
549
+ .dataTables_wrapper .ui-state-default, .dataTables_wrapper .ui-widget-content .ui-state-default, .dataTables_wrapper .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3; background: #e6e6e6 url(../images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #555555; }
550
+ .dataTables_wrapper .ui-state-default a, .dataTables_wrapper .ui-state-default a:link, .dataTables_wrapper .ui-state-default a:visited { color: #555555; text-decoration: none; }
551
+ .dataTables_wrapper .ui-state-hover, .dataTables_wrapper .ui-widget-content .ui-state-hover, .dataTables_wrapper .ui-widget-header .ui-state-hover, .dataTables_wrapper .ui-state-focus, .dataTables_wrapper .ui-widget-content .ui-state-focus, .dataTables_wrapper .ui-widget-header .ui-state-focus { border: 1px solid #999999; background: #dadada url(../images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; }
552
+ .dataTables_wrapper .ui-state-hover a, .dataTables_wrapper .ui-state-hover a:hover { color: #212121; text-decoration: none; }
553
+ .dataTables_wrapper .ui-state-active, .dataTables_wrapper .ui-widget-content .ui-state-active, .dataTables_wrapper .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa; background: #ffffff url(../images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; }
554
+ .dataTables_wrapper .ui-state-active a, .dataTables_wrapper .ui-state-active a:link, .dataTables_wrapper .ui-state-active a:visited { color: #212121; text-decoration: none; }
555
+ .dataTables_wrapper .ui-widget :active { outline: none; }
556
+
557
+ /* Interaction Cues
558
+ ----------------------------------*/
559
+ .dataTables_wrapper .ui-state-highlight, .dataTables_wrapper .ui-widget-content .ui-state-highlight, .dataTables_wrapper .ui-widget-header .ui-state-highlight {border: 1px solid #fcefa1; background: #fbf9ee url(../images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x; color: #363636; }
560
+ .dataTables_wrapper .ui-state-highlight a, .dataTables_wrapper .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
561
+ .dataTables_wrapper .ui-state-error, .dataTables_wrapper .ui-widget-content .ui-state-error, .dataTables_wrapper .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(../images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x; color: #cd0a0a; }
562
+ .dataTables_wrapper .ui-state-error a, .dataTables_wrapper .ui-widget-content .ui-state-error a, .dataTables_wrapper .ui-widget-header .ui-state-error a { color: #cd0a0a; }
563
+ .dataTables_wrapper .ui-state-error-text, .dataTables_wrapper .ui-widget-content .ui-state-error-text, .dataTables_wrapper .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
564
+ .dataTables_wrapper .ui-priority-primary, .dataTables_wrapper .ui-widget-content .ui-priority-primary, .dataTables_wrapper .ui-widget-header .ui-priority-primary { font-weight: bold; }
565
+ .dataTables_wrapper .ui-priority-secondary, .dataTables_wrapper .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
566
+ .dataTables_wrapper .ui-state-disabled, .dataTables_wrapper .ui-widget-content .ui-state-disabled, .dataTables_wrapper .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
567
+
568
+ /* Icons
569
+ ----------------------------------*/
570
+
571
+ /* states and images */
572
+ .dataTables_wrapper .ui-icon { width: 16px; height: 16px; background-image: url(../images/ui-icons_222222_256x240.png); }
573
+ .dataTables_wrapper .ui-widget-content .ui-icon {background-image: url(../images/ui-icons_222222_256x240.png); }
574
+ .dataTables_wrapper .ui-widget-header .ui-icon {background-image: url(../images/ui-icons_222222_256x240.png); }
575
+ .dataTables_wrapper .ui-state-default .ui-icon { background-image: url(../images/ui-icons_888888_256x240.png); }
576
+ .dataTables_wrapper .ui-state-hover .ui-icon, .dataTables_wrapper .ui-state-focus .ui-icon {background-image: url(../images/ui-icons_454545_256x240.png); }
577
+ .dataTables_wrapper .ui-state-active .ui-icon {background-image: url(../images/ui-icons_454545_256x240.png); }
578
+ .dataTables_wrapper .ui-state-highlight .ui-icon {background-image: url(../images/ui-icons_2e83ff_256x240.png); }
579
+ .dataTables_wrapper .ui-state-error .ui-icon, .dataTables_wrapper .ui-state-error-text .ui-icon {background-image: url(../images/ui-icons_cd0a0a_256x240.png); }
580
+
581
+ /* positioning */
582
+ .dataTables_wrapper .ui-icon-carat-1-n { background-position: 0 0; }
583
+ .dataTables_wrapper .ui-icon-carat-1-ne { background-position: -16px 0; }
584
+ .dataTables_wrapper .ui-icon-carat-1-e { background-position: -32px 0; }
585
+ .dataTables_wrapper .ui-icon-carat-1-se { background-position: -48px 0; }
586
+ .dataTables_wrapper .ui-icon-carat-1-s { background-position: -64px 0; }
587
+ .dataTables_wrapper .ui-icon-carat-1-sw { background-position: -80px 0; }
588
+ .dataTables_wrapper .ui-icon-carat-1-w { background-position: -96px 0; }
589
+ .dataTables_wrapper .ui-icon-carat-1-nw { background-position: -112px 0; }
590
+ .dataTables_wrapper .ui-icon-carat-2-n-s { background-position: -128px 0; }
591
+ .dataTables_wrapper .ui-icon-carat-2-e-w { background-position: -144px 0; }
592
+ .dataTables_wrapper .ui-icon-triangle-1-n { background-position: 0 -16px; }
593
+ .dataTables_wrapper .ui-icon-triangle-1-ne { background-position: -16px -16px; }
594
+ .dataTables_wrapper .ui-icon-triangle-1-e { background-position: -32px -16px; }
595
+ .dataTables_wrapper .ui-icon-triangle-1-se { background-position: -48px -16px; }
596
+ .dataTables_wrapper .ui-icon-triangle-1-s { background-position: -64px -16px; }
597
+ .dataTables_wrapper .ui-icon-triangle-1-sw { background-position: -80px -16px; }
598
+ .dataTables_wrapper .ui-icon-triangle-1-w { background-position: -96px -16px; }
599
+ .dataTables_wrapper .ui-icon-triangle-1-nw { background-position: -112px -16px; }
600
+ .dataTables_wrapper .ui-icon-triangle-2-n-s { background-position: -128px -16px; }
601
+ .dataTables_wrapper .ui-icon-triangle-2-e-w { background-position: -144px -16px; }
602
+ .dataTables_wrapper .ui-icon-arrow-1-n { background-position: 0 -32px; }
603
+ .dataTables_wrapper .ui-icon-arrow-1-ne { background-position: -16px -32px; }
604
+ .dataTables_wrapper .ui-icon-arrow-1-e { background-position: -32px -32px; }
605
+ .dataTables_wrapper .ui-icon-arrow-1-se { background-position: -48px -32px; }
606
+ .dataTables_wrapper .ui-icon-arrow-1-s { background-position: -64px -32px; }
607
+ .dataTables_wrapper .ui-icon-arrow-1-sw { background-position: -80px -32px; }
608
+ .dataTables_wrapper .ui-icon-arrow-1-w { background-position: -96px -32px; }
609
+ .dataTables_wrapper .ui-icon-arrow-1-nw { background-position: -112px -32px; }
610
+ .dataTables_wrapper .ui-icon-arrow-2-n-s { background-position: -128px -32px; }
611
+ .dataTables_wrapper .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
612
+ .dataTables_wrapper .ui-icon-arrow-2-e-w { background-position: -160px -32px; }
613
+ .dataTables_wrapper .ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
614
+ .dataTables_wrapper .ui-icon-arrowstop-1-n { background-position: -192px -32px; }
615
+ .dataTables_wrapper .ui-icon-arrowstop-1-e { background-position: -208px -32px; }
616
+ .dataTables_wrapper .ui-icon-arrowstop-1-s { background-position: -224px -32px; }
617
+ .dataTables_wrapper .ui-icon-arrowstop-1-w { background-position: -240px -32px; }
618
+ .dataTables_wrapper .ui-icon-arrowthick-1-n { background-position: 0 -48px; }
619
+ .dataTables_wrapper .ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
620
+ .dataTables_wrapper .ui-icon-arrowthick-1-e { background-position: -32px -48px; }
621
+ .dataTables_wrapper .ui-icon-arrowthick-1-se { background-position: -48px -48px; }
622
+ .dataTables_wrapper .ui-icon-arrowthick-1-s { background-position: -64px -48px; }
623
+ .dataTables_wrapper .ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
624
+ .dataTables_wrapper .ui-icon-arrowthick-1-w { background-position: -96px -48px; }
625
+ .dataTables_wrapper .ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
626
+ .dataTables_wrapper .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
627
+ .dataTables_wrapper .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
628
+ .dataTables_wrapper .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
629
+ .dataTables_wrapper .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
630
+ .dataTables_wrapper .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
631
+ .dataTables_wrapper .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
632
+ .dataTables_wrapper .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
633
+ .dataTables_wrapper .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
634
+ .dataTables_wrapper .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
635
+ .dataTables_wrapper .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
636
+ .dataTables_wrapper .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
637
+ .dataTables_wrapper .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
638
+ .dataTables_wrapper .ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
639
+ .dataTables_wrapper .ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
640
+ .dataTables_wrapper .ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
641
+ .dataTables_wrapper .ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
642
+ .dataTables_wrapper .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
643
+ .dataTables_wrapper .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
644
+ .dataTables_wrapper .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
645
+ .dataTables_wrapper .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
646
+ .dataTables_wrapper .ui-icon-arrow-4 { background-position: 0 -80px; }
647
+ .dataTables_wrapper .ui-icon-arrow-4-diag { background-position: -16px -80px; }
648
+ .dataTables_wrapper .ui-icon-extlink { background-position: -32px -80px; }
649
+ .dataTables_wrapper .ui-icon-newwin { background-position: -48px -80px; }
650
+ .dataTables_wrapper .ui-icon-refresh { background-position: -64px -80px; }
651
+ .dataTables_wrapper .ui-icon-shuffle { background-position: -80px -80px; }
652
+ .dataTables_wrapper .ui-icon-transfer-e-w { background-position: -96px -80px; }
653
+ .dataTables_wrapper .ui-icon-transferthick-e-w { background-position: -112px -80px; }
654
+ .dataTables_wrapper .ui-icon-folder-collapsed { background-position: 0 -96px; }
655
+ .dataTables_wrapper .ui-icon-folder-open { background-position: -16px -96px; }
656
+ .dataTables_wrapper .ui-icon-document { background-position: -32px -96px; }
657
+ .dataTables_wrapper .ui-icon-document-b { background-position: -48px -96px; }
658
+ .dataTables_wrapper .ui-icon-note { background-position: -64px -96px; }
659
+ .dataTables_wrapper .ui-icon-mail-closed { background-position: -80px -96px; }
660
+ .dataTables_wrapper .ui-icon-mail-open { background-position: -96px -96px; }
661
+ .dataTables_wrapper .ui-icon-suitcase { background-position: -112px -96px; }
662
+ .dataTables_wrapper .ui-icon-comment { background-position: -128px -96px; }
663
+ .dataTables_wrapper .ui-icon-person { background-position: -144px -96px; }
664
+ .dataTables_wrapper .ui-icon-print { background-position: -160px -96px; }
665
+ .dataTables_wrapper .ui-icon-trash { background-position: -176px -96px; }
666
+ .dataTables_wrapper .ui-icon-locked { background-position: -192px -96px; }
667
+ .dataTables_wrapper .ui-icon-unlocked { background-position: -208px -96px; }
668
+ .dataTables_wrapper .ui-icon-bookmark { background-position: -224px -96px; }
669
+ .dataTables_wrapper .ui-icon-tag { background-position: -240px -96px; }
670
+ .dataTables_wrapper .ui-icon-home { background-position: 0 -112px; }
671
+ .dataTables_wrapper .ui-icon-flag { background-position: -16px -112px; }
672
+ .dataTables_wrapper .ui-icon-calendar { background-position: -32px -112px; }
673
+ .dataTables_wrapper .ui-icon-cart { background-position: -48px -112px; }
674
+ .dataTables_wrapper .ui-icon-pencil { background-position: -64px -112px; }
675
+ .dataTables_wrapper .ui-icon-clock { background-position: -80px -112px; }
676
+ .dataTables_wrapper .ui-icon-disk { background-position: -96px -112px; }
677
+ .dataTables_wrapper .ui-icon-calculator { background-position: -112px -112px; }
678
+ .dataTables_wrapper .ui-icon-zoomin { background-position: -128px -112px; }
679
+ .dataTables_wrapper .ui-icon-zoomout { background-position: -144px -112px; }
680
+ .dataTables_wrapper .ui-icon-search { background-position: -160px -112px; }
681
+ .dataTables_wrapper .ui-icon-wrench { background-position: -176px -112px; }
682
+ .dataTables_wrapper .ui-icon-gear { background-position: -192px -112px; }
683
+ .dataTables_wrapper .ui-icon-heart { background-position: -208px -112px; }
684
+ .dataTables_wrapper .ui-icon-star { background-position: -224px -112px; }
685
+ .dataTables_wrapper .ui-icon-link { background-position: -240px -112px; }
686
+ .dataTables_wrapper .ui-icon-cancel { background-position: 0 -128px; }
687
+ .dataTables_wrapper .ui-icon-plus { background-position: -16px -128px; }
688
+ .dataTables_wrapper .ui-icon-plusthick { background-position: -32px -128px; }
689
+ .dataTables_wrapper .ui-icon-minus { background-position: -48px -128px; }
690
+ .dataTables_wrapper .ui-icon-minusthick { background-position: -64px -128px; }
691
+ .dataTables_wrapper .ui-icon-close { background-position: -80px -128px; }
692
+ .dataTables_wrapper .ui-icon-closethick { background-position: -96px -128px; }
693
+ .dataTables_wrapper .ui-icon-key { background-position: -112px -128px; }
694
+ .dataTables_wrapper .ui-icon-lightbulb { background-position: -128px -128px; }
695
+ .dataTables_wrapper .ui-icon-scissors { background-position: -144px -128px; }
696
+ .dataTables_wrapper .ui-icon-clipboard { background-position: -160px -128px; }
697
+ .dataTables_wrapper .ui-icon-copy { background-position: -176px -128px; }
698
+ .dataTables_wrapper .ui-icon-contact { background-position: -192px -128px; }
699
+ .dataTables_wrapper .ui-icon-image { background-position: -208px -128px; }
700
+ .dataTables_wrapper .ui-icon-video { background-position: -224px -128px; }
701
+ .dataTables_wrapper .ui-icon-script { background-position: -240px -128px; }
702
+ .dataTables_wrapper .ui-icon-alert { background-position: 0 -144px; }
703
+ .dataTables_wrapper .ui-icon-info { background-position: -16px -144px; }
704
+ .dataTables_wrapper .ui-icon-notice { background-position: -32px -144px; }
705
+ .dataTables_wrapper .ui-icon-help { background-position: -48px -144px; }
706
+ .dataTables_wrapper .ui-icon-check { background-position: -64px -144px; }
707
+ .dataTables_wrapper .ui-icon-bullet { background-position: -80px -144px; }
708
+ .dataTables_wrapper .ui-icon-radio-off { background-position: -96px -144px; }
709
+ .dataTables_wrapper .ui-icon-radio-on { background-position: -112px -144px; }
710
+ .dataTables_wrapper .ui-icon-pin-w { background-position: -128px -144px; }
711
+ .dataTables_wrapper .ui-icon-pin-s { background-position: -144px -144px; }
712
+ .dataTables_wrapper .ui-icon-play { background-position: 0 -160px; }
713
+ .dataTables_wrapper .ui-icon-pause { background-position: -16px -160px; }
714
+ .dataTables_wrapper .ui-icon-seek-next { background-position: -32px -160px; }
715
+ .dataTables_wrapper .ui-icon-seek-prev { background-position: -48px -160px; }
716
+ .dataTables_wrapper .ui-icon-seek-end { background-position: -64px -160px; }
717
+ .dataTables_wrapper .ui-icon-seek-start { background-position: -80px -160px; }
718
+ /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
719
+ .dataTables_wrapper .ui-icon-seek-first { background-position: -80px -160px; }
720
+ .dataTables_wrapper .ui-icon-stop { background-position: -96px -160px; }
721
+ .dataTables_wrapper .ui-icon-eject { background-position: -112px -160px; }
722
+ .dataTables_wrapper .ui-icon-volume-off { background-position: -128px -160px; }
723
+ .dataTables_wrapper .ui-icon-volume-on { background-position: -144px -160px; }
724
+ .dataTables_wrapper .ui-icon-power { background-position: 0 -176px; }
725
+ .dataTables_wrapper .ui-icon-signal-diag { background-position: -16px -176px; }
726
+ .dataTables_wrapper .ui-icon-signal { background-position: -32px -176px; }
727
+ .dataTables_wrapper .ui-icon-battery-0 { background-position: -48px -176px; }
728
+ .dataTables_wrapper .ui-icon-battery-1 { background-position: -64px -176px; }
729
+ .dataTables_wrapper .ui-icon-battery-2 { background-position: -80px -176px; }
730
+ .dataTables_wrapper .ui-icon-battery-3 { background-position: -96px -176px; }
731
+ .dataTables_wrapper .ui-icon-circle-plus { background-position: 0 -192px; }
732
+ .dataTables_wrapper .ui-icon-circle-minus { background-position: -16px -192px; }
733
+ .dataTables_wrapper .ui-icon-circle-close { background-position: -32px -192px; }
734
+ .dataTables_wrapper .ui-icon-circle-triangle-e { background-position: -48px -192px; }
735
+ .dataTables_wrapper .ui-icon-circle-triangle-s { background-position: -64px -192px; }
736
+ .dataTables_wrapper .ui-icon-circle-triangle-w { background-position: -80px -192px; }
737
+ .dataTables_wrapper .ui-icon-circle-triangle-n { background-position: -96px -192px; }
738
+ .dataTables_wrapper .ui-icon-circle-arrow-e { background-position: -112px -192px; }
739
+ .dataTables_wrapper .ui-icon-circle-arrow-s { background-position: -128px -192px; }
740
+ .dataTables_wrapper .ui-icon-circle-arrow-w { background-position: -144px -192px; }
741
+ .dataTables_wrapper .ui-icon-circle-arrow-n { background-position: -160px -192px; }
742
+ .dataTables_wrapper .ui-icon-circle-zoomin { background-position: -176px -192px; }
743
+ .dataTables_wrapper .ui-icon-circle-zoomout { background-position: -192px -192px; }
744
+ .dataTables_wrapper .ui-icon-circle-check { background-position: -208px -192px; }
745
+ .dataTables_wrapper .ui-icon-circlesmall-plus { background-position: 0 -208px; }
746
+ .dataTables_wrapper .ui-icon-circlesmall-minus { background-position: -16px -208px; }
747
+ .dataTables_wrapper .ui-icon-circlesmall-close { background-position: -32px -208px; }
748
+ .dataTables_wrapper .ui-icon-squaresmall-plus { background-position: -48px -208px; }
749
+ .dataTables_wrapper .ui-icon-squaresmall-minus { background-position: -64px -208px; }
750
+ .dataTables_wrapper .ui-icon-squaresmall-close { background-position: -80px -208px; }
751
+ .dataTables_wrapper .ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
752
+ .dataTables_wrapper .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
753
+ .dataTables_wrapper .ui-icon-grip-solid-vertical { background-position: -32px -224px; }
754
+ .dataTables_wrapper .ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
755
+ .dataTables_wrapper .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
756
+ .dataTables_wrapper .ui-icon-grip-diagonal-se { background-position: -80px -224px; }
757
+
758
+
759
+ /* Misc visuals
760
+ ----------------------------------*/
761
+
762
+ /* Corner radius */
763
+ .dataTables_wrapper .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; }
764
+ .dataTables_wrapper .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
765
+ .dataTables_wrapper .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
766
+ .dataTables_wrapper .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
767
+ .dataTables_wrapper .ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
768
+ .dataTables_wrapper .ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
769
+ .dataTables_wrapper .ui-corner-right { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
770
+ .dataTables_wrapper .ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
771
+ .dataTables_wrapper .ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; }
772
+
773
+ /* Overlays */
774
+ .dataTables_wrapper .ui-widget-overlay { background: #aaaaaa url(../images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); }
775
+ .dataTables_wrapper .ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(../images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }/*
776
+ * jQuery UI Resizable 1.8.6
777
+ *
778
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
779
+ * Dual licensed under the MIT or GPL Version 2 licenses.
780
+ * http://jquery.org/license
781
+ *
782
+ * http://docs.jquery.com/UI/Resizable#theming
783
+ */
784
+ .dataTables_wrapper .ui-resizable { position: relative;}
785
+ .dataTables_wrapper .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
786
+ .dataTables_wrapper .ui-resizable-disabled .ui-resizable-handle, .dataTables_wrapper .ui-resizable-autohide .ui-resizable-handle { display: none; }
787
+ .dataTables_wrapper .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
788
+ .dataTables_wrapper .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
789
+ .dataTables_wrapper .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
790
+ .dataTables_wrapper .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
791
+ .dataTables_wrapper .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
792
+ .dataTables_wrapper .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
793
+ .dataTables_wrapper .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
794
+ .dataTables_wrapper .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/*
795
+ * jQuery UI Selectable 1.8.6
796
+ *
797
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
798
+ * Dual licensed under the MIT or GPL Version 2 licenses.
799
+ * http://jquery.org/license
800
+ *
801
+ * http://docs.jquery.com/UI/Selectable#theming
802
+ */
803
+ .dataTables_wrapper .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
804
+ /*
805
+ * jQuery UI Accordion 1.8.6
806
+ *
807
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
808
+ * Dual licensed under the MIT or GPL Version 2 licenses.
809
+ * http://jquery.org/license
810
+ *
811
+ * http://docs.jquery.com/UI/Accordion#theming
812
+ */
813
+ /* IE/Win - Fix animation bug - #4615 */
814
+ .dataTables_wrapper .ui-accordion { width: 100%; }
815
+ .dataTables_wrapper .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
816
+ .dataTables_wrapper .ui-accordion .ui-accordion-li-fix { display: inline; }
817
+ .dataTables_wrapper .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
818
+ .dataTables_wrapper .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
819
+ .dataTables_wrapper .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
820
+ .dataTables_wrapper .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
821
+ .dataTables_wrapper .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
822
+ .dataTables_wrapper .ui-accordion .ui-accordion-content-active { display: block; }/*
823
+ * jQuery UI Autocomplete 1.8.6
824
+ *
825
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
826
+ * Dual licensed under the MIT or GPL Version 2 licenses.
827
+ * http://jquery.org/license
828
+ *
829
+ * http://docs.jquery.com/UI/Autocomplete#theming
830
+ */
831
+ .dataTables_wrapper .ui-autocomplete { position: absolute; cursor: default; }
832
+
833
+ /* workarounds */
834
+ * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
835
+
836
+ /*
837
+ * jQuery UI Menu 1.8.6
838
+ *
839
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
840
+ * Dual licensed under the MIT or GPL Version 2 licenses.
841
+ * http://jquery.org/license
842
+ *
843
+ * http://docs.jquery.com/UI/Menu#theming
844
+ */
845
+ .dataTables_wrapper .ui-menu {
846
+ list-style:none;
847
+ padding: 2px;
848
+ margin: 0;
849
+ display:block;
850
+ float: left;
851
+ }
852
+ .dataTables_wrapper .ui-menu .ui-menu {
853
+ margin-top: -3px;
854
+ }
855
+ .dataTables_wrapper .ui-menu .ui-menu-item {
856
+ margin:0;
857
+ padding: 0;
858
+ zoom: 1;
859
+ float: left;
860
+ clear: left;
861
+ width: 100%;
862
+ }
863
+ .dataTables_wrapper .ui-menu .ui-menu-item a {
864
+ text-decoration:none;
865
+ display:block;
866
+ padding:.2em .4em;
867
+ line-height:1.5;
868
+ zoom:1;
869
+ }
870
+ .dataTables_wrapper .ui-menu .ui-menu-item a.ui-state-hover,
871
+ .dataTables_wrapper .ui-menu .ui-menu-item a.ui-state-active {
872
+ font-weight: normal;
873
+ margin: -1px;
874
+ }
875
+ /*
876
+ * jQuery UI Button 1.8.6
877
+ *
878
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
879
+ * Dual licensed under the MIT or GPL Version 2 licenses.
880
+ * http://jquery.org/license
881
+ *
882
+ * http://docs.jquery.com/UI/Button#theming
883
+ */
884
+ .dataTables_wrapper .ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
885
+ .dataTables_wrapper .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
886
+ button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
887
+ .dataTables_wrapper .ui-button-icons-only { width: 3.4em; }
888
+ button.ui-button-icons-only { width: 3.7em; }
889
+
890
+ /*button text element */
891
+ .dataTables_wrapper .ui-button .ui-button-text { display: block; line-height: 1.4; }
892
+ .dataTables_wrapper .ui-button-text-only .ui-button-text { padding: .4em 1em; }
893
+ .dataTables_wrapper .ui-button-icon-only .ui-button-text, .dataTables_wrapper .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
894
+ .dataTables_wrapper .ui-button-text-icon-primary .ui-button-text, .dataTables_wrapper .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
895
+ .dataTables_wrapper .ui-button-text-icon-secondary .ui-button-text, .dataTables_wrapper .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
896
+ .dataTables_wrapper .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
897
+ /* no icon support for input elements, provide padding by default */
898
+ input.ui-button { padding: .4em 1em; }
899
+
900
+ /*button icon element(s) */
901
+ .dataTables_wrapper .ui-button-icon-only .ui-icon, .dataTables_wrapper .ui-button-text-icon-primary .ui-icon, .dataTables_wrapper .ui-button-text-icon-secondary .ui-icon, .dataTables_wrapper .ui-button-text-icons .ui-icon, .dataTables_wrapper .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
902
+ .dataTables_wrapper .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
903
+ .dataTables_wrapper .ui-button-text-icon-primary .ui-button-icon-primary, .dataTables_wrapper .ui-button-text-icons .ui-button-icon-primary, .dataTables_wrapper .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
904
+ .dataTables_wrapper .ui-button-text-icon-secondary .ui-button-icon-secondary, .dataTables_wrapper .ui-button-text-icons .ui-button-icon-secondary, .dataTables_wrapper .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
905
+ .dataTables_wrapper .ui-button-text-icons .ui-button-icon-secondary, .dataTables_wrapper .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
906
+
907
+ /*button sets*/
908
+ .dataTables_wrapper .ui-buttonset { margin-right: 7px; }
909
+ .dataTables_wrapper .ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }
910
+
911
+ /* workarounds */
912
+ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
913
+ /*
914
+ * jQuery UI Dialog 1.8.6
915
+ *
916
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
917
+ * Dual licensed under the MIT or GPL Version 2 licenses.
918
+ * http://jquery.org/license
919
+ *
920
+ * http://docs.jquery.com/UI/Dialog#theming
921
+ */
922
+ .dataTables_wrapper .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
923
+ .dataTables_wrapper .ui-dialog .ui-dialog-titlebar { padding: .5em 1em .3em; position: relative; }
924
+ .dataTables_wrapper .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .2em 0; }
925
+ .dataTables_wrapper .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
926
+ .dataTables_wrapper .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
927
+ .dataTables_wrapper .ui-dialog .ui-dialog-titlebar-close:hover, .dataTables_wrapper .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
928
+ .dataTables_wrapper .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
929
+ .dataTables_wrapper .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
930
+ .dataTables_wrapper .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
931
+ .dataTables_wrapper .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
932
+ .dataTables_wrapper .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
933
+ .dataTables_wrapper .ui-draggable .ui-dialog-titlebar { cursor: move; }
934
+ /*
935
+ * jQuery UI Slider 1.8.6
936
+ *
937
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
938
+ * Dual licensed under the MIT or GPL Version 2 licenses.
939
+ * http://jquery.org/license
940
+ *
941
+ * http://docs.jquery.com/UI/Slider#theming
942
+ */
943
+ .dataTables_wrapper .ui-slider { position: relative; text-align: left; }
944
+ .dataTables_wrapper .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
945
+ .dataTables_wrapper .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
946
+
947
+ .dataTables_wrapper .ui-slider-horizontal { height: .8em; }
948
+ .dataTables_wrapper .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
949
+ .dataTables_wrapper .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
950
+ .dataTables_wrapper .ui-slider-horizontal .ui-slider-range-min { left: 0; }
951
+ .dataTables_wrapper .ui-slider-horizontal .ui-slider-range-max { right: 0; }
952
+
953
+ .dataTables_wrapper .ui-slider-vertical { width: .8em; height: 100px; }
954
+ .dataTables_wrapper .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
955
+ .dataTables_wrapper .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
956
+ .dataTables_wrapper .ui-slider-vertical .ui-slider-range-min { bottom: 0; }
957
+ .dataTables_wrapper .ui-slider-vertical .ui-slider-range-max { top: 0; }/*
958
+ * jQuery UI Tabs 1.8.6
959
+ *
960
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
961
+ * Dual licensed under the MIT or GPL Version 2 licenses.
962
+ * http://jquery.org/license
963
+ *
964
+ * http://docs.jquery.com/UI/Tabs#theming
965
+ */
966
+ .dataTables_wrapper .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
967
+ .dataTables_wrapper .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
968
+ .dataTables_wrapper .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
969
+ .dataTables_wrapper .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
970
+ .dataTables_wrapper .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
971
+ .dataTables_wrapper .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .dataTables_wrapper .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .dataTables_wrapper .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
972
+ .dataTables_wrapper .ui-tabs .ui-tabs-nav li a, .dataTables_wrapper .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
973
+ .dataTables_wrapper .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
974
+ .dataTables_wrapper .ui-tabs .ui-tabs-hide { display: none !important; }
975
+ /*
976
+ * jQuery UI Datepicker 1.8.6
977
+ *
978
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
979
+ * Dual licensed under the MIT or GPL Version 2 licenses.
980
+ * http://jquery.org/license
981
+ *
982
+ * http://docs.jquery.com/UI/Datepicker#theming
983
+ */
984
+ .dataTables_wrapper .ui-datepicker { width: 17em; padding: .2em .2em 0; }
985
+ .dataTables_wrapper .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
986
+ .dataTables_wrapper .ui-datepicker .ui-datepicker-prev, .dataTables_wrapper .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
987
+ .dataTables_wrapper .ui-datepicker .ui-datepicker-prev-hover, .dataTables_wrapper .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
988
+ .dataTables_wrapper .ui-datepicker .ui-datepicker-prev { left:2px; }
989
+ .dataTables_wrapper .ui-datepicker .ui-datepicker-next { right:2px; }
990
+ .dataTables_wrapper .ui-datepicker .ui-datepicker-prev-hover { left:1px; }
991
+ .dataTables_wrapper .ui-datepicker .ui-datepicker-next-hover { right:1px; }
992
+ .dataTables_wrapper .ui-datepicker .ui-datepicker-prev span, .dataTables_wrapper .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
993
+ .dataTables_wrapper .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
994
+ .dataTables_wrapper .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
995
+ .dataTables_wrapper .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
996
+ .dataTables_wrapper .ui-datepicker select.ui-datepicker-month,
997
+ .dataTables_wrapper .ui-datepicker select.ui-datepicker-year { width: 49%;}
998
+ .dataTables_wrapper .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
999
+ .dataTables_wrapper .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
1000
+ .dataTables_wrapper .ui-datepicker td { border: 0; padding: 1px; }
1001
+ .dataTables_wrapper .ui-datepicker td span, .dataTables_wrapper .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
1002
+ .dataTables_wrapper .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
1003
+ .dataTables_wrapper .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
1004
+ .dataTables_wrapper .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
1005
+
1006
+ /* with multiple calendars */
1007
+ .dataTables_wrapper .ui-datepicker.ui-datepicker-multi { width:auto; }
1008
+ .dataTables_wrapper .ui-datepicker-multi .ui-datepicker-group { float:left; }
1009
+ .dataTables_wrapper .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
1010
+ .dataTables_wrapper .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
1011
+ .dataTables_wrapper .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
1012
+ .dataTables_wrapper .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
1013
+ .dataTables_wrapper .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
1014
+ .dataTables_wrapper .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
1015
+ .dataTables_wrapper .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
1016
+ .dataTables_wrapper .ui-datepicker-row-break { clear:both; width:100%; }
1017
+
1018
+ /* RTL support */
1019
+ .dataTables_wrapper .ui-datepicker-rtl { direction: rtl; }
1020
+ .dataTables_wrapper .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
1021
+ .dataTables_wrapper .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
1022
+ .dataTables_wrapper .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
1023
+ .dataTables_wrapper .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
1024
+ .dataTables_wrapper .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
1025
+ .dataTables_wrapper .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
1026
+ .dataTables_wrapper .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
1027
+ .dataTables_wrapper .ui-datepicker-rtl .ui-datepicker-group { float:right; }
1028
+ .dataTables_wrapper .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1029
+ .dataTables_wrapper .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
1030
+
1031
+ /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
1032
+ .dataTables_wrapper .ui-datepicker-cover {
1033
+ display: none; /*sorry for IE5*/
1034
+ display/**/: block; /*sorry for IE5*/
1035
+ position: absolute; /*must have*/
1036
+ z-index: -1; /*must have*/
1037
+ filter: mask(); /*must have*/
1038
+ top: -4px; /*must have*/
1039
+ left: -4px; /*must have*/
1040
+ width: 200px; /*must have*/
1041
+ height: 200px; /*must have*/
1042
+ }/*
1043
+ * jQuery UI Progressbar 1.8.6
1044
+ *
1045
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
1046
+ * Dual licensed under the MIT or GPL Version 2 licenses.
1047
+ * http://jquery.org/license
1048
+ *
1049
+ * http://docs.jquery.com/UI/Progressbar#theming
1050
+ */
1051
+ .dataTables_wrapper .ui-progressbar { height:2em; text-align: left; }
1052
+ .dataTables_wrapper .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
1053
+
1054
+ .dataTables_wrapper tr.row_selected td {
1055
+ background-color: #6E3B3A;
1056
+ color: white;
1057
+ }