kirgudu_sso 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/templates/kirgudu_sso/authentications/base/fonts/caecilialtstd-bold-webfont.woff +0 -0
  6. data/app/assets/templates/kirgudu_sso/authentications/base/fonts/caecilialtstd-light-webfont.woff +0 -0
  7. data/app/assets/templates/kirgudu_sso/authentications/base/fonts/gotham-bold.woff +0 -0
  8. data/app/assets/templates/kirgudu_sso/authentications/base/fonts/gotham-book.woff +0 -0
  9. data/app/assets/templates/kirgudu_sso/authentications/base/images/badge-free.png +0 -0
  10. data/app/assets/templates/kirgudu_sso/authentications/base/images/badge-free@2x.png +0 -0
  11. data/app/assets/templates/kirgudu_sso/authentications/base/images/badge-premium.png +0 -0
  12. data/app/assets/templates/kirgudu_sso/authentications/base/images/badge-premium@2x.png +0 -0
  13. data/app/assets/templates/kirgudu_sso/authentications/base/images/chevron-blue-bg.png +0 -0
  14. data/app/assets/templates/kirgudu_sso/authentications/base/images/chevron-blue-bg@2x.png +0 -0
  15. data/app/assets/templates/kirgudu_sso/authentications/base/images/error-bang.png +0 -0
  16. data/app/assets/templates/kirgudu_sso/authentications/base/images/error-bang@2x.png +0 -0
  17. data/app/assets/templates/kirgudu_sso/authentications/base/images/green-check.png +0 -0
  18. data/app/assets/templates/kirgudu_sso/authentications/base/images/green-check@2x.png +0 -0
  19. data/app/assets/templates/kirgudu_sso/authentications/base/images/header-bar.png +0 -0
  20. data/app/assets/templates/kirgudu_sso/authentications/base/images/icon-settings.png +0 -0
  21. data/app/assets/templates/kirgudu_sso/authentications/base/images/icon-settings@2x.png +0 -0
  22. data/app/assets/templates/kirgudu_sso/authentications/base/images/icon-shield-white.png +0 -0
  23. data/app/assets/templates/kirgudu_sso/authentications/base/images/icon-shield-white@2x.png +0 -0
  24. data/app/assets/templates/kirgudu_sso/authentications/base/images/kirgudu-sso-tour1@2x.png +0 -0
  25. data/app/assets/templates/kirgudu_sso/authentications/base/images/kirgudu-sso-tour2@2x.png +0 -0
  26. data/app/assets/templates/kirgudu_sso/authentications/base/images/kirgudu-sso-tour3@2x.png +0 -0
  27. data/app/assets/templates/kirgudu_sso/authentications/base/images/menu-dropdown-arrow-white (1).png +0 -0
  28. data/app/assets/templates/kirgudu_sso/authentications/base/images/menu-dropdown-arrow-white.png +0 -0
  29. data/app/assets/templates/kirgudu_sso/authentications/base/images/settings-bg.jpeg +0 -0
  30. data/app/assets/templates/kirgudu_sso/authentications/base/stylesheets/register.css +794 -0
  31. data/app/assets/templates/kirgudu_sso/authentications/base/stylesheets/sso.css +4824 -0
  32. data/app/controllers/kirgudu_sso/authentications_controller.rb +140 -0
  33. data/app/controllers/kirgudu_sso/base_controller.rb +5 -0
  34. data/app/helpers/kirgudu_sso/application_helper.rb +4 -0
  35. data/app/models/kirgudu_sso/client.rb +142 -0
  36. data/app/models/kirgudu_sso/http_error.rb +5 -0
  37. data/app/views/kirgudu_sso/application.html.erb +14 -0
  38. data/app/views/kirgudu_sso/authentications/base/authentications/confirm_email.html.erb +51 -0
  39. data/app/views/kirgudu_sso/authentications/base/authentications/login.html.erb +60 -0
  40. data/app/views/kirgudu_sso/authentications/base/authentications/register.html.erb +123 -0
  41. data/app/views/kirgudu_sso/authentications/base/authentications/register_successful.html.erb +25 -0
  42. data/app/views/kirgudu_sso/authentications/base/authentications/restore_password.html.erb +53 -0
  43. data/app/views/kirgudu_sso/authentications/base/authentications/restore_password_code.html.erb +49 -0
  44. data/app/views/kirgudu_sso/authentications/base/authentications/restore_password_success.html.erb +33 -0
  45. data/app/views/kirgudu_sso/authentications/base/layouts/application.html.erb +128 -0
  46. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/confirmation_code.html.erb +21 -0
  47. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/confirmation_code.text.erb +21 -0
  48. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/restore_password_code.html.erb +20 -0
  49. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/restore_password_code.text.erb +20 -0
  50. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/restore_password_success.html.erb +12 -0
  51. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/restore_password_success.text.erb +18 -0
  52. data/config/locales/chupakabra_tools.en.yml +28 -0
  53. data/config/locales/chupakabra_tools.ru.yml +28 -0
  54. data/config/locales/kirgudu_sso.en.yml +79 -0
  55. data/config/locales/kirgudu_sso.ru.yml +145 -0
  56. data/config/routes.rb +2 -0
  57. data/lib/kirgudu_sso/engine.rb +5 -0
  58. data/lib/kirgudu_sso/version.rb +3 -0
  59. data/lib/kirgudu_sso.rb +4 -0
  60. data/lib/tasks/kirgudu_sso_tasks.rake +4 -0
  61. data/test/dummy/README.rdoc +28 -0
  62. data/test/dummy/Rakefile +6 -0
  63. data/test/dummy/app/assets/javascripts/application.js +13 -0
  64. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  65. data/test/dummy/app/controllers/application_controller.rb +5 -0
  66. data/test/dummy/app/helpers/application_helper.rb +2 -0
  67. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  68. data/test/dummy/bin/bundle +3 -0
  69. data/test/dummy/bin/rails +4 -0
  70. data/test/dummy/bin/rake +4 -0
  71. data/test/dummy/config/application.rb +23 -0
  72. data/test/dummy/config/boot.rb +5 -0
  73. data/test/dummy/config/database.yml +25 -0
  74. data/test/dummy/config/environment.rb +5 -0
  75. data/test/dummy/config/environments/development.rb +37 -0
  76. data/test/dummy/config/environments/production.rb +83 -0
  77. data/test/dummy/config/environments/test.rb +39 -0
  78. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  79. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  80. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  81. data/test/dummy/config/initializers/inflections.rb +16 -0
  82. data/test/dummy/config/initializers/mime_types.rb +4 -0
  83. data/test/dummy/config/initializers/session_store.rb +3 -0
  84. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  85. data/test/dummy/config/locales/en.yml +23 -0
  86. data/test/dummy/config/routes.rb +4 -0
  87. data/test/dummy/config/secrets.yml +22 -0
  88. data/test/dummy/config.ru +4 -0
  89. data/test/dummy/public/404.html +67 -0
  90. data/test/dummy/public/422.html +67 -0
  91. data/test/dummy/public/500.html +66 -0
  92. data/test/dummy/public/favicon.ico +0 -0
  93. data/test/integration/navigation_test.rb +10 -0
  94. data/test/kirgudu_sso_test.rb +7 -0
  95. data/test/test_helper.rb +15 -0
  96. metadata +258 -0
