1/*!
2 * jQuery UI CSS Framework 1.13.2
3 * http://jqueryui.com
4 *
5 * Copyright jQuery Foundation and other contributors
6 * Released under the MIT license.
7 * http://jquery.org/license
8 *
9 * http://api.jqueryui.com/category/theming/
10 */
11
12/* Layout helpers
13----------------------------------*/
14.ui-helper-hidden {
15 display: none;
16}
17.ui-helper-hidden-accessible {
18 border: 0;
19 clip: rect(0 0 0 0);
20 height: 1px;
21 margin: -1px;
22 overflow: hidden;
23 padding: 0;
24 position: absolute;
25 width: 1px;
26}
27.ui-helper-reset {
28 margin: 0;
29 padding: 0;
30 border: 0;
31 outline: 0;
32 line-height: 1.3;
33 text-decoration: none;
34 font-size: 100%;
35 list-style: none;
36}
37.ui-helper-clearfix:before,
38.ui-helper-clearfix:after {
39 content: "";
40 display: table;
...
</html>