protozaur 0.1.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +5 -1
- data/LICENSE.txt +1 -1
- data/README.md +163 -52
- data/app/assets/stylesheets/ptz/reset.css.sass +12 -11
- data/bower.json +23 -0
- data/gulp/Gulpfile.coffee +12 -0
- data/gulp/Gulpfile.js +2 -0
- data/gulp/README.md +7 -0
- data/gulp/gulp_tasks/_params.coffee +25 -0
- data/gulp/gulp_tasks/css.coffee +96 -0
- data/gulp/gulp_tasks/livereload.coffee +10 -0
- data/gulp/gulp_tasks/log.coffee +2 -0
- data/gulp/gulp_tasks/sass.coffee +108 -0
- data/gulp/gulp_tasks/tools.coffee +34 -0
- data/gulp/package.json +26 -0
- data/lib/protozaur/version.rb +1 -1
- data/package.json +27 -0
- data/ptz/base.css.css +120 -0
- data/ptz/framework.css.css +2188 -0
- data/ptz/inputs-buttons/base.css.css +55 -0
- data/ptz/inputs-buttons/sizes.css.css +95 -0
- data/ptz/protozaur.min.css +1 -0
- data/ptz/reset.css.css +83 -0
- data/ptz/sizes.css.css +1 -0
- metadata +22 -3
@@ -0,0 +1,108 @@
|
|
1
|
+
tools = require './tools.coffee'
|
2
|
+
|
3
|
+
fs = tools.fs
|
4
|
+
log = tools.log
|
5
|
+
|
6
|
+
gulp = tools.gulp
|
7
|
+
gutil = tools.gutil
|
8
|
+
|
9
|
+
params = tools.params
|
10
|
+
|
11
|
+
batch = tools.batch
|
12
|
+
plumber = tools.plumber
|
13
|
+
chokidar = tools.chokidar
|
14
|
+
|
15
|
+
sass = tools.sass
|
16
|
+
minCSS = tools.minCSS
|
17
|
+
|
18
|
+
postcss = tools.postcss
|
19
|
+
autoprefixer = tools.autoprefixer
|
20
|
+
|
21
|
+
livereload = tools.livereload
|
22
|
+
|
23
|
+
# Main Task
|
24
|
+
gulp.task 'compileSass', ->
|
25
|
+
sass_files = params.sass.src + params.sass.mask_sass
|
26
|
+
|
27
|
+
gulp.src(sass_files)
|
28
|
+
.pipe plumber()
|
29
|
+
.pipe sass( outputStyle: 'expanded', indentedSyntax: true, errLogToConsole: true )
|
30
|
+
.pipe postcss [
|
31
|
+
autoprefixer( browsers: ['last 3 version'] )
|
32
|
+
]
|
33
|
+
# .pipe minCSS( keepBreaks: true )
|
34
|
+
.pipe gulp.dest(params.sass.dest)
|
35
|
+
.pipe livereload()
|
36
|
+
.on 'error', gutil.log
|
37
|
+
|
38
|
+
gulp.task 'compileScss', ->
|
39
|
+
scss_files = params.sass.src + params.sass.mask_scss
|
40
|
+
|
41
|
+
gulp.src(scss_files)
|
42
|
+
.pipe plumber()
|
43
|
+
.pipe sass( outputStyle: 'expanded', errLogToConsole: true )
|
44
|
+
.pipe postcss [
|
45
|
+
autoprefixer( browsers: ['last 3 version'] )
|
46
|
+
]
|
47
|
+
# .pipe minCSS( keepBreaks: true )
|
48
|
+
.pipe gulp.dest(params.sass.dest)
|
49
|
+
.pipe livereload()
|
50
|
+
.on 'error', gutil.log
|
51
|
+
|
52
|
+
# Watcher
|
53
|
+
gulp.task 'watchSassScss', ->
|
54
|
+
sass_files = params.sass.src + params.sass.mask_sass
|
55
|
+
scss_files = params.sass.src + params.sass.mask_scss
|
56
|
+
|
57
|
+
chokidar.watch([ params.sass.src, sass_files, scss_files ])
|
58
|
+
.on 'ready', ->
|
59
|
+
log 'compileSass::ready'
|
60
|
+
|
61
|
+
gulp.start('compileSass')
|
62
|
+
gulp.start('compileScss')
|
63
|
+
|
64
|
+
.on 'add', batch { timeout: 100 }, (events, cb) ->
|
65
|
+
log 'compileSass::add'
|
66
|
+
|
67
|
+
gulp.start('compileSass')
|
68
|
+
gulp.start('compileScss')
|
69
|
+
|
70
|
+
events.on('data', log).on('end', cb)
|
71
|
+
|
72
|
+
.on 'change', batch { timeout: 100 }, (events, cb) ->
|
73
|
+
gulp.start('compileSass')
|
74
|
+
gulp.start('compileScss')
|
75
|
+
|
76
|
+
events.on('data', log).on('end', cb)
|
77
|
+
|
78
|
+
.on 'unlink', batch { timeout: 100 }, (events, cb) ->
|
79
|
+
log 'compileSass::unlink'
|
80
|
+
|
81
|
+
events
|
82
|
+
.on('data', (filepath) ->
|
83
|
+
filename = filepath.split(params.sass.src)[1]
|
84
|
+
filename = filename.replace(/sass$/g, 'css')
|
85
|
+
filename = filename.replace(/scss$/g, 'css')
|
86
|
+
filepath = params.sass.dest + filename
|
87
|
+
|
88
|
+
fs.unlink filepath, (err) -> log "Deleted (File) `#{ filepath }`"
|
89
|
+
)
|
90
|
+
.on('end', cb)
|
91
|
+
|
92
|
+
.on 'addDir', batch { timeout: 100 }, (events, cb) ->
|
93
|
+
log 'compileSass::linkDirs'
|
94
|
+
|
95
|
+
gulp.start('compileSass')
|
96
|
+
gulp.start('compileScss')
|
97
|
+
|
98
|
+
events.on('data', log).on('end', cb)
|
99
|
+
|
100
|
+
.on 'unlinkDir', batch { timeout: 100 }, (events, cb) ->
|
101
|
+
log 'compileSass::unlinkDirs'
|
102
|
+
|
103
|
+
events.on('data', (dirpath) ->
|
104
|
+
dirpath = dirpath.split(params.sass.src)[1]
|
105
|
+
dirpath = params.sass.dest + dirpath
|
106
|
+
|
107
|
+
fs.rmdir dirpath, (err) -> log "Deleted (Directory) `#{ dirpath }`"
|
108
|
+
).on('end', cb)
|
@@ -0,0 +1,34 @@
|
|
1
|
+
'use strict'
|
2
|
+
|
3
|
+
module.exports =
|
4
|
+
# App params
|
5
|
+
params: require './_params'
|
6
|
+
|
7
|
+
# `console.log` shortcut
|
8
|
+
log: require './log.coffee'
|
9
|
+
|
10
|
+
# Events debounce
|
11
|
+
batch: require 'gulp-batch'
|
12
|
+
# Watcher => events: ready add change unlink addDir unlinkDir raw error
|
13
|
+
chokidar: require 'chokidar'
|
14
|
+
# Gulp - don't panic!
|
15
|
+
plumber: require 'gulp-plumber'
|
16
|
+
# Page autoreload
|
17
|
+
livereload: require 'gulp-livereload'
|
18
|
+
|
19
|
+
# Base
|
20
|
+
fs: require 'fs'
|
21
|
+
path: require 'path'
|
22
|
+
gulp: require 'gulp'
|
23
|
+
gutil: require 'gulp-util'
|
24
|
+
|
25
|
+
# Common
|
26
|
+
concat: require 'gulp-concat' # files
|
27
|
+
|
28
|
+
# SCSS/CSS
|
29
|
+
sass: require 'gulp-sass'
|
30
|
+
minCSS: require 'gulp-minify-css'
|
31
|
+
|
32
|
+
# https://github.com/ai
|
33
|
+
postcss: require 'gulp-postcss'
|
34
|
+
autoprefixer: require 'autoprefixer-core'
|
data/gulp/package.json
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
{
|
2
|
+
"name": "GulpHTMLBuilder",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "HTML builder",
|
5
|
+
"main": "Gulpfile.js",
|
6
|
+
"repository": "https://github.com/the-teacher",
|
7
|
+
"scripts": {
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
9
|
+
},
|
10
|
+
"author": "https://github.com/the-teacher ; Ilya N. Zykin <zykin-ilya@ya.ru>",
|
11
|
+
"license": "MIT",
|
12
|
+
"dependencies": {
|
13
|
+
"autoprefixer-core": "^5.1.7",
|
14
|
+
"chokidar": "^1.0.0-rc4",
|
15
|
+
"gulp": "^3.8.11",
|
16
|
+
"gulp-batch": "^1.0.5",
|
17
|
+
"gulp-concat": "^2.5.2",
|
18
|
+
"gulp-minify-css": "^1.0.0",
|
19
|
+
"gulp-plumber": "^1.0.0",
|
20
|
+
"gulp-postcss": "^4.0.3",
|
21
|
+
"gulp-sass": "^2.0.0",
|
22
|
+
"gulp-util": "^3.0.4",
|
23
|
+
"gulp-coffee": "^2.3.1",
|
24
|
+
"gulp-livereload": "^3.8.0"
|
25
|
+
}
|
26
|
+
}
|
data/lib/protozaur/version.rb
CHANGED
data/package.json
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
{
|
2
|
+
"name": "protozaur",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "Protozaur is semantic, mnemonic, declarative CSS framework, created to avoid wasting time and increase productivity",
|
5
|
+
"main": "index.js",
|
6
|
+
"directories": {
|
7
|
+
"doc": "docs"
|
8
|
+
},
|
9
|
+
"scripts": {
|
10
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
11
|
+
},
|
12
|
+
"repository": {
|
13
|
+
"type": "git",
|
14
|
+
"url": "git+https://github.com/the-teacher/protozaur.git"
|
15
|
+
},
|
16
|
+
"keywords": [
|
17
|
+
"Protozaur",
|
18
|
+
"CSS",
|
19
|
+
"Framework"
|
20
|
+
],
|
21
|
+
"author": "Ilya N. Zykin <zykin-ilya@ya.ru>",
|
22
|
+
"license": "MIT",
|
23
|
+
"bugs": {
|
24
|
+
"url": "https://github.com/the-teacher/protozaur/issues"
|
25
|
+
},
|
26
|
+
"homepage": "https://github.com/the-teacher/protozaur#readme"
|
27
|
+
}
|
data/ptz/base.css.css
ADDED
@@ -0,0 +1,120 @@
|
|
1
|
+
a {
|
2
|
+
color: #012d85;
|
3
|
+
transition: color .2s ease;
|
4
|
+
}
|
5
|
+
|
6
|
+
a:hover {
|
7
|
+
color: red;
|
8
|
+
}
|
9
|
+
|
10
|
+
h1, h2, h3, h4, h5, h6 {
|
11
|
+
font-size: 18px;
|
12
|
+
line-height: 130%;
|
13
|
+
font-weight: normal;
|
14
|
+
}
|
15
|
+
|
16
|
+
p {
|
17
|
+
margin: 20px 0;
|
18
|
+
color: #292e31;
|
19
|
+
font-size: 16px;
|
20
|
+
line-height: 160%;
|
21
|
+
}
|
22
|
+
|
23
|
+
hr {
|
24
|
+
border-top: 1px solid #eee;
|
25
|
+
margin: 20px 0;
|
26
|
+
}
|
27
|
+
|
28
|
+
sup, sub {
|
29
|
+
font-size: 85%;
|
30
|
+
zoom: 1;
|
31
|
+
}
|
32
|
+
|
33
|
+
sup {
|
34
|
+
vertical-align: 40%;
|
35
|
+
}
|
36
|
+
|
37
|
+
sub {
|
38
|
+
vertical-align: -40%;
|
39
|
+
}
|
40
|
+
|
41
|
+
.ol, .ul {
|
42
|
+
margin-left: 20px;
|
43
|
+
margin-bottom: 20px;
|
44
|
+
}
|
45
|
+
|
46
|
+
.ol li, .ul li {
|
47
|
+
list-style-position: outside;
|
48
|
+
margin-left: 15px;
|
49
|
+
padding-left: 5px;
|
50
|
+
line-height: 135%;
|
51
|
+
}
|
52
|
+
|
53
|
+
.ol li {
|
54
|
+
list-style-type: decimal;
|
55
|
+
}
|
56
|
+
|
57
|
+
.ul li {
|
58
|
+
list-style-type: disc;
|
59
|
+
}
|
60
|
+
|
61
|
+
.hidden {
|
62
|
+
display: none !important;
|
63
|
+
}
|
64
|
+
|
65
|
+
.invisible {
|
66
|
+
visibility: hidden !important;
|
67
|
+
height: 0 !important;
|
68
|
+
}
|
69
|
+
|
70
|
+
.visible {
|
71
|
+
visibility: visible !important;
|
72
|
+
height: auto;
|
73
|
+
}
|
74
|
+
|
75
|
+
.ob, .ofh {
|
76
|
+
overflow: hidden !important;
|
77
|
+
zoom: 1;
|
78
|
+
}
|
79
|
+
|
80
|
+
.pull-left {
|
81
|
+
float: left;
|
82
|
+
}
|
83
|
+
|
84
|
+
.pull-right {
|
85
|
+
float: right;
|
86
|
+
}
|
87
|
+
|
88
|
+
.clearfix:after {
|
89
|
+
content: ".";
|
90
|
+
display: block;
|
91
|
+
line-height: 0;
|
92
|
+
height: 0;
|
93
|
+
clear: both;
|
94
|
+
visibility: hidden;
|
95
|
+
}
|
96
|
+
|
97
|
+
html[xmlns] .clearfix {
|
98
|
+
display: block;
|
99
|
+
}
|
100
|
+
|
101
|
+
* html .clearfix {
|
102
|
+
zoom: 1;
|
103
|
+
}
|
104
|
+
|
105
|
+
.text-select-off {
|
106
|
+
-webkit-touch-callout: none;
|
107
|
+
-webkit-user-select: none;
|
108
|
+
-khtml-user-select: none;
|
109
|
+
-moz-user-select: none;
|
110
|
+
-ms-user-select: none;
|
111
|
+
-o-user-select: none;
|
112
|
+
user-select: none;
|
113
|
+
}
|
114
|
+
|
115
|
+
noscript {
|
116
|
+
background: red;
|
117
|
+
padding: 5px;
|
118
|
+
color: white;
|
119
|
+
font-size: 20px;
|
120
|
+
}
|
@@ -0,0 +1,2188 @@
|
|
1
|
+
.ma {
|
2
|
+
margin: auto;
|
3
|
+
}
|
4
|
+
|
5
|
+
.p0 {
|
6
|
+
padding: 0px !important;
|
7
|
+
}
|
8
|
+
|
9
|
+
.m0 {
|
10
|
+
margin: 0px !important;
|
11
|
+
}
|
12
|
+
|
13
|
+
.pt0 {
|
14
|
+
padding-top: 0px !important;
|
15
|
+
}
|
16
|
+
|
17
|
+
.pr0 {
|
18
|
+
padding-right: 0px !important;
|
19
|
+
}
|
20
|
+
|
21
|
+
.pb0 {
|
22
|
+
padding-bottom: 0px !important;
|
23
|
+
}
|
24
|
+
|
25
|
+
.pl0 {
|
26
|
+
padding-left: 0px !important;
|
27
|
+
}
|
28
|
+
|
29
|
+
.mt0 {
|
30
|
+
margin-top: 0px !important;
|
31
|
+
}
|
32
|
+
|
33
|
+
.mr0 {
|
34
|
+
margin-right: 0px !important;
|
35
|
+
}
|
36
|
+
|
37
|
+
.mb0 {
|
38
|
+
margin-bottom: 0px !important;
|
39
|
+
}
|
40
|
+
|
41
|
+
.ml0 {
|
42
|
+
margin-left: 0px !important;
|
43
|
+
}
|
44
|
+
|
45
|
+
.p5 {
|
46
|
+
padding: 5px !important;
|
47
|
+
}
|
48
|
+
|
49
|
+
.m5 {
|
50
|
+
margin: 5px !important;
|
51
|
+
}
|
52
|
+
|
53
|
+
.pt5 {
|
54
|
+
padding-top: 5px !important;
|
55
|
+
}
|
56
|
+
|
57
|
+
.pr5 {
|
58
|
+
padding-right: 5px !important;
|
59
|
+
}
|
60
|
+
|
61
|
+
.pb5 {
|
62
|
+
padding-bottom: 5px !important;
|
63
|
+
}
|
64
|
+
|
65
|
+
.pl5 {
|
66
|
+
padding-left: 5px !important;
|
67
|
+
}
|
68
|
+
|
69
|
+
.mt5 {
|
70
|
+
margin-top: 5px !important;
|
71
|
+
}
|
72
|
+
|
73
|
+
.mr5 {
|
74
|
+
margin-right: 5px !important;
|
75
|
+
}
|
76
|
+
|
77
|
+
.mb5 {
|
78
|
+
margin-bottom: 5px !important;
|
79
|
+
}
|
80
|
+
|
81
|
+
.ml5 {
|
82
|
+
margin-left: 5px !important;
|
83
|
+
}
|
84
|
+
|
85
|
+
.p10 {
|
86
|
+
padding: 10px !important;
|
87
|
+
}
|
88
|
+
|
89
|
+
.m10 {
|
90
|
+
margin: 10px !important;
|
91
|
+
}
|
92
|
+
|
93
|
+
.pt10 {
|
94
|
+
padding-top: 10px !important;
|
95
|
+
}
|
96
|
+
|
97
|
+
.pr10 {
|
98
|
+
padding-right: 10px !important;
|
99
|
+
}
|
100
|
+
|
101
|
+
.pb10 {
|
102
|
+
padding-bottom: 10px !important;
|
103
|
+
}
|
104
|
+
|
105
|
+
.pl10 {
|
106
|
+
padding-left: 10px !important;
|
107
|
+
}
|
108
|
+
|
109
|
+
.mt10 {
|
110
|
+
margin-top: 10px !important;
|
111
|
+
}
|
112
|
+
|
113
|
+
.mr10 {
|
114
|
+
margin-right: 10px !important;
|
115
|
+
}
|
116
|
+
|
117
|
+
.mb10 {
|
118
|
+
margin-bottom: 10px !important;
|
119
|
+
}
|
120
|
+
|
121
|
+
.ml10 {
|
122
|
+
margin-left: 10px !important;
|
123
|
+
}
|
124
|
+
|
125
|
+
.p15 {
|
126
|
+
padding: 15px !important;
|
127
|
+
}
|
128
|
+
|
129
|
+
.m15 {
|
130
|
+
margin: 15px !important;
|
131
|
+
}
|
132
|
+
|
133
|
+
.pt15 {
|
134
|
+
padding-top: 15px !important;
|
135
|
+
}
|
136
|
+
|
137
|
+
.pr15 {
|
138
|
+
padding-right: 15px !important;
|
139
|
+
}
|
140
|
+
|
141
|
+
.pb15 {
|
142
|
+
padding-bottom: 15px !important;
|
143
|
+
}
|
144
|
+
|
145
|
+
.pl15 {
|
146
|
+
padding-left: 15px !important;
|
147
|
+
}
|
148
|
+
|
149
|
+
.mt15 {
|
150
|
+
margin-top: 15px !important;
|
151
|
+
}
|
152
|
+
|
153
|
+
.mr15 {
|
154
|
+
margin-right: 15px !important;
|
155
|
+
}
|
156
|
+
|
157
|
+
.mb15 {
|
158
|
+
margin-bottom: 15px !important;
|
159
|
+
}
|
160
|
+
|
161
|
+
.ml15 {
|
162
|
+
margin-left: 15px !important;
|
163
|
+
}
|
164
|
+
|
165
|
+
.p20 {
|
166
|
+
padding: 20px !important;
|
167
|
+
}
|
168
|
+
|
169
|
+
.m20 {
|
170
|
+
margin: 20px !important;
|
171
|
+
}
|
172
|
+
|
173
|
+
.pt20 {
|
174
|
+
padding-top: 20px !important;
|
175
|
+
}
|
176
|
+
|
177
|
+
.pr20 {
|
178
|
+
padding-right: 20px !important;
|
179
|
+
}
|
180
|
+
|
181
|
+
.pb20 {
|
182
|
+
padding-bottom: 20px !important;
|
183
|
+
}
|
184
|
+
|
185
|
+
.pl20 {
|
186
|
+
padding-left: 20px !important;
|
187
|
+
}
|
188
|
+
|
189
|
+
.mt20 {
|
190
|
+
margin-top: 20px !important;
|
191
|
+
}
|
192
|
+
|
193
|
+
.mr20 {
|
194
|
+
margin-right: 20px !important;
|
195
|
+
}
|
196
|
+
|
197
|
+
.mb20 {
|
198
|
+
margin-bottom: 20px !important;
|
199
|
+
}
|
200
|
+
|
201
|
+
.ml20 {
|
202
|
+
margin-left: 20px !important;
|
203
|
+
}
|
204
|
+
|
205
|
+
.p25 {
|
206
|
+
padding: 25px !important;
|
207
|
+
}
|
208
|
+
|
209
|
+
.m25 {
|
210
|
+
margin: 25px !important;
|
211
|
+
}
|
212
|
+
|
213
|
+
.pt25 {
|
214
|
+
padding-top: 25px !important;
|
215
|
+
}
|
216
|
+
|
217
|
+
.pr25 {
|
218
|
+
padding-right: 25px !important;
|
219
|
+
}
|
220
|
+
|
221
|
+
.pb25 {
|
222
|
+
padding-bottom: 25px !important;
|
223
|
+
}
|
224
|
+
|
225
|
+
.pl25 {
|
226
|
+
padding-left: 25px !important;
|
227
|
+
}
|
228
|
+
|
229
|
+
.mt25 {
|
230
|
+
margin-top: 25px !important;
|
231
|
+
}
|
232
|
+
|
233
|
+
.mr25 {
|
234
|
+
margin-right: 25px !important;
|
235
|
+
}
|
236
|
+
|
237
|
+
.mb25 {
|
238
|
+
margin-bottom: 25px !important;
|
239
|
+
}
|
240
|
+
|
241
|
+
.ml25 {
|
242
|
+
margin-left: 25px !important;
|
243
|
+
}
|
244
|
+
|
245
|
+
.p30 {
|
246
|
+
padding: 30px !important;
|
247
|
+
}
|
248
|
+
|
249
|
+
.m30 {
|
250
|
+
margin: 30px !important;
|
251
|
+
}
|
252
|
+
|
253
|
+
.pt30 {
|
254
|
+
padding-top: 30px !important;
|
255
|
+
}
|
256
|
+
|
257
|
+
.pr30 {
|
258
|
+
padding-right: 30px !important;
|
259
|
+
}
|
260
|
+
|
261
|
+
.pb30 {
|
262
|
+
padding-bottom: 30px !important;
|
263
|
+
}
|
264
|
+
|
265
|
+
.pl30 {
|
266
|
+
padding-left: 30px !important;
|
267
|
+
}
|
268
|
+
|
269
|
+
.mt30 {
|
270
|
+
margin-top: 30px !important;
|
271
|
+
}
|
272
|
+
|
273
|
+
.mr30 {
|
274
|
+
margin-right: 30px !important;
|
275
|
+
}
|
276
|
+
|
277
|
+
.mb30 {
|
278
|
+
margin-bottom: 30px !important;
|
279
|
+
}
|
280
|
+
|
281
|
+
.ml30 {
|
282
|
+
margin-left: 30px !important;
|
283
|
+
}
|
284
|
+
|
285
|
+
.p35 {
|
286
|
+
padding: 35px !important;
|
287
|
+
}
|
288
|
+
|
289
|
+
.m35 {
|
290
|
+
margin: 35px !important;
|
291
|
+
}
|
292
|
+
|
293
|
+
.pt35 {
|
294
|
+
padding-top: 35px !important;
|
295
|
+
}
|
296
|
+
|
297
|
+
.pr35 {
|
298
|
+
padding-right: 35px !important;
|
299
|
+
}
|
300
|
+
|
301
|
+
.pb35 {
|
302
|
+
padding-bottom: 35px !important;
|
303
|
+
}
|
304
|
+
|
305
|
+
.pl35 {
|
306
|
+
padding-left: 35px !important;
|
307
|
+
}
|
308
|
+
|
309
|
+
.mt35 {
|
310
|
+
margin-top: 35px !important;
|
311
|
+
}
|
312
|
+
|
313
|
+
.mr35 {
|
314
|
+
margin-right: 35px !important;
|
315
|
+
}
|
316
|
+
|
317
|
+
.mb35 {
|
318
|
+
margin-bottom: 35px !important;
|
319
|
+
}
|
320
|
+
|
321
|
+
.ml35 {
|
322
|
+
margin-left: 35px !important;
|
323
|
+
}
|
324
|
+
|
325
|
+
.p40 {
|
326
|
+
padding: 40px !important;
|
327
|
+
}
|
328
|
+
|
329
|
+
.m40 {
|
330
|
+
margin: 40px !important;
|
331
|
+
}
|
332
|
+
|
333
|
+
.pt40 {
|
334
|
+
padding-top: 40px !important;
|
335
|
+
}
|
336
|
+
|
337
|
+
.pr40 {
|
338
|
+
padding-right: 40px !important;
|
339
|
+
}
|
340
|
+
|
341
|
+
.pb40 {
|
342
|
+
padding-bottom: 40px !important;
|
343
|
+
}
|
344
|
+
|
345
|
+
.pl40 {
|
346
|
+
padding-left: 40px !important;
|
347
|
+
}
|
348
|
+
|
349
|
+
.mt40 {
|
350
|
+
margin-top: 40px !important;
|
351
|
+
}
|
352
|
+
|
353
|
+
.mr40 {
|
354
|
+
margin-right: 40px !important;
|
355
|
+
}
|
356
|
+
|
357
|
+
.mb40 {
|
358
|
+
margin-bottom: 40px !important;
|
359
|
+
}
|
360
|
+
|
361
|
+
.ml40 {
|
362
|
+
margin-left: 40px !important;
|
363
|
+
}
|
364
|
+
|
365
|
+
.p45 {
|
366
|
+
padding: 45px !important;
|
367
|
+
}
|
368
|
+
|
369
|
+
.m45 {
|
370
|
+
margin: 45px !important;
|
371
|
+
}
|
372
|
+
|
373
|
+
.pt45 {
|
374
|
+
padding-top: 45px !important;
|
375
|
+
}
|
376
|
+
|
377
|
+
.pr45 {
|
378
|
+
padding-right: 45px !important;
|
379
|
+
}
|
380
|
+
|
381
|
+
.pb45 {
|
382
|
+
padding-bottom: 45px !important;
|
383
|
+
}
|
384
|
+
|
385
|
+
.pl45 {
|
386
|
+
padding-left: 45px !important;
|
387
|
+
}
|
388
|
+
|
389
|
+
.mt45 {
|
390
|
+
margin-top: 45px !important;
|
391
|
+
}
|
392
|
+
|
393
|
+
.mr45 {
|
394
|
+
margin-right: 45px !important;
|
395
|
+
}
|
396
|
+
|
397
|
+
.mb45 {
|
398
|
+
margin-bottom: 45px !important;
|
399
|
+
}
|
400
|
+
|
401
|
+
.ml45 {
|
402
|
+
margin-left: 45px !important;
|
403
|
+
}
|
404
|
+
|
405
|
+
.p50 {
|
406
|
+
padding: 50px !important;
|
407
|
+
}
|
408
|
+
|
409
|
+
.m50 {
|
410
|
+
margin: 50px !important;
|
411
|
+
}
|
412
|
+
|
413
|
+
.pt50 {
|
414
|
+
padding-top: 50px !important;
|
415
|
+
}
|
416
|
+
|
417
|
+
.pr50 {
|
418
|
+
padding-right: 50px !important;
|
419
|
+
}
|
420
|
+
|
421
|
+
.pb50 {
|
422
|
+
padding-bottom: 50px !important;
|
423
|
+
}
|
424
|
+
|
425
|
+
.pl50 {
|
426
|
+
padding-left: 50px !important;
|
427
|
+
}
|
428
|
+
|
429
|
+
.mt50 {
|
430
|
+
margin-top: 50px !important;
|
431
|
+
}
|
432
|
+
|
433
|
+
.mr50 {
|
434
|
+
margin-right: 50px !important;
|
435
|
+
}
|
436
|
+
|
437
|
+
.mb50 {
|
438
|
+
margin-bottom: 50px !important;
|
439
|
+
}
|
440
|
+
|
441
|
+
.ml50 {
|
442
|
+
margin-left: 50px !important;
|
443
|
+
}
|
444
|
+
|
445
|
+
.p55 {
|
446
|
+
padding: 55px !important;
|
447
|
+
}
|
448
|
+
|
449
|
+
.m55 {
|
450
|
+
margin: 55px !important;
|
451
|
+
}
|
452
|
+
|
453
|
+
.pt55 {
|
454
|
+
padding-top: 55px !important;
|
455
|
+
}
|
456
|
+
|
457
|
+
.pr55 {
|
458
|
+
padding-right: 55px !important;
|
459
|
+
}
|
460
|
+
|
461
|
+
.pb55 {
|
462
|
+
padding-bottom: 55px !important;
|
463
|
+
}
|
464
|
+
|
465
|
+
.pl55 {
|
466
|
+
padding-left: 55px !important;
|
467
|
+
}
|
468
|
+
|
469
|
+
.mt55 {
|
470
|
+
margin-top: 55px !important;
|
471
|
+
}
|
472
|
+
|
473
|
+
.mr55 {
|
474
|
+
margin-right: 55px !important;
|
475
|
+
}
|
476
|
+
|
477
|
+
.mb55 {
|
478
|
+
margin-bottom: 55px !important;
|
479
|
+
}
|
480
|
+
|
481
|
+
.ml55 {
|
482
|
+
margin-left: 55px !important;
|
483
|
+
}
|
484
|
+
|
485
|
+
.p60 {
|
486
|
+
padding: 60px !important;
|
487
|
+
}
|
488
|
+
|
489
|
+
.m60 {
|
490
|
+
margin: 60px !important;
|
491
|
+
}
|
492
|
+
|
493
|
+
.pt60 {
|
494
|
+
padding-top: 60px !important;
|
495
|
+
}
|
496
|
+
|
497
|
+
.pr60 {
|
498
|
+
padding-right: 60px !important;
|
499
|
+
}
|
500
|
+
|
501
|
+
.pb60 {
|
502
|
+
padding-bottom: 60px !important;
|
503
|
+
}
|
504
|
+
|
505
|
+
.pl60 {
|
506
|
+
padding-left: 60px !important;
|
507
|
+
}
|
508
|
+
|
509
|
+
.mt60 {
|
510
|
+
margin-top: 60px !important;
|
511
|
+
}
|
512
|
+
|
513
|
+
.mr60 {
|
514
|
+
margin-right: 60px !important;
|
515
|
+
}
|
516
|
+
|
517
|
+
.mb60 {
|
518
|
+
margin-bottom: 60px !important;
|
519
|
+
}
|
520
|
+
|
521
|
+
.ml60 {
|
522
|
+
margin-left: 60px !important;
|
523
|
+
}
|
524
|
+
|
525
|
+
.p65 {
|
526
|
+
padding: 65px !important;
|
527
|
+
}
|
528
|
+
|
529
|
+
.m65 {
|
530
|
+
margin: 65px !important;
|
531
|
+
}
|
532
|
+
|
533
|
+
.pt65 {
|
534
|
+
padding-top: 65px !important;
|
535
|
+
}
|
536
|
+
|
537
|
+
.pr65 {
|
538
|
+
padding-right: 65px !important;
|
539
|
+
}
|
540
|
+
|
541
|
+
.pb65 {
|
542
|
+
padding-bottom: 65px !important;
|
543
|
+
}
|
544
|
+
|
545
|
+
.pl65 {
|
546
|
+
padding-left: 65px !important;
|
547
|
+
}
|
548
|
+
|
549
|
+
.mt65 {
|
550
|
+
margin-top: 65px !important;
|
551
|
+
}
|
552
|
+
|
553
|
+
.mr65 {
|
554
|
+
margin-right: 65px !important;
|
555
|
+
}
|
556
|
+
|
557
|
+
.mb65 {
|
558
|
+
margin-bottom: 65px !important;
|
559
|
+
}
|
560
|
+
|
561
|
+
.ml65 {
|
562
|
+
margin-left: 65px !important;
|
563
|
+
}
|
564
|
+
|
565
|
+
.p70 {
|
566
|
+
padding: 70px !important;
|
567
|
+
}
|
568
|
+
|
569
|
+
.m70 {
|
570
|
+
margin: 70px !important;
|
571
|
+
}
|
572
|
+
|
573
|
+
.pt70 {
|
574
|
+
padding-top: 70px !important;
|
575
|
+
}
|
576
|
+
|
577
|
+
.pr70 {
|
578
|
+
padding-right: 70px !important;
|
579
|
+
}
|
580
|
+
|
581
|
+
.pb70 {
|
582
|
+
padding-bottom: 70px !important;
|
583
|
+
}
|
584
|
+
|
585
|
+
.pl70 {
|
586
|
+
padding-left: 70px !important;
|
587
|
+
}
|
588
|
+
|
589
|
+
.mt70 {
|
590
|
+
margin-top: 70px !important;
|
591
|
+
}
|
592
|
+
|
593
|
+
.mr70 {
|
594
|
+
margin-right: 70px !important;
|
595
|
+
}
|
596
|
+
|
597
|
+
.mb70 {
|
598
|
+
margin-bottom: 70px !important;
|
599
|
+
}
|
600
|
+
|
601
|
+
.ml70 {
|
602
|
+
margin-left: 70px !important;
|
603
|
+
}
|
604
|
+
|
605
|
+
.p75 {
|
606
|
+
padding: 75px !important;
|
607
|
+
}
|
608
|
+
|
609
|
+
.m75 {
|
610
|
+
margin: 75px !important;
|
611
|
+
}
|
612
|
+
|
613
|
+
.pt75 {
|
614
|
+
padding-top: 75px !important;
|
615
|
+
}
|
616
|
+
|
617
|
+
.pr75 {
|
618
|
+
padding-right: 75px !important;
|
619
|
+
}
|
620
|
+
|
621
|
+
.pb75 {
|
622
|
+
padding-bottom: 75px !important;
|
623
|
+
}
|
624
|
+
|
625
|
+
.pl75 {
|
626
|
+
padding-left: 75px !important;
|
627
|
+
}
|
628
|
+
|
629
|
+
.mt75 {
|
630
|
+
margin-top: 75px !important;
|
631
|
+
}
|
632
|
+
|
633
|
+
.mr75 {
|
634
|
+
margin-right: 75px !important;
|
635
|
+
}
|
636
|
+
|
637
|
+
.mb75 {
|
638
|
+
margin-bottom: 75px !important;
|
639
|
+
}
|
640
|
+
|
641
|
+
.ml75 {
|
642
|
+
margin-left: 75px !important;
|
643
|
+
}
|
644
|
+
|
645
|
+
.p80 {
|
646
|
+
padding: 80px !important;
|
647
|
+
}
|
648
|
+
|
649
|
+
.m80 {
|
650
|
+
margin: 80px !important;
|
651
|
+
}
|
652
|
+
|
653
|
+
.pt80 {
|
654
|
+
padding-top: 80px !important;
|
655
|
+
}
|
656
|
+
|
657
|
+
.pr80 {
|
658
|
+
padding-right: 80px !important;
|
659
|
+
}
|
660
|
+
|
661
|
+
.pb80 {
|
662
|
+
padding-bottom: 80px !important;
|
663
|
+
}
|
664
|
+
|
665
|
+
.pl80 {
|
666
|
+
padding-left: 80px !important;
|
667
|
+
}
|
668
|
+
|
669
|
+
.mt80 {
|
670
|
+
margin-top: 80px !important;
|
671
|
+
}
|
672
|
+
|
673
|
+
.mr80 {
|
674
|
+
margin-right: 80px !important;
|
675
|
+
}
|
676
|
+
|
677
|
+
.mb80 {
|
678
|
+
margin-bottom: 80px !important;
|
679
|
+
}
|
680
|
+
|
681
|
+
.ml80 {
|
682
|
+
margin-left: 80px !important;
|
683
|
+
}
|
684
|
+
|
685
|
+
.p85 {
|
686
|
+
padding: 85px !important;
|
687
|
+
}
|
688
|
+
|
689
|
+
.m85 {
|
690
|
+
margin: 85px !important;
|
691
|
+
}
|
692
|
+
|
693
|
+
.pt85 {
|
694
|
+
padding-top: 85px !important;
|
695
|
+
}
|
696
|
+
|
697
|
+
.pr85 {
|
698
|
+
padding-right: 85px !important;
|
699
|
+
}
|
700
|
+
|
701
|
+
.pb85 {
|
702
|
+
padding-bottom: 85px !important;
|
703
|
+
}
|
704
|
+
|
705
|
+
.pl85 {
|
706
|
+
padding-left: 85px !important;
|
707
|
+
}
|
708
|
+
|
709
|
+
.mt85 {
|
710
|
+
margin-top: 85px !important;
|
711
|
+
}
|
712
|
+
|
713
|
+
.mr85 {
|
714
|
+
margin-right: 85px !important;
|
715
|
+
}
|
716
|
+
|
717
|
+
.mb85 {
|
718
|
+
margin-bottom: 85px !important;
|
719
|
+
}
|
720
|
+
|
721
|
+
.ml85 {
|
722
|
+
margin-left: 85px !important;
|
723
|
+
}
|
724
|
+
|
725
|
+
.p90 {
|
726
|
+
padding: 90px !important;
|
727
|
+
}
|
728
|
+
|
729
|
+
.m90 {
|
730
|
+
margin: 90px !important;
|
731
|
+
}
|
732
|
+
|
733
|
+
.pt90 {
|
734
|
+
padding-top: 90px !important;
|
735
|
+
}
|
736
|
+
|
737
|
+
.pr90 {
|
738
|
+
padding-right: 90px !important;
|
739
|
+
}
|
740
|
+
|
741
|
+
.pb90 {
|
742
|
+
padding-bottom: 90px !important;
|
743
|
+
}
|
744
|
+
|
745
|
+
.pl90 {
|
746
|
+
padding-left: 90px !important;
|
747
|
+
}
|
748
|
+
|
749
|
+
.mt90 {
|
750
|
+
margin-top: 90px !important;
|
751
|
+
}
|
752
|
+
|
753
|
+
.mr90 {
|
754
|
+
margin-right: 90px !important;
|
755
|
+
}
|
756
|
+
|
757
|
+
.mb90 {
|
758
|
+
margin-bottom: 90px !important;
|
759
|
+
}
|
760
|
+
|
761
|
+
.ml90 {
|
762
|
+
margin-left: 90px !important;
|
763
|
+
}
|
764
|
+
|
765
|
+
.p95 {
|
766
|
+
padding: 95px !important;
|
767
|
+
}
|
768
|
+
|
769
|
+
.m95 {
|
770
|
+
margin: 95px !important;
|
771
|
+
}
|
772
|
+
|
773
|
+
.pt95 {
|
774
|
+
padding-top: 95px !important;
|
775
|
+
}
|
776
|
+
|
777
|
+
.pr95 {
|
778
|
+
padding-right: 95px !important;
|
779
|
+
}
|
780
|
+
|
781
|
+
.pb95 {
|
782
|
+
padding-bottom: 95px !important;
|
783
|
+
}
|
784
|
+
|
785
|
+
.pl95 {
|
786
|
+
padding-left: 95px !important;
|
787
|
+
}
|
788
|
+
|
789
|
+
.mt95 {
|
790
|
+
margin-top: 95px !important;
|
791
|
+
}
|
792
|
+
|
793
|
+
.mr95 {
|
794
|
+
margin-right: 95px !important;
|
795
|
+
}
|
796
|
+
|
797
|
+
.mb95 {
|
798
|
+
margin-bottom: 95px !important;
|
799
|
+
}
|
800
|
+
|
801
|
+
.ml95 {
|
802
|
+
margin-left: 95px !important;
|
803
|
+
}
|
804
|
+
|
805
|
+
.p100 {
|
806
|
+
padding: 100px !important;
|
807
|
+
}
|
808
|
+
|
809
|
+
.m100 {
|
810
|
+
margin: 100px !important;
|
811
|
+
}
|
812
|
+
|
813
|
+
.pt100 {
|
814
|
+
padding-top: 100px !important;
|
815
|
+
}
|
816
|
+
|
817
|
+
.pr100 {
|
818
|
+
padding-right: 100px !important;
|
819
|
+
}
|
820
|
+
|
821
|
+
.pb100 {
|
822
|
+
padding-bottom: 100px !important;
|
823
|
+
}
|
824
|
+
|
825
|
+
.pl100 {
|
826
|
+
padding-left: 100px !important;
|
827
|
+
}
|
828
|
+
|
829
|
+
.mt100 {
|
830
|
+
margin-top: 100px !important;
|
831
|
+
}
|
832
|
+
|
833
|
+
.mr100 {
|
834
|
+
margin-right: 100px !important;
|
835
|
+
}
|
836
|
+
|
837
|
+
.mb100 {
|
838
|
+
margin-bottom: 100px !important;
|
839
|
+
}
|
840
|
+
|
841
|
+
.ml100 {
|
842
|
+
margin-left: 100px !important;
|
843
|
+
}
|
844
|
+
|
845
|
+
.w10 {
|
846
|
+
width: 10px !important;
|
847
|
+
}
|
848
|
+
|
849
|
+
.w15 {
|
850
|
+
width: 15px !important;
|
851
|
+
}
|
852
|
+
|
853
|
+
.w20 {
|
854
|
+
width: 20px !important;
|
855
|
+
}
|
856
|
+
|
857
|
+
.w25 {
|
858
|
+
width: 25px !important;
|
859
|
+
}
|
860
|
+
|
861
|
+
.w30 {
|
862
|
+
width: 30px !important;
|
863
|
+
}
|
864
|
+
|
865
|
+
.w35 {
|
866
|
+
width: 35px !important;
|
867
|
+
}
|
868
|
+
|
869
|
+
.w40 {
|
870
|
+
width: 40px !important;
|
871
|
+
}
|
872
|
+
|
873
|
+
.w45 {
|
874
|
+
width: 45px !important;
|
875
|
+
}
|
876
|
+
|
877
|
+
.w50 {
|
878
|
+
width: 50px !important;
|
879
|
+
}
|
880
|
+
|
881
|
+
.w55 {
|
882
|
+
width: 55px !important;
|
883
|
+
}
|
884
|
+
|
885
|
+
.w60 {
|
886
|
+
width: 60px !important;
|
887
|
+
}
|
888
|
+
|
889
|
+
.w65 {
|
890
|
+
width: 65px !important;
|
891
|
+
}
|
892
|
+
|
893
|
+
.w70 {
|
894
|
+
width: 70px !important;
|
895
|
+
}
|
896
|
+
|
897
|
+
.w75 {
|
898
|
+
width: 75px !important;
|
899
|
+
}
|
900
|
+
|
901
|
+
.w80 {
|
902
|
+
width: 80px !important;
|
903
|
+
}
|
904
|
+
|
905
|
+
.w85 {
|
906
|
+
width: 85px !important;
|
907
|
+
}
|
908
|
+
|
909
|
+
.w90 {
|
910
|
+
width: 90px !important;
|
911
|
+
}
|
912
|
+
|
913
|
+
.w95 {
|
914
|
+
width: 95px !important;
|
915
|
+
}
|
916
|
+
|
917
|
+
.w100 {
|
918
|
+
width: 100px !important;
|
919
|
+
}
|
920
|
+
|
921
|
+
.w105 {
|
922
|
+
width: 105px !important;
|
923
|
+
}
|
924
|
+
|
925
|
+
.w110 {
|
926
|
+
width: 110px !important;
|
927
|
+
}
|
928
|
+
|
929
|
+
.w115 {
|
930
|
+
width: 115px !important;
|
931
|
+
}
|
932
|
+
|
933
|
+
.w120 {
|
934
|
+
width: 120px !important;
|
935
|
+
}
|
936
|
+
|
937
|
+
.w125 {
|
938
|
+
width: 125px !important;
|
939
|
+
}
|
940
|
+
|
941
|
+
.w130 {
|
942
|
+
width: 130px !important;
|
943
|
+
}
|
944
|
+
|
945
|
+
.w135 {
|
946
|
+
width: 135px !important;
|
947
|
+
}
|
948
|
+
|
949
|
+
.w140 {
|
950
|
+
width: 140px !important;
|
951
|
+
}
|
952
|
+
|
953
|
+
.w145 {
|
954
|
+
width: 145px !important;
|
955
|
+
}
|
956
|
+
|
957
|
+
.w150 {
|
958
|
+
width: 150px !important;
|
959
|
+
}
|
960
|
+
|
961
|
+
.w155 {
|
962
|
+
width: 155px !important;
|
963
|
+
}
|
964
|
+
|
965
|
+
.w160 {
|
966
|
+
width: 160px !important;
|
967
|
+
}
|
968
|
+
|
969
|
+
.w165 {
|
970
|
+
width: 165px !important;
|
971
|
+
}
|
972
|
+
|
973
|
+
.w170 {
|
974
|
+
width: 170px !important;
|
975
|
+
}
|
976
|
+
|
977
|
+
.w175 {
|
978
|
+
width: 175px !important;
|
979
|
+
}
|
980
|
+
|
981
|
+
.w180 {
|
982
|
+
width: 180px !important;
|
983
|
+
}
|
984
|
+
|
985
|
+
.w185 {
|
986
|
+
width: 185px !important;
|
987
|
+
}
|
988
|
+
|
989
|
+
.w190 {
|
990
|
+
width: 190px !important;
|
991
|
+
}
|
992
|
+
|
993
|
+
.w195 {
|
994
|
+
width: 195px !important;
|
995
|
+
}
|
996
|
+
|
997
|
+
.w200 {
|
998
|
+
width: 200px !important;
|
999
|
+
}
|
1000
|
+
|
1001
|
+
.w205 {
|
1002
|
+
width: 205px !important;
|
1003
|
+
}
|
1004
|
+
|
1005
|
+
.w210 {
|
1006
|
+
width: 210px !important;
|
1007
|
+
}
|
1008
|
+
|
1009
|
+
.w215 {
|
1010
|
+
width: 215px !important;
|
1011
|
+
}
|
1012
|
+
|
1013
|
+
.w220 {
|
1014
|
+
width: 220px !important;
|
1015
|
+
}
|
1016
|
+
|
1017
|
+
.w225 {
|
1018
|
+
width: 225px !important;
|
1019
|
+
}
|
1020
|
+
|
1021
|
+
.w230 {
|
1022
|
+
width: 230px !important;
|
1023
|
+
}
|
1024
|
+
|
1025
|
+
.w235 {
|
1026
|
+
width: 235px !important;
|
1027
|
+
}
|
1028
|
+
|
1029
|
+
.w240 {
|
1030
|
+
width: 240px !important;
|
1031
|
+
}
|
1032
|
+
|
1033
|
+
.w245 {
|
1034
|
+
width: 245px !important;
|
1035
|
+
}
|
1036
|
+
|
1037
|
+
.w250 {
|
1038
|
+
width: 250px !important;
|
1039
|
+
}
|
1040
|
+
|
1041
|
+
.w255 {
|
1042
|
+
width: 255px !important;
|
1043
|
+
}
|
1044
|
+
|
1045
|
+
.w260 {
|
1046
|
+
width: 260px !important;
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
.w265 {
|
1050
|
+
width: 265px !important;
|
1051
|
+
}
|
1052
|
+
|
1053
|
+
.w270 {
|
1054
|
+
width: 270px !important;
|
1055
|
+
}
|
1056
|
+
|
1057
|
+
.w275 {
|
1058
|
+
width: 275px !important;
|
1059
|
+
}
|
1060
|
+
|
1061
|
+
.w280 {
|
1062
|
+
width: 280px !important;
|
1063
|
+
}
|
1064
|
+
|
1065
|
+
.w285 {
|
1066
|
+
width: 285px !important;
|
1067
|
+
}
|
1068
|
+
|
1069
|
+
.w290 {
|
1070
|
+
width: 290px !important;
|
1071
|
+
}
|
1072
|
+
|
1073
|
+
.w295 {
|
1074
|
+
width: 295px !important;
|
1075
|
+
}
|
1076
|
+
|
1077
|
+
.w300 {
|
1078
|
+
width: 300px !important;
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
.w305 {
|
1082
|
+
width: 305px !important;
|
1083
|
+
}
|
1084
|
+
|
1085
|
+
.w310 {
|
1086
|
+
width: 310px !important;
|
1087
|
+
}
|
1088
|
+
|
1089
|
+
.w315 {
|
1090
|
+
width: 315px !important;
|
1091
|
+
}
|
1092
|
+
|
1093
|
+
.w320 {
|
1094
|
+
width: 320px !important;
|
1095
|
+
}
|
1096
|
+
|
1097
|
+
.w325 {
|
1098
|
+
width: 325px !important;
|
1099
|
+
}
|
1100
|
+
|
1101
|
+
.w330 {
|
1102
|
+
width: 330px !important;
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
.w335 {
|
1106
|
+
width: 335px !important;
|
1107
|
+
}
|
1108
|
+
|
1109
|
+
.w340 {
|
1110
|
+
width: 340px !important;
|
1111
|
+
}
|
1112
|
+
|
1113
|
+
.w345 {
|
1114
|
+
width: 345px !important;
|
1115
|
+
}
|
1116
|
+
|
1117
|
+
.w350 {
|
1118
|
+
width: 350px !important;
|
1119
|
+
}
|
1120
|
+
|
1121
|
+
.w355 {
|
1122
|
+
width: 355px !important;
|
1123
|
+
}
|
1124
|
+
|
1125
|
+
.w360 {
|
1126
|
+
width: 360px !important;
|
1127
|
+
}
|
1128
|
+
|
1129
|
+
.w365 {
|
1130
|
+
width: 365px !important;
|
1131
|
+
}
|
1132
|
+
|
1133
|
+
.w370 {
|
1134
|
+
width: 370px !important;
|
1135
|
+
}
|
1136
|
+
|
1137
|
+
.w375 {
|
1138
|
+
width: 375px !important;
|
1139
|
+
}
|
1140
|
+
|
1141
|
+
.w380 {
|
1142
|
+
width: 380px !important;
|
1143
|
+
}
|
1144
|
+
|
1145
|
+
.w385 {
|
1146
|
+
width: 385px !important;
|
1147
|
+
}
|
1148
|
+
|
1149
|
+
.w390 {
|
1150
|
+
width: 390px !important;
|
1151
|
+
}
|
1152
|
+
|
1153
|
+
.w395 {
|
1154
|
+
width: 395px !important;
|
1155
|
+
}
|
1156
|
+
|
1157
|
+
.w400 {
|
1158
|
+
width: 400px !important;
|
1159
|
+
}
|
1160
|
+
|
1161
|
+
.w405 {
|
1162
|
+
width: 405px !important;
|
1163
|
+
}
|
1164
|
+
|
1165
|
+
.w410 {
|
1166
|
+
width: 410px !important;
|
1167
|
+
}
|
1168
|
+
|
1169
|
+
.w415 {
|
1170
|
+
width: 415px !important;
|
1171
|
+
}
|
1172
|
+
|
1173
|
+
.w420 {
|
1174
|
+
width: 420px !important;
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
.w425 {
|
1178
|
+
width: 425px !important;
|
1179
|
+
}
|
1180
|
+
|
1181
|
+
.w430 {
|
1182
|
+
width: 430px !important;
|
1183
|
+
}
|
1184
|
+
|
1185
|
+
.w435 {
|
1186
|
+
width: 435px !important;
|
1187
|
+
}
|
1188
|
+
|
1189
|
+
.w440 {
|
1190
|
+
width: 440px !important;
|
1191
|
+
}
|
1192
|
+
|
1193
|
+
.w445 {
|
1194
|
+
width: 445px !important;
|
1195
|
+
}
|
1196
|
+
|
1197
|
+
.w450 {
|
1198
|
+
width: 450px !important;
|
1199
|
+
}
|
1200
|
+
|
1201
|
+
.w455 {
|
1202
|
+
width: 455px !important;
|
1203
|
+
}
|
1204
|
+
|
1205
|
+
.w460 {
|
1206
|
+
width: 460px !important;
|
1207
|
+
}
|
1208
|
+
|
1209
|
+
.w465 {
|
1210
|
+
width: 465px !important;
|
1211
|
+
}
|
1212
|
+
|
1213
|
+
.w470 {
|
1214
|
+
width: 470px !important;
|
1215
|
+
}
|
1216
|
+
|
1217
|
+
.w475 {
|
1218
|
+
width: 475px !important;
|
1219
|
+
}
|
1220
|
+
|
1221
|
+
.w480 {
|
1222
|
+
width: 480px !important;
|
1223
|
+
}
|
1224
|
+
|
1225
|
+
.w485 {
|
1226
|
+
width: 485px !important;
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
.w490 {
|
1230
|
+
width: 490px !important;
|
1231
|
+
}
|
1232
|
+
|
1233
|
+
.w495 {
|
1234
|
+
width: 495px !important;
|
1235
|
+
}
|
1236
|
+
|
1237
|
+
.w500 {
|
1238
|
+
width: 500px !important;
|
1239
|
+
}
|
1240
|
+
|
1241
|
+
.w505 {
|
1242
|
+
width: 505px !important;
|
1243
|
+
}
|
1244
|
+
|
1245
|
+
.w510 {
|
1246
|
+
width: 510px !important;
|
1247
|
+
}
|
1248
|
+
|
1249
|
+
.w515 {
|
1250
|
+
width: 515px !important;
|
1251
|
+
}
|
1252
|
+
|
1253
|
+
.w520 {
|
1254
|
+
width: 520px !important;
|
1255
|
+
}
|
1256
|
+
|
1257
|
+
.w525 {
|
1258
|
+
width: 525px !important;
|
1259
|
+
}
|
1260
|
+
|
1261
|
+
.w530 {
|
1262
|
+
width: 530px !important;
|
1263
|
+
}
|
1264
|
+
|
1265
|
+
.w535 {
|
1266
|
+
width: 535px !important;
|
1267
|
+
}
|
1268
|
+
|
1269
|
+
.w540 {
|
1270
|
+
width: 540px !important;
|
1271
|
+
}
|
1272
|
+
|
1273
|
+
.w545 {
|
1274
|
+
width: 545px !important;
|
1275
|
+
}
|
1276
|
+
|
1277
|
+
.w550 {
|
1278
|
+
width: 550px !important;
|
1279
|
+
}
|
1280
|
+
|
1281
|
+
.w555 {
|
1282
|
+
width: 555px !important;
|
1283
|
+
}
|
1284
|
+
|
1285
|
+
.w560 {
|
1286
|
+
width: 560px !important;
|
1287
|
+
}
|
1288
|
+
|
1289
|
+
.w565 {
|
1290
|
+
width: 565px !important;
|
1291
|
+
}
|
1292
|
+
|
1293
|
+
.w570 {
|
1294
|
+
width: 570px !important;
|
1295
|
+
}
|
1296
|
+
|
1297
|
+
.w575 {
|
1298
|
+
width: 575px !important;
|
1299
|
+
}
|
1300
|
+
|
1301
|
+
.w580 {
|
1302
|
+
width: 580px !important;
|
1303
|
+
}
|
1304
|
+
|
1305
|
+
.w585 {
|
1306
|
+
width: 585px !important;
|
1307
|
+
}
|
1308
|
+
|
1309
|
+
.w590 {
|
1310
|
+
width: 590px !important;
|
1311
|
+
}
|
1312
|
+
|
1313
|
+
.w595 {
|
1314
|
+
width: 595px !important;
|
1315
|
+
}
|
1316
|
+
|
1317
|
+
.w600 {
|
1318
|
+
width: 600px !important;
|
1319
|
+
}
|
1320
|
+
|
1321
|
+
.w605 {
|
1322
|
+
width: 605px !important;
|
1323
|
+
}
|
1324
|
+
|
1325
|
+
.w610 {
|
1326
|
+
width: 610px !important;
|
1327
|
+
}
|
1328
|
+
|
1329
|
+
.w615 {
|
1330
|
+
width: 615px !important;
|
1331
|
+
}
|
1332
|
+
|
1333
|
+
.w620 {
|
1334
|
+
width: 620px !important;
|
1335
|
+
}
|
1336
|
+
|
1337
|
+
.w625 {
|
1338
|
+
width: 625px !important;
|
1339
|
+
}
|
1340
|
+
|
1341
|
+
.w630 {
|
1342
|
+
width: 630px !important;
|
1343
|
+
}
|
1344
|
+
|
1345
|
+
.w635 {
|
1346
|
+
width: 635px !important;
|
1347
|
+
}
|
1348
|
+
|
1349
|
+
.w640 {
|
1350
|
+
width: 640px !important;
|
1351
|
+
}
|
1352
|
+
|
1353
|
+
.w645 {
|
1354
|
+
width: 645px !important;
|
1355
|
+
}
|
1356
|
+
|
1357
|
+
.w650 {
|
1358
|
+
width: 650px !important;
|
1359
|
+
}
|
1360
|
+
|
1361
|
+
.w655 {
|
1362
|
+
width: 655px !important;
|
1363
|
+
}
|
1364
|
+
|
1365
|
+
.w660 {
|
1366
|
+
width: 660px !important;
|
1367
|
+
}
|
1368
|
+
|
1369
|
+
.w665 {
|
1370
|
+
width: 665px !important;
|
1371
|
+
}
|
1372
|
+
|
1373
|
+
.w670 {
|
1374
|
+
width: 670px !important;
|
1375
|
+
}
|
1376
|
+
|
1377
|
+
.w675 {
|
1378
|
+
width: 675px !important;
|
1379
|
+
}
|
1380
|
+
|
1381
|
+
.w680 {
|
1382
|
+
width: 680px !important;
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
.w685 {
|
1386
|
+
width: 685px !important;
|
1387
|
+
}
|
1388
|
+
|
1389
|
+
.w690 {
|
1390
|
+
width: 690px !important;
|
1391
|
+
}
|
1392
|
+
|
1393
|
+
.w695 {
|
1394
|
+
width: 695px !important;
|
1395
|
+
}
|
1396
|
+
|
1397
|
+
.w700 {
|
1398
|
+
width: 700px !important;
|
1399
|
+
}
|
1400
|
+
|
1401
|
+
.w705 {
|
1402
|
+
width: 705px !important;
|
1403
|
+
}
|
1404
|
+
|
1405
|
+
.w710 {
|
1406
|
+
width: 710px !important;
|
1407
|
+
}
|
1408
|
+
|
1409
|
+
.w715 {
|
1410
|
+
width: 715px !important;
|
1411
|
+
}
|
1412
|
+
|
1413
|
+
.w720 {
|
1414
|
+
width: 720px !important;
|
1415
|
+
}
|
1416
|
+
|
1417
|
+
.w725 {
|
1418
|
+
width: 725px !important;
|
1419
|
+
}
|
1420
|
+
|
1421
|
+
.w730 {
|
1422
|
+
width: 730px !important;
|
1423
|
+
}
|
1424
|
+
|
1425
|
+
.w735 {
|
1426
|
+
width: 735px !important;
|
1427
|
+
}
|
1428
|
+
|
1429
|
+
.w740 {
|
1430
|
+
width: 740px !important;
|
1431
|
+
}
|
1432
|
+
|
1433
|
+
.w745 {
|
1434
|
+
width: 745px !important;
|
1435
|
+
}
|
1436
|
+
|
1437
|
+
.w750 {
|
1438
|
+
width: 750px !important;
|
1439
|
+
}
|
1440
|
+
|
1441
|
+
.w755 {
|
1442
|
+
width: 755px !important;
|
1443
|
+
}
|
1444
|
+
|
1445
|
+
.w760 {
|
1446
|
+
width: 760px !important;
|
1447
|
+
}
|
1448
|
+
|
1449
|
+
.w765 {
|
1450
|
+
width: 765px !important;
|
1451
|
+
}
|
1452
|
+
|
1453
|
+
.w770 {
|
1454
|
+
width: 770px !important;
|
1455
|
+
}
|
1456
|
+
|
1457
|
+
.w775 {
|
1458
|
+
width: 775px !important;
|
1459
|
+
}
|
1460
|
+
|
1461
|
+
.w780 {
|
1462
|
+
width: 780px !important;
|
1463
|
+
}
|
1464
|
+
|
1465
|
+
.w785 {
|
1466
|
+
width: 785px !important;
|
1467
|
+
}
|
1468
|
+
|
1469
|
+
.w790 {
|
1470
|
+
width: 790px !important;
|
1471
|
+
}
|
1472
|
+
|
1473
|
+
.w795 {
|
1474
|
+
width: 795px !important;
|
1475
|
+
}
|
1476
|
+
|
1477
|
+
.w800 {
|
1478
|
+
width: 800px !important;
|
1479
|
+
}
|
1480
|
+
|
1481
|
+
.w805 {
|
1482
|
+
width: 805px !important;
|
1483
|
+
}
|
1484
|
+
|
1485
|
+
.w810 {
|
1486
|
+
width: 810px !important;
|
1487
|
+
}
|
1488
|
+
|
1489
|
+
.w815 {
|
1490
|
+
width: 815px !important;
|
1491
|
+
}
|
1492
|
+
|
1493
|
+
.w820 {
|
1494
|
+
width: 820px !important;
|
1495
|
+
}
|
1496
|
+
|
1497
|
+
.w825 {
|
1498
|
+
width: 825px !important;
|
1499
|
+
}
|
1500
|
+
|
1501
|
+
.w830 {
|
1502
|
+
width: 830px !important;
|
1503
|
+
}
|
1504
|
+
|
1505
|
+
.w835 {
|
1506
|
+
width: 835px !important;
|
1507
|
+
}
|
1508
|
+
|
1509
|
+
.w840 {
|
1510
|
+
width: 840px !important;
|
1511
|
+
}
|
1512
|
+
|
1513
|
+
.w845 {
|
1514
|
+
width: 845px !important;
|
1515
|
+
}
|
1516
|
+
|
1517
|
+
.w850 {
|
1518
|
+
width: 850px !important;
|
1519
|
+
}
|
1520
|
+
|
1521
|
+
.w855 {
|
1522
|
+
width: 855px !important;
|
1523
|
+
}
|
1524
|
+
|
1525
|
+
.w860 {
|
1526
|
+
width: 860px !important;
|
1527
|
+
}
|
1528
|
+
|
1529
|
+
.w865 {
|
1530
|
+
width: 865px !important;
|
1531
|
+
}
|
1532
|
+
|
1533
|
+
.w870 {
|
1534
|
+
width: 870px !important;
|
1535
|
+
}
|
1536
|
+
|
1537
|
+
.w875 {
|
1538
|
+
width: 875px !important;
|
1539
|
+
}
|
1540
|
+
|
1541
|
+
.w880 {
|
1542
|
+
width: 880px !important;
|
1543
|
+
}
|
1544
|
+
|
1545
|
+
.w885 {
|
1546
|
+
width: 885px !important;
|
1547
|
+
}
|
1548
|
+
|
1549
|
+
.w890 {
|
1550
|
+
width: 890px !important;
|
1551
|
+
}
|
1552
|
+
|
1553
|
+
.w895 {
|
1554
|
+
width: 895px !important;
|
1555
|
+
}
|
1556
|
+
|
1557
|
+
.w900 {
|
1558
|
+
width: 900px !important;
|
1559
|
+
}
|
1560
|
+
|
1561
|
+
.w905 {
|
1562
|
+
width: 905px !important;
|
1563
|
+
}
|
1564
|
+
|
1565
|
+
.w910 {
|
1566
|
+
width: 910px !important;
|
1567
|
+
}
|
1568
|
+
|
1569
|
+
.w915 {
|
1570
|
+
width: 915px !important;
|
1571
|
+
}
|
1572
|
+
|
1573
|
+
.w920 {
|
1574
|
+
width: 920px !important;
|
1575
|
+
}
|
1576
|
+
|
1577
|
+
.w925 {
|
1578
|
+
width: 925px !important;
|
1579
|
+
}
|
1580
|
+
|
1581
|
+
.w930 {
|
1582
|
+
width: 930px !important;
|
1583
|
+
}
|
1584
|
+
|
1585
|
+
.w935 {
|
1586
|
+
width: 935px !important;
|
1587
|
+
}
|
1588
|
+
|
1589
|
+
.w940 {
|
1590
|
+
width: 940px !important;
|
1591
|
+
}
|
1592
|
+
|
1593
|
+
.w945 {
|
1594
|
+
width: 945px !important;
|
1595
|
+
}
|
1596
|
+
|
1597
|
+
.w950 {
|
1598
|
+
width: 950px !important;
|
1599
|
+
}
|
1600
|
+
|
1601
|
+
.w955 {
|
1602
|
+
width: 955px !important;
|
1603
|
+
}
|
1604
|
+
|
1605
|
+
.w960 {
|
1606
|
+
width: 960px !important;
|
1607
|
+
}
|
1608
|
+
|
1609
|
+
.w965 {
|
1610
|
+
width: 965px !important;
|
1611
|
+
}
|
1612
|
+
|
1613
|
+
.w970 {
|
1614
|
+
width: 970px !important;
|
1615
|
+
}
|
1616
|
+
|
1617
|
+
.w975 {
|
1618
|
+
width: 975px !important;
|
1619
|
+
}
|
1620
|
+
|
1621
|
+
.w980 {
|
1622
|
+
width: 980px !important;
|
1623
|
+
}
|
1624
|
+
|
1625
|
+
.w985 {
|
1626
|
+
width: 985px !important;
|
1627
|
+
}
|
1628
|
+
|
1629
|
+
.w990 {
|
1630
|
+
width: 990px !important;
|
1631
|
+
}
|
1632
|
+
|
1633
|
+
.w995 {
|
1634
|
+
width: 995px !important;
|
1635
|
+
}
|
1636
|
+
|
1637
|
+
.w1000 {
|
1638
|
+
width: 1000px !important;
|
1639
|
+
}
|
1640
|
+
|
1641
|
+
.w1005 {
|
1642
|
+
width: 1005px !important;
|
1643
|
+
}
|
1644
|
+
|
1645
|
+
.w1010 {
|
1646
|
+
width: 1010px !important;
|
1647
|
+
}
|
1648
|
+
|
1649
|
+
.w1015 {
|
1650
|
+
width: 1015px !important;
|
1651
|
+
}
|
1652
|
+
|
1653
|
+
.w1020 {
|
1654
|
+
width: 1020px !important;
|
1655
|
+
}
|
1656
|
+
|
1657
|
+
.w1025 {
|
1658
|
+
width: 1025px !important;
|
1659
|
+
}
|
1660
|
+
|
1661
|
+
.w1030 {
|
1662
|
+
width: 1030px !important;
|
1663
|
+
}
|
1664
|
+
|
1665
|
+
.w1035 {
|
1666
|
+
width: 1035px !important;
|
1667
|
+
}
|
1668
|
+
|
1669
|
+
.w1040 {
|
1670
|
+
width: 1040px !important;
|
1671
|
+
}
|
1672
|
+
|
1673
|
+
.w1045 {
|
1674
|
+
width: 1045px !important;
|
1675
|
+
}
|
1676
|
+
|
1677
|
+
.w1050 {
|
1678
|
+
width: 1050px !important;
|
1679
|
+
}
|
1680
|
+
|
1681
|
+
.w1055 {
|
1682
|
+
width: 1055px !important;
|
1683
|
+
}
|
1684
|
+
|
1685
|
+
.w1060 {
|
1686
|
+
width: 1060px !important;
|
1687
|
+
}
|
1688
|
+
|
1689
|
+
.w1065 {
|
1690
|
+
width: 1065px !important;
|
1691
|
+
}
|
1692
|
+
|
1693
|
+
.w1070 {
|
1694
|
+
width: 1070px !important;
|
1695
|
+
}
|
1696
|
+
|
1697
|
+
.w1075 {
|
1698
|
+
width: 1075px !important;
|
1699
|
+
}
|
1700
|
+
|
1701
|
+
.w1080 {
|
1702
|
+
width: 1080px !important;
|
1703
|
+
}
|
1704
|
+
|
1705
|
+
.w1085 {
|
1706
|
+
width: 1085px !important;
|
1707
|
+
}
|
1708
|
+
|
1709
|
+
.w1090 {
|
1710
|
+
width: 1090px !important;
|
1711
|
+
}
|
1712
|
+
|
1713
|
+
.w1095 {
|
1714
|
+
width: 1095px !important;
|
1715
|
+
}
|
1716
|
+
|
1717
|
+
.w1100 {
|
1718
|
+
width: 1100px !important;
|
1719
|
+
}
|
1720
|
+
|
1721
|
+
.w1105 {
|
1722
|
+
width: 1105px !important;
|
1723
|
+
}
|
1724
|
+
|
1725
|
+
.w1110 {
|
1726
|
+
width: 1110px !important;
|
1727
|
+
}
|
1728
|
+
|
1729
|
+
.w1115 {
|
1730
|
+
width: 1115px !important;
|
1731
|
+
}
|
1732
|
+
|
1733
|
+
.w1120 {
|
1734
|
+
width: 1120px !important;
|
1735
|
+
}
|
1736
|
+
|
1737
|
+
.w1125 {
|
1738
|
+
width: 1125px !important;
|
1739
|
+
}
|
1740
|
+
|
1741
|
+
.w1130 {
|
1742
|
+
width: 1130px !important;
|
1743
|
+
}
|
1744
|
+
|
1745
|
+
.w1135 {
|
1746
|
+
width: 1135px !important;
|
1747
|
+
}
|
1748
|
+
|
1749
|
+
.w1140 {
|
1750
|
+
width: 1140px !important;
|
1751
|
+
}
|
1752
|
+
|
1753
|
+
.w1145 {
|
1754
|
+
width: 1145px !important;
|
1755
|
+
}
|
1756
|
+
|
1757
|
+
.w1150 {
|
1758
|
+
width: 1150px !important;
|
1759
|
+
}
|
1760
|
+
|
1761
|
+
.w1155 {
|
1762
|
+
width: 1155px !important;
|
1763
|
+
}
|
1764
|
+
|
1765
|
+
.w1160 {
|
1766
|
+
width: 1160px !important;
|
1767
|
+
}
|
1768
|
+
|
1769
|
+
.w1165 {
|
1770
|
+
width: 1165px !important;
|
1771
|
+
}
|
1772
|
+
|
1773
|
+
.w1170 {
|
1774
|
+
width: 1170px !important;
|
1775
|
+
}
|
1776
|
+
|
1777
|
+
.w1175 {
|
1778
|
+
width: 1175px !important;
|
1779
|
+
}
|
1780
|
+
|
1781
|
+
.w1180 {
|
1782
|
+
width: 1180px !important;
|
1783
|
+
}
|
1784
|
+
|
1785
|
+
.w1185 {
|
1786
|
+
width: 1185px !important;
|
1787
|
+
}
|
1788
|
+
|
1789
|
+
.w1190 {
|
1790
|
+
width: 1190px !important;
|
1791
|
+
}
|
1792
|
+
|
1793
|
+
.w1195 {
|
1794
|
+
width: 1195px !important;
|
1795
|
+
}
|
1796
|
+
|
1797
|
+
.w1200 {
|
1798
|
+
width: 1200px !important;
|
1799
|
+
}
|
1800
|
+
|
1801
|
+
.w5p {
|
1802
|
+
width: 5% !important;
|
1803
|
+
}
|
1804
|
+
|
1805
|
+
.w10p {
|
1806
|
+
width: 10% !important;
|
1807
|
+
}
|
1808
|
+
|
1809
|
+
.w15p {
|
1810
|
+
width: 15% !important;
|
1811
|
+
}
|
1812
|
+
|
1813
|
+
.w20p {
|
1814
|
+
width: 20% !important;
|
1815
|
+
}
|
1816
|
+
|
1817
|
+
.w25p {
|
1818
|
+
width: 25% !important;
|
1819
|
+
}
|
1820
|
+
|
1821
|
+
.w30p {
|
1822
|
+
width: 30% !important;
|
1823
|
+
}
|
1824
|
+
|
1825
|
+
.w35p {
|
1826
|
+
width: 35% !important;
|
1827
|
+
}
|
1828
|
+
|
1829
|
+
.w40p {
|
1830
|
+
width: 40% !important;
|
1831
|
+
}
|
1832
|
+
|
1833
|
+
.w45p {
|
1834
|
+
width: 45% !important;
|
1835
|
+
}
|
1836
|
+
|
1837
|
+
.w50p {
|
1838
|
+
width: 50% !important;
|
1839
|
+
}
|
1840
|
+
|
1841
|
+
.w55p {
|
1842
|
+
width: 55% !important;
|
1843
|
+
}
|
1844
|
+
|
1845
|
+
.w60p {
|
1846
|
+
width: 60% !important;
|
1847
|
+
}
|
1848
|
+
|
1849
|
+
.w65p {
|
1850
|
+
width: 65% !important;
|
1851
|
+
}
|
1852
|
+
|
1853
|
+
.w70p {
|
1854
|
+
width: 70% !important;
|
1855
|
+
}
|
1856
|
+
|
1857
|
+
.w75p {
|
1858
|
+
width: 75% !important;
|
1859
|
+
}
|
1860
|
+
|
1861
|
+
.w80p {
|
1862
|
+
width: 80% !important;
|
1863
|
+
}
|
1864
|
+
|
1865
|
+
.w85p {
|
1866
|
+
width: 85% !important;
|
1867
|
+
}
|
1868
|
+
|
1869
|
+
.w90p {
|
1870
|
+
width: 90% !important;
|
1871
|
+
}
|
1872
|
+
|
1873
|
+
.w95p {
|
1874
|
+
width: 95% !important;
|
1875
|
+
}
|
1876
|
+
|
1877
|
+
.w100p {
|
1878
|
+
width: 100% !important;
|
1879
|
+
}
|
1880
|
+
|
1881
|
+
.fs0 {
|
1882
|
+
font-size: 0;
|
1883
|
+
}
|
1884
|
+
|
1885
|
+
.fs10 {
|
1886
|
+
font-size: 10px !important;
|
1887
|
+
}
|
1888
|
+
|
1889
|
+
.fs11 {
|
1890
|
+
font-size: 11px !important;
|
1891
|
+
}
|
1892
|
+
|
1893
|
+
.fs12 {
|
1894
|
+
font-size: 12px !important;
|
1895
|
+
}
|
1896
|
+
|
1897
|
+
.fs13 {
|
1898
|
+
font-size: 13px !important;
|
1899
|
+
}
|
1900
|
+
|
1901
|
+
.fs14 {
|
1902
|
+
font-size: 14px !important;
|
1903
|
+
}
|
1904
|
+
|
1905
|
+
.fs15 {
|
1906
|
+
font-size: 15px !important;
|
1907
|
+
}
|
1908
|
+
|
1909
|
+
.fs16 {
|
1910
|
+
font-size: 16px !important;
|
1911
|
+
}
|
1912
|
+
|
1913
|
+
.fs17 {
|
1914
|
+
font-size: 17px !important;
|
1915
|
+
}
|
1916
|
+
|
1917
|
+
.fs18 {
|
1918
|
+
font-size: 18px !important;
|
1919
|
+
}
|
1920
|
+
|
1921
|
+
.fs19 {
|
1922
|
+
font-size: 19px !important;
|
1923
|
+
}
|
1924
|
+
|
1925
|
+
.fs20 {
|
1926
|
+
font-size: 20px !important;
|
1927
|
+
}
|
1928
|
+
|
1929
|
+
.fs21 {
|
1930
|
+
font-size: 21px !important;
|
1931
|
+
}
|
1932
|
+
|
1933
|
+
.fs22 {
|
1934
|
+
font-size: 22px !important;
|
1935
|
+
}
|
1936
|
+
|
1937
|
+
.fs23 {
|
1938
|
+
font-size: 23px !important;
|
1939
|
+
}
|
1940
|
+
|
1941
|
+
.fs24 {
|
1942
|
+
font-size: 24px !important;
|
1943
|
+
}
|
1944
|
+
|
1945
|
+
.fs25 {
|
1946
|
+
font-size: 25px !important;
|
1947
|
+
}
|
1948
|
+
|
1949
|
+
.fs26 {
|
1950
|
+
font-size: 26px !important;
|
1951
|
+
}
|
1952
|
+
|
1953
|
+
.fs27 {
|
1954
|
+
font-size: 27px !important;
|
1955
|
+
}
|
1956
|
+
|
1957
|
+
.fs28 {
|
1958
|
+
font-size: 28px !important;
|
1959
|
+
}
|
1960
|
+
|
1961
|
+
.fs29 {
|
1962
|
+
font-size: 29px !important;
|
1963
|
+
}
|
1964
|
+
|
1965
|
+
.fs30 {
|
1966
|
+
font-size: 30px !important;
|
1967
|
+
}
|
1968
|
+
|
1969
|
+
.lh100 {
|
1970
|
+
line-height: 100% !important;
|
1971
|
+
}
|
1972
|
+
|
1973
|
+
.lh105 {
|
1974
|
+
line-height: 105% !important;
|
1975
|
+
}
|
1976
|
+
|
1977
|
+
.lh110 {
|
1978
|
+
line-height: 110% !important;
|
1979
|
+
}
|
1980
|
+
|
1981
|
+
.lh115 {
|
1982
|
+
line-height: 115% !important;
|
1983
|
+
}
|
1984
|
+
|
1985
|
+
.lh120 {
|
1986
|
+
line-height: 120% !important;
|
1987
|
+
}
|
1988
|
+
|
1989
|
+
.lh125 {
|
1990
|
+
line-height: 125% !important;
|
1991
|
+
}
|
1992
|
+
|
1993
|
+
.lh130 {
|
1994
|
+
line-height: 130% !important;
|
1995
|
+
}
|
1996
|
+
|
1997
|
+
.lh135 {
|
1998
|
+
line-height: 135% !important;
|
1999
|
+
}
|
2000
|
+
|
2001
|
+
.lh140 {
|
2002
|
+
line-height: 140% !important;
|
2003
|
+
}
|
2004
|
+
|
2005
|
+
.lh145 {
|
2006
|
+
line-height: 145% !important;
|
2007
|
+
}
|
2008
|
+
|
2009
|
+
.lh150 {
|
2010
|
+
line-height: 150% !important;
|
2011
|
+
}
|
2012
|
+
|
2013
|
+
.lh155 {
|
2014
|
+
line-height: 155% !important;
|
2015
|
+
}
|
2016
|
+
|
2017
|
+
.lh160 {
|
2018
|
+
line-height: 160% !important;
|
2019
|
+
}
|
2020
|
+
|
2021
|
+
.lh165 {
|
2022
|
+
line-height: 165% !important;
|
2023
|
+
}
|
2024
|
+
|
2025
|
+
.lh170 {
|
2026
|
+
line-height: 170% !important;
|
2027
|
+
}
|
2028
|
+
|
2029
|
+
.lh175 {
|
2030
|
+
line-height: 175% !important;
|
2031
|
+
}
|
2032
|
+
|
2033
|
+
.lh180 {
|
2034
|
+
line-height: 180% !important;
|
2035
|
+
}
|
2036
|
+
|
2037
|
+
.lh185 {
|
2038
|
+
line-height: 185% !important;
|
2039
|
+
}
|
2040
|
+
|
2041
|
+
.lh190 {
|
2042
|
+
line-height: 190% !important;
|
2043
|
+
}
|
2044
|
+
|
2045
|
+
.lh195 {
|
2046
|
+
line-height: 195% !important;
|
2047
|
+
}
|
2048
|
+
|
2049
|
+
.lh200 {
|
2050
|
+
line-height: 200% !important;
|
2051
|
+
}
|
2052
|
+
|
2053
|
+
.tac {
|
2054
|
+
text-align: center !important;
|
2055
|
+
}
|
2056
|
+
|
2057
|
+
.tar {
|
2058
|
+
text-align: right !important;
|
2059
|
+
}
|
2060
|
+
|
2061
|
+
.tal {
|
2062
|
+
text-align: left !important;
|
2063
|
+
}
|
2064
|
+
|
2065
|
+
.taj {
|
2066
|
+
text-align: justify !important;
|
2067
|
+
}
|
2068
|
+
|
2069
|
+
.vat {
|
2070
|
+
vertical-align: top !important;
|
2071
|
+
}
|
2072
|
+
|
2073
|
+
.vam {
|
2074
|
+
vertical-align: middle !important;
|
2075
|
+
}
|
2076
|
+
|
2077
|
+
.vab {
|
2078
|
+
vertical-align: bottom !important;
|
2079
|
+
}
|
2080
|
+
|
2081
|
+
.b {
|
2082
|
+
font-weight: bold !important;
|
2083
|
+
}
|
2084
|
+
|
2085
|
+
.i {
|
2086
|
+
font-style: italic !important;
|
2087
|
+
}
|
2088
|
+
|
2089
|
+
.n {
|
2090
|
+
font-style: normal !important;
|
2091
|
+
}
|
2092
|
+
|
2093
|
+
.u {
|
2094
|
+
text-decoration: underline !important;
|
2095
|
+
}
|
2096
|
+
|
2097
|
+
.fwn {
|
2098
|
+
font-weight: normal !important;
|
2099
|
+
}
|
2100
|
+
|
2101
|
+
.upcase {
|
2102
|
+
text-transform: uppercase;
|
2103
|
+
}
|
2104
|
+
|
2105
|
+
.downcase {
|
2106
|
+
text-transform: lowercase;
|
2107
|
+
}
|
2108
|
+
|
2109
|
+
.ffa {
|
2110
|
+
font-family: Arial;
|
2111
|
+
}
|
2112
|
+
|
2113
|
+
.fft {
|
2114
|
+
font-family: Tahoma;
|
2115
|
+
}
|
2116
|
+
|
2117
|
+
.ffv {
|
2118
|
+
font-family: Verdana;
|
2119
|
+
}
|
2120
|
+
|
2121
|
+
.ffg {
|
2122
|
+
font-family: Georgia;
|
2123
|
+
}
|
2124
|
+
|
2125
|
+
.ffm {
|
2126
|
+
font-family: Monospace;
|
2127
|
+
}
|
2128
|
+
|
2129
|
+
.fftnr {
|
2130
|
+
font-family: Times New Roman;
|
2131
|
+
}
|
2132
|
+
|
2133
|
+
.inline {
|
2134
|
+
display: inline !important;
|
2135
|
+
}
|
2136
|
+
|
2137
|
+
.block {
|
2138
|
+
display: block !important;
|
2139
|
+
}
|
2140
|
+
|
2141
|
+
.iblock {
|
2142
|
+
display: inline-block !important;
|
2143
|
+
}
|
2144
|
+
|
2145
|
+
.showme {
|
2146
|
+
border: 1px solid red !important;
|
2147
|
+
}
|
2148
|
+
|
2149
|
+
.posrel {
|
2150
|
+
position: relative !important;
|
2151
|
+
}
|
2152
|
+
|
2153
|
+
.posabs {
|
2154
|
+
position: absolute !important;
|
2155
|
+
}
|
2156
|
+
|
2157
|
+
.ptz--table {
|
2158
|
+
display: table;
|
2159
|
+
}
|
2160
|
+
|
2161
|
+
.ptz--row, .ptz--tr {
|
2162
|
+
display: table-row;
|
2163
|
+
}
|
2164
|
+
|
2165
|
+
.ptz--cell, .ptz--th, .ptz--td {
|
2166
|
+
display: table-cell;
|
2167
|
+
vertical-align: top;
|
2168
|
+
}
|
2169
|
+
|
2170
|
+
.brn {
|
2171
|
+
border-radius: 0 !important;
|
2172
|
+
}
|
2173
|
+
|
2174
|
+
.br-off, .nobr {
|
2175
|
+
white-space: nowrap;
|
2176
|
+
}
|
2177
|
+
|
2178
|
+
.br-on {
|
2179
|
+
white-space: normal;
|
2180
|
+
}
|
2181
|
+
|
2182
|
+
.ls0 {
|
2183
|
+
letter-spacing: 0;
|
2184
|
+
}
|
2185
|
+
|
2186
|
+
.lsn {
|
2187
|
+
letter-spacing: normal;
|
2188
|
+
}
|