@@ -0,0 +1,4824 @@
1
+
2
+ article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
3
+ display: block;
4
+ }
5
+
6
+ audio[controls], canvas, video {
7
+ display: inline-block;
8
+ *display: inline;
9
+ *zoom: 1;
10
+ }
11
+
12
+ html, body, div, span, applet, object, iframe,
13
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
14
+ a, abbr, acronym, address, big, cite, code,
15
+ del, dfn, em, img, ins, kbd, q, s, samp,
16
+ small, strike, strong, sub, sup, tt, var,
17
+ b, u, i, center,
18
+ dl, dt, dd, ol, ul, li,
19
+ fieldset, form, label, legend,
20
+ table, caption, tbody, tfoot, thead, tr, th, td,
21
+ article, aside, canvas, details, embed,
22
+ figure, figcaption, footer, header, hgroup,
23
+ menu, nav, output, ruby, section, summary,
24
+ time, mark, audio, video {
25
+ margin: 0;
26
+ padding: 0;
27
+ border: 0;
28
+ font-size: 100%;
29
+ font: inherit;
30
+ vertical-align: baseline;
31
+ }
32
+
33
+ article, aside, details, figcaption, figure,
34
+ footer, header, hgroup, menu, nav, section {
35
+ display: block;
36
+ }
37
+
38
+ body {
39
+ line-height: 1;
40
+ }
41
+
42
+ ol, ul {
43
+ list-style: none;
44
+ }
45
+
46
+ blockquote, q {
47
+ quotes: none;
48
+ }
49
+
50
+ blockquote:before, blockquote:after,
51
+ q:before, q:after {
52
+ content: '';
53
+ content: none;
54
+ }
55
+
56
+ table {
57
+ border-collapse: collapse;
58
+ border-spacing: 0;
59
+ }
60
+
61
+ html {
62
+ font-size: 100%;
63
+ overflow-y: scroll;
64
+ -webkit-overflow-scrolling: touch;
65
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
66
+ -webkit-text-size-adjust: 100%;
67
+ -ms-text-size-adjust: 100%;
68
+ }
69
+
70
+ body {
71
+ margin: 0;
72
+ font-size: 13px;
73
+ line-height: 1.231;
74
+ }
75
+
76
+ body, button, input, select, textarea {
77
+ font-family: sans-serif;
78
+ color: #222;
79
+ }
80
+
81
+ a {
82
+ color: #00e;
83
+ }
84
+
85
+ a:visited {
86
+ color: #551a8b;
87
+ }
88
+
89
+ a:focus {
90
+ outline: thin dotted;
91
+ }
92
+
93
+ a:hover, a:active {
94
+ outline: 0;
95
+ }
96
+
97
+ abbr[title] {
98
+ border-bottom: 1px dotted;
99
+ }
100
+
101
+ b, strong {
102
+ font-weight: bold;
103
+ }
104
+
105
+ blockquote {
106
+ margin: 1em 40px;
107
+ }
108
+
109
+ dfn {
110
+ font-style: italic;
111
+ }
112
+
113
+ hr {
114
+ display: block;
115
+ height: 1px;
116
+ border: 0;
117
+ border-top: 1px solid #ccc;
118
+ margin: 1em 0;
119
+ padding: 0;
120
+ }
121
+
122
+ ins {
123
+ background: #ff9;
124
+ color: #000;
125
+ text-decoration: none;
126
+ }
127
+
128
+ mark {
129
+ background: #ff0;
130
+ color: #000;
131
+ font-style: italic;
132
+ font-weight: bold;
133
+ }
134
+
135
+ pre, code, kbd, samp {
136
+ font-family: monospace, monospace;
137
+ _font-family: 'courier new', monospace;
138
+ font-size: 1em;
139
+ }
140
+
141
+ pre {
142
+ white-space: pre;
143
+ white-space: pre-wrap;
144
+ word-wrap: break-word;
145
+ }
146
+
147
+ q {
148
+ quotes: none;
149
+ }
150
+
151
+ q:before, q:after {
152
+ content: "";
153
+ content: none;
154
+ }
155
+
156
+ small {
157
+ font-size: 85%;
158
+ }
159
+
160
+ sub, sup {
161
+ font-size: 75%;
162
+ line-height: 0;
163
+ position: relative;
164
+ vertical-align: baseline;
165
+ }
166
+
167
+ sup {
168
+ top: -0.5em;
169
+ }
170
+
171
+ sub {
172
+ bottom: -0.25em;
173
+ }
174
+
175
+ ul, ol {
176
+ margin: 1em 0;
177
+ padding: 0 0 0 40px;
178
+ }
179
+
180
+ dd {
181
+ margin: 0 0 0 40px;
182
+ }
183
+
184
+ nav ul, nav ol {
185
+ list-style: none;
186
+ margin: 0;
187
+ padding: 0;
188
+ }
189
+
190
+ img {
191
+ border: 0;
192
+ -ms-interpolation-mode: bicubic;
193
+ }
194
+
195
+ svg:not(:root) {
196
+ overflow: hidden;
197
+ }
198
+
199
+ figure {
200
+ margin: 0;
201
+ }
202
+
203
+ form {
204
+ margin: 0;
205
+ }
206
+
207
+ fieldset {
208
+ border: 0;
209
+ margin: 0;
210
+ padding: 0;
211
+ }
212
+
213
+ legend {
214
+ border: 0;
215
+ *margin-left: -7px;
216
+ padding: 0;
217
+ }
218
+
219
+ label {
220
+ cursor: pointer;
221
+ }
222
+
223
+ button, input, select, textarea {
224
+ font-size: 100%;
225
+ margin: 0;
226
+ vertical-align: baseline;
227
+ *vertical-align: middle;
228
+ }
229
+
230
+ button, input {
231
+ line-height: normal;
232
+ *overflow: visible;
233
+ }
234
+
235
+ button, input[type="button"], input[type="reset"], input[type="submit"] {
236
+ cursor: pointer;
237
+ -webkit-appearance: button;
238
+ }
239
+
240
+ input[type="checkbox"], input[type="radio"] {
241
+ box-sizing: border-box;
242
+ }
243
+
244
+ input[type="search"] {
245
+ -moz-box-sizing: content-box;
246
+ -webkit-box-sizing: content-box;
247
+ box-sizing: content-box;
248
+ }
249
+
250
+ button::-moz-focus-inner, input::-moz-focus-inner {
251
+ border: 0;
252
+ padding: 0;
253
+ }
254
+
255
+ textarea {
256
+ overflow: auto;
257
+ vertical-align: top;
258
+ }
259
+
260
+ input:valid, textarea:valid {
261
+ }
262
+
263
+ input:invalid, textarea:invalid {
264
+ background-color: #f0dddd;
265
+ }
266
+
267
+ table {
268
+ border-collapse: collapse;
269
+ border-spacing: 0;
270
+ }
271
+
272
+ .ir {
273
+ display: block;
274
+ text-indent: -999em;
275
+ overflow: hidden;
276
+ background-repeat: no-repeat;
277
+ text-align: left;
278
+ direction: ltr;
279
+ }
280
+
281
+ .ir br {
282
+ display: none;
283
+ }
284
+
285
+ .hidden {
286
+ display: none;
287
+ visibility: hidden;
288
+ }
289
+
290
+ .visuallyhidden {
291
+ border: 0;
292
+ clip: rect(0 0 0 0);
293
+ height: 1px;
294
+ margin: -1px;
295
+ overflow: hidden;
296
+ padding: 0;
297
+ position: absolute;
298
+ width: 1px;
299
+ }
300
+
301
+ .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
302
+ clip: auto;
303
+ height: auto;
304
+ margin: 0;
305
+ overflow: visible;
306
+ position: static;
307
+ width: auto;
308
+ }
309
+
310
+ .invisible {
311
+ visibility: hidden;
312
+ }
313
+
314
+ .clearfix:before, .clearfix:after {
315
+ content: "";
316
+ display: table;
317
+ }
318
+
319
+ .clearfix:after {
320
+ clear: both;
321
+ }
322
+
323
+ .clearfix {
324
+ zoom: 1;
325
+ }
326
+
327
+ @font-face {
328
+ font-family: 'caecilia-bold';
329
+ src: url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-bold-webfont.eot');
330
+ src: url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-bold-webfont.eot?#iefix') format('embedded-opentype'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-bold-webfont.woff') format('woff'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-bold-webfont.ttf') format('truetype'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-bold-webfont.svg#webfont_bold') format('svg');
331
+ font-weight: normal;
332
+ font-style: normal;
333
+ }
334
+
335
+ @font-face {
336
+ font-family: 'caecilia';
337
+ src: url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-roman-webfont.eot');
338
+ src: url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-roman-webfont.eot?#iefix') format('embedded-opentype'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-roman-webfont.woff') format('woff'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-roman-webfont.ttf') format('truetype'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-roman-webfont.svg#webfont') format('svg');
339
+ font-weight: normal;
340
+ font-style: normal;
341
+ }
342
+
343
+ @font-face {
344
+ font-family: 'caecilia-light';
345
+ src: url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-light-webfont.eot');
346
+ src: url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-light-webfont.eot?#iefix') format('embedded-opentype'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-light-webfont.woff') format('woff'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-light-webfont.ttf') format('truetype'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-light-webfont.svg#webfont_light') format('svg');
347
+ font-weight: normal;
348
+ font-style: normal;
349
+ }
350
+
351
+ @font-face {
352
+ font-family: 'caecilia-bold-italic';
353
+ src: url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-bolditalic-webfont.eot');
354
+ src: url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-bolditalic-webfont.eot?#iefix') format('embedded-opentype'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-bolditalic-webfont.woff') format('woff'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-bolditalic-webfont.ttf') format('truetype'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-bolditalic-webfont.svg#webfont_bold') format('svg');
355
+ font-weight: normal;
356
+ font-style: normal;
357
+ }
358
+
359
+ @font-face {
360
+ font-family: 'caecilia-italic';
361
+ src: url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-italic-webfont.eot');
362
+ src: url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-italic-webfont.eot?#iefix') format('embedded-opentype'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-italic-webfont.woff') format('woff'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-italic-webfont.ttf') format('truetype'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-italic-webfont.svg#webfont_italic') format('svg');
363
+ font-weight: normal;
364
+ font-style: normal;
365
+ }
366
+
367
+ @font-face {
368
+ font-family: 'caecilia-light-italic';
369
+ src: url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-lightitalic-webfont.eot');
370
+ src: url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-lightitalic-webfont.eot?#iefix') format('embedded-opentype'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-lightitalic-webfont.woff') format('woff'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-lightitalic-webfont.ttf') format('truetype'), url('/assets/kirgudu_sso/authentications/base/fonts/caecilialtstd-lightitalic-webfont.svg#webfont_light_italic') format('svg');
371
+ font-weight: normal;
372
+ font-style: normal;
373
+ }
374
+
375
+ @font-face {
376
+ font-family: 'evernote_rhondaregular';
377
+ src: url('/assets/kirgudu_sso/authentications/base/fonts/evernoterhonda-regular-webfont.eot');
378
+ src: url('/assets/kirgudu_sso/authentications/base/fonts/evernoterhonda-regular-webfont.eot?#iefix') format('embedded-opentype'), url('/assets/kirgudu_sso/authentications/base/fonts/evernoterhonda-regular-webfont.woff') format('woff'), url('/assets/kirgudu_sso/authentications/base/fonts/evernoterhonda-regular-webfont.ttf') format('truetype'), url('/assets/kirgudu_sso/authentications/base/fonts/evernoterhonda-regular-webfont.svg#evernote_rhondaregular') format('svg');
379
+ font-weight: normal;
380
+ font-style: normal;
381
+ }
382
+
383
+ .supertext {
384
+ font-family: 'caecilia-light-italic';
385
+ -webkit-font-smoothing: antialiased;
386
+ -moz-osx-font-smoothing: grayscale;
387
+ font-size: 18px;
388
+ line-height: 24px
389
+ }
390
+
391
+ .left {
392
+ float: left !important
393
+ }
394
+
395
+ .right {
396
+ float: right !important
397
+ }
398
+
399
+ .Icon {
400
+ display: inline-block;
401
+ background-position: center center
402
+ }
403
+
404
+ .ie7 .Icon {
405
+ display: inline;
406
+ zoom: 1
407
+ }
408
+
409
+ .Icon_small-downArrow {
410
+ width: 9px;
411
+ height: 5px
412
+ }
413
+
414
+ @media all {
415
+ .Icon_small-downArrow {
416
+ background: url('/assets/kirgudu_sso/authentications/base/images/menu-dropdown-arrow-white.png') center center transparent scroll no-repeat;
417
+ -webkit-background-size: 9px 5px;
418
+ -moz-background-size: 9px 5px;
419
+ -o-background-size: 9px 5px;
420
+ background-size: 9px 5px
421
+ }
422
+ }
423
+
424
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
425
+ html:not(.ie8) .Icon_small-downArrow {
426
+ background: url('/assets/kirgudu_sso/authentications/base/images/menu-dropdown-arrow-white.png') center center transparent scroll no-repeat;
427
+ -webkit-background-size: 9px 5px;
428
+ -moz-background-size: 9px 5px;
429
+ -o-background-size: 9px 5px;
430
+ background-size: 9px 5px
431
+ }
432
+ }
433
+
434
+ .Icon_small-whiteShield {
435
+ width: 32px;
436
+ height: 32px
437
+ }
438
+
439
+ @media all {
440
+ .Icon_small-whiteShield {
441
+ background: url('/assets/kirgudu_sso/authentications/base/images/icon-shield-white.png') center center transparent scroll no-repeat;
442
+ -webkit-background-size: 16px 16px;
443
+ -moz-background-size: 16px 16px;
444
+ -o-background-size: 16px 16px;
445
+ background-size: 16px 16px
446
+ }
447
+ }
448
+
449
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
450
+ html:not(.ie8) .Icon_small-whiteShield {
451
+ background: url('/assets/kirgudu_sso/authentications/base/images/icon-shield-white@2x.png') center center transparent scroll no-repeat;
452
+ -webkit-background-size: 16px 16px;
453
+ -moz-background-size: 16px 16px;
454
+ -o-background-size: 16px 16px;
455
+ background-size: 16px 16px
456
+ }
457
+ }
458
+
459
+ .Badge-free {
460
+ width: 20px;
461
+ height: 27px
462
+ }
463
+
464
+ @media all {
465
+ .Badge-free {
466
+ background: url('/assets/kirgudu_sso/authentications/base/images/badge-free.png') center center transparent scroll no-repeat;
467
+ -webkit-background-size: 20px 27px;
468
+ -moz-background-size: 20px 27px;
469
+ -o-background-size: 20px 27px;
470
+ background-size: 20px 27px
471
+ }
472
+ }
473
+
474
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
475
+ html:not(.ie8) .Badge-free {
476
+ background: url('/assets/kirgudu_sso/authentications/base/images/badge-free@2x.png') center center transparent scroll no-repeat;
477
+ -webkit-background-size: 20px 27px;
478
+ -moz-background-size: 20px 27px;
479
+ -o-background-size: 20px 27px;
480
+ background-size: 20px 27px
481
+ }
482
+ }
483
+
484
+ .Badge-premium {
485
+ width: 20px;
486
+ height: 27px
487
+ }
488
+
489
+ @media all {
490
+ .Badge-premium {
491
+ background: url('/assets/kirgudu_sso/authentications/base/images/badge-premium.png') center center transparent scroll no-repeat;
492
+ -webkit-background-size: 20px 27px;
493
+ -moz-background-size: 20px 27px;
494
+ -o-background-size: 20px 27px;
495
+ background-size: 20px 27px
496
+ }
497
+ }
498
+
499
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
500
+ html:not(.ie8) .Badge-premium {
501
+ background: url('/assets/kirgudu_sso/authentications/base/images/badge-premium@2x.png') center center transparent scroll no-repeat;
502
+ -webkit-background-size: 20px 27px;
503
+ -moz-background-size: 20px 27px;
504
+ -o-background-size: 20px 27px;
505
+ background-size: 20px 27px
506
+ }
507
+ }
508
+
509
+ .Icon_medium {
510
+ width: 17px;
511
+ height: 17px;
512
+ margin: 0 8px 2px 0;
513
+ vertical-align: middle
514
+ }
515
+
516
+ .Icon_medium-gear {
517
+ padding: 0
518
+ }
519
+
520
+ @media all {
521
+ .Icon_medium-gear {
522
+ background: url('/assets/kirgudu_sso/authentications/base/images/icon-settings.png') 0 0 transparent scroll no-repeat;
523
+ -webkit-background-size: 17px 17px;
524
+ -moz-background-size: 17px 17px;
525
+ -o-background-size: 17px 17px;
526
+ background-size: 17px 17px
527
+ }
528
+ }
529
+
530
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
531
+ html:not(.ie8) .Icon_medium-gear {
532
+ background: url('/assets/kirgudu_sso/authentications/base/images/icon-settings@2x.png') 0 0 transparent scroll no-repeat;
533
+ -webkit-background-size: 17px 17px;
534
+ -moz-background-size: 17px 17px;
535
+ -o-background-size: 17px 17px;
536
+ background-size: 17px 17px
537
+ }
538
+ }
539
+
540
+ @media all {
541
+ .Icon_medium-questionMark {
542
+ background: url('/assets/kirgudu_sso/authentications/base/images/icon-help.png') 0 0 transparent scroll no-repeat;
543
+ -webkit-background-size: 17px 17px;
544
+ -moz-background-size: 17px 17px;
545
+ -o-background-size: 17px 17px;
546
+ background-size: 17px 17px
547
+ }
548
+ }
549
+
550
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
551
+ html:not(.ie8) .Icon_medium-questionMark {
552
+ background: url('/assets/kirgudu_sso/authentications/base/images/icon-help@2x.png') 0 0 transparent scroll no-repeat;
553
+ -webkit-background-size: 17px 17px;
554
+ -moz-background-size: 17px 17px;
555
+ -o-background-size: 17px 17px;
556
+ background-size: 17px 17px
557
+ }
558
+ }
559
+
560
+ @media all {
561
+ .Icon_medium-chatBubble {
562
+ background: url('/assets/kirgudu_sso/authentications/base/images/icon-chat.png') 0 0 transparent scroll no-repeat;
563
+ -webkit-background-size: 17px 17px;
564
+ -moz-background-size: 17px 17px;
565
+ -o-background-size: 17px 17px;
566
+ background-size: 17px 17px
567
+ }
568
+ }
569
+
570
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
571
+ html:not(.ie8) .Icon_medium-chatBubble {
572
+ background: url('/assets/kirgudu_sso/authentications/base/images/icon-chat@2x.png') 0 0 transparent scroll no-repeat;
573
+ -webkit-background-size: 17px 17px;
574
+ -moz-background-size: 17px 17px;
575
+ -o-background-size: 17px 17px;
576
+ background-size: 17px 17px
577
+ }
578
+ }
579
+
580
+ @media all {
581
+ .Icon_medium-arrowDoor {
582
+ background: url('/assets/kirgudu_sso/authentications/base/images/icon-logout.png') 0 0 transparent scroll no-repeat;
583
+ -webkit-background-size: 17px 17px;
584
+ -moz-background-size: 17px 17px;
585
+ -o-background-size: 17px 17px;
586
+ background-size: 17px 17px
587
+ }
588
+ }
589
+
590
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
591
+ html:not(.ie8) .Icon_medium-arrowDoor {
592
+ background: url('/assets/kirgudu_sso/authentications/base/images/icon-logout@2x.png') 0 0 transparent scroll no-repeat;
593
+ -webkit-background-size: 17px 17px;
594
+ -moz-background-size: 17px 17px;
595
+ -o-background-size: 17px 17px;
596
+ background-size: 17px 17px
597
+ }
598
+ }
599
+
600
+ .Icon_medium-arrowRight {
601
+ width: 9px;
602
+ height: 13px;
603
+ vertical-align: middle;
604
+ margin-left: 4px
605
+ }
606
+
607
+ @media all {
608
+ .Icon_medium-arrowRight {
609
+ background: url('/assets/kirgudu_sso/authentications/base/images/icon-arrow.png') 0 0 transparent scroll no-repeat;
610
+ -webkit-background-size: 9px 13px;
611
+ -moz-background-size: 9px 13px;
612
+ -o-background-size: 9px 13px;
613
+ background-size: 9px 13px
614
+ }
615
+ }
616
+
617
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
618
+ html:not(.ie8) .Icon_medium-arrowRight {
619
+ background: url('/assets/kirgudu_sso/authentications/base/images/icon-arrow@2x.png') 0 0 transparent scroll no-repeat;
620
+ -webkit-background-size: 9px 13px;
621
+ -moz-background-size: 9px 13px;
622
+ -o-background-size: 9px 13px;
623
+ background-size: 9px 13px
624
+ }
625
+ }
626
+
627
+ .Icon_large {
628
+ width: 50px;
629
+ height: 50px
630
+ }
631
+
632
+ @media all {
633
+ .Icon_large-shield {
634
+ background: url('/assets/kirgudu_sso/authentications/base/images/shield-large.png') 0 0 transparent scroll no-repeat;
635
+ -webkit-background-size: 50px 50px;
636
+ -moz-background-size: 50px 50px;
637
+ -o-background-size: 50px 50px;
638
+ background-size: 50px 50px
639
+ }
640
+ }
641
+
642
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
643
+ html:not(.ie8) .Icon_large-shield {
644
+ background: url('/assets/kirgudu_sso/authentications/base/images/shield-large@2x.png') 0 0 transparent scroll no-repeat;
645
+ -webkit-background-size: 50px 50px;
646
+ -moz-background-size: 50px 50px;
647
+ -o-background-size: 50px 50px;
648
+ background-size: 50px 50px
649
+ }
650
+ }
651
+
652
+ .Icon_super {
653
+ background-position: center center;
654
+ background-repeat: no-repeat;
655
+ -webkit-background-size: 80px 60px;
656
+ -moz-background-size: 80px 60px;
657
+ -o-background-size: 80px 60px;
658
+ background-size: 80px 60px;
659
+ width: 80px;
660
+ height: 60px;
661
+ margin-left: -4px
662
+ }
663
+
664
+ @media all {
665
+ .Icon_super-lock {
666
+ background-image: url('/assets/kirgudu_sso/authentications/base/images/go-premium-lock.png')
667
+ }
668
+ }
669
+
670
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
671
+ html:not(.ie8) .Icon_super-lock {
672
+ background-image: url('/assets/kirgudu_sso/authentications/base/images/go-premium-lock@2x.png')
673
+ }
674
+ }
675
+
676
+ @media all {
677
+ .Icon_super-plane {
678
+ background-image: url('/assets/kirgudu_sso/authentications/base/images/go-premium-offline.png')
679
+ }
680
+ }
681
+
682
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
683
+ html:not(.ie8) .Icon_super-plane {
684
+ background-image: url('/assets/kirgudu_sso/authentications/base/images/go-premium-offline@2x.png')
685
+ }
686
+ }
687
+
688
+ @media all {
689
+ .Icon_super-screen {
690
+ background-image: url('/assets/kirgudu_sso/authentications/base/images/go-premium-presentation.png')
691
+ }
692
+ }
693
+
694
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
695
+ html:not(.ie8) .Icon_super-screen {
696
+ background-image: url('/assets/kirgudu_sso/authentications/base/images/go-premium-presentation@2x.png')
697
+ }
698
+ }
699
+
700
+ @media all {
701
+ .Icon_super-mag-glass {
702
+ background-image: url('/assets/kirgudu_sso/authentications/base/images/go-premium-search.png')
703
+ }
704
+ }
705
+
706
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
707
+ html:not(.ie8) .Icon_super-mag-glass {
708
+ background-image: url('/assets/kirgudu_sso/authentications/base/images/go-premium-search@2x.png')
709
+ }
710
+ }
711
+
712
+ @media all {
713
+ .Icon_super-clouds {
714
+ background-image: url('/assets/kirgudu_sso/authentications/base/images/go-premium-upload.png')
715
+ }
716
+ }
717
+
718
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
719
+ html:not(.ie8) .Icon_super-clouds {
720
+ background-image: url('/assets/kirgudu_sso/authentications/base/images/go-premium-upload@2x.png')
721
+ }
722
+ }
723
+
724
+ @media all {
725
+ .Icon_super-heads {
726
+ background-image: url('/assets/kirgudu_sso/authentications/base/images/go-premium-work.png')
727
+ }
728
+ }
729
+
730
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
731
+ html:not(.ie8) .Icon_super-heads {
732
+ background-image: url('/assets/kirgudu_sso/authentications/base/images/go-premium-work@2x.png')
733
+ }
734
+ }
735
+
736
+ .Icon_shield {
737
+ width: 53px;
738
+ height: 58px;
739
+ margin-bottom: 20px
740
+ }
741
+
742
+ @media all {
743
+ .Icon_shield {
744
+ background: url('/assets/kirgudu_sso/authentications/base/images/premium-shield.png') 0 0 transparent scroll no-repeat;
745
+ -webkit-background-size: 53px 58px;
746
+ -moz-background-size: 53px 58px;
747
+ -o-background-size: 53px 58px;
748
+ background-size: 53px 58px
749
+ }
750
+ }
751
+
752
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
753
+ html:not(.ie8) .Icon_shield {
754
+ background: url('/assets/kirgudu_sso/authentications/base/images/premium-shield@2x.png') 0 0 transparent scroll no-repeat;
755
+ -webkit-background-size: 53px 58px;
756
+ -moz-background-size: 53px 58px;
757
+ -o-background-size: 53px 58px;
758
+ background-size: 53px 58px
759
+ }
760
+ }
761
+
762
+ .u-inlineBlock {
763
+ display: inline-block
764
+ }
765
+
766
+ .ie7 .u-inlineBlock {
767
+ display: inline;
768
+ zoom: 1
769
+ }
770
+
771
+ .Menu {
772
+ vertical-align: top;
773
+ height: 100%;
774
+ float: none
775
+ }
776
+
777
+ .Menu.is-active {
778
+ -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.2);
779
+ -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.2);
780
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.2)
781
+ }
782
+
783
+ @media all {
784
+ .Menu.is-active {
785
+ background: url('/assets/kirgudu_sso/authentications/base/images/header-bar_dark.png') repeat;
786
+ -webkit-background-size: 60px 58px;
787
+ -moz-background-size: 60px 58px;
788
+ -o-background-size: 60px 58px;
789
+ background-size: 60px 58px
790
+ }
791
+ }
792
+
793
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
794
+ html:not(.ie8) .Menu.is-active {
795
+ background: url('/assets/kirgudu_sso/authentications/base/images/header-bar_dark@2x.png') repeat;
796
+ -webkit-background-size: 60px 58px;
797
+ -moz-background-size: 60px 58px;
798
+ -o-background-size: 60px 58px;
799
+ background-size: 60px 58px
800
+ }
801
+ }
802
+
803
+ #header-wrapper .Menu, .wrapper-embed .Menu {
804
+ height: 100%;
805
+ font-size: 0
806
+ }
807
+
808
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
809
+ .Menu {
810
+ display: none
811
+ }
812
+ }
813
+
814
+ @media only screen and (max-width: 479px) {
815
+ .Menu {
816
+ display: none
817
+ }
818
+ }
819
+
820
+ .Menu-activator {
821
+ text-decoration: none;
822
+ background-image: none;
823
+ vertical-align: middle;
824
+ height: 100%;
825
+ margin-left: -4px
826
+ }
827
+
828
+ @media all {
829
+ .Menu-activator:hover, .Menu-activator:focus {
830
+ background: url('/assets/kirgudu_sso/authentications/base/images/header-highlight.png') center bottom transparent scroll no-repeat;
831
+ -webkit-background-size: 50% 25px;
832
+ -moz-background-size: 50% 25px;
833
+ -o-background-size: 50% 25px;
834
+ background-size: 50% 25px
835
+ }
836
+ }
837
+
838
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
839
+ html:not(.ie8) .Menu-activator:hover, html:not(.ie8) .Menu-activator:focus {
840
+ background: url('/assets/kirgudu_sso/authentications/base/images/header-highlight@2x.png') center bottom transparent scroll no-repeat;
841
+ -webkit-background-size: 50% 25px;
842
+ -moz-background-size: 50% 25px;
843
+ -o-background-size: 50% 25px;
844
+ background-size: 50% 25px
845
+ }
846
+ }
847
+
848
+ .ie7 .Menu-activator:hover, .ie7 .Menu-activator:focus, .ie8 .Menu-activator:hover, .ie8 .Menu-activator:focus {
849
+ background-image: none
850
+ }
851
+
852
+ .is-active .Menu-activator:hover {
853
+ background-image: none
854
+ }
855
+
856
+ .Menu-indicator {
857
+ padding: 0 12px;
858
+ height: 100%;
859
+ float: none
860
+ }
861
+
862
+ .Menu-indicator > i {
863
+ margin: 24px 0
864
+ }
865
+
866
+ #header-wrapper .Menu-indicator > i, .wrapper-embed .Menu-indicator > i {
867
+ margin: 13px 0
868
+ }
869
+
870
+ .Menu-popover {
871
+ background-color: #f7f7f7;
872
+ display: none;
873
+ border: 1px solid #b5b5b5;
874
+ position: absolute;
875
+ z-index: 9998
876
+ }
877
+
878
+ .Menu-popover.is-active {
879
+ display: block
880
+ }
881
+
882
+ .Menu_userNav-popover {
883
+ border-width: 0 0 1px 1px;
884
+ top: 53px;
885
+ right: 0;
886
+ -webkit-border-bottom-left-radius: 4px;
887
+ -moz-border-bottom-left-radius: 4px;
888
+ border-bottom-left-radius: 4px;
889
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
890
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
891
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2)
892
+ }
893
+
894
+ #header-wrapper .Menu_userNav-popover, .wrapper-embed .Menu_userNav-popover {
895
+ top: 32px
896
+ }
897
+
898
+ .User {
899
+ overflow: hidden;
900
+ -o-text-overflow: ellipsis;
901
+ -webkit-text-overflow: ellipsis;
902
+ text-overflow: ellipsis;
903
+ white-space: nowrap;
904
+ color: white;
905
+ font-size: 14px;
906
+ font-family: caecilia-bold, helvetica, arial, sans-serif;
907
+ font-weight: normal;
908
+ line-height: 53px;
909
+ -webkit-font-smoothing: antialiased;
910
+ -moz-osx-font-smoothing: grayscale;
911
+ height: 100%;
912
+ border-right: 0px;
913
+ border-left: 0px;
914
+ vertical-align: top
915
+ }
916
+
917
+ #header-wrapper .User, .wrapper-embed .User {
918
+ line-height: 32px;
919
+ width: auto;
920
+ padding: 0;
921
+ max-width: 440px
922
+ }
923
+
924
+ .is-active:hover .User {
925
+ background-image: none
926
+ }
927
+
928
+ .User-icon {
929
+ margin-right: 12px;
930
+ margin-left: 12px;
931
+ vertical-align: middle
932
+ }
933
+
934
+ .User-name {
935
+ vertical-align: middle
936
+ }
937
+
938
+ .Nav {
939
+ list-style: none;
940
+ padding-left: 0;
941
+ margin: 0
942
+ }
943
+
944
+ .Nav-anchor {
945
+ text-decoration: none;
946
+ white-space: nowrap;
947
+ -webkit-font-smoothing: antialiased;
948
+ -moz-osx-font-smoothing: grayscale;
949
+ display: block
950
+ }
951
+
952
+ .ie7 .Nav-anchor {
953
+ zoom: 1
954
+ }
955
+
956
+ .Nav-anchor:hover {
957
+ text-decoration: none
958
+ }
959
+
960
+ .Nav_userNav-left {
961
+ vertical-align: top;
962
+ padding-left: 24px;
963
+ padding-right: 24px;
964
+ padding-bottom: 40px
965
+ }
966
+
967
+ @media all {
968
+ .Nav_userNav-left {
969
+ background: url('/assets/kirgudu_sso/authentications/base/images/header-dropdown-splitter.png') right top transparent scroll no-repeat;
970
+ -webkit-background-size: 24px 141px;
971
+ -moz-background-size: 24px 141px;
972
+ -o-background-size: 24px 141px;
973
+ background-size: 24px 141px
974
+ }
975
+ }
976
+
977
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
978
+ html:not(.ie8) .Nav_userNav-left {
979
+ background: url('/assets/kirgudu_sso/authentications/base/images/header-dropdown-splitter@2x.png') right top transparent scroll no-repeat;
980
+ -webkit-background-size: 24px 141px;
981
+ -moz-background-size: 24px 141px;
982
+ -o-background-size: 24px 141px;
983
+ background-size: 24px 141px
984
+ }
985
+ }
986
+
987
+ .Nav_userNav-right {
988
+ padding-left: 19px;
989
+ padding-right: 24px;
990
+ padding-bottom: 40px
991
+ }
992
+
993
+ .Nav_userNav-item {
994
+ padding-top: 10px
995
+ }
996
+
997
+ .ie7 .Nav_userNav-item {
998
+ zoom: 1
999
+ }
1000
+
1001
+ .Nav_userNav-right .Nav_userNav-anchor {
1002
+ text-transform: uppercase
1003
+ }
1004
+
1005
+ .Nav_userNav-anchor, .Nav_userNav-anchor:visited {
1006
+ color: #646e71;
1007
+ font-size: 14px;
1008
+ font-weight: normal;
1009
+ line-height: 28px;
1010
+ padding: 0 8px;
1011
+ border-width: 0;
1012
+ border-radius: 25px;
1013
+ -webkit-transition: all .1s ease-in;
1014
+ -moz-transition: all .1s ease-in;
1015
+ -ms-transition: all .1s ease-in;
1016
+ -o-transition: all .1s ease-in;
1017
+ transition: all .1s ease-in
1018
+ }
1019
+
1020
+ .Nav_userNav-anchor:hover, .Nav_userNav-anchor:focus {
1021
+ border: 1px;
1022
+ border-color: #C4CBCF;
1023
+ background-color: #c9d1d7
1024
+ }
1025
+
1026
+ .Nav_userNav-anchor:active {
1027
+ background-color: #BCC4C9
1028
+ }
1029
+
1030
+ .MenuBanner {
1031
+ padding: 12px 30px
1032
+ }
1033
+
1034
+ .MenuBanner_goPremium {
1035
+ border-top: 1px solid #dfe8eb;
1036
+ -webkit-border-bottom-left-radius: 4px;
1037
+ -moz-border-bottom-left-radius: 4px;
1038
+ border-bottom-left-radius: 4px
1039
+ }
1040
+
1041
+ @media all {
1042
+ .MenuBanner_goPremium {
1043
+ background: url('/assets/kirgudu_sso/authentications/base/images/chevron-blue-bg.png') left top scroll repeat;
1044
+ -webkit-background-size: 50px 30px;
1045
+ -moz-background-size: 50px 30px;
1046
+ -o-background-size: 50px 30px;
1047
+ background-size: 50px 30px
1048
+ }
1049
+ }
1050
+
1051
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
1052
+ html:not(.ie8) .MenuBanner_goPremium {
1053
+ background: url('/assets/kirgudu_sso/authentications/base/images/chevron-blue-bg@2x.png') left top scroll repeat;
1054
+ -webkit-background-size: 50px 30px;
1055
+ -moz-background-size: 50px 30px;
1056
+ -o-background-size: 50px 30px;
1057
+ background-size: 50px 30px
1058
+ }
1059
+ }
1060
+
1061
+ .MenuBanner_goPremium-message {
1062
+ display: inline-block;
1063
+ margin-left: 18px
1064
+ }
1065
+
1066
+ .ie7 .MenuBanner_goPremium-message {
1067
+ display: inline;
1068
+ zoom: 1
1069
+ }
1070
+
1071
+ .MenuBanner_goPremium-title {
1072
+ color: #039924;
1073
+ font-family: Caecilia, Times, Serif;
1074
+ font-size: 14px;
1075
+ width: 215px;
1076
+ line-height: 18px
1077
+ }
1078
+
1079
+ .MenuBanner_goPremium-anchor {
1080
+ color: #747474;
1081
+ font-family: helvetica, arial, sans-serif;
1082
+ font-size: 12px;
1083
+ font-weight: bold;
1084
+ line-height: 16px;
1085
+ text-decoration: none;
1086
+ width: auto;
1087
+ padding: 0
1088
+ }
1089
+
1090
+ .MenuBanner_goPremium-anchor, .MenuBanner_goPremium-anchor:visited {
1091
+ color: #747474
1092
+ }
1093
+
1094
+ .MenuBanner_goPremium-anchor:hover, .MenuBanner_goPremium-anchor:active {
1095
+ border: none;
1096
+ background-color: #f7f7f7
1097
+ }
1098
+
1099
+ .MenuBanner_paymentDue-anchor, .MenuBanner_paymentDue-anchor:link, .MenuBanner_paymentDue-anchor:visited {
1100
+ font-family: caecilia-light-italic, helvetica, arial, sans-serif;
1101
+ font-size: 14px
1102
+ }
1103
+
1104
+ .MenuBanner_paymentDue-anchor:hover {
1105
+ border: none;
1106
+ background-color: #f7f7f7
1107
+ }
1108
+
1109
+ .MenuBanner_paymentDue-anchor:active {
1110
+ background-color: #f7f7f7
1111
+ }
1112
+
1113
+ .Banner-title {
1114
+ line-height: 53px;
1115
+ height: 100%;
1116
+ vertical-align: top;
1117
+ font-family: caecilia-bold, Caecilia, Times, Serif;
1118
+ font-size: 18px;
1119
+ color: #fff;
1120
+ -webkit-font-smoothing: antialiased;
1121
+ -moz-osx-font-smoothing: grayscale;
1122
+ overflow: hidden;
1123
+ -o-text-overflow: ellipsis;
1124
+ -webkit-text-overflow: ellipsis;
1125
+ text-overflow: ellipsis;
1126
+ white-space: nowrap;
1127
+ padding-left: 15px
1128
+ }
1129
+
1130
+ .header .left {
1131
+ height: 53px
1132
+ }
1133
+
1134
+ .Banner-divider {
1135
+ width: 0;
1136
+ height: 100%;
1137
+ vertical-align: top;
1138
+ border-right: 1px solid rgba(17, 118, 4, 0.4);
1139
+ border-left: 1px solid rgba(255, 255, 255, 0.3)
1140
+ }
1141
+
1142
+ .ie7 .Banner-divider, .ie8 .Banner-divider {
1143
+ border-right: 1px solid #2e8f25;
1144
+ border-left: 1px solid #55bd49
1145
+ }
1146
+
1147
+ .logo-bar .Banner-divider, .Banner-divider.short {
1148
+ height: 23px;
1149
+ margin-top: 13px
1150
+ }
1151
+
1152
+ .header {
1153
+ background-color: #5fb336;
1154
+ width: 100%;
1155
+ height: 53px
1156
+ }
1157
+
1158
+ #header-wrapper .header, .wrapper-embed .header {
1159
+ display: block;
1160
+ height: 32px
1161
+ }
1162
+
1163
+ .header-inner {
1164
+ height: 57px;
1165
+ margin-bottom: -4px
1166
+ }
1167
+
1168
+ @media all {
1169
+ .header-inner {
1170
+ background: url("/assets/kirgudu_sso/authentications/base/images/header-bar.png") repeat;
1171
+ -webkit-background-size: 60px 58px;
1172
+ -moz-background-size: 60px 58px;
1173
+ -o-background-size: 60px 58px;
1174
+ background-size: 60px 58px
1175
+ }
1176
+ }
1177
+
1178
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
1179
+ html:not(.ie8) .header-inner {
1180
+ background: url("/assets/kirgudu_sso/authentications/base/images/header-bar@2x.png") repeat;
1181
+ -webkit-background-size: 60px 58px;
1182
+ -moz-background-size: 60px 58px;
1183
+ -o-background-size: 60px 58px;
1184
+ background-size: 60px 58px
1185
+ }
1186
+ }
1187
+
1188
+ .header-inner:before, .header-inner:after {
1189
+ display: table;
1190
+ content: ""
1191
+ }
1192
+
1193
+ .header-inner:after {
1194
+ clear: both
1195
+ }
1196
+
1197
+ .lt-ie9 .header-inner, .ie7 .header-inner, .ie8 .header-inner {
1198
+ zoom: 1
1199
+ }
1200
+
1201
+ .header-inner .referral-promo:link, .header-inner .referral-promo:hover, .header-inner .referral-promo:active, .header-inner .referral-promo:visited {
1202
+ display: inline-block;
1203
+ font-weight: bold;
1204
+ font-size: 12px;
1205
+ color: #fff;
1206
+ height: 27px;
1207
+ line-height: 1em;
1208
+ padding: 5px 0 0 0;
1209
+ text-decoration: none
1210
+ }
1211
+
1212
+ .ie7 .header-inner .referral-promo:link, .ie7 .header-inner .referral-promo:hover, .ie7 .header-inner .referral-promo:active, .ie7 .header-inner .referral-promo:visited {
1213
+ display: inline;
1214
+ zoom: 1
1215
+ }
1216
+
1217
+ @media all {
1218
+ .header-inner .referral-promo:hover, .header-inner .referral-promo:active {
1219
+ background: url('/assets/kirgudu_sso/authentications/base/images/header-highlight.png') bottom transparent no-repeat;
1220
+ -webkit-background-size: 100% 25px;
1221
+ -moz-background-size: 100% 25px;
1222
+ -o-background-size: 100% 25px;
1223
+ background-size: 100% 25px
1224
+ }
1225
+ }
1226
+
1227
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
1228
+ html:not(.ie8) .header-inner .referral-promo:hover, html:not(.ie8) .header-inner .referral-promo:active {
1229
+ background: url('/assets/kirgudu_sso/authentications/base/images/header-highlight@2x.png') bottom transparent no-repeat;
1230
+ -webkit-background-size: 100% 25px;
1231
+ -moz-background-size: 100% 25px;
1232
+ -o-background-size: 100% 25px;
1233
+ background-size: 100% 25px
1234
+ }
1235
+ }
1236
+
1237
+ .header-inner .referral-promo .referral-promo-icon {
1238
+ display: inline-block;
1239
+ position: relative;
1240
+ top: 4px;
1241
+ margin: 0 4px 0 10px;
1242
+ width: 13px;
1243
+ height: 16px;
1244
+ -webkit-font-smoothing: antialiased;
1245
+ -moz-osx-font-smoothing: grayscale
1246
+ }
1247
+
1248
+ .ie7 .header-inner .referral-promo .referral-promo-icon {
1249
+ display: inline;
1250
+ zoom: 1
1251
+ }
1252
+
1253
+ @media all {
1254
+ .header-inner .referral-promo .referral-promo-icon {
1255
+ background: url('/assets/kirgudu_sso/authentications/base/images/header-referral-promo.png') no-repeat bottom;
1256
+ -webkit-background-size: 13px 16px;
1257
+ -moz-background-size: 13px 16px;
1258
+ -o-background-size: 13px 16px;
1259
+ background-size: 13px 16px
1260
+ }
1261
+ }
1262
+
1263
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
1264
+ html:not(.ie8) .header-inner .referral-promo .referral-promo-icon {
1265
+ background: url('/assets/kirgudu_sso/authentications/base/images/header-referral-promo@2x.png') no-repeat bottom;
1266
+ -webkit-background-size: 13px 16px;
1267
+ -moz-background-size: 13px 16px;
1268
+ -o-background-size: 13px 16px;
1269
+ background-size: 13px 16px
1270
+ }
1271
+ }
1272
+
1273
+ .header-inner .go-premium-promo {
1274
+ display: none
1275
+ }
1276
+
1277
+ .header-inner .go-premium-promo:link, .header-inner .go-premium-promo:hover, .header-inner .go-premium-promo:active, .header-inner .go-premium-promo:visited {
1278
+ color: #fff;
1279
+ font-weight: bold;
1280
+ font-size: 12px;
1281
+ line-height: 32px;
1282
+ text-decoration: none;
1283
+ height: 32px;
1284
+ vertical-align: top;
1285
+ margin-right: 32px
1286
+ }
1287
+
1288
+ .ie7 .header-inner .go-premium-promo:link, .ie7 .header-inner .go-premium-promo:hover, .ie7 .header-inner .go-premium-promo:active, .ie7 .header-inner .go-premium-promo:visited {
1289
+ vertical-align: middle
1290
+ }
1291
+
1292
+ #header-wrapper .header-inner .go-premium-promo {
1293
+ display: inline-block
1294
+ }
1295
+
1296
+ .ie7 #header-wrapper .header-inner .go-premium-promo {
1297
+ display: inline;
1298
+ zoom: 1
1299
+ }
1300
+
1301
+ .header-inner .go-premium-promo .Icon {
1302
+ vertical-align: top
1303
+ }
1304
+
1305
+ .ie7 .header-inner .go-premium-promo .Icon {
1306
+ vertical-align: middle
1307
+ }
1308
+
1309
+ #header-wrapper .header-inner, .wrapper-embed .header-inner {
1310
+ height: 32px
1311
+ }
1312
+
1313
+ @media all {
1314
+ #header-wrapper .header-inner, .wrapper-embed .header-inner {
1315
+ background: url('/assets/kirgudu_sso/authentications/base/images/header-background-green.png') 0 0 transparent scroll repeat-x;
1316
+ -webkit-background-size: 186px 32px;
1317
+ -moz-background-size: 186px 32px;
1318
+ -o-background-size: 186px 32px;
1319
+ background-size: 186px 32px
1320
+ }
1321
+ }
1322
+
1323
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
1324
+ html:not(.ie8) #header-wrapper .header-inner, html:not(.ie8) .wrapper-embed .header-inner {
1325
+ background: url('/assets/kirgudu_sso/authentications/base/images/header-background-green@2x.png') 0 0 transparent scroll repeat-x;
1326
+ -webkit-background-size: 186px 32px;
1327
+ -moz-background-size: 186px 32px;
1328
+ -o-background-size: 186px 32px;
1329
+ background-size: 186px 32px
1330
+ }
1331
+ }
1332
+
1333
+ .header-inner .general-button {
1334
+ font-family: caecilia-bold, helvetica, arial, sans-serif;
1335
+ font-size: 14px;
1336
+ font-weight: normal;
1337
+ -webkit-font-smoothing: antialiased;
1338
+ -moz-osx-font-smoothing: grayscale;
1339
+ height: 17px;
1340
+ min-width: 10px;
1341
+ margin: 8px;
1342
+ padding: 8px 20px;
1343
+ color: #fff;
1344
+ background-color: #70c035;
1345
+ background-image: -moz-linear-gradient(top, #76c92b, #66b343);
1346
+ background-image: -ms-linear-gradient(top, #76c92b, #66b343);
1347
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#76c92b), to(#66b343));
1348
+ background-image: -webkit-linear-gradient(top, #76c92b, #66b343);
1349
+ background-image: -o-linear-gradient(top, #76c92b, #66b343);
1350
+ background-image: linear-gradient(top, #76c92b, #66b343);
1351
+ background-repeat: repeat-x;
1352
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff76c92b', endColorstr='#ff66b343', GradientType=0);
1353
+ border-color: #66b343 #66b343 #467b2e;
1354
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1355
+ border: 1px solid #457f2b;
1356
+ display: inline-block
1357
+ }
1358
+
1359
+ .ie7 .header-inner .general-button {
1360
+ display: inline;
1361
+ zoom: 1
1362
+ }
1363
+
1364
+ .header-inner .general-button:hover {
1365
+ color: #fff;
1366
+ background-color: #62b534;
1367
+ background-image: -moz-linear-gradient(top, #69bd30, #57a83a);
1368
+ background-image: -ms-linear-gradient(top, #69bd30, #57a83a);
1369
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#69bd30), to(#57a83a));
1370
+ background-image: -webkit-linear-gradient(top, #69bd30, #57a83a);
1371
+ background-image: -o-linear-gradient(top, #69bd30, #57a83a);
1372
+ background-image: linear-gradient(top, #69bd30, #57a83a);
1373
+ background-repeat: repeat-x;
1374
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff69bd30', endColorstr='#ff57a83a', GradientType=0);
1375
+ border-color: #57a83a #57a83a #3a6f26;
1376
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1377
+ border: 1px solid #457f2b
1378
+ }
1379
+
1380
+ #header-wrapper .header-inner .general-button, .wrapper-embed .header-inner .general-button {
1381
+ display: none
1382
+ }
1383
+
1384
+ .ie7 .header-inner .general-button {
1385
+ zoom: 1;
1386
+ display: inline
1387
+ }
1388
+
1389
+ .header-inner .right {
1390
+ height: 53px
1391
+ }
1392
+
1393
+ #header-wrapper .header-inner .right, .wrapper-embed .header-inner .right {
1394
+ height: 32px
1395
+ }
1396
+
1397
+ @media only screen and (max-width: 709px) {
1398
+ #header-wrapper .header-inner .right, .wrapper-embed .header-inner .right {
1399
+ display: inline-block;
1400
+ float: right
1401
+ }
1402
+
1403
+ .ie7 #header-wrapper .header-inner .right, .ie7 .wrapper-embed .header-inner .right {
1404
+ display: inline;
1405
+ zoom: 1
1406
+ }
1407
+ }
1408
+
1409
+ @media only screen and (max-width: 709px) {
1410
+ .header-inner .right {
1411
+ display: none
1412
+ }
1413
+ }
1414
+
1415
+ @media only screen and (max-width: 827px) {
1416
+ .user-wrapper .header-inner .right {
1417
+ display: none
1418
+ }
1419
+ }
1420
+
1421
+ .header-inner .general-button {
1422
+ display: inline-block
1423
+ }
1424
+
1425
+ .ie7 .header-inner .general-button {
1426
+ display: inline;
1427
+ zoom: 1
1428
+ }
1429
+
1430
+ .kirgudu-sso-logo, .kirgudu-sso-logo:visited {
1431
+ text-indent: -9999px;
1432
+ display: inline-block;
1433
+ padding: 0;
1434
+ width: 175px;
1435
+ height: 52px;
1436
+ margin-left: 0;
1437
+ margin-top: 0
1438
+ }
1439
+
1440
+ @media all {
1441
+ .kirgudu-sso-logo, .kirgudu-sso-logo:visited {
1442
+ background: url("/assets/kirgudu_sso/authentications/base/images/kirgudu-sso-logo.png") no-repeat;
1443
+ -webkit-background-size: 175px 52px;
1444
+ -moz-background-size: 175px 52px;
1445
+ -o-background-size: 175px 52px;
1446
+ background-size: 175px 52px
1447
+ }
1448
+ }
1449
+
1450
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
1451
+ html:not(.ie8) .kirgudu-sso-logo, html:not(.ie8) .kirgudu-sso-logo:visited {
1452
+ background: url("/assets/kirgudu_sso/authentications/base/images/kirgudu-sso-logo@2x.png") no-repeat;
1453
+ -webkit-background-size: 175px 52px;
1454
+ -moz-background-size: 175px 52px;
1455
+ -o-background-size: 175px 52px;
1456
+ background-size: 175px 52px
1457
+ }
1458
+ }
1459
+
1460
+ .ie7 .kirgudu-sso-logo, .ie7 .kirgudu-sso-logo:visited {
1461
+ display: inline;
1462
+ zoom: 1
1463
+ }
1464
+
1465
+ @media all {
1466
+ .kirgudu-sso-logo:hover, .kirgudu-sso-logo:visited:hover, .kirgudu-sso-logo:focus, .kirgudu-sso-logo:visited:focus {
1467
+ background: url("/assets/kirgudu_sso/authentications/base/images/kirgudu-sso-logo.png") no-repeat;
1468
+ -webkit-background-size: 175px 52px;
1469
+ -moz-background-size: 175px 52px;
1470
+ -o-background-size: 175px 52px;
1471
+ background-size: 175px 52px
1472
+ }
1473
+ }
1474
+
1475
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
1476
+ html:not(.ie8) .kirgudu-sso-logo:hover, html:not(.ie8) .kirgudu-sso-logo:visited:hover, html:not(.ie8) .kirgudu-sso-logo:focus, html:not(.ie8) .kirgudu-sso-logo:visited:focus {
1477
+ background: url("/assets/kirgudu_sso/authentications/base/images/kirgudu-sso-logo@2x.png") no-repeat;
1478
+ -webkit-background-size: 175px 52px;
1479
+ -moz-background-size: 175px 52px;
1480
+ -o-background-size: 175px 52px;
1481
+ background-size: 175px 52px
1482
+ }
1483
+ }
1484
+
1485
+ .kirgudu-sso-logo span, .kirgudu-sso-logo:visited span {
1486
+ position: absolute;
1487
+ top: -50px
1488
+ }
1489
+
1490
+ .ie7 .kirgudu-sso-logo, .ie7 .kirgudu-sso-logo:visited {
1491
+ display: block;
1492
+ float: left
1493
+ }
1494
+
1495
+ .warning-container {
1496
+ float: right;
1497
+ line-height: 1em;
1498
+ display: inline-block
1499
+ }
1500
+
1501
+ .ie7 .warning-container {
1502
+ display: inline;
1503
+ zoom: 1
1504
+ }
1505
+
1506
+ .user-wrapper .warning {
1507
+ display: inline-block;
1508
+ vertical-align: top
1509
+ }
1510
+
1511
+ .ie7 .user-wrapper .warning {
1512
+ display: inline;
1513
+ zoom: 1
1514
+ }
1515
+
1516
+ .warning a {
1517
+ color: #0b4906;
1518
+ font-family: helvetica;
1519
+ font-size: 11px;
1520
+ display: inline-block;
1521
+ height: 24px;
1522
+ padding: 7px 0px 0px 0px;
1523
+ vertical-align: top;
1524
+ -webkit-font-smoothing: antialiased;
1525
+ -moz-osx-font-smoothing: grayscale
1526
+ }
1527
+
1528
+ .ie7 .warning a {
1529
+ display: inline;
1530
+ zoom: 1
1531
+ }
1532
+
1533
+ .user-wrapper .warning a {
1534
+ line-height: 1.0;
1535
+ height: 11px;
1536
+ padding: 20px 0 21px 0
1537
+ }
1538
+
1539
+ .warning a:hover {
1540
+ color: #052903
1541
+ }
1542
+
1543
+ #warningIcon {
1544
+ height: 32px;
1545
+ width: 16px;
1546
+ display: inline-block;
1547
+ margin: 0px 4px
1548
+ }
1549
+
1550
+ @media all {
1551
+ #warningIcon {
1552
+ background: url('/assets/kirgudu_sso/authentications/base/images/payment-warning-icon.png') no-repeat 0 center;
1553
+ -webkit-background-size: 17px 16px;
1554
+ -moz-background-size: 17px 16px;
1555
+ -o-background-size: 17px 16px;
1556
+ background-size: 17px 16px
1557
+ }
1558
+ }
1559
+
1560
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
1561
+ html:not(.ie8) #warningIcon {
1562
+ background: url('/assets/kirgudu_sso/authentications/base/images/payment-warning-icon@2x.png') no-repeat 0 center;
1563
+ -webkit-background-size: 17px 16px;
1564
+ -moz-background-size: 17px 16px;
1565
+ -o-background-size: 17px 16px;
1566
+ background-size: 17px 16px
1567
+ }
1568
+ }
1569
+
1570
+ .ie7 #warningIcon {
1571
+ display: inline;
1572
+ zoom: 1
1573
+ }
1574
+
1575
+ .user-wrapper #warningIcon {
1576
+ height: 52px
1577
+ }
1578
+
1579
+ #warningLinkIcon {
1580
+ height: 32px;
1581
+ width: 11px;
1582
+ display: inline-block;
1583
+ margin: 0px 4px
1584
+ }
1585
+
1586
+ @media all {
1587
+ #warningLinkIcon {
1588
+ background: url('/assets/kirgudu_sso/authentications/base/images/link-arrow.png') no-repeat 0 center;
1589
+ -webkit-background-size: 8px 11px;
1590
+ -moz-background-size: 8px 11px;
1591
+ -o-background-size: 8px 11px;
1592
+ background-size: 8px 11px
1593
+ }
1594
+ }
1595
+
1596
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
1597
+ html:not(.ie8) #warningLinkIcon {
1598
+ background: url('/assets/kirgudu_sso/authentications/base/images/link-arrow@2x.png') no-repeat 0 center;
1599
+ -webkit-background-size: 8px 11px;
1600
+ -moz-background-size: 8px 11px;
1601
+ -o-background-size: 8px 11px;
1602
+ background-size: 8px 11px
1603
+ }
1604
+ }
1605
+
1606
+ .ie7 #warningLinkIcon {
1607
+ display: inline;
1608
+ zoom: 1
1609
+ }
1610
+
1611
+ .user-wrapper #warningLinkIcon {
1612
+ height: 52px
1613
+ }
1614
+
1615
+ .supertext {
1616
+ font-family: 'caecilia-light-italic';
1617
+ -webkit-font-smoothing: antialiased;
1618
+ -moz-osx-font-smoothing: grayscale;
1619
+ font-size: 18px;
1620
+ line-height: 24px
1621
+ }
1622
+
1623
+ .row {
1624
+ display: block
1625
+ }
1626
+
1627
+ .row:before, .row:after {
1628
+ display: table;
1629
+ content: ""
1630
+ }
1631
+
1632
+ .row:after {
1633
+ clear: both
1634
+ }
1635
+
1636
+ .lt-ie9 .row, .ie7 .row, .ie8 .row {
1637
+ zoom: 1
1638
+ }
1639
+
1640
+ .column32 {
1641
+ width: 1024px;
1642
+ display: inline-block;
1643
+ vertical-align: top
1644
+ }
1645
+
1646
+ .ie7 .column32 {
1647
+ display: inline;
1648
+ zoom: 1
1649
+ }
1650
+
1651
+ .column31 {
1652
+ width: 992px;
1653
+ display: inline-block;
1654
+ vertical-align: top
1655
+ }
1656
+
1657
+ .ie7 .column31 {
1658
+ display: inline;
1659
+ zoom: 1
1660
+ }
1661
+
1662
+ .column30 {
1663
+ width: 960px;
1664
+ display: inline-block;
1665
+ vertical-align: top
1666
+ }
1667
+
1668
+ .ie7 .column30 {
1669
+ display: inline;
1670
+ zoom: 1
1671
+ }
1672
+
1673
+ .column29 {
1674
+ width: 928px;
1675
+ display: inline-block;
1676
+ vertical-align: top
1677
+ }
1678
+
1679
+ .ie7 .column29 {
1680
+ display: inline;
1681
+ zoom: 1
1682
+ }
1683
+
1684
+ .column28 {
1685
+ width: 896px;
1686
+ display: inline-block;
1687
+ vertical-align: top
1688
+ }
1689
+
1690
+ .ie7 .column28 {
1691
+ display: inline;
1692
+ zoom: 1
1693
+ }
1694
+
1695
+ .column27 {
1696
+ width: 864px;
1697
+ display: inline-block;
1698
+ vertical-align: top
1699
+ }
1700
+
1701
+ .ie7 .column27 {
1702
+ display: inline;
1703
+ zoom: 1
1704
+ }
1705
+
1706
+ .column26 {
1707
+ width: 832px;
1708
+ display: inline-block;
1709
+ vertical-align: top
1710
+ }
1711
+
1712
+ .ie7 .column26 {
1713
+ display: inline;
1714
+ zoom: 1
1715
+ }
1716
+
1717
+ .column25 {
1718
+ width: 800px;
1719
+ display: inline-block;
1720
+ vertical-align: top
1721
+ }
1722
+
1723
+ .ie7 .column25 {
1724
+ display: inline;
1725
+ zoom: 1
1726
+ }
1727
+
1728
+ .column24 {
1729
+ width: 768px;
1730
+ display: inline-block;
1731
+ vertical-align: top
1732
+ }
1733
+
1734
+ .ie7 .column24 {
1735
+ display: inline;
1736
+ zoom: 1
1737
+ }
1738
+
1739
+ .column23 {
1740
+ width: 736px;
1741
+ display: inline-block;
1742
+ vertical-align: top
1743
+ }
1744
+
1745
+ .ie7 .column23 {
1746
+ display: inline;
1747
+ zoom: 1
1748
+ }
1749
+
1750
+ .column22 {
1751
+ width: 704px;
1752
+ display: inline-block;
1753
+ vertical-align: top
1754
+ }
1755
+
1756
+ .ie7 .column22 {
1757
+ display: inline;
1758
+ zoom: 1
1759
+ }
1760
+
1761
+ .column21 {
1762
+ width: 672px;
1763
+ display: inline-block;
1764
+ vertical-align: top
1765
+ }
1766
+
1767
+ .ie7 .column21 {
1768
+ display: inline;
1769
+ zoom: 1
1770
+ }
1771
+
1772
+ .column20 {
1773
+ width: 640px;
1774
+ display: inline-block;
1775
+ vertical-align: top
1776
+ }
1777
+
1778
+ .ie7 .column20 {
1779
+ display: inline;
1780
+ zoom: 1
1781
+ }
1782
+
1783
+ .column19 {
1784
+ width: 608px;
1785
+ display: inline-block;
1786
+ vertical-align: top
1787
+ }
1788
+
1789
+ .ie7 .column19 {
1790
+ display: inline;
1791
+ zoom: 1
1792
+ }
1793
+
1794
+ .column18 {
1795
+ width: 576px;
1796
+ display: inline-block;
1797
+ vertical-align: top
1798
+ }
1799
+
1800
+ .ie7 .column18 {
1801
+ display: inline;
1802
+ zoom: 1
1803
+ }
1804
+
1805
+ .column17 {
1806
+ width: 544px;
1807
+ display: inline-block;
1808
+ vertical-align: top
1809
+ }
1810
+
1811
+ .ie7 .column17 {
1812
+ display: inline;
1813
+ zoom: 1
1814
+ }
1815
+
1816
+ .column16 {
1817
+ width: 512px;
1818
+ display: inline-block;
1819
+ vertical-align: top
1820
+ }
1821
+
1822
+ .ie7 .column16 {
1823
+ display: inline;
1824
+ zoom: 1
1825
+ }
1826
+
1827
+ .column15 {
1828
+ width: 480px;
1829
+ display: inline-block;
1830
+ vertical-align: top
1831
+ }
1832
+
1833
+ .ie7 .column15 {
1834
+ display: inline;
1835
+ zoom: 1
1836
+ }
1837
+
1838
+ .column14 {
1839
+ width: 448px;
1840
+ display: inline-block;
1841
+ vertical-align: top
1842
+ }
1843
+
1844
+ .ie7 .column14 {
1845
+ display: inline;
1846
+ zoom: 1
1847
+ }
1848
+
1849
+ .column13 {
1850
+ width: 416px;
1851
+ display: inline-block;
1852
+ vertical-align: top
1853
+ }
1854
+
1855
+ .ie7 .column13 {
1856
+ display: inline;
1857
+ zoom: 1
1858
+ }
1859
+
1860
+ .column12 {
1861
+ width: 384px;
1862
+ display: inline-block;
1863
+ vertical-align: top
1864
+ }
1865
+
1866
+ .ie7 .column12 {
1867
+ display: inline;
1868
+ zoom: 1
1869
+ }
1870
+
1871
+ .column11 {
1872
+ width: 352px;
1873
+ display: inline-block;
1874
+ vertical-align: top
1875
+ }
1876
+
1877
+ .ie7 .column11 {
1878
+ display: inline;
1879
+ zoom: 1
1880
+ }
1881
+
1882
+ .column10 {
1883
+ width: 320px;
1884
+ display: inline-block;
1885
+ vertical-align: top
1886
+ }
1887
+
1888
+ .ie7 .column10 {
1889
+ display: inline;
1890
+ zoom: 1
1891
+ }
1892
+
1893
+ .column9 {
1894
+ width: 288px;
1895
+ display: inline-block;
1896
+ vertical-align: top
1897
+ }
1898
+
1899
+ .ie7 .column9 {
1900
+ display: inline;
1901
+ zoom: 1
1902
+ }
1903
+
1904
+ .column8 {
1905
+ width: 256px;
1906
+ display: inline-block;
1907
+ vertical-align: top
1908
+ }
1909
+
1910
+ .ie7 .column8 {
1911
+ display: inline;
1912
+ zoom: 1
1913
+ }
1914
+
1915
+ .column7 {
1916
+ width: 224px;
1917
+ display: inline-block;
1918
+ vertical-align: top
1919
+ }
1920
+
1921
+ .ie7 .column7 {
1922
+ display: inline;
1923
+ zoom: 1
1924
+ }
1925
+
1926
+ .column6 {
1927
+ width: 192px;
1928
+ display: inline-block;
1929
+ vertical-align: top
1930
+ }
1931
+
1932
+ .ie7 .column6 {
1933
+ display: inline;
1934
+ zoom: 1
1935
+ }
1936
+
1937
+ .column5 {
1938
+ width: 160px;
1939
+ display: inline-block;
1940
+ vertical-align: top
1941
+ }
1942
+
1943
+ .ie7 .column5 {
1944
+ display: inline;
1945
+ zoom: 1
1946
+ }
1947
+
1948
+ .column4 {
1949
+ width: 128px;
1950
+ display: inline-block;
1951
+ vertical-align: top
1952
+ }
1953
+
1954
+ .ie7 .column4 {
1955
+ display: inline;
1956
+ zoom: 1
1957
+ }
1958
+
1959
+ .column3 {
1960
+ width: 96px;
1961
+ display: inline-block;
1962
+ vertical-align: top
1963
+ }
1964
+
1965
+ .ie7 .column3 {
1966
+ display: inline;
1967
+ zoom: 1
1968
+ }
1969
+
1970
+ .column2 {
1971
+ width: 64px;
1972
+ display: inline-block;
1973
+ vertical-align: top
1974
+ }
1975
+
1976
+ .ie7 .column2 {
1977
+ display: inline;
1978
+ zoom: 1
1979
+ }
1980
+
1981
+ .column1 {
1982
+ width: 32px;
1983
+ display: inline-block;
1984
+ vertical-align: top
1985
+ }
1986
+
1987
+ .ie7 .column1 {
1988
+ display: inline;
1989
+ zoom: 1
1990
+ }
1991
+
1992
+ a, a:visited {
1993
+ cursor: pointer;
1994
+ color: #747474;
1995
+ line-height: 18px;
1996
+ font-family: helvetica, arial, sans-serif;
1997
+ font-style: normal;
1998
+ font-variant: normal;
1999
+ text-align: left;
2000
+ text-decoration: none;
2001
+ text-indent: 0;
2002
+ text-justify: auto;
2003
+ text-outline: none;
2004
+ text-overflow: clip;
2005
+ text-shadow: none;
2006
+ text-transform: none;
2007
+ text-wrap: normal;
2008
+ font-size: 13px;
2009
+ font-weight: normal;
2010
+ color: #4a8db8
2011
+ }
2012
+
2013
+ .wrapper#container-boundingbox {
2014
+ margin: 32px auto 0;
2015
+ width: 800px
2016
+ }
2017
+
2018
+ @media only screen and (max-width: 479px) {
2019
+ .wrapper#container-boundingbox {
2020
+ width: 288px
2021
+ }
2022
+ }
2023
+
2024
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
2025
+ .wrapper#container-boundingbox {
2026
+ width: 416px
2027
+ }
2028
+ }
2029
+
2030
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
2031
+ .wrapper#container-boundingbox {
2032
+ width: 704px
2033
+ }
2034
+ }
2035
+
2036
+ .wrapper .main {
2037
+ background-color: #fff;
2038
+ border: 1px solid #bdbdbd;
2039
+ padding: 32px;
2040
+ width: 736px;
2041
+ position: relative
2042
+ }
2043
+
2044
+ @media only screen and (max-width: 479px) {
2045
+ .wrapper .main {
2046
+ padding: 16px;
2047
+ width: 256px
2048
+ }
2049
+ }
2050
+
2051
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
2052
+ .wrapper .main {
2053
+ width: 352px
2054
+ }
2055
+ }
2056
+
2057
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
2058
+ .wrapper .main {
2059
+ width: 640px
2060
+ }
2061
+ }
2062
+
2063
+ @media only screen and (max-width: 479px) {
2064
+ .wrapper.shadow {
2065
+ width: 288px
2066
+ }
2067
+ }
2068
+
2069
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
2070
+ .wrapper.shadow {
2071
+ display: block;
2072
+ width: 416px
2073
+ }
2074
+ }
2075
+
2076
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
2077
+ .wrapper.shadow {
2078
+ display: block;
2079
+ width: 704px
2080
+ }
2081
+ }
2082
+
2083
+ @media only screen and (max-width: 479px) {
2084
+ .wrapper.shadow .wrapper .footer {
2085
+ width: 288px
2086
+ }
2087
+ }
2088
+
2089
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
2090
+ .user-wrapper .user-wrapper.shadow {
2091
+ padding-left: 0
2092
+ }
2093
+ }
2094
+
2095
+ .wrapper-small#container-boundingbox {
2096
+ margin: 32px auto 0;
2097
+ width: 544px
2098
+ }
2099
+
2100
+ @media only screen and (max-width: 479px) {
2101
+ .wrapper-small#container-boundingbox {
2102
+ width: 288px
2103
+ }
2104
+ }
2105
+
2106
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
2107
+ .wrapper-small#container-boundingbox {
2108
+ width: 416px
2109
+ }
2110
+ }
2111
+
2112
+ .wrapper-small .main {
2113
+ background-color: #fff;
2114
+ border: 1px solid #bdbdbd;
2115
+ width: 480px;
2116
+ padding: 32px;
2117
+ position: relative
2118
+ }
2119
+
2120
+ @media only screen and (max-width: 479px) {
2121
+ .wrapper-small .main {
2122
+ padding: 16px;
2123
+ width: 256px
2124
+ }
2125
+ }
2126
+
2127
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
2128
+ .wrapper-small .main {
2129
+ width: 352px
2130
+ }
2131
+ }
2132
+
2133
+ .wrapper-small.shadow {
2134
+ width: 544px
2135
+ }
2136
+
2137
+ @media only screen and (max-width: 479px) {
2138
+ .wrapper-small.shadow {
2139
+ width: 288px
2140
+ }
2141
+ }
2142
+
2143
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
2144
+ .wrapper-small.shadow {
2145
+ width: 416px
2146
+ }
2147
+ }
2148
+
2149
+ .wrapper-small.footer {
2150
+ border: 0;
2151
+ margin: 0 auto 10px;
2152
+ text-align: center;
2153
+ width: 544px
2154
+ }
2155
+
2156
+ @media only screen and (max-width: 479px) {
2157
+ .wrapper-small.footer {
2158
+ width: 288px
2159
+ }
2160
+ }
2161
+
2162
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
2163
+ .wrapper-small.footer {
2164
+ width: 416px
2165
+ }
2166
+ }
2167
+
2168
+ @media only screen and (max-width: 479px) {
2169
+ .wrapper-small.footer .footer-entry {
2170
+ border: 0;
2171
+ display: block
2172
+ }
2173
+ }
2174
+
2175
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
2176
+ .wrapper-small.footer .footer-entry {
2177
+ border: 0;
2178
+ display: block
2179
+ }
2180
+ }
2181
+
2182
+ .wrapper-menu #container-boundingbox {
2183
+ margin: 32px auto 0;
2184
+ width: 896px
2185
+ }
2186
+
2187
+ @media only screen and (max-width: 479px) {
2188
+ .wrapper-menu #container-boundingbox {
2189
+ width: 288px
2190
+ }
2191
+ }
2192
+
2193
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
2194
+ .wrapper-menu #container-boundingbox {
2195
+ width: 544px
2196
+ }
2197
+ }
2198
+
2199
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
2200
+ .wrapper-menu #container-boundingbox {
2201
+ width: 704px
2202
+ }
2203
+ }
2204
+
2205
+ .wrapper-menu #container {
2206
+ width: 896px
2207
+ }
2208
+
2209
+ @media only screen and (max-width: 479px) {
2210
+ .wrapper-menu #container {
2211
+ width: 288px
2212
+ }
2213
+ }
2214
+
2215
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
2216
+ .wrapper-menu #container {
2217
+ width: 544px
2218
+ }
2219
+ }
2220
+
2221
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
2222
+ .wrapper-menu #container {
2223
+ width: 704px
2224
+ }
2225
+ }
2226
+
2227
+ .wrapper-menu .shadow {
2228
+ padding-left: 154px;
2229
+ width: 736px
2230
+ }
2231
+
2232
+ @media only screen and (max-width: 479px) {
2233
+ .wrapper-menu .shadow {
2234
+ padding-left: 0;
2235
+ width: 288px
2236
+ }
2237
+ }
2238
+
2239
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
2240
+ .wrapper-menu .shadow {
2241
+ padding-left: 0;
2242
+ width: 544px
2243
+ }
2244
+ }
2245
+
2246
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
2247
+ .wrapper-menu .shadow {
2248
+ width: 544px
2249
+ }
2250
+ }
2251
+
2252
+ .wrapper-menu .footer {
2253
+ padding-left: 160px;
2254
+ text-align: center;
2255
+ width: 736px
2256
+ }
2257
+
2258
+ @media only screen and (max-width: 479px) {
2259
+ .wrapper-menu .footer {
2260
+ padding: 0;
2261
+ width: 288px
2262
+ }
2263
+ }
2264
+
2265
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
2266
+ .wrapper-menu .footer {
2267
+ padding-left: 0;
2268
+ width: 544px
2269
+ }
2270
+ }
2271
+
2272
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
2273
+ .wrapper-menu .footer {
2274
+ width: 544px
2275
+ }
2276
+ }
2277
+
2278
+ .wrapper-embed#container-boundingbox {
2279
+ width: 100%;
2280
+ height: 100%
2281
+ }
2282
+
2283
+ .wrapper-embed#container {
2284
+ width: 100%;
2285
+ height: 100%
2286
+ }
2287
+
2288
+ .wrapper-embed.shadow {
2289
+ display: none
2290
+ }
2291
+
2292
+ .wrapper-embed.footer {
2293
+ display: none
2294
+ }
2295
+
2296
+ @media all {
2297
+ body.wrapper-embed {
2298
+ background: none
2299
+ }
2300
+ }
2301
+
2302
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
2303
+ html:not(.ie8) body.wrapper-embed {
2304
+ background: none
2305
+ }
2306
+ }
2307
+
2308
+ input[type="submit"], input[type="button"], .general-button, a.general-button {
2309
+ display: inline-block;
2310
+ min-width: 100px;
2311
+ margin: 0px;
2312
+ padding: 6px 10px;
2313
+ border: 1px solid #b2b2b2;
2314
+ height: auto;
2315
+ width: auto;
2316
+ background: #f5f5f5;
2317
+ float: none;
2318
+ cursor: pointer;
2319
+ background-color: #efefef;
2320
+ background-image: -moz-linear-gradient(top, #f5f5f5, #e6e6e6);
2321
+ background-image: -ms-linear-gradient(top, #f5f5f5, #e6e6e6);
2322
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#e6e6e6));
2323
+ background-image: -webkit-linear-gradient(top, #f5f5f5, #e6e6e6);
2324
+ background-image: -o-linear-gradient(top, #f5f5f5, #e6e6e6);
2325
+ background-image: linear-gradient(top, #f5f5f5, #e6e6e6);
2326
+ background-repeat: repeat-x;
2327
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe6e6e6', GradientType=0);
2328
+ color: #747474;
2329
+ line-height: 18px;
2330
+ font-family: helvetica, arial, sans-serif;
2331
+ font-size: 13px;
2332
+ font-style: normal;
2333
+ font-variant: normal;
2334
+ font-weight: normal;
2335
+ text-align: left;
2336
+ text-decoration: none;
2337
+ text-indent: 0;
2338
+ text-justify: auto;
2339
+ text-outline: none;
2340
+ text-overflow: clip;
2341
+ text-shadow: none;
2342
+ text-transform: none;
2343
+ text-wrap: normal;
2344
+ color: #3b3b3b;
2345
+ text-align: center;
2346
+ -webkit-border-radius: 2px;
2347
+ -moz-border-radius: 2px;
2348
+ border-radius: 2px;
2349
+ -webkit-box-shadow: 0 0 0 #000;
2350
+ -moz-box-shadow: 0 0 0 #000;
2351
+ box-shadow: 0 0 0 #000;
2352
+ -webkit-transition: all .2s ease 0;
2353
+ -moz-transition: all .2s ease 0;
2354
+ -ms-transition: all .2s ease 0;
2355
+ -o-transition: all .2s ease 0;
2356
+ transition: all .2s ease 0;
2357
+ -webkit-touch-callout: none;
2358
+ -webkit-user-select: none;
2359
+ -khtml-user-select: none;
2360
+ -moz-user-select: -moz-none;
2361
+ -ms-user-select: none;
2362
+ user-select: none
2363
+ }
2364
+
2365
+ .ie7 input[type="submit"], .ie7 input[type="button"], .ie7 .general-button, .ie7 a.general-button {
2366
+ display: inline;
2367
+ zoom: 1
2368
+ }
2369
+
2370
+ input[type="submit"]:hover, input[type="button"]:hover, .general-button:hover, a.general-button:hover {
2371
+ border: 1px solid #a4a4a4;
2372
+ color: #2b2b2b;
2373
+ background-color: #e8e8e8;
2374
+ background-image: -moz-linear-gradient(top, #efefef, #ddd);
2375
+ background-image: -ms-linear-gradient(top, #efefef, #ddd);
2376
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#efefef), to(#ddd));
2377
+ background-image: -webkit-linear-gradient(top, #efefef, #ddd);
2378
+ background-image: -o-linear-gradient(top, #efefef, #ddd);
2379
+ background-image: linear-gradient(top, #efefef, #ddd);
2380
+ background-repeat: repeat-x;
2381
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffefefef', endColorstr='#ffdddddd', GradientType=0)
2382
+ }
2383
+
2384
+ @media only screen and (max-width: 479px) {
2385
+ input[type="submit"], input[type="button"], .general-button, a.general-button {
2386
+ width: 99%;
2387
+ padding-left: 0px;
2388
+ padding-right: 0px
2389
+ }
2390
+ }
2391
+
2392
+ input[type="submit"].deemphasize, input[type="button"].deemphasize, .general-button.deemphasize, a.general-button.deemphasize {
2393
+ height: 24px;
2394
+ padding: 0 8px;
2395
+ -webkit-border-radius: 3px;
2396
+ -moz-border-radius: 3px;
2397
+ border-radius: 3px
2398
+ }
2399
+
2400
+ input[type="submit"].emphasize, input[type="button"].emphasize, .general-button.emphasize, a.general-button.emphasize {
2401
+ display: inline-block;
2402
+ min-width: 100px;
2403
+ margin: 0px;
2404
+ padding: 6px 10px;
2405
+ border: 1px solid #5c982c;
2406
+ height: auto;
2407
+ width: auto;
2408
+ background: #f5f5f5;
2409
+ float: none;
2410
+ cursor: pointer;
2411
+ background-color: #69ad31;
2412
+ background-image: -moz-linear-gradient(top, #6fb536, #5fa229);
2413
+ background-image: -ms-linear-gradient(top, #6fb536, #5fa229);
2414
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#6fb536), to(#5fa229));
2415
+ background-image: -webkit-linear-gradient(top, #6fb536, #5fa229);
2416
+ background-image: -o-linear-gradient(top, #6fb536, #5fa229);
2417
+ background-image: linear-gradient(top, #6fb536, #5fa229);
2418
+ background-repeat: repeat-x;
2419
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6fb536', endColorstr='#ff5fa229', GradientType=0);
2420
+ color: #747474;
2421
+ line-height: 18px;
2422
+ font-family: helvetica, arial, sans-serif;
2423
+ font-size: 13px;
2424
+ font-style: normal;
2425
+ font-variant: normal;
2426
+ font-weight: normal;
2427
+ text-align: left;
2428
+ text-decoration: none;
2429
+ text-indent: 0;
2430
+ text-justify: auto;
2431
+ text-outline: none;
2432
+ text-overflow: clip;
2433
+ text-shadow: none;
2434
+ text-transform: none;
2435
+ text-wrap: normal;
2436
+ color: #fff;
2437
+ text-align: center;
2438
+ -webkit-border-radius: 2px;
2439
+ -moz-border-radius: 2px;
2440
+ border-radius: 2px;
2441
+ -webkit-box-shadow: 0 0 0 #000;
2442
+ -moz-box-shadow: 0 0 0 #000;
2443
+ box-shadow: 0 0 0 #000;
2444
+ -webkit-transition: all .2s ease 0;
2445
+ -moz-transition: all .2s ease 0;
2446
+ -ms-transition: all .2s ease 0;
2447
+ -o-transition: all .2s ease 0;
2448
+ transition: all .2s ease 0;
2449
+ -webkit-touch-callout: none;
2450
+ -webkit-user-select: none;
2451
+ -khtml-user-select: none;
2452
+ -moz-user-select: -moz-none;
2453
+ -ms-user-select: none;
2454
+ user-select: none
2455
+ }
2456
+
2457
+ .ie7 input[type="submit"].emphasize, .ie7 input[type="button"].emphasize, .ie7 .general-button.emphasize, .ie7 a.general-button.emphasize {
2458
+ display: inline;
2459
+ zoom: 1
2460
+ }
2461
+
2462
+ input[type="submit"].emphasize:hover, input[type="button"].emphasize:hover, .general-button.emphasize:hover, a.general-button.emphasize:hover {
2463
+ border: 1px solid #4c881d;
2464
+ color: #fff;
2465
+ background-color: #569720;
2466
+ background-image: -moz-linear-gradient(top, #60a526, #478316);
2467
+ background-image: -ms-linear-gradient(top, #60a526, #478316);
2468
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#60a526), to(#478316));
2469
+ background-image: -webkit-linear-gradient(top, #60a526, #478316);
2470
+ background-image: -o-linear-gradient(top, #60a526, #478316);
2471
+ background-image: linear-gradient(top, #60a526, #478316);
2472
+ background-repeat: repeat-x;
2473
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff60a526', endColorstr='#ff478316', GradientType=0)
2474
+ }
2475
+
2476
+ @media only screen and (max-width: 479px) {
2477
+ input[type="submit"].emphasize, input[type="button"].emphasize, .general-button.emphasize, a.general-button.emphasize {
2478
+ width: 99%;
2479
+ padding-left: 0px;
2480
+ padding-right: 0px
2481
+ }
2482
+ }
2483
+
2484
+ input[type="submit"].emphasize:disabled, input[type="button"].emphasize:disabled, .general-button.emphasize:disabled, a.general-button.emphasize:disabled {
2485
+ display: inline-block;
2486
+ min-width: 100px;
2487
+ margin: 0px;
2488
+ padding: 6px 10px;
2489
+ border: 1px solid #bcbcbc;
2490
+ height: auto;
2491
+ width: auto;
2492
+ background: #f5f5f5;
2493
+ float: none;
2494
+ cursor: pointer;
2495
+ background-color: #f0f0f0;
2496
+ background-image: -moz-linear-gradient(top, #f6f6f6, #e6e6e6);
2497
+ background-image: -ms-linear-gradient(top, #f6f6f6, #e6e6e6);
2498
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f6f6f6), to(#e6e6e6));
2499
+ background-image: -webkit-linear-gradient(top, #f6f6f6, #e6e6e6);
2500
+ background-image: -o-linear-gradient(top, #f6f6f6, #e6e6e6);
2501
+ background-image: linear-gradient(top, #f6f6f6, #e6e6e6);
2502
+ background-repeat: repeat-x;
2503
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff6f6f6', endColorstr='#ffe6e6e6', GradientType=0);
2504
+ line-height: 18px;
2505
+ font-family: helvetica, arial, sans-serif;
2506
+ font-size: 13px;
2507
+ font-style: normal;
2508
+ font-variant: normal;
2509
+ font-weight: normal;
2510
+ text-align: left;
2511
+ text-decoration: none;
2512
+ text-indent: 0;
2513
+ text-justify: auto;
2514
+ text-outline: none;
2515
+ text-overflow: clip;
2516
+ text-shadow: none;
2517
+ text-transform: none;
2518
+ text-wrap: normal;
2519
+ color: #747474;
2520
+ text-align: center;
2521
+ -webkit-border-radius: 2px;
2522
+ -moz-border-radius: 2px;
2523
+ border-radius: 2px;
2524
+ -webkit-box-shadow: 0 0 0 #000;
2525
+ -moz-box-shadow: 0 0 0 #000;
2526
+ box-shadow: 0 0 0 #000;
2527
+ -webkit-transition: all .2s ease 0;
2528
+ -moz-transition: all .2s ease 0;
2529
+ -ms-transition: all .2s ease 0;
2530
+ -o-transition: all .2s ease 0;
2531
+ transition: all .2s ease 0;
2532
+ -webkit-touch-callout: none;
2533
+ -webkit-user-select: none;
2534
+ -khtml-user-select: none;
2535
+ -moz-user-select: -moz-none;
2536
+ -ms-user-select: none;
2537
+ user-select: none;
2538
+ cursor: default
2539
+ }
2540
+
2541
+ .ie7 input[type="submit"].emphasize:disabled, .ie7 input[type="button"].emphasize:disabled, .ie7 .general-button.emphasize:disabled, .ie7 a.general-button.emphasize:disabled {
2542
+ display: inline;
2543
+ zoom: 1
2544
+ }
2545
+
2546
+ input[type="submit"].emphasize:disabled:hover, input[type="button"].emphasize:disabled:hover, .general-button.emphasize:disabled:hover, a.general-button.emphasize:disabled:hover {
2547
+ border: 1px solid #bcbcbc;
2548
+ color: #747474;
2549
+ background-color: #f0f0f0;
2550
+ background-image: -moz-linear-gradient(top, #f6f6f6, #e6e6e6);
2551
+ background-image: -ms-linear-gradient(top, #f6f6f6, #e6e6e6);
2552
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f6f6f6), to(#e6e6e6));
2553
+ background-image: -webkit-linear-gradient(top, #f6f6f6, #e6e6e6);
2554
+ background-image: -o-linear-gradient(top, #f6f6f6, #e6e6e6);
2555
+ background-image: linear-gradient(top, #f6f6f6, #e6e6e6);
2556
+ background-repeat: repeat-x;
2557
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff6f6f6', endColorstr='#ffe6e6e6', GradientType=0)
2558
+ }
2559
+
2560
+ @media only screen and (max-width: 479px) {
2561
+ input[type="submit"].emphasize:disabled, input[type="button"].emphasize:disabled, .general-button.emphasize:disabled, a.general-button.emphasize:disabled {
2562
+ width: 99%;
2563
+ padding-left: 0px;
2564
+ padding-right: 0px
2565
+ }
2566
+ }
2567
+
2568
+ input[type="submit"].super-emphasize, input[type="button"].super-emphasize, .general-button.super-emphasize, a.general-button.super-emphasize {
2569
+ display: inline-block;
2570
+ min-width: 100px;
2571
+ margin: 0px;
2572
+ padding: 6px 10px;
2573
+ border: 1px solid #5c982c;
2574
+ height: auto;
2575
+ width: auto;
2576
+ background: #f5f5f5;
2577
+ float: none;
2578
+ cursor: pointer;
2579
+ background-color: #69ad31;
2580
+ background-image: -moz-linear-gradient(top, #6fb536, #5fa229);
2581
+ background-image: -ms-linear-gradient(top, #6fb536, #5fa229);
2582
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#6fb536), to(#5fa229));
2583
+ background-image: -webkit-linear-gradient(top, #6fb536, #5fa229);
2584
+ background-image: -o-linear-gradient(top, #6fb536, #5fa229);
2585
+ background-image: linear-gradient(top, #6fb536, #5fa229);
2586
+ background-repeat: repeat-x;
2587
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6fb536', endColorstr='#ff5fa229', GradientType=0);
2588
+ color: #747474;
2589
+ line-height: 18px;
2590
+ font-family: helvetica, arial, sans-serif;
2591
+ font-size: 13px;
2592
+ font-style: normal;
2593
+ font-variant: normal;
2594
+ font-weight: normal;
2595
+ text-align: left;
2596
+ text-decoration: none;
2597
+ text-indent: 0;
2598
+ text-justify: auto;
2599
+ text-outline: none;
2600
+ text-overflow: clip;
2601
+ text-shadow: none;
2602
+ text-transform: none;
2603
+ text-wrap: normal;
2604
+ color: #fff;
2605
+ text-align: center;
2606
+ -webkit-border-radius: 2px;
2607
+ -moz-border-radius: 2px;
2608
+ border-radius: 2px;
2609
+ -webkit-box-shadow: 0 0 0 #000;
2610
+ -moz-box-shadow: 0 0 0 #000;
2611
+ box-shadow: 0 0 0 #000;
2612
+ -webkit-transition: all .2s ease 0;
2613
+ -moz-transition: all .2s ease 0;
2614
+ -ms-transition: all .2s ease 0;
2615
+ -o-transition: all .2s ease 0;
2616
+ transition: all .2s ease 0;
2617
+ -webkit-touch-callout: none;
2618
+ -webkit-user-select: none;
2619
+ -khtml-user-select: none;
2620
+ -moz-user-select: -moz-none;
2621
+ -ms-user-select: none;
2622
+ user-select: none;
2623
+ padding: 12px 32px;
2624
+ font-size: 14px;
2625
+ font-weight: bold;
2626
+ text-shadow: 0 1px 2px #2e7044
2627
+ }
2628
+
2629
+ .ie7 input[type="submit"].super-emphasize, .ie7 input[type="button"].super-emphasize, .ie7 .general-button.super-emphasize, .ie7 a.general-button.super-emphasize {
2630
+ display: inline;
2631
+ zoom: 1
2632
+ }
2633
+
2634
+ input[type="submit"].super-emphasize:hover, input[type="button"].super-emphasize:hover, .general-button.super-emphasize:hover, a.general-button.super-emphasize:hover {
2635
+ border: 1px solid #4c881d;
2636
+ color: #fff;
2637
+ background-color: #569720;
2638
+ background-image: -moz-linear-gradient(top, #60a526, #478316);
2639
+ background-image: -ms-linear-gradient(top, #60a526, #478316);
2640
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#60a526), to(#478316));
2641
+ background-image: -webkit-linear-gradient(top, #60a526, #478316);
2642
+ background-image: -o-linear-gradient(top, #60a526, #478316);
2643
+ background-image: linear-gradient(top, #60a526, #478316);
2644
+ background-repeat: repeat-x;
2645
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff60a526', endColorstr='#ff478316', GradientType=0)
2646
+ }
2647
+
2648
+ @media only screen and (max-width: 479px) {
2649
+ input[type="submit"].super-emphasize, input[type="button"].super-emphasize, .general-button.super-emphasize, a.general-button.super-emphasize {
2650
+ width: 99%;
2651
+ padding-left: 0px;
2652
+ padding-right: 0px
2653
+ }
2654
+ }
2655
+
2656
+ input[type="submit"].super-emphasize:disabled, input[type="button"].super-emphasize:disabled, .general-button.super-emphasize:disabled, a.general-button.super-emphasize:disabled {
2657
+ display: inline-block;
2658
+ min-width: 100px;
2659
+ margin: 0px;
2660
+ padding: 6px 10px;
2661
+ border: 1px solid #bcbcbc;
2662
+ height: auto;
2663
+ width: auto;
2664
+ background: #f5f5f5;
2665
+ float: none;
2666
+ cursor: pointer;
2667
+ background-color: #f0f0f0;
2668
+ background-image: -moz-linear-gradient(top, #f6f6f6, #e6e6e6);
2669
+ background-image: -ms-linear-gradient(top, #f6f6f6, #e6e6e6);
2670
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f6f6f6), to(#e6e6e6));
2671
+ background-image: -webkit-linear-gradient(top, #f6f6f6, #e6e6e6);
2672
+ background-image: -o-linear-gradient(top, #f6f6f6, #e6e6e6);
2673
+ background-image: linear-gradient(top, #f6f6f6, #e6e6e6);
2674
+ background-repeat: repeat-x;
2675
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff6f6f6', endColorstr='#ffe6e6e6', GradientType=0);
2676
+ line-height: 18px;
2677
+ font-family: helvetica, arial, sans-serif;
2678
+ font-size: 13px;
2679
+ font-style: normal;
2680
+ font-variant: normal;
2681
+ font-weight: normal;
2682
+ text-align: left;
2683
+ text-decoration: none;
2684
+ text-indent: 0;
2685
+ text-justify: auto;
2686
+ text-outline: none;
2687
+ text-overflow: clip;
2688
+ text-shadow: none;
2689
+ text-transform: none;
2690
+ text-wrap: normal;
2691
+ color: #747474;
2692
+ text-align: center;
2693
+ -webkit-border-radius: 2px;
2694
+ -moz-border-radius: 2px;
2695
+ border-radius: 2px;
2696
+ -webkit-box-shadow: 0 0 0 #000;
2697
+ -moz-box-shadow: 0 0 0 #000;
2698
+ box-shadow: 0 0 0 #000;
2699
+ -webkit-transition: all .2s ease 0;
2700
+ -moz-transition: all .2s ease 0;
2701
+ -ms-transition: all .2s ease 0;
2702
+ -o-transition: all .2s ease 0;
2703
+ transition: all .2s ease 0;
2704
+ -webkit-touch-callout: none;
2705
+ -webkit-user-select: none;
2706
+ -khtml-user-select: none;
2707
+ -moz-user-select: -moz-none;
2708
+ -ms-user-select: none;
2709
+ user-select: none;
2710
+ cursor: default
2711
+ }
2712
+
2713
+ .ie7 input[type="submit"].super-emphasize:disabled, .ie7 input[type="button"].super-emphasize:disabled, .ie7 .general-button.super-emphasize:disabled, .ie7 a.general-button.super-emphasize:disabled {
2714
+ display: inline;
2715
+ zoom: 1
2716
+ }
2717
+
2718
+ input[type="submit"].super-emphasize:disabled:hover, input[type="button"].super-emphasize:disabled:hover, .general-button.super-emphasize:disabled:hover, a.general-button.super-emphasize:disabled:hover {
2719
+ border: 1px solid #bcbcbc;
2720
+ color: #747474;
2721
+ background-color: #f0f0f0;
2722
+ background-image: -moz-linear-gradient(top, #f6f6f6, #e6e6e6);
2723
+ background-image: -ms-linear-gradient(top, #f6f6f6, #e6e6e6);
2724
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f6f6f6), to(#e6e6e6));
2725
+ background-image: -webkit-linear-gradient(top, #f6f6f6, #e6e6e6);
2726
+ background-image: -o-linear-gradient(top, #f6f6f6, #e6e6e6);
2727
+ background-image: linear-gradient(top, #f6f6f6, #e6e6e6);
2728
+ background-repeat: repeat-x;
2729
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff6f6f6', endColorstr='#ffe6e6e6', GradientType=0)
2730
+ }
2731
+
2732
+ @media only screen and (max-width: 479px) {
2733
+ input[type="submit"].super-emphasize:disabled, input[type="button"].super-emphasize:disabled, .general-button.super-emphasize:disabled, a.general-button.super-emphasize:disabled {
2734
+ width: 99%;
2735
+ padding-left: 0px;
2736
+ padding-right: 0px
2737
+ }
2738
+ }
2739
+
2740
+ input[type="submit"].inline, input[type="button"].inline, .general-button.inline, a.general-button.inline {
2741
+ min-width: 0px;
2742
+ padding: 6px 16px
2743
+ }
2744
+
2745
+ @media only screen and (max-width: 479px) {
2746
+ input[type="submit"].inline, input[type="button"].inline, .general-button.inline, a.general-button.inline {
2747
+ width: auto
2748
+ }
2749
+ }
2750
+
2751
+ input[type="text"], textarea, input[type="password"] {
2752
+ color: #747474;
2753
+ line-height: 18px;
2754
+ font-family: helvetica, arial, sans-serif;
2755
+ font-size: 13px;
2756
+ font-style: normal;
2757
+ font-variant: normal;
2758
+ font-weight: normal;
2759
+ text-align: left;
2760
+ text-decoration: none;
2761
+ text-indent: 0;
2762
+ text-justify: auto;
2763
+ text-outline: none;
2764
+ text-overflow: clip;
2765
+ text-shadow: none;
2766
+ text-transform: none;
2767
+ text-wrap: normal;
2768
+ -webkit-border-radius: 0;
2769
+ -moz-border-radius: 0;
2770
+ border-radius: 0;
2771
+ -webkit-box-shadow: none;
2772
+ -moz-box-shadow: none;
2773
+ box-shadow: none;
2774
+ resize: none;
2775
+ overflow: auto;
2776
+ color: #3b3b3b;
2777
+ border: 1px solid #cacaca;
2778
+ margin: 0px;
2779
+ padding: 8px 8px;
2780
+ width: 182px;
2781
+ height: 16px;
2782
+ margin-bottom: 16px
2783
+ }
2784
+
2785
+ input[type="text"]:-moz-placeholder, textarea:-moz-placeholder, input[type="password"]:-moz-placeholder {
2786
+ color: #cacaca
2787
+ }
2788
+
2789
+ input[type="text"]:-ms-input-placeholder, textarea:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder {
2790
+ color: #cacaca
2791
+ }
2792
+
2793
+ input[type="text"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder {
2794
+ color: #cacaca
2795
+ }
2796
+
2797
+ input[type="text"].placeholder-input, textarea.placeholder-input, input[type="password"].placeholder-input {
2798
+ color: #cacaca
2799
+ }
2800
+
2801
+ input[type="text"], input[type="password"] {
2802
+ *overflow-x: hidden;
2803
+ *overflow-y: hidden;
2804
+ -ms-overflow-x: hidden;
2805
+ -ms-overflow-y: hidden
2806
+ }
2807
+
2808
+ input.error, .lozenge-area .error {
2809
+ border: 1px solid #fed1d1;
2810
+ -webkit-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
2811
+ -moz-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
2812
+ box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
2813
+ position: relative
2814
+ }
2815
+
2816
+ input.warning, .lozenge-area .warning {
2817
+ border: 1px solid #F0C7BC;
2818
+ -webkit-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
2819
+ -moz-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
2820
+ box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
2821
+ position: relative
2822
+ }
2823
+
2824
+ .error-status {
2825
+ margin: -18px 4px 4px 4px;
2826
+ padding: 8px 8px 6px 8px;
2827
+ z-index: 100;
2828
+ width: 174px;
2829
+ overflow-x: hidden;
2830
+ overflow-wrap: break-word;
2831
+ word-wrap: break-word;
2832
+ font-size: 12px;
2833
+ line-height: 15px;
2834
+ background-color: #fed1d1;
2835
+ border: 1px solid #e3a198;
2836
+ color: #B8211D;
2837
+ -webkit-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
2838
+ -moz-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
2839
+ box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2)
2840
+ }
2841
+
2842
+ .error-status a {
2843
+ font-size: 12px;
2844
+ line-height: 15px
2845
+ }
2846
+
2847
+ .error-bang > .error-status {
2848
+ background-position-y: center;
2849
+ border: none;
2850
+ -webkit-box-shadow: none;
2851
+ -moz-box-shadow: none;
2852
+ box-shadow: none;
2853
+ font-family: helvetica, arial, sans-serif;
2854
+ font-size: 13px;
2855
+ -webkit-font-smoothing: antialiased;
2856
+ -moz-osx-font-smoothing: grayscale;
2857
+ line-height: 19px;
2858
+ margin: -8px 0 6px;
2859
+ min-height: 16px;
2860
+ padding: 0 0 0 23px
2861
+ }
2862
+
2863
+ @media all {
2864
+ .error-bang > .error-status {
2865
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang.png") no-repeat;
2866
+ -webkit-background-size: 17px 16px;
2867
+ -moz-background-size: 17px 16px;
2868
+ -o-background-size: 17px 16px;
2869
+ background-size: 17px 16px
2870
+ }
2871
+ }
2872
+
2873
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
2874
+ html:not(.ie8) .error-bang > .error-status {
2875
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang@2x.png") no-repeat;
2876
+ -webkit-background-size: 17px 16px;
2877
+ -moz-background-size: 17px 16px;
2878
+ -o-background-size: 17px 16px;
2879
+ background-size: 17px 16px
2880
+ }
2881
+ }
2882
+
2883
+ .warning-status {
2884
+ margin: -18px 4px 4px 4px;
2885
+ padding: 8px 8px 6px 8px;
2886
+ z-index: 100;
2887
+ width: 174px;
2888
+ overflow-x: hidden;
2889
+ overflow-wrap: break-word;
2890
+ word-wrap: break-word;
2891
+ font-size: 12px;
2892
+ line-height: 15px;
2893
+ background-color: #F3E6C3;
2894
+ border: 1px solid #F0C7BC;
2895
+ color: #b72200
2896
+ }
2897
+
2898
+ .warning-status a {
2899
+ font-size: 12px;
2900
+ line-height: 15px
2901
+ }
2902
+
2903
+ .select-elem {
2904
+ font-family: helvetica, arial, sans-serif;
2905
+ border: 1px solid #cacaca;
2906
+ height: 35px;
2907
+ font-size: 16px;
2908
+ font-weight: 300;
2909
+ line-height: 22px;
2910
+ max-width: 100%;
2911
+ text-overflow: ellipsis;
2912
+ -webkit-border-radius: 3px;
2913
+ -moz-border-radius: 3px;
2914
+ border-radius: 3px
2915
+ }
2916
+
2917
+ .withHelpTip input[type="text"], .withHelpTip textarea, .withHelpTip input[type="password"] {
2918
+ color: #747474;
2919
+ line-height: 18px;
2920
+ font-family: helvetica, arial, sans-serif;
2921
+ font-size: 13px;
2922
+ font-style: normal;
2923
+ font-variant: normal;
2924
+ font-weight: normal;
2925
+ text-align: left;
2926
+ text-decoration: none;
2927
+ text-indent: 0;
2928
+ text-justify: auto;
2929
+ text-outline: none;
2930
+ text-overflow: clip;
2931
+ text-shadow: none;
2932
+ text-transform: none;
2933
+ text-wrap: normal;
2934
+ -webkit-border-radius: 0;
2935
+ -moz-border-radius: 0;
2936
+ border-radius: 0;
2937
+ -webkit-box-shadow: none;
2938
+ -moz-box-shadow: none;
2939
+ box-shadow: none;
2940
+ resize: none;
2941
+ overflow: auto;
2942
+ color: #3b3b3b;
2943
+ border: 1px solid #cacaca;
2944
+ margin: 0px;
2945
+ padding: 8px 8px;
2946
+ width: 150px;
2947
+ height: 16px;
2948
+ margin-bottom: 16px
2949
+ }
2950
+
2951
+ .withHelpTip input[type="text"]:-moz-placeholder, .withHelpTip textarea:-moz-placeholder, .withHelpTip input[type="password"]:-moz-placeholder {
2952
+ color: #cacaca
2953
+ }
2954
+
2955
+ .withHelpTip input[type="text"]:-ms-input-placeholder, .withHelpTip textarea:-ms-input-placeholder, .withHelpTip input[type="password"]:-ms-input-placeholder {
2956
+ color: #cacaca
2957
+ }
2958
+
2959
+ .withHelpTip input[type="text"]::-webkit-input-placeholder, .withHelpTip textarea::-webkit-input-placeholder, .withHelpTip input[type="password"]::-webkit-input-placeholder {
2960
+ color: #cacaca
2961
+ }
2962
+
2963
+ .withHelpTip input[type="text"].placeholder-input, .withHelpTip textarea.placeholder-input, .withHelpTip input[type="password"].placeholder-input {
2964
+ color: #cacaca
2965
+ }
2966
+
2967
+ .withHelpTip input[type="text"], .withHelpTip input[type="password"] {
2968
+ *overflow-x: hidden;
2969
+ *overflow-y: hidden;
2970
+ -ms-overflow-x: hidden;
2971
+ -ms-overflow-y: hidden
2972
+ }
2973
+
2974
+ .withHelpTip input.error, .lozenge-area .withHelpTip.error {
2975
+ border: 1px solid #fed1d1;
2976
+ -webkit-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
2977
+ -moz-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
2978
+ box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
2979
+ position: relative
2980
+ }
2981
+
2982
+ .withHelpTip input.warning, .lozenge-area .withHelpTip.warning {
2983
+ border: 1px solid #F0C7BC;
2984
+ -webkit-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
2985
+ -moz-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
2986
+ box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
2987
+ position: relative
2988
+ }
2989
+
2990
+ .withHelpTip .error-status {
2991
+ margin: -18px 4px 4px 4px;
2992
+ padding: 8px 8px 6px 8px;
2993
+ z-index: 100;
2994
+ width: 142px;
2995
+ overflow-x: hidden;
2996
+ overflow-wrap: break-word;
2997
+ word-wrap: break-word;
2998
+ font-size: 12px;
2999
+ line-height: 15px;
3000
+ background-color: #fed1d1;
3001
+ border: 1px solid #e3a198;
3002
+ color: #B8211D;
3003
+ -webkit-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
3004
+ -moz-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
3005
+ box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2)
3006
+ }
3007
+
3008
+ .withHelpTip .error-status a {
3009
+ font-size: 12px;
3010
+ line-height: 15px
3011
+ }
3012
+
3013
+ .withHelpTip .error-bang > .error-status {
3014
+ background-position-y: center;
3015
+ border: none;
3016
+ -webkit-box-shadow: none;
3017
+ -moz-box-shadow: none;
3018
+ box-shadow: none;
3019
+ font-family: helvetica, arial, sans-serif;
3020
+ font-size: 13px;
3021
+ -webkit-font-smoothing: antialiased;
3022
+ -moz-osx-font-smoothing: grayscale;
3023
+ line-height: 19px;
3024
+ margin: -8px 0 6px;
3025
+ min-height: 16px;
3026
+ padding: 0 0 0 23px
3027
+ }
3028
+
3029
+ @media all {
3030
+ .withHelpTip .error-bang > .error-status {
3031
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang.png") no-repeat;
3032
+ -webkit-background-size: 17px 16px;
3033
+ -moz-background-size: 17px 16px;
3034
+ -o-background-size: 17px 16px;
3035
+ background-size: 17px 16px
3036
+ }
3037
+ }
3038
+
3039
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
3040
+ html:not(.ie8) .withHelpTip .error-bang > .error-status {
3041
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang@2x.png") no-repeat;
3042
+ -webkit-background-size: 17px 16px;
3043
+ -moz-background-size: 17px 16px;
3044
+ -o-background-size: 17px 16px;
3045
+ background-size: 17px 16px
3046
+ }
3047
+ }
3048
+
3049
+ .withHelpTip .warning-status {
3050
+ margin: -18px 4px 4px 4px;
3051
+ padding: 8px 8px 6px 8px;
3052
+ z-index: 100;
3053
+ width: 142px;
3054
+ overflow-x: hidden;
3055
+ overflow-wrap: break-word;
3056
+ word-wrap: break-word;
3057
+ font-size: 12px;
3058
+ line-height: 15px;
3059
+ background-color: #F3E6C3;
3060
+ border: 1px solid #F0C7BC;
3061
+ color: #b72200
3062
+ }
3063
+
3064
+ .withHelpTip .warning-status a {
3065
+ font-size: 12px;
3066
+ line-height: 15px
3067
+ }
3068
+
3069
+ .withHelpTip .select-elem {
3070
+ font-family: helvetica, arial, sans-serif;
3071
+ border: 1px solid #cacaca;
3072
+ height: 35px;
3073
+ font-size: 16px;
3074
+ font-weight: 300;
3075
+ line-height: 22px;
3076
+ max-width: 100%;
3077
+ text-overflow: ellipsis;
3078
+ -webkit-border-radius: 3px;
3079
+ -moz-border-radius: 3px;
3080
+ border-radius: 3px
3081
+ }
3082
+
3083
+ select {
3084
+ color: #747474;
3085
+ line-height: 18px;
3086
+ font-family: helvetica, arial, sans-serif;
3087
+ font-size: 13px;
3088
+ font-style: normal;
3089
+ font-variant: normal;
3090
+ font-weight: normal;
3091
+ text-align: left;
3092
+ text-decoration: none;
3093
+ text-indent: 0;
3094
+ text-justify: auto;
3095
+ text-outline: none;
3096
+ text-overflow: clip;
3097
+ text-shadow: none;
3098
+ text-transform: none;
3099
+ text-wrap: normal;
3100
+ color: #3b3b3b;
3101
+ min-width: 200px;
3102
+ padding: 6px 10px;
3103
+ margin-bottom: 16px
3104
+ }
3105
+
3106
+ @media only screen and (max-width: 479px) {
3107
+ select {
3108
+ width: 99%;
3109
+ padding-left: 0px;
3110
+ padding-right: 0px
3111
+ }
3112
+
3113
+ select.withHelpTip {
3114
+ width: 168px
3115
+ }
3116
+ }
3117
+
3118
+ select.withHelpTip {
3119
+ color: #747474;
3120
+ line-height: 18px;
3121
+ font-family: helvetica, arial, sans-serif;
3122
+ font-size: 13px;
3123
+ font-style: normal;
3124
+ font-variant: normal;
3125
+ font-weight: normal;
3126
+ text-align: left;
3127
+ text-decoration: none;
3128
+ text-indent: 0;
3129
+ text-justify: auto;
3130
+ text-outline: none;
3131
+ text-overflow: clip;
3132
+ text-shadow: none;
3133
+ text-transform: none;
3134
+ text-wrap: normal;
3135
+ color: #3b3b3b;
3136
+ min-width: 168px;
3137
+ padding: 6px 10px;
3138
+ width: 168px;
3139
+ max-width: 168px
3140
+ }
3141
+
3142
+ @media only screen and (max-width: 479px) {
3143
+ select.withHelpTip {
3144
+ width: 99%;
3145
+ padding-left: 0px;
3146
+ padding-right: 0px
3147
+ }
3148
+
3149
+ select.withHelpTip.withHelpTip {
3150
+ width: 136px
3151
+ }
3152
+ }
3153
+
3154
+ label {
3155
+ color: #747474;
3156
+ line-height: 18px;
3157
+ font-family: helvetica, arial, sans-serif;
3158
+ font-size: 13px;
3159
+ font-style: normal;
3160
+ font-variant: normal;
3161
+ font-weight: normal;
3162
+ text-align: left;
3163
+ text-decoration: none;
3164
+ text-indent: 0;
3165
+ text-justify: auto;
3166
+ text-outline: none;
3167
+ text-overflow: clip;
3168
+ text-shadow: none;
3169
+ text-transform: none;
3170
+ text-wrap: normal;
3171
+ display: block;
3172
+ margin-bottom: 3px;
3173
+ cursor: default
3174
+ }
3175
+
3176
+ label.emphasize {
3177
+ color: #3b3b3b;
3178
+ font-weight: normal
3179
+ }
3180
+
3181
+ label.deemphasize {
3182
+ color: #747474;
3183
+ font-size: 12px
3184
+ }
3185
+
3186
+ label.required:after {
3187
+ content: "*"
3188
+ }
3189
+
3190
+ .checkbox-container {
3191
+ display: block;
3192
+ margin-bottom: 12px
3193
+ }
3194
+
3195
+ .checkbox-container .checkbox, .checkbox-container .checkbox-text, .checkbox-container input[type="checkbox"], .checkbox-container label {
3196
+ display: inline;
3197
+ margin: 2px 8px 0px 0px
3198
+ }
3199
+
3200
+ .checkbox-list {
3201
+ margin-bottom: 16px;
3202
+ margin-left: 32px
3203
+ }
3204
+
3205
+ .checkbox-list .checkbox-container {
3206
+ margin-bottom: 8px
3207
+ }
3208
+
3209
+ .radio-container {
3210
+ display: block;
3211
+ margin-bottom: 12px
3212
+ }
3213
+
3214
+ .radio-container .radio, .radio-container .radio-text, .radio-container input[type="radio"], .radio-container label {
3215
+ display: inline;
3216
+ margin: 2px 8px 0px 0px
3217
+ }
3218
+
3219
+ .help-link {
3220
+ margin: 0px 5px;
3221
+ background-color: #f5fbfd;
3222
+ background-image: -moz-linear-gradient(top, #fff, #e5f6fb);
3223
+ background-image: -ms-linear-gradient(top, #fff, #e5f6fb);
3224
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e5f6fb));
3225
+ background-image: -webkit-linear-gradient(top, #fff, #e5f6fb);
3226
+ background-image: -o-linear-gradient(top, #fff, #e5f6fb);
3227
+ background-image: linear-gradient(top, #fff, #e5f6fb);
3228
+ background-repeat: repeat-x;
3229
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe5f6fb', GradientType=0);
3230
+ -webkit-border-radius: 50px;
3231
+ -moz-border-radius: 50px;
3232
+ border-radius: 50px;
3233
+ color: #747474;
3234
+ line-height: 18px;
3235
+ font-family: helvetica, arial, sans-serif;
3236
+ font-size: 13px;
3237
+ font-style: normal;
3238
+ font-variant: normal;
3239
+ font-weight: normal;
3240
+ text-align: left;
3241
+ text-decoration: none;
3242
+ text-indent: 0;
3243
+ text-justify: auto;
3244
+ text-outline: none;
3245
+ text-overflow: clip;
3246
+ text-shadow: none;
3247
+ text-transform: none;
3248
+ text-wrap: normal;
3249
+ color: #298CAC;
3250
+ font-size: 12px;
3251
+ font-weight: bold;
3252
+ text-align: center;
3253
+ -webkit-touch-callout: none;
3254
+ -webkit-user-select: none;
3255
+ -khtml-user-select: none;
3256
+ -moz-user-select: -moz-none;
3257
+ -ms-user-select: none;
3258
+ user-select: none;
3259
+ border: 1px solid #88b9c9;
3260
+ padding: 0px 4px;
3261
+ position: relative;
3262
+ width: 10px;
3263
+ display: inline-block;
3264
+ cursor: pointer
3265
+ }
3266
+
3267
+ .ie7 .help-link {
3268
+ display: inline;
3269
+ zoom: 1
3270
+ }
3271
+
3272
+ @media only screen and (max-width: 827px) {
3273
+ .help-link {
3274
+ display: none
3275
+ }
3276
+ }
3277
+
3278
+ .help-link:hover .help-tip {
3279
+ visibility: visible
3280
+ }
3281
+
3282
+ .info-link {
3283
+ background-color: #f5fbfd;
3284
+ background-image: -moz-linear-gradient(top, #fff, #e5f6fb);
3285
+ background-image: -ms-linear-gradient(top, #fff, #e5f6fb);
3286
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e5f6fb));
3287
+ background-image: -webkit-linear-gradient(top, #fff, #e5f6fb);
3288
+ background-image: -o-linear-gradient(top, #fff, #e5f6fb);
3289
+ background-image: linear-gradient(top, #fff, #e5f6fb);
3290
+ background-repeat: repeat-x;
3291
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe5f6fb', GradientType=0);
3292
+ -webkit-border-radius: 50px;
3293
+ -moz-border-radius: 50px;
3294
+ border-radius: 50px;
3295
+ color: #747474;
3296
+ line-height: 18px;
3297
+ font-family: helvetica, arial, sans-serif;
3298
+ font-size: 13px;
3299
+ font-style: normal;
3300
+ font-variant: normal;
3301
+ font-weight: normal;
3302
+ text-align: left;
3303
+ text-decoration: none;
3304
+ text-indent: 0;
3305
+ text-justify: auto;
3306
+ text-outline: none;
3307
+ text-overflow: clip;
3308
+ text-shadow: none;
3309
+ text-transform: none;
3310
+ text-wrap: normal;
3311
+ color: #298CAC;
3312
+ font-size: 12px;
3313
+ font-weight: bold;
3314
+ text-align: center;
3315
+ -webkit-touch-callout: none;
3316
+ -webkit-user-select: none;
3317
+ -khtml-user-select: none;
3318
+ -moz-user-select: -moz-none;
3319
+ -ms-user-select: none;
3320
+ user-select: none;
3321
+ border: 1px solid #88b9c9;
3322
+ padding: 0px 4px;
3323
+ position: relative;
3324
+ width: 10px;
3325
+ display: inline-block;
3326
+ cursor: pointer
3327
+ }
3328
+
3329
+ .ie7 .info-link {
3330
+ display: inline;
3331
+ zoom: 1
3332
+ }
3333
+
3334
+ .info-link:hover .info-tip {
3335
+ visibility: visible
3336
+ }
3337
+
3338
+ .help-tip, .info-tip {
3339
+ color: #747474;
3340
+ line-height: 18px;
3341
+ font-family: helvetica, arial, sans-serif;
3342
+ font-size: 13px;
3343
+ font-style: normal;
3344
+ font-variant: normal;
3345
+ font-weight: normal;
3346
+ text-align: left;
3347
+ text-decoration: none;
3348
+ text-indent: 0;
3349
+ text-justify: auto;
3350
+ text-outline: none;
3351
+ text-overflow: clip;
3352
+ text-shadow: none;
3353
+ text-transform: none;
3354
+ text-wrap: normal;
3355
+ font-size: 11px;
3356
+ -webkit-border-radius: 2px;
3357
+ -moz-border-radius: 2px;
3358
+ border-radius: 2px;
3359
+ -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
3360
+ -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
3361
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
3362
+ visibility: hidden;
3363
+ position: absolute;
3364
+ top: 18px;
3365
+ left: 16px;
3366
+ background-color: #fff;
3367
+ border: 1px solid #B4B4B4;
3368
+ color: #3b3b3b;
3369
+ padding: 8px 16px;
3370
+ margin-left: 0;
3371
+ z-index: 101;
3372
+ width: 224px
3373
+ }
3374
+
3375
+ .help-tip a, .info-tip a {
3376
+ font-size: 11px
3377
+ }
3378
+
3379
+ .help-tip.left-tip, .info-tip.left-tip {
3380
+ top: 14px;
3381
+ left: -252px
3382
+ }
3383
+
3384
+ .callout-box {
3385
+ background-color: #f5f5f5;
3386
+ border: 1px solid #e4e4e4;
3387
+ padding: 16px;
3388
+ min-width: 200px
3389
+ }
3390
+
3391
+ .callout-title {
3392
+ border-bottom: 1px solid #cacaca;
3393
+ color: #3b3b3b;
3394
+ font-size: 18px;
3395
+ font-weight: normal;
3396
+ margin-bottom: 13px;
3397
+ padding-bottom: 12px
3398
+ }
3399
+
3400
+ .shadow {
3401
+ background: transparent;
3402
+ border: 0;
3403
+ height: 32px;
3404
+ margin: 0 auto;
3405
+ overflow: hidden;
3406
+ padding: 0px;
3407
+ width: 800px;
3408
+ display: block
3409
+ }
3410
+
3411
+ @media only screen and (min-width: 930px) {
3412
+ .shadow {
3413
+ background: url("/assets/kirgudu_sso/authentications/base/images/desktop-shadow-full.png") no-repeat
3414
+ }
3415
+ }
3416
+
3417
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
3418
+ .shadow {
3419
+ background: url("/assets/kirgudu_sso/authentications/base/images/tablet-shadow-full.png") center no-repeat
3420
+ }
3421
+ }
3422
+
3423
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
3424
+ .shadow {
3425
+ background: url("/assets/kirgudu_sso/authentications/base/images/mobile-landscape-shadow.png") center no-repeat
3426
+ }
3427
+ }
3428
+
3429
+ @media only screen and (max-width: 479px) {
3430
+ .shadow {
3431
+ background: url("/assets/kirgudu_sso/authentications/base/images/mobile-portrait-shadow.png") center no-repeat
3432
+ }
3433
+ }
3434
+
3435
+ @media only screen and (min-width: 930px) {
3436
+ .shadow.wrapper-menu {
3437
+ background: url("/assets/kirgudu_sso/authentications/base/images/desktop-shadow-menu.png") right no-repeat
3438
+ }
3439
+ }
3440
+
3441
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
3442
+ .shadow.wrapper-menu {
3443
+ background: url("/assets/kirgudu_sso/authentications/base/images/tablet-shadow-menu.png") right no-repeat
3444
+ }
3445
+ }
3446
+
3447
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
3448
+ .shadow.wrapper-menu {
3449
+ background: url("/assets/kirgudu_sso/authentications/base/images/tablet-shadow-menu.png") right no-repeat
3450
+ }
3451
+ }
3452
+
3453
+ @media only screen and (min-width: 930px) {
3454
+ .shadow.wrapper-small {
3455
+ background: url("/assets/kirgudu_sso/authentications/base/images/tablet-shadow-menu.png") center no-repeat
3456
+ }
3457
+ }
3458
+
3459
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
3460
+ .shadow.wrapper-small {
3461
+ background: url("/assets/kirgudu_sso/authentications/base/images/tablet-shadow-menu.png") center no-repeat
3462
+ }
3463
+ }
3464
+
3465
+ .overlay {
3466
+ height: 100%;
3467
+ width: 100%;
3468
+ position: fixed;
3469
+ top: 0;
3470
+ left: 0;
3471
+ -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
3472
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
3473
+ background-color: rgba(47, 47, 47, 0.5);
3474
+ background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(rgba(233, 233, 233, 0.5)), to(rgba(47, 47, 47, 0.5)));
3475
+ background-image: -webkit-radial-gradient(circle, rgba(233, 233, 233, 0.5), rgba(47, 47, 47, 0.5));
3476
+ background-image: -moz-radial-gradient(circle, rgba(233, 233, 233, 0.5), rgba(47, 47, 47, 0.5));
3477
+ background-image: -ms-radial-gradient(circle, rgba(233, 233, 233, 0.5), rgba(47, 47, 47, 0.5));
3478
+ background-image: -o-radial-gradient(circle, rgba(233, 233, 233, 0.5), rgba(47, 47, 47, 0.5));
3479
+ background-repeat: no-repeat;
3480
+ z-index: 1000
3481
+ }
3482
+
3483
+ .dialog-container {
3484
+ background-color: #fff;
3485
+ border: 1px solid #979797;
3486
+ margin: 260px auto;
3487
+ width: 480px;
3488
+ z-index: 1001;
3489
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.2)
3490
+ }
3491
+
3492
+ @media only screen and (max-width: 479px) {
3493
+ .dialog-container {
3494
+ width: 288px
3495
+ }
3496
+ }
3497
+
3498
+ .dialog-container .dialog-header {
3499
+ border-bottom: 1px solid #cacaca;
3500
+ margin: 0 4px;
3501
+ padding: 16px
3502
+ }
3503
+
3504
+ .dialog-container .dialog-header h3 {
3505
+ color: #3b3b3b;
3506
+ font-size: 18px;
3507
+ font-weight: 200
3508
+ }
3509
+
3510
+ @media only screen and (max-width: 479px) {
3511
+ .dialog-container .dialog-header h3 {
3512
+ line-height: 1.3em
3513
+ }
3514
+ }
3515
+
3516
+ .dialog {
3517
+ padding: 32px 32px 12px 32px
3518
+ }
3519
+
3520
+ .dialog input[type="text"], .dialog textarea, .dialog input[type="password"] {
3521
+ color: #747474;
3522
+ line-height: 18px;
3523
+ font-family: helvetica, arial, sans-serif;
3524
+ font-size: 13px;
3525
+ font-style: normal;
3526
+ font-variant: normal;
3527
+ font-weight: normal;
3528
+ text-align: left;
3529
+ text-decoration: none;
3530
+ text-indent: 0;
3531
+ text-justify: auto;
3532
+ text-outline: none;
3533
+ text-overflow: clip;
3534
+ text-shadow: none;
3535
+ text-transform: none;
3536
+ text-wrap: normal;
3537
+ -webkit-border-radius: 0;
3538
+ -moz-border-radius: 0;
3539
+ border-radius: 0;
3540
+ -webkit-box-shadow: none;
3541
+ -moz-box-shadow: none;
3542
+ box-shadow: none;
3543
+ resize: none;
3544
+ overflow: auto;
3545
+ color: #3b3b3b;
3546
+ border: 1px solid #cacaca;
3547
+ margin: 0px;
3548
+ padding: 8px 8px;
3549
+ width: 398px;
3550
+ height: 16px;
3551
+ margin-bottom: 16px
3552
+ }
3553
+
3554
+ .dialog input[type="text"]:-moz-placeholder, .dialog textarea:-moz-placeholder, .dialog input[type="password"]:-moz-placeholder {
3555
+ color: #cacaca
3556
+ }
3557
+
3558
+ .dialog input[type="text"]:-ms-input-placeholder, .dialog textarea:-ms-input-placeholder, .dialog input[type="password"]:-ms-input-placeholder {
3559
+ color: #cacaca
3560
+ }
3561
+
3562
+ .dialog input[type="text"]::-webkit-input-placeholder, .dialog textarea::-webkit-input-placeholder, .dialog input[type="password"]::-webkit-input-placeholder {
3563
+ color: #cacaca
3564
+ }
3565
+
3566
+ .dialog input[type="text"].placeholder-input, .dialog textarea.placeholder-input, .dialog input[type="password"].placeholder-input {
3567
+ color: #cacaca
3568
+ }
3569
+
3570
+ .dialog input[type="text"], .dialog input[type="password"] {
3571
+ *overflow-x: hidden;
3572
+ *overflow-y: hidden;
3573
+ -ms-overflow-x: hidden;
3574
+ -ms-overflow-y: hidden
3575
+ }
3576
+
3577
+ .dialog input.error, .lozenge-area .dialog.error {
3578
+ border: 1px solid #fed1d1;
3579
+ -webkit-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
3580
+ -moz-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
3581
+ box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
3582
+ position: relative
3583
+ }
3584
+
3585
+ .dialog input.warning, .lozenge-area .dialog.warning {
3586
+ border: 1px solid #F0C7BC;
3587
+ -webkit-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
3588
+ -moz-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
3589
+ box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
3590
+ position: relative
3591
+ }
3592
+
3593
+ .dialog .error-status {
3594
+ margin: -18px 4px 4px 4px;
3595
+ padding: 8px 8px 6px 8px;
3596
+ z-index: 100;
3597
+ width: 390px;
3598
+ overflow-x: hidden;
3599
+ overflow-wrap: break-word;
3600
+ word-wrap: break-word;
3601
+ font-size: 12px;
3602
+ line-height: 15px;
3603
+ background-color: #fed1d1;
3604
+ border: 1px solid #e3a198;
3605
+ color: #B8211D;
3606
+ -webkit-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
3607
+ -moz-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
3608
+ box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2)
3609
+ }
3610
+
3611
+ .dialog .error-status a {
3612
+ font-size: 12px;
3613
+ line-height: 15px
3614
+ }
3615
+
3616
+ .dialog .error-bang > .error-status {
3617
+ background-position-y: center;
3618
+ border: none;
3619
+ -webkit-box-shadow: none;
3620
+ -moz-box-shadow: none;
3621
+ box-shadow: none;
3622
+ font-family: helvetica, arial, sans-serif;
3623
+ font-size: 13px;
3624
+ -webkit-font-smoothing: antialiased;
3625
+ -moz-osx-font-smoothing: grayscale;
3626
+ line-height: 19px;
3627
+ margin: -8px 0 6px;
3628
+ min-height: 16px;
3629
+ padding: 0 0 0 23px
3630
+ }
3631
+
3632
+ @media all {
3633
+ .dialog .error-bang > .error-status {
3634
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang.png") no-repeat;
3635
+ -webkit-background-size: 17px 16px;
3636
+ -moz-background-size: 17px 16px;
3637
+ -o-background-size: 17px 16px;
3638
+ background-size: 17px 16px
3639
+ }
3640
+ }
3641
+
3642
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
3643
+ html:not(.ie8) .dialog .error-bang > .error-status {
3644
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang@2x.png") no-repeat;
3645
+ -webkit-background-size: 17px 16px;
3646
+ -moz-background-size: 17px 16px;
3647
+ -o-background-size: 17px 16px;
3648
+ background-size: 17px 16px
3649
+ }
3650
+ }
3651
+
3652
+ .dialog .warning-status {
3653
+ margin: -18px 4px 4px 4px;
3654
+ padding: 8px 8px 6px 8px;
3655
+ z-index: 100;
3656
+ width: 390px;
3657
+ overflow-x: hidden;
3658
+ overflow-wrap: break-word;
3659
+ word-wrap: break-word;
3660
+ font-size: 12px;
3661
+ line-height: 15px;
3662
+ background-color: #F3E6C3;
3663
+ border: 1px solid #F0C7BC;
3664
+ color: #b72200
3665
+ }
3666
+
3667
+ .dialog .warning-status a {
3668
+ font-size: 12px;
3669
+ line-height: 15px
3670
+ }
3671
+
3672
+ .dialog .select-elem {
3673
+ font-family: helvetica, arial, sans-serif;
3674
+ border: 1px solid #cacaca;
3675
+ height: 35px;
3676
+ font-size: 16px;
3677
+ font-weight: 300;
3678
+ line-height: 22px;
3679
+ max-width: 100%;
3680
+ text-overflow: ellipsis;
3681
+ -webkit-border-radius: 3px;
3682
+ -moz-border-radius: 3px;
3683
+ border-radius: 3px
3684
+ }
3685
+
3686
+ .dialog.withHelpTip input[type="text"], .dialog.withHelpTip textarea, .dialog.withHelpTip input[type="password"] {
3687
+ color: #747474;
3688
+ line-height: 18px;
3689
+ font-family: helvetica, arial, sans-serif;
3690
+ font-size: 13px;
3691
+ font-style: normal;
3692
+ font-variant: normal;
3693
+ font-weight: normal;
3694
+ text-align: left;
3695
+ text-decoration: none;
3696
+ text-indent: 0;
3697
+ text-justify: auto;
3698
+ text-outline: none;
3699
+ text-overflow: clip;
3700
+ text-shadow: none;
3701
+ text-transform: none;
3702
+ text-wrap: normal;
3703
+ -webkit-border-radius: 0;
3704
+ -moz-border-radius: 0;
3705
+ border-radius: 0;
3706
+ -webkit-box-shadow: none;
3707
+ -moz-box-shadow: none;
3708
+ box-shadow: none;
3709
+ resize: none;
3710
+ overflow: auto;
3711
+ color: #3b3b3b;
3712
+ border: 1px solid #cacaca;
3713
+ margin: 0px;
3714
+ padding: 8px 8px;
3715
+ width: 366px;
3716
+ height: 16px;
3717
+ margin-bottom: 16px
3718
+ }
3719
+
3720
+ .dialog.withHelpTip input[type="text"]:-moz-placeholder, .dialog.withHelpTip textarea:-moz-placeholder, .dialog.withHelpTip input[type="password"]:-moz-placeholder {
3721
+ color: #cacaca
3722
+ }
3723
+
3724
+ .dialog.withHelpTip input[type="text"]:-ms-input-placeholder, .dialog.withHelpTip textarea:-ms-input-placeholder, .dialog.withHelpTip input[type="password"]:-ms-input-placeholder {
3725
+ color: #cacaca
3726
+ }
3727
+
3728
+ .dialog.withHelpTip input[type="text"]::-webkit-input-placeholder, .dialog.withHelpTip textarea::-webkit-input-placeholder, .dialog.withHelpTip input[type="password"]::-webkit-input-placeholder {
3729
+ color: #cacaca
3730
+ }
3731
+
3732
+ .dialog.withHelpTip input[type="text"].placeholder-input, .dialog.withHelpTip textarea.placeholder-input, .dialog.withHelpTip input[type="password"].placeholder-input {
3733
+ color: #cacaca
3734
+ }
3735
+
3736
+ .dialog.withHelpTip input[type="text"], .dialog.withHelpTip input[type="password"] {
3737
+ *overflow-x: hidden;
3738
+ *overflow-y: hidden;
3739
+ -ms-overflow-x: hidden;
3740
+ -ms-overflow-y: hidden
3741
+ }
3742
+
3743
+ .dialog.withHelpTip input.error, .lozenge-area .dialog.withHelpTip.error {
3744
+ border: 1px solid #fed1d1;
3745
+ -webkit-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
3746
+ -moz-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
3747
+ box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
3748
+ position: relative
3749
+ }
3750
+
3751
+ .dialog.withHelpTip input.warning, .lozenge-area .dialog.withHelpTip.warning {
3752
+ border: 1px solid #F0C7BC;
3753
+ -webkit-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
3754
+ -moz-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
3755
+ box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
3756
+ position: relative
3757
+ }
3758
+
3759
+ .dialog.withHelpTip .error-status {
3760
+ margin: -18px 4px 4px 4px;
3761
+ padding: 8px 8px 6px 8px;
3762
+ z-index: 100;
3763
+ width: 358px;
3764
+ overflow-x: hidden;
3765
+ overflow-wrap: break-word;
3766
+ word-wrap: break-word;
3767
+ font-size: 12px;
3768
+ line-height: 15px;
3769
+ background-color: #fed1d1;
3770
+ border: 1px solid #e3a198;
3771
+ color: #B8211D;
3772
+ -webkit-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
3773
+ -moz-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
3774
+ box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2)
3775
+ }
3776
+
3777
+ .dialog.withHelpTip .error-status a {
3778
+ font-size: 12px;
3779
+ line-height: 15px
3780
+ }
3781
+
3782
+ .dialog.withHelpTip .error-bang > .error-status {
3783
+ background-position-y: center;
3784
+ border: none;
3785
+ -webkit-box-shadow: none;
3786
+ -moz-box-shadow: none;
3787
+ box-shadow: none;
3788
+ font-family: helvetica, arial, sans-serif;
3789
+ font-size: 13px;
3790
+ -webkit-font-smoothing: antialiased;
3791
+ -moz-osx-font-smoothing: grayscale;
3792
+ line-height: 19px;
3793
+ margin: -8px 0 6px;
3794
+ min-height: 16px;
3795
+ padding: 0 0 0 23px
3796
+ }
3797
+
3798
+ @media all {
3799
+ .dialog.withHelpTip .error-bang > .error-status {
3800
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang.png") no-repeat;
3801
+ -webkit-background-size: 17px 16px;
3802
+ -moz-background-size: 17px 16px;
3803
+ -o-background-size: 17px 16px;
3804
+ background-size: 17px 16px
3805
+ }
3806
+ }
3807
+
3808
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
3809
+ html:not(.ie8) .dialog.withHelpTip .error-bang > .error-status {
3810
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang@2x.png") no-repeat;
3811
+ -webkit-background-size: 17px 16px;
3812
+ -moz-background-size: 17px 16px;
3813
+ -o-background-size: 17px 16px;
3814
+ background-size: 17px 16px
3815
+ }
3816
+ }
3817
+
3818
+ .dialog.withHelpTip .warning-status {
3819
+ margin: -18px 4px 4px 4px;
3820
+ padding: 8px 8px 6px 8px;
3821
+ z-index: 100;
3822
+ width: 358px;
3823
+ overflow-x: hidden;
3824
+ overflow-wrap: break-word;
3825
+ word-wrap: break-word;
3826
+ font-size: 12px;
3827
+ line-height: 15px;
3828
+ background-color: #F3E6C3;
3829
+ border: 1px solid #F0C7BC;
3830
+ color: #b72200
3831
+ }
3832
+
3833
+ .dialog.withHelpTip .warning-status a {
3834
+ font-size: 12px;
3835
+ line-height: 15px
3836
+ }
3837
+
3838
+ .dialog.withHelpTip .select-elem {
3839
+ font-family: helvetica, arial, sans-serif;
3840
+ border: 1px solid #cacaca;
3841
+ height: 35px;
3842
+ font-size: 16px;
3843
+ font-weight: 300;
3844
+ line-height: 22px;
3845
+ max-width: 100%;
3846
+ text-overflow: ellipsis;
3847
+ -webkit-border-radius: 3px;
3848
+ -moz-border-radius: 3px;
3849
+ border-radius: 3px
3850
+ }
3851
+
3852
+ .dialog input[name="cancel"] {
3853
+ margin-right: 12px
3854
+ }
3855
+
3856
+ @media only screen and (max-width: 479px) {
3857
+ .dialog {
3858
+ padding: 16px 16px 12px 16px
3859
+ }
3860
+
3861
+ .dialog input[type="text"], .dialog textarea, .dialog input[type="password"] {
3862
+ color: #747474;
3863
+ line-height: 18px;
3864
+ font-family: helvetica, arial, sans-serif;
3865
+ font-size: 13px;
3866
+ font-style: normal;
3867
+ font-variant: normal;
3868
+ font-weight: normal;
3869
+ text-align: left;
3870
+ text-decoration: none;
3871
+ text-indent: 0;
3872
+ text-justify: auto;
3873
+ text-outline: none;
3874
+ text-overflow: clip;
3875
+ text-shadow: none;
3876
+ text-transform: none;
3877
+ text-wrap: normal;
3878
+ -webkit-border-radius: 0;
3879
+ -moz-border-radius: 0;
3880
+ border-radius: 0;
3881
+ -webkit-box-shadow: none;
3882
+ -moz-box-shadow: none;
3883
+ box-shadow: none;
3884
+ resize: none;
3885
+ overflow: auto;
3886
+ color: #3b3b3b;
3887
+ border: 1px solid #cacaca;
3888
+ margin: 0px;
3889
+ padding: 8px 8px;
3890
+ width: 238px;
3891
+ height: 16px;
3892
+ margin-bottom: 16px
3893
+ }
3894
+
3895
+ .dialog input[type="text"]:-moz-placeholder, .dialog textarea:-moz-placeholder, .dialog input[type="password"]:-moz-placeholder {
3896
+ color: #cacaca
3897
+ }
3898
+
3899
+ .dialog input[type="text"]:-ms-input-placeholder, .dialog textarea:-ms-input-placeholder, .dialog input[type="password"]:-ms-input-placeholder {
3900
+ color: #cacaca
3901
+ }
3902
+
3903
+ .dialog input[type="text"]::-webkit-input-placeholder, .dialog textarea::-webkit-input-placeholder, .dialog input[type="password"]::-webkit-input-placeholder {
3904
+ color: #cacaca
3905
+ }
3906
+
3907
+ .dialog input[type="text"].placeholder-input, .dialog textarea.placeholder-input, .dialog input[type="password"].placeholder-input {
3908
+ color: #cacaca
3909
+ }
3910
+
3911
+ .dialog input[type="text"], .dialog input[type="password"] {
3912
+ *overflow-x: hidden;
3913
+ *overflow-y: hidden;
3914
+ -ms-overflow-x: hidden;
3915
+ -ms-overflow-y: hidden
3916
+ }
3917
+
3918
+ .dialog input.error, .lozenge-area .dialog.error {
3919
+ border: 1px solid #fed1d1;
3920
+ -webkit-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
3921
+ -moz-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
3922
+ box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
3923
+ position: relative
3924
+ }
3925
+
3926
+ .dialog input.warning, .lozenge-area .dialog.warning {
3927
+ border: 1px solid #F0C7BC;
3928
+ -webkit-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
3929
+ -moz-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
3930
+ box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
3931
+ position: relative
3932
+ }
3933
+
3934
+ .dialog .error-status {
3935
+ margin: -18px 4px 4px 4px;
3936
+ padding: 8px 8px 6px 8px;
3937
+ z-index: 100;
3938
+ width: 230px;
3939
+ overflow-x: hidden;
3940
+ overflow-wrap: break-word;
3941
+ word-wrap: break-word;
3942
+ font-size: 12px;
3943
+ line-height: 15px;
3944
+ background-color: #fed1d1;
3945
+ border: 1px solid #e3a198;
3946
+ color: #B8211D;
3947
+ -webkit-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
3948
+ -moz-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
3949
+ box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2)
3950
+ }
3951
+
3952
+ .dialog .error-status a {
3953
+ font-size: 12px;
3954
+ line-height: 15px
3955
+ }
3956
+
3957
+ .dialog .error-bang > .error-status {
3958
+ background-position-y: center;
3959
+ border: none;
3960
+ -webkit-box-shadow: none;
3961
+ -moz-box-shadow: none;
3962
+ box-shadow: none;
3963
+ font-family: helvetica, arial, sans-serif;
3964
+ font-size: 13px;
3965
+ -webkit-font-smoothing: antialiased;
3966
+ -moz-osx-font-smoothing: grayscale;
3967
+ line-height: 19px;
3968
+ margin: -8px 0 6px;
3969
+ min-height: 16px;
3970
+ padding: 0 0 0 23px
3971
+ }
3972
+
3973
+ .dialog .warning-status {
3974
+ margin: -18px 4px 4px 4px;
3975
+ padding: 8px 8px 6px 8px;
3976
+ z-index: 100;
3977
+ width: 230px;
3978
+ overflow-x: hidden;
3979
+ overflow-wrap: break-word;
3980
+ word-wrap: break-word;
3981
+ font-size: 12px;
3982
+ line-height: 15px;
3983
+ background-color: #F3E6C3;
3984
+ border: 1px solid #F0C7BC;
3985
+ color: #b72200
3986
+ }
3987
+
3988
+ .dialog .warning-status a {
3989
+ font-size: 12px;
3990
+ line-height: 15px
3991
+ }
3992
+
3993
+ .dialog .select-elem {
3994
+ font-family: helvetica, arial, sans-serif;
3995
+ border: 1px solid #cacaca;
3996
+ height: 35px;
3997
+ font-size: 16px;
3998
+ font-weight: 300;
3999
+ line-height: 22px;
4000
+ max-width: 100%;
4001
+ text-overflow: ellipsis;
4002
+ -webkit-border-radius: 3px;
4003
+ -moz-border-radius: 3px;
4004
+ border-radius: 3px
4005
+ }
4006
+
4007
+ .dialog.withHelpTip input[type="text"], .dialog.withHelpTip textarea, .dialog.withHelpTip input[type="password"] {
4008
+ color: #747474;
4009
+ line-height: 18px;
4010
+ font-family: helvetica, arial, sans-serif;
4011
+ font-size: 13px;
4012
+ font-style: normal;
4013
+ font-variant: normal;
4014
+ font-weight: normal;
4015
+ text-align: left;
4016
+ text-decoration: none;
4017
+ text-indent: 0;
4018
+ text-justify: auto;
4019
+ text-outline: none;
4020
+ text-overflow: clip;
4021
+ text-shadow: none;
4022
+ text-transform: none;
4023
+ text-wrap: normal;
4024
+ -webkit-border-radius: 0;
4025
+ -moz-border-radius: 0;
4026
+ border-radius: 0;
4027
+ -webkit-box-shadow: none;
4028
+ -moz-box-shadow: none;
4029
+ box-shadow: none;
4030
+ resize: none;
4031
+ overflow: auto;
4032
+ color: #3b3b3b;
4033
+ border: 1px solid #cacaca;
4034
+ margin: 0px;
4035
+ padding: 8px 8px;
4036
+ width: 206px;
4037
+ height: 16px;
4038
+ margin-bottom: 16px
4039
+ }
4040
+
4041
+ .dialog.withHelpTip input[type="text"]:-moz-placeholder, .dialog.withHelpTip textarea:-moz-placeholder, .dialog.withHelpTip input[type="password"]:-moz-placeholder {
4042
+ color: #cacaca
4043
+ }
4044
+
4045
+ .dialog.withHelpTip input[type="text"]:-ms-input-placeholder, .dialog.withHelpTip textarea:-ms-input-placeholder, .dialog.withHelpTip input[type="password"]:-ms-input-placeholder {
4046
+ color: #cacaca
4047
+ }
4048
+
4049
+ .dialog.withHelpTip input[type="text"]::-webkit-input-placeholder, .dialog.withHelpTip textarea::-webkit-input-placeholder, .dialog.withHelpTip input[type="password"]::-webkit-input-placeholder {
4050
+ color: #cacaca
4051
+ }
4052
+
4053
+ .dialog.withHelpTip input[type="text"].placeholder-input, .dialog.withHelpTip textarea.placeholder-input, .dialog.withHelpTip input[type="password"].placeholder-input {
4054
+ color: #cacaca
4055
+ }
4056
+
4057
+ .dialog.withHelpTip input[type="text"], .dialog.withHelpTip input[type="password"] {
4058
+ *overflow-x: hidden;
4059
+ *overflow-y: hidden;
4060
+ -ms-overflow-x: hidden;
4061
+ -ms-overflow-y: hidden
4062
+ }
4063
+
4064
+ .dialog.withHelpTip input.error, .lozenge-area .dialog.withHelpTip.error {
4065
+ border: 1px solid #fed1d1;
4066
+ -webkit-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
4067
+ -moz-box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
4068
+ box-shadow: 0 0 3px 0 rgba(180, 0, 0, 0.7);
4069
+ position: relative
4070
+ }
4071
+
4072
+ .dialog.withHelpTip input.warning, .lozenge-area .dialog.withHelpTip.warning {
4073
+ border: 1px solid #F0C7BC;
4074
+ -webkit-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
4075
+ -moz-box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
4076
+ box-shadow: 0 0 2px 1px rgba(243, 230, 195, 0.7);
4077
+ position: relative
4078
+ }
4079
+
4080
+ .dialog.withHelpTip .error-status {
4081
+ margin: -18px 4px 4px 4px;
4082
+ padding: 8px 8px 6px 8px;
4083
+ z-index: 100;
4084
+ width: 198px;
4085
+ overflow-x: hidden;
4086
+ overflow-wrap: break-word;
4087
+ word-wrap: break-word;
4088
+ font-size: 12px;
4089
+ line-height: 15px;
4090
+ background-color: #fed1d1;
4091
+ border: 1px solid #e3a198;
4092
+ color: #B8211D;
4093
+ -webkit-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
4094
+ -moz-box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2);
4095
+ box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2)
4096
+ }
4097
+
4098
+ .dialog.withHelpTip .error-status a {
4099
+ font-size: 12px;
4100
+ line-height: 15px
4101
+ }
4102
+
4103
+ .dialog.withHelpTip .error-bang > .error-status {
4104
+ background-position-y: center;
4105
+ border: none;
4106
+ -webkit-box-shadow: none;
4107
+ -moz-box-shadow: none;
4108
+ box-shadow: none;
4109
+ font-family: helvetica, arial, sans-serif;
4110
+ font-size: 13px;
4111
+ -webkit-font-smoothing: antialiased;
4112
+ -moz-osx-font-smoothing: grayscale;
4113
+ line-height: 19px;
4114
+ margin: -8px 0 6px;
4115
+ min-height: 16px;
4116
+ padding: 0 0 0 23px
4117
+ }
4118
+
4119
+ .dialog.withHelpTip .warning-status {
4120
+ margin: -18px 4px 4px 4px;
4121
+ padding: 8px 8px 6px 8px;
4122
+ z-index: 100;
4123
+ width: 198px;
4124
+ overflow-x: hidden;
4125
+ overflow-wrap: break-word;
4126
+ word-wrap: break-word;
4127
+ font-size: 12px;
4128
+ line-height: 15px;
4129
+ background-color: #F3E6C3;
4130
+ border: 1px solid #F0C7BC;
4131
+ color: #b72200
4132
+ }
4133
+
4134
+ .dialog.withHelpTip .warning-status a {
4135
+ font-size: 12px;
4136
+ line-height: 15px
4137
+ }
4138
+
4139
+ .dialog.withHelpTip .select-elem {
4140
+ font-family: helvetica, arial, sans-serif;
4141
+ border: 1px solid #cacaca;
4142
+ height: 35px;
4143
+ font-size: 16px;
4144
+ font-weight: 300;
4145
+ line-height: 22px;
4146
+ max-width: 100%;
4147
+ text-overflow: ellipsis;
4148
+ -webkit-border-radius: 3px;
4149
+ -moz-border-radius: 3px;
4150
+ border-radius: 3px
4151
+ }
4152
+
4153
+ .dialog input[name="cancel"] {
4154
+ margin-bottom: 12px;
4155
+ margin-right: 0px
4156
+ }
4157
+ }
4158
+
4159
+ @media only screen and (max-width: 479px) and all {
4160
+ .dialog .error-bang > .error-status {
4161
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang.png") no-repeat;
4162
+ -webkit-background-size: 17px 16px;
4163
+ -moz-background-size: 17px 16px;
4164
+ -o-background-size: 17px 16px;
4165
+ background-size: 17px 16px
4166
+ }
4167
+ }
4168
+
4169
+ @media only screen and (max-width: 479px) and all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
4170
+ html:not(.ie8) .dialog .error-bang > .error-status {
4171
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang@2x.png") no-repeat;
4172
+ -webkit-background-size: 17px 16px;
4173
+ -moz-background-size: 17px 16px;
4174
+ -o-background-size: 17px 16px;
4175
+ background-size: 17px 16px
4176
+ }
4177
+ }
4178
+
4179
+ @media only screen and (max-width: 479px) and all {
4180
+ .dialog.withHelpTip .error-bang > .error-status {
4181
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang.png") no-repeat;
4182
+ -webkit-background-size: 17px 16px;
4183
+ -moz-background-size: 17px 16px;
4184
+ -o-background-size: 17px 16px;
4185
+ background-size: 17px 16px
4186
+ }
4187
+ }
4188
+
4189
+ @media only screen and (max-width: 479px) and all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
4190
+ html:not(.ie8) .dialog.withHelpTip .error-bang > .error-status {
4191
+ background: url("/assets/kirgudu_sso/authentications/base/images/error-bang@2x.png") no-repeat;
4192
+ -webkit-background-size: 17px 16px;
4193
+ -moz-background-size: 17px 16px;
4194
+ -o-background-size: 17px 16px;
4195
+ background-size: 17px 16px
4196
+ }
4197
+ }
4198
+
4199
+ .footer {
4200
+ background: transparent;
4201
+ border: 0;
4202
+ margin: 0 auto 10px;
4203
+ padding: 10px 0 0 0;
4204
+ text-align: center;
4205
+ width: 736px
4206
+ }
4207
+
4208
+ @media only screen and (max-width: 479px) {
4209
+ .footer {
4210
+ padding: 0px;
4211
+ width: 100%
4212
+ }
4213
+ }
4214
+
4215
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
4216
+ .footer {
4217
+ padding: 0;
4218
+ width: 100%
4219
+ }
4220
+ }
4221
+
4222
+ @media only screen and (min-width: 710px) and (max-width: 929px) {
4223
+ .footer {
4224
+ padding: 0;
4225
+ width: 100%
4226
+ }
4227
+ }
4228
+
4229
+ .footer .footer-entry {
4230
+ color: #747474;
4231
+ line-height: 18px;
4232
+ font-family: helvetica, arial, sans-serif;
4233
+ font-size: 13px;
4234
+ font-style: normal;
4235
+ font-variant: normal;
4236
+ font-weight: normal;
4237
+ text-align: left;
4238
+ text-decoration: none;
4239
+ text-indent: 0;
4240
+ text-justify: auto;
4241
+ text-outline: none;
4242
+ text-overflow: clip;
4243
+ text-shadow: none;
4244
+ text-transform: none;
4245
+ text-wrap: normal;
4246
+ color: #ababab;
4247
+ font-size: 11px;
4248
+ text-align: center;
4249
+ border-right: 1px solid #ababab;
4250
+ padding: 0px 15px
4251
+ }
4252
+
4253
+ .footer .footer-entry.last {
4254
+ border: 0px
4255
+ }
4256
+
4257
+ @media only screen and (max-width: 479px) {
4258
+ .footer .footer-entry {
4259
+ border: 0px;
4260
+ display: block
4261
+ }
4262
+ }
4263
+
4264
+ @media only screen and (min-width: 480px) and (max-width: 709px) {
4265
+ .footer .footer-entry {
4266
+ border: 0px;
4267
+ display: block
4268
+ }
4269
+ }
4270
+
4271
+ .footer a.footer-entry:hover {
4272
+ color: #4a8db8
4273
+ }
4274
+
4275
+ .left {
4276
+ float: left !important
4277
+ }
4278
+
4279
+ .right {
4280
+ float: right !important
4281
+ }
4282
+
4283
+ .clear {
4284
+ clear: both
4285
+ }
4286
+
4287
+ .page-header {
4288
+ margin-bottom: 16px
4289
+ }
4290
+
4291
+ @media only screen and (max-width: 479px) {
4292
+ .page-header {
4293
+ margin-bottom: 0
4294
+ }
4295
+ }
4296
+
4297
+ .ie7 .user-wrapper .page-header {
4298
+ margin-top: 85px
4299
+ }
4300
+
4301
+ .page-header h1 {
4302
+ color: #747474;
4303
+ line-height: 18px;
4304
+ font-family: helvetica, arial, sans-serif;
4305
+ font-size: 13px;
4306
+ font-style: normal;
4307
+ font-variant: normal;
4308
+ font-weight: normal;
4309
+ text-align: left;
4310
+ text-decoration: none;
4311
+ text-indent: 0;
4312
+ text-justify: auto;
4313
+ text-outline: none;
4314
+ text-overflow: clip;
4315
+ text-shadow: none;
4316
+ text-transform: none;
4317
+ text-wrap: normal;
4318
+ font-family: 'caecilia-light', helvetica, arial, sans-serif;
4319
+ -webkit-font-smoothing: antialiased;
4320
+ -moz-osx-font-smoothing: grayscale;
4321
+ font-size: 28px;
4322
+ border-bottom: 1px solid #bdbdbd;
4323
+ line-height: 32px;
4324
+ color: #3b3b3b;
4325
+ margin-top: -4px;
4326
+ margin-bottom: 14px;
4327
+ padding-bottom: 16px
4328
+ }
4329
+
4330
+ @media only screen and (max-width: 479px) {
4331
+ .page-header h1 {
4332
+ font-size: 24px;
4333
+ line-height: 28px
4334
+ }
4335
+ }
4336
+
4337
+ .page-header h2 {
4338
+ line-height: 18px;
4339
+ font-family: helvetica, arial, sans-serif;
4340
+ font-size: 13px;
4341
+ font-style: normal;
4342
+ font-variant: normal;
4343
+ font-weight: normal;
4344
+ text-align: left;
4345
+ text-decoration: none;
4346
+ text-indent: 0;
4347
+ text-justify: auto;
4348
+ text-outline: none;
4349
+ text-overflow: clip;
4350
+ text-shadow: none;
4351
+ text-transform: none;
4352
+ text-wrap: normal;
4353
+ font-family: 'caecilia-light-italic', helvetica, arial, sans-serif;
4354
+ -webkit-font-smoothing: antialiased;
4355
+ -moz-osx-font-smoothing: grayscale;
4356
+ font-size: 18px;
4357
+ color: #747474;
4358
+ line-height: 24px;
4359
+ margin-top: -2px;
4360
+ padding-bottom: 7px
4361
+ }
4362
+
4363
+ @media only screen and (max-width: 479px) {
4364
+ .page-header h2 {
4365
+ padding-bottom: 4px
4366
+ }
4367
+ }
4368
+
4369
+ p {
4370
+ color: #747474;
4371
+ line-height: 18px;
4372
+ font-family: helvetica, arial, sans-serif;
4373
+ font-size: 13px;
4374
+ font-style: normal;
4375
+ font-variant: normal;
4376
+ font-weight: normal;
4377
+ text-align: left;
4378
+ text-decoration: none;
4379
+ text-indent: 0;
4380
+ text-justify: auto;
4381
+ text-outline: none;
4382
+ text-overflow: clip;
4383
+ text-shadow: none;
4384
+ text-transform: none;
4385
+ text-wrap: normal;
4386
+ color: #3b3b3b
4387
+ }
4388
+
4389
+ .deemphasize {
4390
+ color: #747474;
4391
+ font-size: 12px
4392
+ }
4393
+
4394
+ p + p {
4395
+ margin-top: .5em
4396
+ }
4397
+
4398
+ table {
4399
+ border-collapse: separate;
4400
+ border-spacing: 0;
4401
+ margin: 16px 0;
4402
+ width: 100%
4403
+ }
4404
+
4405
+ .ie7 table, .ie8 table {
4406
+ border-collapse: collapse;
4407
+ max-width: 671px
4408
+ }
4409
+
4410
+ caption {
4411
+ font-family: 'caecilia-italic', helvetica, arial, sans-serif;
4412
+ font-size: 16px;
4413
+ line-height: 24px;
4414
+ -webkit-font-smoothing: antialiased;
4415
+ -moz-osx-font-smoothing: grayscale;
4416
+ padding: 12px
4417
+ }
4418
+
4419
+ th, td {
4420
+ padding: 12px
4421
+ }
4422
+
4423
+ th {
4424
+ color: #fff;
4425
+ font-size: 11px;
4426
+ font-weight: normal;
4427
+ line-height: 18px;
4428
+ text-align: left;
4429
+ vertical-align: middle;
4430
+ background-color: #767f84;
4431
+ border-top: 1px solid #767f84;
4432
+ border-bottom: 2px solid #666e72
4433
+ }
4434
+
4435
+ th:first-child {
4436
+ border-left: 1px solid #767f84;
4437
+ -webkit-border-top-left-radius: 4px;
4438
+ -moz-border-top-left-radius: 4px;
4439
+ border-top-left-radius: 4px
4440
+ }
4441
+
4442
+ th:last-child {
4443
+ border-right: 1px solid #767f84;
4444
+ -webkit-border-top-right-radius: 4px;
4445
+ -moz-border-top-right-radius: 4px;
4446
+ border-top-right-radius: 4px
4447
+ }
4448
+
4449
+ tr:nth-of-type(even) td {
4450
+ background-color: #f4f8f9
4451
+ }
4452
+
4453
+ td {
4454
+ color: #46505c;
4455
+ border-bottom: 1px solid #e6ebec
4456
+ }
4457
+
4458
+ td:first-child {
4459
+ border-left: 1px solid #e6ebec
4460
+ }
4461
+
4462
+ td:last-child {
4463
+ border-right: 1px solid #e6ebec
4464
+ }
4465
+
4466
+ .ie7 td, .ie8 td {
4467
+ border-left: none;
4468
+ border-right: none
4469
+ }
4470
+
4471
+ .success-notification .messages {
4472
+ border: 1px solid #2e7044;
4473
+ color: #145028;
4474
+ margin-bottom: 16px;
4475
+ padding: 5px 8px 5px 34px;
4476
+ font-size: 13px;
4477
+ line-height: 18px;
4478
+ font-family: helvetica, arial, sans-serif
4479
+ }
4480
+
4481
+ .error-notification .messages {
4482
+ border: 1px solid #2e7044;
4483
+ color: red;
4484
+ margin-bottom: 16px;
4485
+ padding: 5px 8px 5px 34px;
4486
+ font-size: 13px;
4487
+ line-height: 18px;
4488
+ font-family: helvetica, arial, sans-serif
4489
+ }
4490
+
4491
+ @media all {
4492
+ .success-notification .messages {
4493
+ background: #97cf67 url('/assets/kirgudu_sso/authentications/base/images/green-check.png') no-repeat 8px center;
4494
+ -webkit-background-size: 18px 14px;
4495
+ -moz-background-size: 18px 14px;
4496
+ -o-background-size: 18px 14px;
4497
+ background-size: 18px 14px
4498
+ }
4499
+ }
4500
+
4501
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
4502
+ html:not(.ie8) .success-notification .messages {
4503
+ background: #97cf67 url('/assets/kirgudu_sso/authentications/base/images/green-check@2x.png') no-repeat 8px center;
4504
+ -webkit-background-size: 18px 14px;
4505
+ -moz-background-size: 18px 14px;
4506
+ -o-background-size: 18px 14px;
4507
+ background-size: 18px 14px
4508
+ }
4509
+ }
4510
+
4511
+ .notification.success {
4512
+ background-color: #97cf67;
4513
+ border: 1px solid #2e7044;
4514
+ color: #145028;
4515
+ margin-bottom: 16px;
4516
+ padding: 8px
4517
+ }
4518
+
4519
+ .error-global-header {
4520
+ display: none
4521
+ }
4522
+
4523
+ .error-global-list {
4524
+ border: 1px solid #e3a198;
4525
+ background-color: #fed1d1;
4526
+ padding: 8px;
4527
+ overflow-wrap: break-word;
4528
+ word-wrap: break-word
4529
+ }
4530
+
4531
+ .warning-notification {
4532
+ background-color: #fef4d1;
4533
+ border: 1px solid #ebd174;
4534
+ margin-bottom: 16px;
4535
+ padding: 5px 16px 5px 16px
4536
+ }
4537
+
4538
+ .warning-notification p {
4539
+ color: #cb8403;
4540
+ font-size: 13px;
4541
+ line-height: 18px;
4542
+ font-family: helvetica, arial, sans-serif
4543
+ }
4544
+
4545
+ .messages {
4546
+ overflow-wrap: break-word;
4547
+ word-wrap: break-word
4548
+ }
4549
+
4550
+ .dialog-header h1 {
4551
+ color: #747474;
4552
+ line-height: 18px;
4553
+ font-family: helvetica, arial, sans-serif;
4554
+ font-size: 13px;
4555
+ font-style: normal;
4556
+ font-variant: normal;
4557
+ font-weight: normal;
4558
+ text-align: left;
4559
+ text-decoration: none;
4560
+ text-indent: 0;
4561
+ text-justify: auto;
4562
+ text-outline: none;
4563
+ text-overflow: clip;
4564
+ text-shadow: none;
4565
+ text-transform: none;
4566
+ text-wrap: normal;
4567
+ font-family: 'caecilia-light', helvetica, arial, sans-serif;
4568
+ -webkit-font-smoothing: antialiased;
4569
+ -moz-osx-font-smoothing: grayscale;
4570
+ font-size: 18px;
4571
+ border-bottom: 1px solid #bdbdbd;
4572
+ line-height: 24px;
4573
+ color: #005c78;
4574
+ margin-top: -4px;
4575
+ margin-bottom: 6px;
4576
+ padding-bottom: 8px
4577
+ }
4578
+
4579
+ @media only screen and (max-width: 479px) {
4580
+ .dialog-header h1 {
4581
+ font-size: 14px;
4582
+ line-height: 28px
4583
+ }
4584
+ }
4585
+
4586
+ body {
4587
+ color: #747474;
4588
+ line-height: 18px;
4589
+ font-family: helvetica, arial, sans-serif;
4590
+ font-size: 13px;
4591
+ font-style: normal;
4592
+ font-variant: normal;
4593
+ font-weight: normal;
4594
+ text-align: left;
4595
+ text-decoration: none;
4596
+ text-indent: 0;
4597
+ text-justify: auto;
4598
+ text-outline: none;
4599
+ text-overflow: clip;
4600
+ text-shadow: none;
4601
+ text-transform: none;
4602
+ text-wrap: normal;
4603
+ color: #3b3b3b
4604
+ }
4605
+
4606
+ @media all {
4607
+ body {
4608
+ background: #eaeeef url("/assets/kirgudu_sso/authentications/base/images/settings-bg.jpeg") repeat top left;
4609
+ -webkit-background-size: 200px 200px;
4610
+ -moz-background-size: 200px 200px;
4611
+ -o-background-size: 200px 200px;
4612
+ background-size: 200px 200px
4613
+ }
4614
+ }
4615
+
4616
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
4617
+ html:not(.ie8) body {
4618
+ background: #eaeeef url("/assets/kirgudu_sso/authentications/base/images/settings-bg.jpeg") repeat top left;
4619
+ -webkit-background-size: 200px 200px;
4620
+ -moz-background-size: 200px 200px;
4621
+ -o-background-size: 200px 200px;
4622
+ background-size: 200px 200px
4623
+ }
4624
+ }
4625
+
4626
+ :-moz-placeholder {
4627
+ color: #cacaca
4628
+ }
4629
+
4630
+ :-ms-input-placeholder {
4631
+ color: #cacaca
4632
+ }
4633
+
4634
+ ::-webkit-input-placeholder {
4635
+ color: #cacaca
4636
+ }
4637
+
4638
+ .placeholder-input {
4639
+ color: #cacaca
4640
+ }
4641
+
4642
+ ul {
4643
+ margin: 0px;
4644
+ padding: 0 0 0 16px;
4645
+ line-height: 18px
4646
+ }
4647
+
4648
+ .u-full-bleed {
4649
+ margin: 24px -32px 32px -32px
4650
+ }
4651
+
4652
+ @media only screen and (max-width: 479px) {
4653
+ .u-full-bleed {
4654
+ margin-right: -16px;
4655
+ margin-left: -16px
4656
+ }
4657
+ }
4658
+
4659
+ @media only screen and (min-width: 828px) {
4660
+ .u-large-hide {
4661
+ display: none
4662
+ }
4663
+ }
4664
+
4665
+ .u-large-reveal {
4666
+ display: none
4667
+ }
4668
+
4669
+ @media only screen and (min-width: 828px) {
4670
+ .u-large-reveal {
4671
+ display: block
4672
+ }
4673
+ }
4674
+
4675
+ .Box {
4676
+ background-color: #f2f6f8;
4677
+ padding: 16px 32px;
4678
+ border-top: 1px solid #d9e4e7;
4679
+ border-bottom: 1px solid #d9e4e7
4680
+ }
4681
+
4682
+ @media only screen and (max-width: 479px) {
4683
+ .Box {
4684
+ padding: 16px
4685
+ }
4686
+ }
4687
+
4688
+ .Box_premium {
4689
+ text-align: center;
4690
+ padding-top: 24px;
4691
+ padding-bottom: 24px;
4692
+ margin-top: 8px
4693
+ }
4694
+
4695
+ @media all {
4696
+ .Box_premium {
4697
+ background: url("/assets/kirgudu_sso/authentications/base/images/chevron-blue-bg.png") center top transparent scroll repeat;
4698
+ -webkit-background-size: 50px 30px;
4699
+ -moz-background-size: 50px 30px;
4700
+ -o-background-size: 50px 30px;
4701
+ background-size: 50px 30px
4702
+ }
4703
+ }
4704
+
4705
+ @media all and (-moz-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (-webkit-min-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5), all and (min-resolution: 1.5dppx) {
4706
+ html:not(.ie8) .Box_premium {
4707
+ background: url("/assets/kirgudu_sso/authentications/base/images/chevron-blue-bg@2x.png") center top transparent scroll repeat;
4708
+ -webkit-background-size: 50px 30px;
4709
+ -moz-background-size: 50px 30px;
4710
+ -o-background-size: 50px 30px;
4711
+ background-size: 50px 30px
4712
+ }
4713
+ }
4714
+
4715
+ .Box_premium-icons {
4716
+ margin-bottom: 29px
4717
+ }
4718
+
4719
+ .table-buttons {
4720
+ margin-top: 16px
4721
+ }
4722
+
4723
+ @media only screen and (max-width: 827px) {
4724
+ .tbl-responsive th, .tbl-responsive td {
4725
+ display: block;
4726
+ -webkit-box-sizing: border-box;
4727
+ -moz-box-sizing: border-box;
4728
+ -ms-box-sizing: border-box;
4729
+ box-sizing: border-box;
4730
+ width: 100%;
4731
+ height: auto;
4732
+ float: left;
4733
+ clear: both
4734
+ }
4735
+
4736
+ .tbl-responsive thead {
4737
+ display: none
4738
+ }
4739
+
4740
+ .ie7 .tbl-responsive thead {
4741
+ display: block
4742
+ }
4743
+
4744
+ .tbl-responsive tr {
4745
+ display: block;
4746
+ border-top: 1px solid #e6ebec
4747
+ }
4748
+
4749
+ .tbl-responsive tr:before, .tbl-responsive tr:after {
4750
+ display: table;
4751
+ content: ""
4752
+ }
4753
+
4754
+ .tbl-responsive tr:after {
4755
+ clear: both
4756
+ }
4757
+
4758
+ .lt-ie9 .tbl-responsive tr, .ie7 .tbl-responsive tr, .ie8 .tbl-responsive tr {
4759
+ zoom: 1
4760
+ }
4761
+
4762
+ .tbl-responsive tr:last-child {
4763
+ border-bottom: 1px solid #e6ebec
4764
+ }
4765
+
4766
+ .tbl-responsive td {
4767
+ padding-top: 0;
4768
+ padding-bottom: 0;
4769
+ border-right: 1px solid #e6ebec;
4770
+ border-bottom: none;
4771
+ border-left: 1px solid #e6ebec
4772
+ }
4773
+
4774
+ .tbl-responsive td:first-child {
4775
+ padding-top: 12px
4776
+ }
4777
+
4778
+ .tbl-responsive td:last-child {
4779
+ padding-bottom: 12px
4780
+ }
4781
+
4782
+ .ie7 .tbl-responsive td {
4783
+ padding-bottom: 12px;
4784
+ border-top: 1px solid #e6ebec;
4785
+ border-left: none;
4786
+ border-bottom: 1px solid #e6ebec;
4787
+ border-right: none
4788
+ }
4789
+
4790
+ .ie8 .tbl-responsive td {
4791
+ border-right: none;
4792
+ border-left: none
4793
+ }
4794
+
4795
+ .ie8 .tbl-responsive {
4796
+ border-bottom: 1px solid #e6ebec
4797
+ }
4798
+ }
4799
+
4800
+ @media only screen and (max-width: 479px) {
4801
+ .tbl-responsive th, .tbl-responsive td {
4802
+ max-width: 256px
4803
+ }
4804
+ }
4805
+
4806
+ .tbl-container {
4807
+ width: 100%;
4808
+ overflow-x: auto
4809
+ }
4810
+
4811
+ @media only screen and (max-width: 827px) {
4812
+ .tbl-dt-label td[data-title]:before {
4813
+ content: attr(data-title) ":\00A0";
4814
+ font-weight: bold
4815
+ }
4816
+
4817
+ .tbl-dt-label th:not([data-title]) {
4818
+ font-weight: bold
4819
+ }
4820
+
4821
+ .tbl-dt-label td:empty {
4822
+ display: none
4823
+ }
4824
+ }