humdrum-rails 0.0.4 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. data/humdrum-rails.gemspec +1 -1
  2. data/lib/humdrum/version.rb +1 -1
  3. data/lib/rails/generators/humdrum/layout/layout_generator.rb +11 -3
  4. data/lib/rails/generators/humdrum/layout/templates/images/fonts/icons/entypo.eot +0 -0
  5. data/lib/rails/generators/humdrum/layout/templates/images/fonts/icons/entypo.ttf +0 -0
  6. data/lib/rails/generators/humdrum/layout/templates/images/fonts/icons/entypo.woff +0 -0
  7. data/lib/rails/generators/humdrum/layout/templates/javascripts/application.js +21 -0
  8. data/lib/rails/generators/humdrum/layout/templates/javascripts/gumby.min.js +1 -0
  9. data/lib/rails/generators/humdrum/layout/templates/stylesheets/application.css +5 -4
  10. data/lib/rails/generators/humdrum/layout/templates/stylesheets/gumby.css +383 -375
  11. data/lib/rails/generators/humdrum/layout/templates/stylesheets/overrides-bootstrap.css +8 -1
  12. data/lib/rails/generators/humdrum/layout/templates/stylesheets/overrides-gumby.css +10 -3
  13. data/lib/rails/generators/humdrum/layout/templates/views/gumby/layouts/admin/_footer.html.erb +1 -0
  14. data/lib/rails/generators/humdrum/layout/templates/views/gumby/layouts/admin.html.erb +1 -1
  15. data/lib/rails/generators/humdrum/layout/templates/views/gumby/layouts/common/_flash_message.html.erb +5 -6
  16. data/lib/rails/generators/humdrum/layout/templates/views/gumby/layouts/public/_footer.html.erb +1 -0
  17. data/lib/rails/generators/humdrum/layout/templates/views/gumby/layouts/public.html.erb +1 -1
  18. data/lib/rails/generators/humdrum/layout/templates/views/gumby/layouts/user/_footer.html.erb +1 -0
  19. data/lib/rails/generators/humdrum/layout/templates/views/gumby/layouts/user.html.erb +1 -1
  20. data/lib/rails/generators/humdrum/resource/resource_generator.rb +99 -19
  21. data/lib/rails/generators/humdrum/resource/templates/controllers/resource_controller.rb +8 -1
  22. data/lib/rails/generators/humdrum/resource/templates/javascripts/validations/validator.js +32 -0
  23. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/_edit.html.erb +0 -0
  24. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/_filters.html.erb +0 -0
  25. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/_form.html.erb +0 -0
  26. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/_index.html.erb +0 -0
  27. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/_item.html.erb +0 -0
  28. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/_nav_filters.html.erb +0 -0
  29. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/_new.html.erb +0 -0
  30. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/_show.html.erb +0 -0
  31. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/_summary.html.erb +0 -0
  32. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/create.js.erb +0 -0
  33. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/destroy.js.erb +0 -0
  34. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/edit.js.erb +0 -0
  35. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/index.html.erb +0 -0
  36. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/index.js.erb +0 -0
  37. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/new.js.erb +0 -0
  38. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/show.js.erb +0 -0
  39. data/lib/rails/generators/humdrum/resource/templates/views/{resource → bootstrap/resource}/update.js.erb +0 -0
  40. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/_edit.html.erb +7 -0
  41. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/_filters.html.erb +18 -0
  42. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/_form.html.erb +71 -0
  43. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/_index.html.erb +22 -0
  44. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/_item.html.erb +21 -0
  45. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/_nav_filters.html.erb +9 -0
  46. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/_new.html.erb +9 -0
  47. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/_show.html.erb +45 -0
  48. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/_summary.html.erb +10 -0
  49. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/create.js.erb +15 -0
  50. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/destroy.js.erb +14 -0
  51. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/edit.js.erb +3 -0
  52. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/index.html.erb +37 -0
  53. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/index.js.erb +15 -0
  54. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/new.js.erb +3 -0
  55. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/show.js.erb +2 -0
  56. data/lib/rails/generators/humdrum/resource/templates/views/gumby/resource/update.js.erb +14 -0
  57. data/lib/rails/generators/humdrum/setup/setup_generator.rb +45 -0
  58. data/lib/rails/generators/humdrum/setup/templates/config/database.example.sql +59 -0
  59. data/lib/rails/generators/humdrum/setup/templates/config/database.sql +59 -0
  60. data/lib/rails/generators/humdrum/setup/templates/gitignore +28 -0
  61. data/lib/rails/generators/humdrum/setup/templates/ruby-gemset +1 -0
  62. data/lib/rails/generators/humdrum/setup/templates/ruby-version +1 -0
  63. metadata +50 -21
@@ -1,21 +1,13 @@
1
1
  @charset "UTF-8";
2
2
  @import url(//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
3
- /**
4
- * Gumby Framework
5
- * ---------------
6
- *
3
+ /*
4
+ * Gumby Framework Version 2.0
5
+ * ---------------------------
7
6
  * Follow @gumbycss on twitter and spread the love.
8
7
  * We worked super hard on making this awesome and released it to the web.
9
8
  * All we ask is you leave this intact. #gumbyisawesome
10
9
  *
11
- * Gumby Framework
12
- * http://gumbyframework.com
13
- *
14
- * Built with love by your friends @digitalsurgeons
15
- * http://www.digitalsurgeons.com
16
- *
17
- * Free to use under the MIT license.
18
- * http://www.opensource.org/licenses/mit-license.php
10
+ * http://www.gumbyframework.com/
19
11
  */
20
12
  html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font: inherit; font-size: 100%; vertical-align: baseline; }
21
13
 
@@ -34,13 +26,13 @@ a img { border: none; }
34
26
 
35
27
  article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; }
36
28
 
37
- * html { font-size: 100%; }
29
+ * html { font-size: 87.5%; }
38
30
 
39
- html { font-size: 16px; line-height: 1.625em; }
31
+ html { font-size: 14px; line-height: 1.85714em; }
40
32
 
41
33
  html * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
42
34
 
43
- body { background: white; font-family: "Open Sans"; font-weight: 400; color: #555555; position: relative; -webkit-font-smoothing: antialiased; -webkit-backface-visibility: hidden; }
35
+ body { background: white; font-family: "Open Sans"; font-weight: 400; color: #555555; position: relative; -webkit-font-smoothing: antialiased; }
44
36
  @media only screen and (max-width: 767px) { body { -webkit-text-size-adjust: none; -ms-text-size-adjust: none; width: 100%; min-width: 0; } }
45
37
 
46
38
  html, body { height: 100%; }
@@ -53,47 +45,54 @@ html, body { height: 100%; }
53
45
  .hide.active, .show { display: block; }
54
46
 
55
47
  .fixed { position: fixed; }
56
- @media only screen and (max-width: 768px) { .fixed { position: relative !important; } }
48
+ .fixed.pinned { position: absolute; }
49
+ @media only screen and (max-width: 768px) { .fixed { position: relative !important; top: auto !important; left: auto !important; } }
50
+
51
+ .unfixed { position: relative !important; top: auto !important; left: auto !important; }
52
+
53
+ .text-center { text-align: center; }
54
+
55
+ .text-left { text-align: left; }
57
56
 
58
- .center-text { text-align: center; }
57
+ .text-right { text-align: right; }
59
58
 
60
59
  /* Fonts */
61
- @font-face { font-family: "entypo"; font-style: normal; font-weight: 400; src: url(../fonts/icons/entypo.eot); src: url("../fonts/icons/entypo.eot?#iefix") format("ie9-skip-eot"), url("../fonts/icons/entypo.woff") format("woff"), url("../fonts/icons/entypo.ttf") format("truetype"); }
60
+ @font-face { font-family: "entypo"; font-style: normal; font-weight: 400; src: url(../assets/fonts/icons/entypo.eot); src: url("../assets/fonts/icons/entypo.eot?#iefix") format("ie9-skip-eot"), url("../assets/fonts/icons/entypo.woff") format("woff"), url("../assets/fonts/icons/entypo.ttf") format("truetype"); }
62
61
 
63
- h1, h2, h3, h4, h5, h6 { font-family: "Open Sans"; font-weight: 300; color: #444444; text-rendering: optimizeLegibility; padding-top: 0.273em; line-height: 1.15538em; padding-bottom: 0.273em; }
62
+ h1, h2, h3, h4, h5, h6 { font-family: "Open Sans"; font-weight: Normal; color: #444444; text-rendering: optimizeLegibility; padding-top: 0.312em; line-height: 1.32043em; padding-bottom: 0.312em; }
64
63
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: #d04526; }
65
64
 
66
65
  @media only screen and (max-width: 767px) { h1, h2, h3, h4, h5, h6 { word-wrap: break-word; } }
67
- h1 { font-size: 68px; font-size: 4.25rem; }
68
- h1.xlarge { font-size: 110px; font-size: 6.875rem; }
69
- h1.xxlarge { font-size: 126px; font-size: 7.875rem; }
70
- h1.absurd { font-size: 177px; font-size: 11.0625rem; }
66
+ h1 { font-size: 59px; font-size: 4.21429rem; }
67
+ h1.xlarge { font-size: 96px; font-size: 6.85714rem; }
68
+ h1.xxlarge { font-size: 126px; font-size: 9rem; }
69
+ h1.absurd { font-size: 155px; font-size: 11.07143rem; }
71
70
 
72
- h2 { font-size: 42px; font-size: 2.625rem; }
71
+ h2 { font-size: 37px; font-size: 2.64286rem; }
73
72
 
74
- h3 { font-size: 30px; font-size: 1.875rem; }
73
+ h3 { font-size: 30px; font-size: 2.14286rem; }
75
74
 
76
- h4 { font-size: 26px; font-size: 1.625rem; }
75
+ h4 { font-size: 23px; font-size: 1.64286rem; }
77
76
 
78
- h5 { font-size: 18px; font-size: 1.125rem; }
77
+ h5 { font-size: 18px; font-size: 1.28571rem; }
79
78
 
80
- h6 { font-size: 16px; font-size: 1rem; }
79
+ h6 { font-size: 14px; font-size: 1rem; }
81
80
 
82
- @media only screen and (max-width: 767px) { h1 { font-size: 42px; font-size: 2.625rem; }
83
- h2 { font-size: 36px; font-size: 2.25rem; } }
81
+ @media only screen and (max-width: 767px) { h1 { font-size: 37px; font-size: 2.64286rem; }
82
+ h2 { font-size: 36px; font-size: 2.57143rem; } }
84
83
  .subhead { color: #777; font-weight: normal; margin-bottom: 20px; }
85
84
 
86
85
  /*===================================================== Links & Paragraph styles ======================================================*/
87
- p { font-family: "Open Sans"; font-weight: 400; font-size: 16px; font-size: 1rem; margin-bottom: 13px; line-height: 1.625em; }
88
- p.lead { font-size: 20px; font-size: 1.25rem; margin-bottom: 18px; }
89
- @media only screen and (max-width: 768px) { p { font-size: 17.6px; font-size: 1.1rem; line-height: 1.625em; } }
86
+ p { font-family: "Open Sans"; font-weight: 400; font-size: 14px; font-size: 1rem; margin-bottom: 13px; line-height: 1.85714em; }
87
+ p.lead { font-size: 17.5px; font-size: 1.25rem; margin-bottom: 18px; }
88
+ @media only screen and (max-width: 768px) { p { font-size: 15.4px; font-size: 1.1rem; line-height: 1.85714em; } }
90
89
 
91
90
  a { color: #d04526; text-decoration: none; outline: 0; line-height: inherit; }
92
91
  a:hover { color: #c03d20; }
93
92
 
94
93
  /*=====================================================
95
94
  Lists ======================================================*/
96
- ul, ol { margin-bottom: 0.273em; }
95
+ ul, ol { margin-bottom: 0.312em; }
97
96
 
98
97
  ul { list-style: none outside; }
99
98
 
@@ -107,11 +106,11 @@ ul ul { margin: 4px 0 5px 25px; }
107
106
 
108
107
  ol ol { margin: 4px 0 5px 30px; }
109
108
 
110
- li { padding-bottom: 0.273em; }
109
+ li { padding-bottom: 0.312em; }
111
110
 
112
111
  ul.large li { line-height: 21px; }
113
112
 
114
- dl dt { font-weight: bold; font-size: 16px; font-size: 1rem; }
113
+ dl dt { font-weight: bold; font-size: 14px; font-size: 1rem; }
115
114
 
116
115
  @media only screen and (max-width: 768px) { ul, ol, dl, p { text-align: left; } }
117
116
  /* Mobile */
@@ -159,135 +158,137 @@ abbr { text-transform: none; }
159
158
  ==================================================*/
160
159
  /*.container { padding: 0px $gutter-in-px;
161
160
  }*/
162
- .row { width: 100%; max-width: 940px; min-width: 320px; margin: 0 auto; }
163
- @media only screen and (max-width: 960px) { .row { padding: 0 20px; } }
161
+ .row { width: 100%; max-width: 1170px; min-width: 320px; margin: 0 auto; }
162
+ @media only screen and (max-width: 1190px) { .row { padding: 0 20px; } }
164
163
  .row .row { min-width: 0px; }
165
- @media only screen and (max-width: 960px) { .row .row { padding: 0; } }
164
+ @media only screen and (max-width: 1190px) { .row .row { padding: 0; } }
166
165
 
167
166
  /* To fix the grid into a different size, set max-width to your desired width */
168
- .column, .columns { margin-left: 2.12766%; float: left; min-height: 1px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
167
+ .column, .columns { margin-left: 1.7094%; float: left; min-height: 1px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
169
168
 
170
169
  .column:first-child, .columns:first-child, .alpha { margin-left: 0px; }
171
170
 
172
171
  .column.omega, .columns.omega { float: right; }
173
172
 
174
173
  /* Column Classes */
175
- .row .one.column, .row .one.columns, .sixteen.colgrid .row .one.columns { width: 6.38298%; }
176
- .row .two.columns { width: 14.89362%; }
177
- .row .three.columns { width: 23.40426%; }
178
- .row .four.columns { width: 31.91489%; }
179
- .row .five.columns { width: 40.42553%; }
180
- .row .six.columns { width: 48.93617%; }
181
- .row .seven.columns { width: 57.44681%; }
182
- .row .eight.columns { width: 65.95745%; }
183
- .row .nine.columns { width: 74.46809%; }
184
- .row .ten.columns { width: 82.97872%; }
185
- .row .eleven.columns { width: 91.48936%; }
174
+ .row .one.column { width: 6.76638%; }
175
+ .row .one.columns { width: 6.76638%; }
176
+ .row .two.columns { width: 15.24217%; }
177
+ .row .three.columns { width: 23.71795%; }
178
+ .row .four.columns { width: 32.19373%; }
179
+ .row .five.columns { width: 40.66952%; }
180
+ .row .six.columns { width: 49.1453%; }
181
+ .row .seven.columns { width: 57.62108%; }
182
+ .row .eight.columns { width: 66.09687%; }
183
+ .row .nine.columns { width: 74.57265%; }
184
+ .row .ten.columns { width: 83.04843%; }
185
+ .row .eleven.columns { width: 91.52422%; }
186
186
  .row .twelve.columns { width: 100%; }
187
187
 
188
188
  /* Push Classes */
189
- .row .push_one { margin-left: 10.6383%; }
190
- .row .push_one:first-child { margin-left: 8.51064%; }
191
- .row .push_two { margin-left: 19.14894%; }
192
- .row .push_two:first-child { margin-left: 17.02128%; }
193
- .row .push_three { margin-left: 27.65957%; }
194
- .row .push_three:first-child { margin-left: 25.53191%; }
195
- .row .push_four { margin-left: 36.17021%; }
196
- .row .push_four:first-child { margin-left: 34.04255%; }
197
- .row .push_five { margin-left: 44.68085%; }
198
- .row .push_five:first-child { margin-left: 42.55319%; }
199
- .row .push_six { margin-left: 53.19149%; }
200
- .row .push_six:first-child { margin-left: 51.06383%; }
201
- .row .push_seven { margin-left: 61.70213%; }
202
- .row .push_seven:first-child { margin-left: 59.57447%; }
203
- .row .push_eight { margin-left: 70.21277%; }
204
- .row .push_eight:first-child { margin-left: 68.08511%; }
205
- .row .push_nine { margin-left: 78.7234%; }
206
- .row .push_nine:first-child { margin-left: 76.59574%; }
207
- .row .push_ten { margin-left: 87.23404%; }
208
- .row .push_ten:first-child { margin-left: 85.10638%; }
209
- .row .push_eleven { margin-left: 95.74468%; }
210
- .row .push_eleven:first-child { margin-left: 93.61702%; }
189
+ .row .push_one { margin-left: 10.18519%; }
190
+ .row .push_one:first-child { margin-left: 8.47578%; }
191
+ .row .push_two { margin-left: 18.66097%; }
192
+ .row .push_two:first-child { margin-left: 16.95157%; }
193
+ .row .push_three { margin-left: 27.13675%; }
194
+ .row .push_three:first-child { margin-left: 25.42735%; }
195
+ .row .push_four { margin-left: 35.61254%; }
196
+ .row .push_four:first-child { margin-left: 33.90313%; }
197
+ .row .push_five { margin-left: 44.08832%; }
198
+ .row .push_five:first-child { margin-left: 42.37892%; }
199
+ .row .push_six { margin-left: 52.5641%; }
200
+ .row .push_six:first-child { margin-left: 50.8547%; }
201
+ .row .push_seven { margin-left: 61.03989%; }
202
+ .row .push_seven:first-child { margin-left: 59.33048%; }
203
+ .row .push_eight { margin-left: 69.51567%; }
204
+ .row .push_eight:first-child { margin-left: 67.80627%; }
205
+ .row .push_nine { margin-left: 77.99145%; }
206
+ .row .push_nine:first-child { margin-left: 76.28205%; }
207
+ .row .push_ten { margin-left: 86.46724%; }
208
+ .row .push_ten:first-child { margin-left: 84.75783%; }
209
+ .row .push_eleven { margin-left: 94.94302%; }
210
+ .row .push_eleven:first-child { margin-left: 93.23362%; }
211
211
 
212
212
  /* Centered Classes */
213
- .row .one.centered { margin-left: 46.80851%; }
214
- .row .two.centered { margin-left: 42.55319%; }
215
- .row .three.centered { margin-left: 38.29787%; }
216
- .row .four.centered { margin-left: 34.04255%; }
217
- .row .five.centered { margin-left: 29.78723%; }
218
- .row .six.centered { margin-left: 25.53191%; }
219
- .row .seven.centered { margin-left: 21.2766%; }
220
- .row .eight.centered { margin-left: 17.02128%; }
221
- .row .nine.centered { margin-left: 12.76596%; }
222
- .row .ten.centered { margin-left: 8.51064%; }
223
- .row .eleven.centered { margin-left: 4.25532%; }
213
+ .row .one.centered { margin-left: 46.61681%; }
214
+ .row .two.centered { margin-left: 42.37892%; }
215
+ .row .three.centered { margin-left: 38.14103%; }
216
+ .row .four.centered { margin-left: 33.90313%; }
217
+ .row .five.centered { margin-left: 29.66524%; }
218
+ .row .six.centered { margin-left: 25.42735%; }
219
+ .row .seven.centered { margin-left: 21.18946%; }
220
+ .row .eight.centered { margin-left: 16.95157%; }
221
+ .row .nine.centered { margin-left: 12.71368%; }
222
+ .row .ten.centered { margin-left: 8.47578%; }
223
+ .row .eleven.centered { margin-left: 4.23789%; }
224
224
 
225
225
  /* Hybrid Grid Columns */
226
- .sixteen.colgrid .row .one.column, .sixteen.colgrid .row .one.columns { width: 4.25532%; }
227
- .sixteen.colgrid .row .two.columns { width: 10.6383%; }
228
- .sixteen.colgrid .row .three.columns { width: 17.02128%; }
229
- .sixteen.colgrid .row .four.columns { width: 23.40426%; }
230
- .sixteen.colgrid .row .five.columns { width: 29.78723%; }
231
- .sixteen.colgrid .row .six.columns { width: 36.17021%; }
232
- .sixteen.colgrid .row .seven.columns { width: 42.55319%; }
233
- .sixteen.colgrid .row .eight.columns { width: 48.93617%; }
234
- .sixteen.colgrid .row .nine.columns { width: 55.31915%; }
235
- .sixteen.colgrid .row .ten.columns { width: 61.70213%; }
236
- .sixteen.colgrid .row .eleven.columns { width: 68.08511%; }
237
- .sixteen.colgrid .row .twelve.columns { width: 74.46809%; }
238
- .sixteen.colgrid .row .thirteen.columns { width: 80.85106%; }
239
- .sixteen.colgrid .row .fourteen.columns { width: 87.23404%; }
240
- .sixteen.colgrid .row .fifteen.columns { width: 93.61702%; }
226
+ .sixteen.colgrid .row .one.column { width: 4.64744%; }
227
+ .sixteen.colgrid .row .one.columns { width: 4.64744%; }
228
+ .sixteen.colgrid .row .two.columns { width: 11.00427%; }
229
+ .sixteen.colgrid .row .three.columns { width: 17.36111%; }
230
+ .sixteen.colgrid .row .four.columns { width: 23.71795%; }
231
+ .sixteen.colgrid .row .five.columns { width: 30.07479%; }
232
+ .sixteen.colgrid .row .six.columns { width: 36.43162%; }
233
+ .sixteen.colgrid .row .seven.columns { width: 42.78846%; }
234
+ .sixteen.colgrid .row .eight.columns { width: 49.1453%; }
235
+ .sixteen.colgrid .row .nine.columns { width: 55.50214%; }
236
+ .sixteen.colgrid .row .ten.columns { width: 61.85897%; }
237
+ .sixteen.colgrid .row .eleven.columns { width: 68.21581%; }
238
+ .sixteen.colgrid .row .twelve.columns { width: 74.57265%; }
239
+ .sixteen.colgrid .row .thirteen.columns { width: 80.92949%; }
240
+ .sixteen.colgrid .row .fourteen.columns { width: 87.28632%; }
241
+ .sixteen.colgrid .row .fifteen.columns { width: 93.64316%; }
241
242
  .sixteen.colgrid .row .sixteen.columns { width: 100%; }
242
243
 
243
244
  /* Hybrid Push Classes */
244
- .sixteen.colgrid .row .push_one { margin-left: 8.51064%; }
245
- .sixteen.colgrid .row .push_one:first-child { margin-left: 6.38298%; }
246
- .sixteen.colgrid .row .push_two { margin-left: 14.89362%; }
247
- .sixteen.colgrid .row .push_two:first-child { margin-left: 12.76596%; }
248
- .sixteen.colgrid .row .push_three { margin-left: 21.2766%; }
249
- .sixteen.colgrid .row .push_three:first-child { margin-left: 19.14894%; }
250
- .sixteen.colgrid .row .push_four { margin-left: 27.65957%; }
251
- .sixteen.colgrid .row .push_four:first-child { margin-left: 25.53191%; }
252
- .sixteen.colgrid .row .push_five { margin-left: 34.04255%; }
253
- .sixteen.colgrid .row .push_five:first-child { margin-left: 31.91489%; }
254
- .sixteen.colgrid .row .push_six { margin-left: 40.42553%; }
255
- .sixteen.colgrid .row .push_six:first-child { margin-left: 38.29787%; }
256
- .sixteen.colgrid .row .push_seven { margin-left: 46.80851%; }
257
- .sixteen.colgrid .row .push_seven:first-child { margin-left: 44.68085%; }
258
- .sixteen.colgrid .row .push_eight { margin-left: 53.19149%; }
259
- .sixteen.colgrid .row .push_eight:first-child { margin-left: 51.06383%; }
260
- .sixteen.colgrid .row .push_nine { margin-left: 59.57447%; }
261
- .sixteen.colgrid .row .push_nine:first-child { margin-left: 57.44681%; }
262
- .sixteen.colgrid .row .push_ten { margin-left: 65.95745%; }
263
- .sixteen.colgrid .row .push_ten:first-child { margin-left: 63.82979%; }
264
- .sixteen.colgrid .row .push_eleven { margin-left: 72.34043%; }
265
- .sixteen.colgrid .row .push_eleven:first-child { margin-left: 70.21277%; }
266
- .sixteen.colgrid .row .push_twelve { margin-left: 78.7234%; }
267
- .sixteen.colgrid .row .push_twelve:first-child { margin-left: 76.59574%; }
268
- .sixteen.colgrid .row .push_thirteen { margin-left: 85.10638%; }
269
- .sixteen.colgrid .row .push_thirteen:first-child { margin-left: 82.97872%; }
270
- .sixteen.colgrid .row .push_fourteen { margin-left: 91.48936%; }
271
- .sixteen.colgrid .row .push_fourteen:first-child { margin-left: 89.3617%; }
272
- .sixteen.colgrid .row .push_fifteen { margin-left: 97.87234%; }
273
- .sixteen.colgrid .row .push_fifteen:first-child { margin-left: 95.74468%; }
245
+ .sixteen.colgrid .row .push_one { margin-left: 8.06624%; }
246
+ .sixteen.colgrid .row .push_one:first-child { margin-left: 6.35684%; }
247
+ .sixteen.colgrid .row .push_two { margin-left: 14.42308%; }
248
+ .sixteen.colgrid .row .push_two:first-child { margin-left: 12.71368%; }
249
+ .sixteen.colgrid .row .push_three { margin-left: 20.77991%; }
250
+ .sixteen.colgrid .row .push_three:first-child { margin-left: 19.07051%; }
251
+ .sixteen.colgrid .row .push_four { margin-left: 27.13675%; }
252
+ .sixteen.colgrid .row .push_four:first-child { margin-left: 25.42735%; }
253
+ .sixteen.colgrid .row .push_five { margin-left: 33.49359%; }
254
+ .sixteen.colgrid .row .push_five:first-child { margin-left: 31.78419%; }
255
+ .sixteen.colgrid .row .push_six { margin-left: 39.85043%; }
256
+ .sixteen.colgrid .row .push_six:first-child { margin-left: 38.14103%; }
257
+ .sixteen.colgrid .row .push_seven { margin-left: 46.20726%; }
258
+ .sixteen.colgrid .row .push_seven:first-child { margin-left: 44.49786%; }
259
+ .sixteen.colgrid .row .push_eight { margin-left: 52.5641%; }
260
+ .sixteen.colgrid .row .push_eight:first-child { margin-left: 50.8547%; }
261
+ .sixteen.colgrid .row .push_nine { margin-left: 58.92094%; }
262
+ .sixteen.colgrid .row .push_nine:first-child { margin-left: 57.21154%; }
263
+ .sixteen.colgrid .row .push_ten { margin-left: 65.27778%; }
264
+ .sixteen.colgrid .row .push_ten:first-child { margin-left: 63.56838%; }
265
+ .sixteen.colgrid .row .push_eleven { margin-left: 71.63462%; }
266
+ .sixteen.colgrid .row .push_eleven:first-child { margin-left: 69.92521%; }
267
+ .sixteen.colgrid .row .push_twelve { margin-left: 77.99145%; }
268
+ .sixteen.colgrid .row .push_twelve:first-child { margin-left: 76.28205%; }
269
+ .sixteen.colgrid .row .push_thirteen { margin-left: 84.34829%; }
270
+ .sixteen.colgrid .row .push_thirteen:first-child { margin-left: 82.63889%; }
271
+ .sixteen.colgrid .row .push_fourteen { margin-left: 90.70513%; }
272
+ .sixteen.colgrid .row .push_fourteen:first-child { margin-left: 88.99573%; }
273
+ .sixteen.colgrid .row .push_fifteen { margin-left: 97.06197%; }
274
+ .sixteen.colgrid .row .push_fifteen:first-child { margin-left: 95.35256%; }
274
275
 
275
276
  /* Hybrid Centered Classes */
276
- .sixteen.colgrid .row .one.centered { margin-left: 47.87234%; }
277
- .sixteen.colgrid .row .two.centered { margin-left: 44.68085%; }
278
- .sixteen.colgrid .row .three.centered { margin-left: 41.48936%; }
279
- .sixteen.colgrid .row .four.centered { margin-left: 38.29787%; }
280
- .sixteen.colgrid .row .five.centered { margin-left: 35.10638%; }
281
- .sixteen.colgrid .row .six.centered { margin-left: 31.91489%; }
282
- .sixteen.colgrid .row .seven.centered { margin-left: 28.7234%; }
283
- .sixteen.colgrid .row .eight.centered { margin-left: 25.53191%; }
284
- .sixteen.colgrid .row .nine.centered { margin-left: 22.34043%; }
285
- .sixteen.colgrid .row .ten.centered { margin-left: 19.14894%; }
286
- .sixteen.colgrid .row .eleven.centered { margin-left: 15.95745%; }
287
- .sixteen.colgrid .row .twelve.centered { margin-left: 12.76596%; }
288
- .sixteen.colgrid .row .thirteen.centered { margin-left: 9.57447%; }
289
- .sixteen.colgrid .row .fourteen.centered { margin-left: 6.38298%; }
290
- .sixteen.colgrid .row .fifteen.centered { margin-left: 3.19149%; }
277
+ .sixteen.colgrid .row .one.centered { margin-left: 47.67628%; }
278
+ .sixteen.colgrid .row .two.centered { margin-left: 44.49786%; }
279
+ .sixteen.colgrid .row .three.centered { margin-left: 41.31944%; }
280
+ .sixteen.colgrid .row .four.centered { margin-left: 38.14103%; }
281
+ .sixteen.colgrid .row .five.centered { margin-left: 34.96261%; }
282
+ .sixteen.colgrid .row .six.centered { margin-left: 31.78419%; }
283
+ .sixteen.colgrid .row .seven.centered { margin-left: 28.60577%; }
284
+ .sixteen.colgrid .row .eight.centered { margin-left: 25.42735%; }
285
+ .sixteen.colgrid .row .nine.centered { margin-left: 22.24893%; }
286
+ .sixteen.colgrid .row .ten.centered { margin-left: 19.07051%; }
287
+ .sixteen.colgrid .row .eleven.centered { margin-left: 15.89209%; }
288
+ .sixteen.colgrid .row .twelve.centered { margin-left: 12.71368%; }
289
+ .sixteen.colgrid .row .thirteen.centered { margin-left: 9.53526%; }
290
+ .sixteen.colgrid .row .fourteen.centered { margin-left: 6.35684%; }
291
+ .sixteen.colgrid .row .fifteen.centered { margin-left: 3.17842%; }
291
292
 
292
293
  .pull_right { float: right; }
293
294
 
@@ -328,194 +329,13 @@ img { -ms-interpolation-mode: bicubic; }
328
329
  .container { min-width: 0; margin-left: 0; margin-right: 0; }
329
330
  .row { width: 100%; min-width: 0; margin-left: 0; margin-right: 0; }
330
331
  .row .row .column, .row .row .columns { padding: 0; }
331
- .row .centered { margin: 0 !important; }
332
+ .row .centered { margin-left: 0 !important; }
332
333
  .column, .columns { width: auto !important; float: none; margin-left: 0; margin-right: 0; }
333
334
  .column:last-child, .columns:last-child { margin-right: 0; float: none; }
334
335
  [class*="column"] + [class*="column"]:last-child { float: none; }
335
336
  [class*="column"]:before { display: table; }
336
337
  [class*="column"]:after { display: table; clear: both; }
337
338
  [class^="push_"], [class*="push_"] { margin-left: 0 !important; } }
338
- /*=====================================================
339
- Navigation (with dropdowns)
340
- ======================================================*/
341
- .navbar { width: 100%; min-height: 60px; display: block; margin-bottom: 20px; background: #4a4d50; }
342
- @media only screen and (max-width: 767px) { .navbar { position: relative; border: none; }
343
- .navbar .column, .navbar .columns { min-height: 0; } }
344
- .navbar.fixed { top: 0; left: 0; z-index: 99999; }
345
- .navbar a.toggle { display: none; }
346
- @media only screen and (max-width: 767px) { .navbar a.toggle { top: 18%; right: 4%; width: 46px; position: absolute; text-align: center; display: inline-block; color: white; background: #4a4d50; height: 40px; line-height: 38px; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; font-size: 30px; font-size: 1.875rem; }
347
- .navbar a.toggle:hover { background: #565a5d; }
348
- .navbar a.toggle:active, .navbar a.toggle.active { background: #3e4043; } }
349
- .navbar .logo { display: inline-block; margin: 0 2.12766% 0 0; padding: 0; height: 60px; line-height: 58px; }
350
- .navbar .logo a { display: block; padding: 0 0 0 16px; overflow: hidden; height: 60px; line-height: 58px; }
351
- @media only screen and (max-width: 767px) { .navbar .logo { float: left; display: inline; }
352
- .navbar .logo a { padding: 0; }
353
- .navbar .logo a img { width: auto; height: auto; max-width: 100%; } }
354
- .navbar ul { display: table; vertical-align: middle; margin: 0; float: none; }
355
- @media only screen and (max-width: 767px) { .navbar ul { position: absolute; display: block; width: 100% !important; height: 0; max-height: 0; top: 60px; left: 0; overflow: hidden; text-align: center; background: #3e4043; }
356
- .navbar ul.active { height: auto; max-height: 600px; z-index: 999999; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; -webkit-box-shadow: 0 2px 2px #252728; -moz-box-shadow: 0 2px 2px #252728; box-shadow: 0 2px 2px #252728; } }
357
- .navbar ul li { display: table-cell; text-align: center; padding-bottom: 0; margin: 0; height: 60px; line-height: 58px; }
358
- @media only screen and (max-width: 767px) { .navbar ul li { display: block; position: relative; min-height: 50px; max-height: 320px; height: auto; width: 100%; border-right: 0 !important; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; } }
359
- .navbar ul li > a { display: block; padding: 0 16px; white-space: nowrap; color: white; text-shadow: 0 1px 2px #191a1b, 0 1px 0 #191a1b; height: 60px; line-height: 58px; font-size: 16px; font-size: 1rem; }
360
- .navbar ul li .btn { border-color: #000101 !important; }
361
- .navbar ul li.field { margin-bottom: 0 !important; margin-right: 0; }
362
- @media only screen and (max-width: 767px) { .navbar ul li.field { padding: 0 20px; } }
363
- .navbar ul li.field input.search { background: #191a1b; border: none; color: #f2f2f2; }
364
- .navbar ul li .dropdown { width: auto; min-width: 0px; max-width: 320px; height: 0; position: absolute; background: #fafafa; overflow: hidden; z-index: 999; }
365
- @media only screen and (max-width: 767px) { .navbar ul li .dropdown { width: 100%; max-width: 100%; position: relative; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; }
366
- .navbar ul li.active .dropdown { border-bottom: 1px solid #313436; }
367
- .navbar ul li.active .dropdown ul { position: relative; top: 0; background: #36393b; min-height: 50px; max-height: 250px; height: auto; overflow: auto; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; }
368
- .navbar ul li.active .dropdown ul li { min-height: 50px; border-bottom: #3e4043; }
369
- .navbar ul li.active .dropdown ul li a { color: white; border-bottom: 1px solid #313436; }
370
- .navbar ul li.active .dropdown ul li a:hover { color: #d04526; } }
371
- @media only screen and (min-width: 768px) and (max-width: 939px) { .navbar > ul > li > .btn a { padding: 0 10px 0 10px !important; }
372
- .navbar ul > li .dropdown ul li.active .dropdown { left: -320px; } }
373
-
374
- /**** Navbar positioning for Microsoft's browser who deserves not to be mentioned ****/
375
- .ie7 .navbar > ul { width: auto; }
376
-
377
- .ie7 .navbar, .ie7 .navbar > ul > li > a { display: block; }
378
-
379
- .ie7 .navbar .logo, .ie7 .navbar ul, .ie7 .navbar ul li { float: left; display: inline-block; }
380
-
381
- .ie7 .navbar .logo a { display: block; overflow: hidden; }
382
-
383
- .ie7 .navbar > ul > li .field { display: block; padding: 12px 18px 0; width: 80%; }
384
-
385
- .pretty.navbar { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(100%, #313436)); background-image: -webkit-linear-gradient(#7b8085, #313436); background-image: -moz-linear-gradient(#7b8085, #313436); background-image: -o-linear-gradient(#7b8085, #313436); background-image: linear-gradient(#7b8085, #313436); -webkit-box-shadow: inset 0 1px 1px #7b8085, 0 1px 2px rgba(0, 0, 0, 0.8) !important; -moz-box-shadow: inset 0 1px 1px #7b8085, 0 1px 2px rgba(0, 0, 0, 0.8) !important; box-shadow: inset 0 1px 1px #7b8085, 0 1px 2px rgba(0, 0, 0, 0.8) !important; /* Remove this line if you dont want a dropshadow on your navigation*/ }
386
- @media only screen and (max-width: 767px) { .pretty.navbar a.toggle { border: 1px solid #3e4043; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(100%, #4a4d50)); background-image: -webkit-linear-gradient(#7b8085, #4a4d50); background-image: -moz-linear-gradient(#7b8085, #4a4d50); background-image: -o-linear-gradient(#7b8085, #4a4d50); background-image: linear-gradient(#7b8085, #4a4d50); -webkit-box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; -moz-box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; }
387
- .pretty.navbar a.toggle i { text-shadow: 0 1px 1px #191a1b; }
388
- .pretty.navbar a.toggle:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #888d91), color-stop(100%, #565a5d)); background-image: -webkit-linear-gradient(#888d91, #565a5d); background-image: -moz-linear-gradient(#888d91, #565a5d); background-image: -o-linear-gradient(#888d91, #565a5d); background-image: linear-gradient(#888d91, #565a5d); }
389
- .pretty.navbar a.toggle:active, .pretty.navbar a.toggle.active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3e4043), color-stop(100%, #4a4d50)); background-image: -webkit-linear-gradient(#3e4043, #4a4d50); background-image: -moz-linear-gradient(#3e4043, #4a4d50); background-image: -o-linear-gradient(#3e4043, #4a4d50); background-image: linear-gradient(#3e4043, #4a4d50); -webkit-box-shadow: 0 1px 1px #63676a; -moz-box-shadow: 0 1px 1px #63676a; box-shadow: 0 1px 1px #63676a; } }
390
- .pretty.navbar.row { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
391
- @media only screen and (max-width: 767px) { .pretty.navbar.row { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; } }
392
- .pretty.navbar ul li.field input.search { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #191a1b), color-stop(100%, #4f5255)); background-image: -webkit-linear-gradient(#191a1b, #4f5255); background-image: -moz-linear-gradient(#191a1b, #4f5255); background-image: -o-linear-gradient(#191a1b, #4f5255); background-image: linear-gradient(#191a1b, #4f5255); border: none; -webkit-box-shadow: 0 1px 2px #888d91 !important; -moz-box-shadow: 0 1px 2px #888d91 !important; box-shadow: 0 1px 2px #888d91 !important; /* Remove this line if you dont want a dropshadow on your navigation*/ }
393
- .pretty.navbar > ul > li:first-child, .pretty.navbar .pretty.navbar > ul > li:first-child a:hover { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }
394
-
395
- .navbar li .dropdown ul { margin: 0; display: block; }
396
- .navbar li .dropdown ul > li { position: relative; display: block; width: 100%; float: left; text-align: left; height: auto; -webkit-border-radius: none; -moz-border-radius: none; -ms-border-radius: none; -o-border-radius: none; border-radius: none; }
397
- @media only screen and (min-width: 768px) and (max-width: 939px) { .navbar li .dropdown ul > li { max-width: 320px; word-wrap: break-word; } }
398
- .navbar li .dropdown ul > li a { display: block; padding: 0 20px; color: #d04526; border-bottom: 1px solid #cccccc; text-shadow: none; height: 51px; line-height: 49px; }
399
- @media only screen and (max-width: 767px) { .navbar li .dropdown ul > li a { padding: 0 20px; } }
400
- .navbar li .dropdown ul > li .dropdown { display: none; background: white; }
401
- .navbar li .dropdown ul li:first-child a { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; }
402
-
403
- .no-touch .navbar ul li:hover > a { position: relative; background: #868d92; z-index: 1000; }
404
-
405
- .no-touch .navbar ul li:hover .dropdown, .touch .navbar ul li.active .dropdown { min-height: 50px; max-height: 561px; overflow: visible; height: auto; width: 100%; padding: 0; border-top: 1px solid #3e4043; -webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3); -moz-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3); box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3); }
406
-
407
- .no-touch .navbar ul li:hover .dropdown ul { position: relative; top: 0; min-height: 50px; max-height: 250px; height: auto; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; }
408
- @media only screen and (max-width: 767px) { .no-touch .navbar ul li:hover .dropdown ul { overflow: auto; background: #36393b; }
409
- .no-touch .navbar ul li:hover .dropdown ul li { border-bottom: #3e4043; }
410
- .no-touch .navbar ul li:hover .dropdown ul li a { color: white; border-bottom: 1px solid #313436; }
411
- .no-touch .navbar ul li:hover .dropdown ul li a:hover { color: #d04526; } }
412
- .no-touch .navbar ul li:hover .dropdown ul li { min-height: 50px; }
413
-
414
- .no-touch .navbar li .dropdown ul > li:hover .dropdown, .touch .navbar li .dropdown ul > li.active .dropdown { border-top: none; display: block; position: absolute; z-index: 9999; left: 100%; top: 0px; margin-top: 0; }
415
- @media only screen and (max-width: 767px) { .no-touch .navbar li .dropdown ul > li:hover .dropdown, .touch .navbar li .dropdown ul > li.active .dropdown { position: relative; left: 0; }
416
- .no-touch .navbar li .dropdown ul > li:hover .dropdown ul, .touch .navbar li .dropdown ul > li.active .dropdown ul { background: #252728 !important; } }
417
-
418
- .no-touch .navbar li .dropdown ul li a:hover { background: #f2f2f2; }
419
-
420
- .touch .navbar a:hover { color: white !important; }
421
-
422
- .subnav { display: block; width: auto; overflow: hidden; margin: 0 0 18px 0; padding-top: 4px; }
423
- .subnav li, .subnav dt, .subnav dd { float: left; display: inline; margin-left: 9px; margin-bottom: 4px; }
424
- .subnav li:first-child, .subnav dt:first-child, .subnav dd:first-child { margin-left: 0; }
425
- .subnav dt { color: #999; font-weight: normal; }
426
- .subnav li a, .subnav dd a { color: #05390a; font-size: 15px; text-decoration: none; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
427
- .subnav li.active a, .subnav dd.active a { background: #5dbb73; padding: 5px 9px; text-shadow: 0 1px 1px #77d58e; }
428
-
429
- /* Buttons */
430
- .btn, .skiplink { display: inline-block; width: auto; background: #f2f2f2; -webkit-appearance: none; font-family: "Open Sans"; font-weight: 600; padding: 0 !important; text-align: center; }
431
- .btn > a, .btn input, .btn button, .skiplink > a, .skiplink input, .skiplink button { display: block; padding: 0 18px; color: white; height: 100%; }
432
- .btn input, .btn button, .skiplink input, .skiplink button { background: none; border: none; width: 100%; font-size: 100%; cursor: pointer; font-weight: 400; -webkit-appearance: none; -moz-appearance: none; appearance: none; }
433
- .btn.xlarge, .skiplink.xlarge { font-size: 30px; font-size: 1.875rem; height: 66px; line-height: 64px; }
434
- .btn.xlarge a, .skiplink.xlarge a { position: relative; padding: 0 30px; }
435
- .btn.xlarge.icon-left a, .skiplink.xlarge.icon-left a { padding-left: 66px; }
436
- .btn.xlarge.icon-left a:before, .skiplink.xlarge.icon-left a:before { left: 20px; }
437
- .btn.xlarge.icon-right a, .skiplink.xlarge.icon-right a { padding-right: 66px; }
438
- .btn.xlarge.icon-right a:after, .skiplink.xlarge.icon-right a:after { right: 20px; }
439
- .btn.large, .skiplink.large { font-size: 26px; font-size: 1.625rem; height: 58px; line-height: 56px; }
440
- .btn.large a, .skiplink.large a { position: relative; padding: 0 26px; }
441
- .btn.large.icon-left a, .skiplink.large.icon-left a { padding-left: 58px; }
442
- .btn.large.icon-left a:before, .skiplink.large.icon-left a:before { left: 17.33333px; }
443
- .btn.large.icon-right a, .skiplink.large.icon-right a { padding-right: 58px; }
444
- .btn.large.icon-right a:after, .skiplink.large.icon-right a:after { right: 17.33333px; }
445
- .btn.medium, .skiplink.medium { font-size: 16px; font-size: 1rem; height: 36px; line-height: 34px; }
446
- .btn.medium a, .skiplink.medium a { position: relative; padding: 0 16px; }
447
- .btn.medium.icon-left a, .skiplink.medium.icon-left a { padding-left: 36px; }
448
- .btn.medium.icon-left a:before, .skiplink.medium.icon-left a:before { left: 10.66667px; }
449
- .btn.medium.icon-right a, .skiplink.medium.icon-right a { padding-right: 36px; }
450
- .btn.medium.icon-right a:after, .skiplink.medium.icon-right a:after { right: 10.66667px; }
451
- .btn.medium a, .skiplink.medium a { padding: 0 18px; }
452
- .btn.small, .skiplink.small { font-size: 10px; font-size: 0.625rem; height: 23px; line-height: 21px; }
453
- .btn.small a, .skiplink.small a { position: relative; padding: 0 10px; }
454
- .btn.small.icon-left a, .skiplink.small.icon-left a { padding-left: 23px; }
455
- .btn.small.icon-left a:before, .skiplink.small.icon-left a:before { left: 6.66667px; }
456
- .btn.small.icon-right a, .skiplink.small.icon-right a { padding-right: 23px; }
457
- .btn.small.icon-right a:after, .skiplink.small.icon-right a:after { right: 6.66667px; }
458
- .btn.small a, .skiplink.small a { padding: 0 10px; }
459
- .btn.oval, .skiplink.oval { -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; }
460
- .btn.pill-left, .skiplink.pill-left { -webkit-border-radius: 500px 0 0 500px; -moz-border-radius: 500px 0 0 500px; -ms-border-radius: 500px 0 0 500px; -o-border-radius: 500px 0 0 500px; border-radius: 500px 0 0 500px; }
461
- .btn.pill-right, .skiplink.pill-right { -webkit-border-radius: 0 500px 500px 0; -moz-border-radius: 0 500px 500px 0; -ms-border-radius: 0 500px 500px 0; -o-border-radius: 0 500px 500px 0; border-radius: 0 500px 500px 0; }
462
- .btn.primary, .skiplink.primary { background: #3085d6; border: 1px solid #3085d6; }
463
- .btn.primary:hover, .skiplink.primary:hover { background: #5b9ede; }
464
- .btn.primary:active, .skiplink.primary:active { background: #236bb0; }
465
- .btn.secondary, .skiplink.secondary { background: #42a35a; border: 1px solid #42a35a; }
466
- .btn.secondary:hover, .skiplink.secondary:hover { background: #5bbd73; }
467
- .btn.secondary:active, .skiplink.secondary:active { background: #337f46; }
468
- .btn.default, .skiplink.default { background: #f2f2f2; border: 1px solid #f2f2f2; color: #555555; border: 1px solid #f2f2f2; }
469
- .btn.default:hover, .skiplink.default:hover { background: white; }
470
- .btn.default:active, .skiplink.default:active { background: #d8d8d8; }
471
- .btn.default:hover, .skiplink.default:hover { border: 1px solid #e5e5e5; }
472
- .btn.default a, .btn.default input, .btn.default button, .skiplink.default a, .skiplink.default input, .skiplink.default button { color: #555555; }
473
- .btn.info, .skiplink.info { background: #4a4d50; border: 1px solid #4a4d50; }
474
- .btn.info:hover, .skiplink.info:hover { background: #63676a; }
475
- .btn.info:active, .skiplink.info:active { background: #313436; }
476
- .btn.danger, .skiplink.danger { background: #ca3838; border: 1px solid #ca3838; }
477
- .btn.danger:hover, .skiplink.danger:hover { background: #d56060; }
478
- .btn.danger:active, .skiplink.danger:active { background: #a32c2c; }
479
- .btn.warning, .skiplink.warning { background: #f6b83f; border: 1px solid #f6b83f; color: #644405; }
480
- .btn.warning:hover, .skiplink.warning:hover { background: #f8ca70; }
481
- .btn.warning:active, .skiplink.warning:active { background: #f4a60e; }
482
- .btn.warning a, .btn.warning input, .btn.warning button, .skiplink.warning a, .skiplink.warning input, .skiplink.warning button { color: #644405; }
483
- .btn.success, .skiplink.success { background: #58c026; border: 1px solid #58c026; }
484
- .btn.success:hover, .skiplink.success:hover { background: #72d940; }
485
- .btn.success:active, .skiplink.success:active { background: #44951e; }
486
- .btn.metro, .metro .btn, .metro .skiplink, .btn.metro:hover, .metro .btn:hover, .metro .skiplink:hover, .skiplink.metro:hover, .btn.metro:active, .metro .btn:active, .metro .skiplink:active, .skiplink.metro:active, .skiplink.metro { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; }
487
- .btn.metro.rounded, .metro .rounded.btn, .metro .rounded.skiplink, .metro .rounded.btn:hover, .metro .rounded.skiplink:hover, .rounded.skiplink.metro:hover, .metro .rounded.btn:active, .metro .rounded.skiplink:active, .rounded.skiplink.metro:active, .skiplink.metro.rounded { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
488
- .btn.pretty, .pretty .btn, .pretty .skiplink, .btn.pretty:hover, .pretty .btn:hover, .pretty .skiplink:hover, .skiplink.pretty:hover, .btn.pretty:active, .pretty .btn:active, .pretty .skiplink:active, .skiplink.pretty:active, .skiplink.pretty { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
489
- .btn.pretty.squared, .pretty .squared.btn, .pretty .squared.skiplink, .pretty .squared.btn:hover, .pretty .squared.skiplink:hover, .squared.skiplink.pretty:hover, .pretty .squared.btn:active, .pretty .squared.skiplink:active, .squared.skiplink.pretty:active, .skiplink.pretty.squared { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; }
490
- .btn.pretty.primary, .pretty .primary.btn, .pretty .primary.skiplink, .pretty .primary.btn:hover, .pretty .primary.skiplink:hover, .primary.skiplink.pretty:hover, .pretty .primary.btn:active, .pretty .primary.skiplink:active, .primary.skiplink.pretty:active, .skiplink.pretty.primary { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #85b7e7), color-stop(100%, #2a85dc)); background-image: -webkit-linear-gradient(#85b7e7, #2a85dc); background-image: -moz-linear-gradient(#85b7e7, #2a85dc); background-image: -o-linear-gradient(#85b7e7, #2a85dc); background-image: linear-gradient(#85b7e7, #2a85dc); -webkit-box-shadow: inset 0 0 3px #f0f6fc; -moz-box-shadow: inset 0 0 3px #f0f6fc; box-shadow: inset 0 0 3px #f0f6fc; border: 1px solid #1f5e9b; }
491
- .pretty .primary.btn:hover, .pretty .primary.skiplink:hover, .primary.btn.pretty:hover, .primary.skiplink.pretty:hover, .pretty .primary.btn:hover:active, .pretty .primary.skiplink:hover:active, .skiplink.pretty.primary:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a2d4fc), color-stop(100%, #54b2fe)); background-image: -webkit-linear-gradient(#a2d4fc, #54b2fe); background-image: -moz-linear-gradient(#a2d4fc, #54b2fe); background-image: -o-linear-gradient(#a2d4fc, #54b2fe); background-image: linear-gradient(#a2d4fc, #54b2fe); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #0e90f8; }
492
- .pretty .primary.btn:active, .pretty .primary.skiplink:active, .pretty .primary.btn:active:hover, .pretty .primary.skiplink:active:hover, .primary.btn.pretty:active, .primary.skiplink.pretty:active, .skiplink.pretty.primary:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a85dc), color-stop(100%, #85b7e7)); background-image: -webkit-linear-gradient(#2a85dc, #85b7e7); background-image: -moz-linear-gradient(#2a85dc, #85b7e7); background-image: -o-linear-gradient(#2a85dc, #85b7e7); background-image: linear-gradient(#2a85dc, #85b7e7); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; }
493
- .btn.pretty.primary a, .pretty .primary.btn a, .pretty .primary.skiplink a, .pretty .primary.btn:hover a, .pretty .primary.skiplink:hover a, .primary.skiplink.pretty:hover a, .pretty .primary.btn:active a, .pretty .primary.skiplink:active a, .primary.skiplink.pretty:active a, .btn.pretty.primary input, .pretty .primary.btn input, .pretty .primary.skiplink input, .pretty .primary.btn:hover input, .pretty .primary.skiplink:hover input, .primary.skiplink.pretty:hover input, .pretty .primary.btn:active input, .pretty .primary.skiplink:active input, .primary.skiplink.pretty:active input, .btn.pretty.primary button, .pretty .primary.btn button, .pretty .primary.skiplink button, .pretty .primary.btn:hover button, .pretty .primary.skiplink:hover button, .primary.skiplink.pretty:hover button, .pretty .primary.btn:active button, .pretty .primary.skiplink:active button, .primary.skiplink.pretty:active button, .skiplink.pretty.primary a, .skiplink.pretty.primary input, .skiplink.pretty.primary button { text-shadow: 0 1px 1px #1a5186; }
494
- .btn.pretty.secondary, .pretty .secondary.btn, .pretty .secondary.skiplink, .pretty .secondary.btn:hover, .pretty .secondary.skiplink:hover, .secondary.skiplink.pretty:hover, .pretty .secondary.btn:active, .pretty .secondary.skiplink:active, .secondary.skiplink.pretty:active, .skiplink.pretty.secondary { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #80cb92), color-stop(100%, #3ca957)); background-image: -webkit-linear-gradient(#80cb92, #3ca957); background-image: -moz-linear-gradient(#80cb92, #3ca957); background-image: -o-linear-gradient(#80cb92, #3ca957); background-image: linear-gradient(#80cb92, #3ca957); -webkit-box-shadow: inset 0 0 3px #daf0e0; -moz-box-shadow: inset 0 0 3px #daf0e0; box-shadow: inset 0 0 3px #daf0e0; border: 1px solid #2c6d3c; }
495
- .pretty .secondary.btn:hover, .pretty .secondary.skiplink:hover, .secondary.btn.pretty:hover, .secondary.skiplink.pretty:hover, .pretty .secondary.btn:hover:active, .pretty .secondary.skiplink:hover:active, .skiplink.pretty.secondary:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a1d3ad), color-stop(100%, #68c07d)); background-image: -webkit-linear-gradient(#a1d3ad, #68c07d); background-image: -moz-linear-gradient(#a1d3ad, #68c07d); background-image: -o-linear-gradient(#a1d3ad, #68c07d); background-image: linear-gradient(#a1d3ad, #68c07d); -webkit-box-shadow: inset 0 0 3px #f8fcf9; -moz-box-shadow: inset 0 0 3px #f8fcf9; box-shadow: inset 0 0 3px #f8fcf9; border: 1px solid #469659; }
496
- .pretty .secondary.btn:active, .pretty .secondary.skiplink:active, .pretty .secondary.btn:active:hover, .pretty .secondary.skiplink:active:hover, .secondary.btn.pretty:active, .secondary.skiplink.pretty:active, .skiplink.pretty.secondary:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3ca957), color-stop(100%, #80cb92)); background-image: -webkit-linear-gradient(#3ca957, #80cb92); background-image: -moz-linear-gradient(#3ca957, #80cb92); background-image: -o-linear-gradient(#3ca957, #80cb92); background-image: linear-gradient(#3ca957, #80cb92); -webkit-box-shadow: inset 0 0 3px #ecf8ef; -moz-box-shadow: inset 0 0 3px #ecf8ef; box-shadow: inset 0 0 3px #ecf8ef; }
497
- .btn.pretty.secondary a, .pretty .secondary.btn a, .pretty .secondary.skiplink a, .pretty .secondary.btn:hover a, .pretty .secondary.skiplink:hover a, .secondary.skiplink.pretty:hover a, .pretty .secondary.btn:active a, .pretty .secondary.skiplink:active a, .secondary.skiplink.pretty:active a, .btn.pretty.secondary input, .pretty .secondary.btn input, .pretty .secondary.skiplink input, .pretty .secondary.btn:hover input, .pretty .secondary.skiplink:hover input, .secondary.skiplink.pretty:hover input, .pretty .secondary.btn:active input, .pretty .secondary.skiplink:active input, .secondary.skiplink.pretty:active input, .btn.pretty.secondary button, .pretty .secondary.btn button, .pretty .secondary.skiplink button, .pretty .secondary.btn:hover button, .pretty .secondary.skiplink:hover button, .secondary.skiplink.pretty:hover button, .pretty .secondary.btn:active button, .pretty .secondary.skiplink:active button, .secondary.skiplink.pretty:active button, .skiplink.pretty.secondary a, .skiplink.pretty.secondary input, .skiplink.pretty.secondary button { text-shadow: 0 1px 1px #255a32; }
498
- .btn.pretty.default, .pretty .default.btn, .pretty .default.skiplink, .pretty .default.btn:hover, .pretty .default.skiplink:hover, .default.skiplink.pretty:hover, .pretty .default.btn:active, .pretty .default.skiplink:active, .default.skiplink.pretty:active, .skiplink.pretty.default { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f3f1f1)); background-image: -webkit-linear-gradient(#ffffff, #f3f1f1); background-image: -moz-linear-gradient(#ffffff, #f3f1f1); background-image: -o-linear-gradient(#ffffff, #f3f1f1); background-image: linear-gradient(#ffffff, #f3f1f1); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #cccccc; }
499
- .pretty .default.btn:hover, .pretty .default.skiplink:hover, .default.btn.pretty:hover, .default.skiplink.pretty:hover, .pretty .default.btn:hover:active, .pretty .default.skiplink:hover:active, .skiplink.pretty.default:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #ffffff)); background-image: -webkit-linear-gradient(#ffffff, #ffffff); background-image: -moz-linear-gradient(#ffffff, #ffffff); background-image: -o-linear-gradient(#ffffff, #ffffff); background-image: linear-gradient(#ffffff, #ffffff); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #d9d9d9; }
500
- .pretty .default.btn:active, .pretty .default.skiplink:active, .pretty .default.btn:active:hover, .pretty .default.skiplink:active:hover, .default.btn.pretty:active, .default.skiplink.pretty:active, .skiplink.pretty.default:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f3f1f1), color-stop(100%, #ffffff)); background-image: -webkit-linear-gradient(#f3f1f1, #ffffff); background-image: -moz-linear-gradient(#f3f1f1, #ffffff); background-image: -o-linear-gradient(#f3f1f1, #ffffff); background-image: linear-gradient(#f3f1f1, #ffffff); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; }
501
- .btn.pretty.default a, .pretty .default.btn a, .pretty .default.skiplink a, .pretty .default.btn:hover a, .pretty .default.skiplink:hover a, .default.skiplink.pretty:hover a, .pretty .default.btn:active a, .pretty .default.skiplink:active a, .default.skiplink.pretty:active a, .btn.pretty.default input, .pretty .default.btn input, .pretty .default.skiplink input, .pretty .default.btn:hover input, .pretty .default.skiplink:hover input, .default.skiplink.pretty:hover input, .pretty .default.btn:active input, .pretty .default.skiplink:active input, .default.skiplink.pretty:active input, .btn.pretty.default button, .pretty .default.btn button, .pretty .default.skiplink button, .pretty .default.btn:hover button, .pretty .default.skiplink:hover button, .default.skiplink.pretty:hover button, .pretty .default.btn:active button, .pretty .default.skiplink:active button, .default.skiplink.pretty:active button, .skiplink.pretty.default a, .skiplink.pretty.default input, .skiplink.pretty.default button { text-shadow: 0 1px 1px white; }
502
- .btn.pretty.info, .pretty .info.btn, .pretty .info.skiplink, .pretty .info.btn:hover, .pretty .info.skiplink:hover, .info.skiplink.pretty:hover, .pretty .info.btn:active, .pretty .info.skiplink:active, .info.skiplink.pretty:active, .skiplink.pretty.info { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(100%, #464d54)); background-image: -webkit-linear-gradient(#7b8085, #464d54); background-image: -moz-linear-gradient(#7b8085, #464d54); background-image: -o-linear-gradient(#7b8085, #464d54); background-image: linear-gradient(#7b8085, #464d54); -webkit-box-shadow: inset 0 0 3px #bdc0c2; -moz-box-shadow: inset 0 0 3px #bdc0c2; box-shadow: inset 0 0 3px #bdc0c2; border: 1px solid #252728; }
503
- .pretty .info.btn:hover, .pretty .info.skiplink:hover, .info.btn.pretty:hover, .info.skiplink.pretty:hover, .pretty .info.btn:hover:active, .pretty .info.skiplink:hover:active, .skiplink.pretty.info:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #aeb3b6), color-stop(100%, #808e98)); background-image: -webkit-linear-gradient(#aeb3b6, #808e98); background-image: -moz-linear-gradient(#aeb3b6, #808e98); background-image: -o-linear-gradient(#aeb3b6, #808e98); background-image: linear-gradient(#aeb3b6, #808e98); -webkit-box-shadow: inset 0 0 3px #f1f2f3; -moz-box-shadow: inset 0 0 3px #f1f2f3; box-shadow: inset 0 0 3px #f1f2f3; border: 1px solid #60676b; }
504
- .pretty .info.btn:active, .pretty .info.skiplink:active, .pretty .info.btn:active:hover, .pretty .info.skiplink:active:hover, .info.btn.pretty:active, .info.skiplink.pretty:active, .skiplink.pretty.info:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #464d54), color-stop(100%, #7b8085)); background-image: -webkit-linear-gradient(#464d54, #7b8085); background-image: -moz-linear-gradient(#464d54, #7b8085); background-image: -o-linear-gradient(#464d54, #7b8085); background-image: linear-gradient(#464d54, #7b8085); -webkit-box-shadow: inset 0 0 3px #cbcdce; -moz-box-shadow: inset 0 0 3px #cbcdce; box-shadow: inset 0 0 3px #cbcdce; }
505
- .btn.pretty.info a, .pretty .info.btn a, .pretty .info.skiplink a, .pretty .info.btn:hover a, .pretty .info.skiplink:hover a, .info.skiplink.pretty:hover a, .pretty .info.btn:active a, .pretty .info.skiplink:active a, .info.skiplink.pretty:active a, .btn.pretty.info input, .pretty .info.btn input, .pretty .info.skiplink input, .pretty .info.btn:hover input, .pretty .info.skiplink:hover input, .info.skiplink.pretty:hover input, .pretty .info.btn:active input, .pretty .info.skiplink:active input, .info.skiplink.pretty:active input, .btn.pretty.info button, .pretty .info.btn button, .pretty .info.skiplink button, .pretty .info.btn:hover button, .pretty .info.skiplink:hover button, .info.skiplink.pretty:hover button, .pretty .info.btn:active button, .pretty .info.skiplink:active button, .info.skiplink.pretty:active button, .skiplink.pretty.info a, .skiplink.pretty.info input, .skiplink.pretty.info button { text-shadow: 0 1px 1px #191a1b; }
506
- .btn.pretty.danger, .pretty .danger.btn, .pretty .danger.skiplink, .pretty .danger.btn:hover, .pretty .danger.skiplink:hover, .danger.skiplink.pretty:hover, .pretty .danger.btn:active, .pretty .danger.skiplink:active, .danger.skiplink.pretty:active, .skiplink.pretty.danger { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #df8989), color-stop(100%, #d03232)); background-image: -webkit-linear-gradient(#df8989, #d03232); background-image: -moz-linear-gradient(#df8989, #d03232); background-image: -o-linear-gradient(#df8989, #d03232); background-image: linear-gradient(#df8989, #d03232); -webkit-box-shadow: inset 0 0 3px #faeded; -moz-box-shadow: inset 0 0 3px #faeded; box-shadow: inset 0 0 3px #faeded; border: 1px solid #8f2626; }
507
- .pretty .danger.btn:hover, .pretty .danger.skiplink:hover, .danger.btn.pretty:hover, .danger.skiplink.pretty:hover, .pretty .danger.btn:hover:active, .pretty .danger.skiplink:hover:active, .skiplink.pretty.danger:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f79696), color-stop(100%, #f64a4a)); background-image: -webkit-linear-gradient(#f79696, #f64a4a); background-image: -moz-linear-gradient(#f79696, #f64a4a); background-image: -o-linear-gradient(#f79696, #f64a4a); background-image: linear-gradient(#f79696, #f64a4a); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #e21212; }
508
- .pretty .danger.btn:active, .pretty .danger.skiplink:active, .pretty .danger.btn:active:hover, .pretty .danger.skiplink:active:hover, .danger.btn.pretty:active, .danger.skiplink.pretty:active, .skiplink.pretty.danger:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d03232), color-stop(100%, #df8989)); background-image: -webkit-linear-gradient(#d03232, #df8989); background-image: -moz-linear-gradient(#d03232, #df8989); background-image: -o-linear-gradient(#d03232, #df8989); background-image: linear-gradient(#d03232, #df8989); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; }
509
- .btn.pretty.danger a, .pretty .danger.btn a, .pretty .danger.skiplink a, .pretty .danger.btn:hover a, .pretty .danger.skiplink:hover a, .danger.skiplink.pretty:hover a, .pretty .danger.btn:active a, .pretty .danger.skiplink:active a, .danger.skiplink.pretty:active a, .btn.pretty.danger input, .pretty .danger.btn input, .pretty .danger.skiplink input, .pretty .danger.btn:hover input, .pretty .danger.skiplink:hover input, .danger.skiplink.pretty:hover input, .pretty .danger.btn:active input, .pretty .danger.skiplink:active input, .danger.skiplink.pretty:active input, .btn.pretty.danger button, .pretty .danger.btn button, .pretty .danger.skiplink button, .pretty .danger.btn:hover button, .pretty .danger.skiplink:hover button, .danger.skiplink.pretty:hover button, .pretty .danger.btn:active button, .pretty .danger.skiplink:active button, .danger.skiplink.pretty:active button, .skiplink.pretty.danger a, .skiplink.pretty.danger input, .skiplink.pretty.danger button { text-shadow: 0 1px 1px #7b2121; }
510
- .btn.pretty.warning, .pretty .warning.btn, .pretty .warning.skiplink, .pretty .warning.btn:hover, .pretty .warning.skiplink:hover, .warning.skiplink.pretty:hover, .pretty .warning.btn:active, .pretty .warning.skiplink:active, .warning.skiplink.pretty:active, .skiplink.pretty.warning { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbdca0), color-stop(100%, #fbba3a)); background-image: -webkit-linear-gradient(#fbdca0, #fbba3a); background-image: -moz-linear-gradient(#fbdca0, #fbba3a); background-image: -o-linear-gradient(#fbdca0, #fbba3a); background-image: linear-gradient(#fbdca0, #fbba3a); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #de960a; color: #644405; }
511
- .pretty .warning.btn:hover, .pretty .warning.skiplink:hover, .warning.btn.pretty:hover, .warning.skiplink.pretty:hover, .pretty .warning.btn:hover:active, .pretty .warning.skiplink:hover:active, .skiplink.pretty.warning:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #feecca), color-stop(100%, #ffd37d)); background-image: -webkit-linear-gradient(#feecca, #ffd37d); background-image: -moz-linear-gradient(#feecca, #ffd37d); background-image: -o-linear-gradient(#feecca, #ffd37d); background-image: linear-gradient(#feecca, #ffd37d); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #fcb834; }
512
- .pretty .warning.btn:active, .pretty .warning.skiplink:active, .pretty .warning.btn:active:hover, .pretty .warning.skiplink:active:hover, .warning.btn.pretty:active, .warning.skiplink.pretty:active, .skiplink.pretty.warning:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbba3a), color-stop(100%, #fbdca0)); background-image: -webkit-linear-gradient(#fbba3a, #fbdca0); background-image: -moz-linear-gradient(#fbba3a, #fbdca0); background-image: -o-linear-gradient(#fbba3a, #fbdca0); background-image: linear-gradient(#fbba3a, #fbdca0); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; }
513
- .btn.pretty.warning a, .pretty .warning.btn a, .pretty .warning.skiplink a, .pretty .warning.btn:hover a, .pretty .warning.skiplink:hover a, .warning.skiplink.pretty:hover a, .pretty .warning.btn:active a, .pretty .warning.skiplink:active a, .warning.skiplink.pretty:active a, .btn.pretty.warning input, .pretty .warning.btn input, .pretty .warning.skiplink input, .pretty .warning.btn:hover input, .pretty .warning.skiplink:hover input, .warning.skiplink.pretty:hover input, .pretty .warning.btn:active input, .pretty .warning.skiplink:active input, .warning.skiplink.pretty:active input, .btn.pretty.warning button, .pretty .warning.btn button, .pretty .warning.skiplink button, .pretty .warning.btn:hover button, .pretty .warning.skiplink:hover button, .warning.skiplink.pretty:hover button, .pretty .warning.btn:active button, .pretty .warning.skiplink:active button, .warning.skiplink.pretty:active button, .skiplink.pretty.warning a, .skiplink.pretty.warning input, .skiplink.pretty.warning button { text-shadow: 0 1px 1px #fbdca0; }
514
- .btn.pretty.success, .pretty .success.btn, .pretty .success.skiplink, .pretty .success.btn:hover, .pretty .success.skiplink:hover, .success.skiplink.pretty:hover, .pretty .success.btn:active, .pretty .success.skiplink:active, .success.skiplink.pretty:active, .skiplink.pretty.success { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #91e26a), color-stop(100%, #56c620)); background-image: -webkit-linear-gradient(#91e26a, #56c620); background-image: -moz-linear-gradient(#91e26a, #56c620); background-image: -o-linear-gradient(#91e26a, #56c620); background-image: linear-gradient(#91e26a, #56c620); -webkit-box-shadow: inset 0 0 3px #e0f7d5; -moz-box-shadow: inset 0 0 3px #e0f7d5; box-shadow: inset 0 0 3px #e0f7d5; border: 1px solid #3b8019; }
515
- .pretty .success.btn:hover, .pretty .success.skiplink:hover, .success.btn.pretty:hover, .success.skiplink.pretty:hover, .pretty .success.btn:hover:active, .pretty .success.skiplink:hover:active, .skiplink.pretty.success:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #96e570), color-stop(100%, #64df29)); background-image: -webkit-linear-gradient(#96e570, #64df29); background-image: -moz-linear-gradient(#96e570, #64df29); background-image: -o-linear-gradient(#96e570, #64df29); background-image: linear-gradient(#96e570, #64df29); -webkit-box-shadow: inset 0 0 3px #e5f9db; -moz-box-shadow: inset 0 0 3px #e5f9db; box-shadow: inset 0 0 3px #e5f9db; border: 1px solid #479f1d; }
516
- .pretty .success.btn:active, .pretty .success.skiplink:active, .pretty .success.btn:active:hover, .pretty .success.skiplink:active:hover, .success.btn.pretty:active, .success.skiplink.pretty:active, .skiplink.pretty.success:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #56c620), color-stop(100%, #91e26a)); background-image: -webkit-linear-gradient(#56c620, #91e26a); background-image: -moz-linear-gradient(#56c620, #91e26a); background-image: -o-linear-gradient(#56c620, #91e26a); background-image: linear-gradient(#56c620, #91e26a); -webkit-box-shadow: inset 0 0 3px #f0fbea; -moz-box-shadow: inset 0 0 3px #f0fbea; box-shadow: inset 0 0 3px #f0fbea; }
517
- .btn.pretty.success a, .pretty .success.btn a, .pretty .success.skiplink a, .pretty .success.btn:hover a, .pretty .success.skiplink:hover a, .success.skiplink.pretty:hover a, .pretty .success.btn:active a, .pretty .success.skiplink:active a, .success.skiplink.pretty:active a, .btn.pretty.success input, .pretty .success.btn input, .pretty .success.skiplink input, .pretty .success.btn:hover input, .pretty .success.skiplink:hover input, .success.skiplink.pretty:hover input, .pretty .success.btn:active input, .pretty .success.skiplink:active input, .success.skiplink.pretty:active input, .btn.pretty.success button, .pretty .success.btn button, .pretty .success.skiplink button, .pretty .success.btn:hover button, .pretty .success.skiplink:hover button, .success.skiplink.pretty:hover button, .pretty .success.btn:active button, .pretty .success.skiplink:active button, .success.skiplink.pretty:active button, .skiplink.pretty.success a, .skiplink.pretty.success input, .skiplink.pretty.success button { text-shadow: 0 1px 1px #316b15; }
518
-
519
339
  /* Icons */
520
340
  [class^="icon-"] a:before, [class*=" icon-"] a:before, [class^="icon-"] a:after, [class*=" icon-"] a:after, i[class^="icon-"], i[class*=" icon-"] { font-family: "entypo"; position: absolute; text-decoration: none; zoom: 1; }
521
341
 
@@ -1659,21 +1479,21 @@ i.icon-logo-db:before { content: "\f603"; height: inherit; }
1659
1479
 
1660
1480
  /* Form Styles */
1661
1481
  form { margin: 0 0 18px; }
1662
- form label { display: block; font-size: 16px; font-size: 1rem; line-height: 1.625em; cursor: pointer; margin-bottom: 9px; }
1482
+ form label { display: block; font-size: 14px; font-size: 1rem; line-height: 1.85714em; cursor: pointer; margin-bottom: 9px; }
1663
1483
  form label.inline { display: inline-block; padding-right: 20px; }
1664
1484
  form dt { margin: 0; }
1665
1485
  form textarea { height: 150px; }
1666
1486
  form ul, form ul li { margin-left: 0; list-style-type: none; }
1667
- form fieldset { border-style: solid; border-width: 0.0625em; padding: 1.5625em; border-color: #d8d8d8; margin: 18px 0; }
1487
+ form fieldset { border-style: solid; border-width: 0.07143em; padding: 1.78571em; border-color: #d8d8d8; margin: 18px 0; }
1668
1488
  form fieldset legend { padding: 5px 10px; }
1669
1489
 
1670
- .field { position: relative; max-width: 100%; margin-bottom: 10px; vertical-align: middle; /* remove inline-block white-space — A 0px font-size = 0px of white space */ }
1490
+ .field { position: relative; max-width: 100%; margin-bottom: 10px; vertical-align: middle; font-size: 16px; /* remove inline-block white-space — A 0px font-size = 0px of white space */ }
1671
1491
  .field.metro, .field .metro { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; }
1672
- .field input, .field input[type="*"], .field textarea { max-width: 100%; width: 100%; padding: 0; margin: 0; border: none; outline: none; resize: none; -webkit-appearance: none; font-family: "Open Sans"; font-weight: 300; font-size: 16px; font-size: 1rem; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }
1492
+ .field input, .field input[type="*"], .field textarea { max-width: 100%; width: 100%; padding: 0; margin: 0; border: none; outline: none; resize: none; -webkit-appearance: none; font-family: "Open Sans"; font-weight: 300; font-size: 14px; font-size: 1rem; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }
1673
1493
  .field .radio, .field .checkbox { position: relative; }
1674
1494
  .field .radio input[type="radio"], .field .checkbox input[type="checkbox"] { display: none; }
1675
- .field .input { position: relative; padding: 0 10px; background: #fff; border: 1px solid #d8d8d8; height: 36px; line-height: 34px; font-size: 16px; font-size: 1rem; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
1676
- .field .input.search { height: 36px; line-height: 34px; -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; }
1495
+ .field .input { position: relative; padding: 0 10px; background: #fff; border: 1px solid #d8d8d8; height: 31px; line-height: 29px; font-size: 14px; font-size: 1rem; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
1496
+ .field .input.search { height: 31px; line-height: 29px; -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; padding-right: 0; }
1677
1497
  .field .input.textarea { height: auto; }
1678
1498
  .field .xnarrow { width: 13.33333%; }
1679
1499
  .field .narrow { width: 30.66667%; }
@@ -1686,7 +1506,7 @@ form fieldset legend { padding: 5px 10px; }
1686
1506
  .field .xnarrow:first-child, .field .narrow:first-child, .field .normal:first-child, .field .wide:first-child, .field .xwide:first-child, .field .xxwide:first-child { margin-right: 3.94%; margin-left: 0; }
1687
1507
  .field .xnarrow:first-child:last-child, .field .narrow:first-child:last-child, .field .normal:first-child:last-child, .field .wide:first-child:last-child, .field .xwide:first-child:last-child, .field .xxwide:first-child:last-child { margin: 0; }
1688
1508
  .field label + .xnarrow:last-child, .field label + .narrow:last-child, .field label + .normal:last-child, .field label + .wide:last-child, .field label + .xwide:last-child, .field label + .xxwide:last-child { margin-left: 0; }
1689
- @media only screen and (max-width: 960px) { .field .xxwide:first-child, .field .xxwide:last-child { margin-right: 0%; } }
1509
+ @media only screen and (max-width: 1190px) { .field .xxwide:first-child, .field .xxwide:last-child { margin-right: 0%; } }
1690
1510
  .field.prepend, .field.append { font-size: 0; white-space: nowrap; padding-bottom: 3.5px; }
1691
1511
  .field.prepend input, .field.prepend .input, .field.append input, .field.append .input { display: inline-block; max-width: 100%; }
1692
1512
  .field.prepend input, .field.prepend .input { -webkit-border-radius: 0px 4px 4px 0; -moz-border-radius: 0px 4px 4px 0; -ms-border-radius: 0px 4px 4px 0; -o-border-radius: 0px 4px 4px 0; border-radius: 0px 4px 4px 0; }
@@ -1695,8 +1515,8 @@ form fieldset legend { padding: 5px 10px; }
1695
1515
  .field.prepend.append input:first-child { -webkit-border-radius: 4px 0 0 4px; -moz-border-radius: 4px 0 0 4px; -ms-border-radius: 4px 0 0 4px; -o-border-radius: 4px 0 0 4px; border-radius: 4px 0 0 4px; }
1696
1516
  .field.prepend.append input:last-child { margin-left: -1px; -webkit-border-radius: 0px 4px 4px 0; -moz-border-radius: 0px 4px 4px 0; -ms-border-radius: 0px 4px 4px 0; -o-border-radius: 0px 4px 4px 0; border-radius: 0px 4px 4px 0; }
1697
1517
  .field.prepend .adjoined, .field.append .adjoined, .field.prepend .btn, .field.append .btn { position: relative; display: inline-block; margin-bottom: 0; z-index: 99; }
1698
- .field.prepend .btn a, .field.append .btn a { padding: 0 12px; }
1699
- .field.prepend .adjoined, .field.append .adjoined { padding: 0 10px 0 10px; background: #f2f2f2; border: 1px solid #d8d8d8; font-family: "Open Sans"; font-weight: 600; color: #555555; font-size: 16px; font-size: 1rem; height: 36px; line-height: 34px; }
1518
+ .field.prepend .btn a, .field.prepend .btn input, .field.prepend .btn button, .field.append .btn a, .field.append .btn input, .field.append .btn button { padding: 0 12px; }
1519
+ .field.prepend .adjoined, .field.append .adjoined { padding: 0 10px 0 10px; background: #f2f2f2; border: 1px solid #d8d8d8; font-family: "Open Sans"; font-weight: 600; color: #555555; font-size: 14px; font-size: 1rem; height: 31px; line-height: 29px; }
1700
1520
  .field.prepend *:first-child { -webkit-border-radius: 4px 0 0 4px; -moz-border-radius: 4px 0 0 4px; -ms-border-radius: 4px 0 0 4px; -o-border-radius: 4px 0 0 4px; border-radius: 4px 0 0 4px; }
1701
1521
  .field.prepend input:first-child { margin-right: 0; }
1702
1522
  .field.prepend .adjoined, .field.prepend .btn { margin-right: -1px; }
@@ -1706,19 +1526,22 @@ form fieldset legend { padding: 5px 10px; }
1706
1526
  .field.append input:first-child { margin-right: 0; }
1707
1527
  .field.double input, .field.double .input { width: 50% !important; }
1708
1528
  .field.double input:last-child, .field.double .input:last-child { margin-left: -1px; }
1709
- .field.danger:after { font-family: "entypo"; content: "\2716"; font-size: 16px; position: absolute; top: 5px; right: 15px; z-index: 999; color: #ca3838; }
1529
+ .field.danger:after { font-family: "entypo"; content: "\2716"; font-size: 14px; position: absolute; top: 12.0%; right: 15px; z-index: 999; color: #ca3838; }
1530
+ .field.danger.no-icon:after { display: none; }
1710
1531
  .field.danger.append:after, .field.danger.prepend:after { content: ""; }
1711
1532
  .field.danger input, .field.danger .input, .field.danger textarea, .field.danger .textarea, .field.danger .radio span, .field.danger .checkbox span, .field.danger .picker { border-color: #ca3838; color: #ca3838; background: #f0c5c5; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; }
1712
1533
  .field.danger textarea { color: #ca3838; }
1713
1534
  .field.danger input::-webkit-input-placeholder, .field.danger textarea::-webkit-input-placeholder { color: #ca3838; }
1714
1535
  .field.danger input:-moz-placeholder, .field.danger textarea:-moz-placeholder { color: #ca3838; }
1715
- .field.warning:after { font-family: "entypo"; content: "\26a0"; font-size: 16px; position: absolute; top: 5px; right: 15px; z-index: 999; color: #f6b83f; }
1536
+ .field.warning:after { font-family: "entypo"; content: "\26a0"; font-size: 14px; position: absolute; top: 12.0%; right: 15px; z-index: 999; color: #f6b83f; }
1537
+ .field.warning.no-icon:after { display: none; }
1716
1538
  .field.warning.append:after, .field.warning.prepend:after { content: ""; }
1717
1539
  .field.warning input, .field.warning .input, .field.warning textarea, .field.warning .textarea, .field.warning .radio span, .field.warning .checkbox span, .field.warning .picker { border-color: #f6b83f; color: #f6b83f; background: #fef7ea; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; }
1718
1540
  .field.warning textarea { color: #f6b83f; }
1719
1541
  .field.warning input::-webkit-input-placeholder, .field.warning textarea::-webkit-input-placeholder { color: #f6b83f; }
1720
1542
  .field.warning input:-moz-placeholder, .field.warning textarea:-moz-placeholder { color: #f6b83f; }
1721
- .field.success:after { font-family: "entypo"; content: "\2713"; font-size: 16px; position: absolute; top: 5px; right: 15px; z-index: 999; color: #58c026; }
1543
+ .field.success:after { font-family: "entypo"; content: "\2713"; font-size: 14px; position: absolute; top: 12.0%; right: 15px; z-index: 999; color: #58c026; }
1544
+ .field.success.no-icon:after { display: none; }
1722
1545
  .field.success.append:after, .field.success.prepend:after { content: ""; }
1723
1546
  .field.success input, .field.success .input, .field.success textarea, .field.success .textarea, .field.success .radio span, .field.success .checkbox span, .field.success .picker { border-color: #58c026; color: #58c026; background: #c0eeaa; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; }
1724
1547
  .field.success textarea { color: #58c026; }
@@ -1740,15 +1563,141 @@ form fieldset legend { padding: 5px 10px; }
1740
1563
  .field .radio span, .field .checkbox span { display: inline-block; width: 16px; height: 16px; position: relative; top: 2px; border: solid 1px #cccccc; background: #fefefe; }
1741
1564
  .field .radio span { -webkit-border-radius: 8px; -moz-border-radius: 8px; -ms-border-radius: 8px; -o-border-radius: 8px; border-radius: 8px; }
1742
1565
  .field .checkbox span { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; }
1743
- .field .radio.checked i, .field .checkbox.checked i { position: absolute; top: 0; left: -7px; }
1566
+ .field .radio.checked i, .field .checkbox.checked i { position: absolute; top: -1px; left: -8px; line-height: 16px; }
1744
1567
 
1745
1568
  .field .text input[type="search"] { -webkit-appearance: textfield; }
1746
1569
 
1747
1570
  /* Form Picker Element (<select>) */
1748
- .picker { position: relative; width: auto; display: inline-block; margin: 0 0 2px 1.2%; overflow: hidden; border: 1px solid #e5e5e5; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; font-family: "Open Sans"; font-weight: 600; height: 36px; line-height: 34px; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f2f2f2)); background-image: -webkit-linear-gradient(#ffffff, #f2f2f2); background-image: -moz-linear-gradient(#ffffff, #f2f2f2); background-image: -o-linear-gradient(#ffffff, #f2f2f2); background-image: linear-gradient(#ffffff, #f2f2f2); }
1749
- .picker:after { content: "\25BE"; z-index: 0; position: absolute; right: 8%; top: 0%; color: #555555; }
1571
+ .picker { position: relative; width: auto; display: inline-block; margin: 0 0 2px 1.2%; overflow: hidden; border: 1px solid #e5e5e5; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; font-family: "Open Sans"; font-weight: 600; height: auto; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f2f2f2)); background-image: -webkit-linear-gradient(#ffffff, #f2f2f2); background-image: -moz-linear-gradient(#ffffff, #f2f2f2); background-image: -o-linear-gradient(#ffffff, #f2f2f2); background-image: linear-gradient(#ffffff, #f2f2f2); }
1572
+ .picker:after { content: "\25BE"; z-index: 0; position: absolute; right: 8%; top: 50%; margin-top: -12px; color: #555555; }
1750
1573
  .picker:first-child { margin-left: 0; }
1751
- .picker select { position: relative; display: block; min-width: 100%; width: 135%; height: 34px; padding: 6px 45px 6px 15px; color: #555555; border: none; background: transparent; outline: none; -webkit-appearance: none; z-index: 99; cursor: pointer; font-size: 16px; font-size: 1rem; }
1574
+ .picker select { position: relative; display: block; min-width: 100%; width: 135%; height: 34px; padding: 6px 45px 6px 15px; color: #555555; border: none; background: transparent; outline: none; -webkit-appearance: none; z-index: 99; cursor: pointer; font-size: 14px; font-size: 1rem; }
1575
+
1576
+ .ie9 .radio.checked i, .ie9 .checkbox.checked i { top: 0px; }
1577
+
1578
+ /* Buttons */
1579
+ .btn, .skiplink { display: inline-block; width: auto; background: #f2f2f2; -webkit-appearance: none; font-family: "Open Sans"; font-weight: 600; padding: 0 !important; text-align: center; }
1580
+ .btn > a, .btn input, .btn button, .skiplink > a, .skiplink input, .skiplink button { display: block; padding: 0 8px; color: white; height: 100%; }
1581
+ .btn input, .btn button, .skiplink input, .skiplink button { background: none; border: none; width: 100%; font-size: 100%; cursor: pointer; font-weight: 400; -webkit-appearance: none; -moz-appearance: none; appearance: none; }
1582
+ .btn.xlarge, .skiplink.xlarge { font-size: 30px; font-size: 2.14286rem; height: 66px; line-height: 64px; }
1583
+ .btn.xlarge a, .skiplink.xlarge a { position: relative; padding: 0 30px; }
1584
+ .btn.xlarge.icon-left a, .skiplink.xlarge.icon-left a { padding-left: 66px; }
1585
+ .btn.xlarge.icon-left a:before, .skiplink.xlarge.icon-left a:before { left: 20px; }
1586
+ .btn.xlarge.icon-right a, .skiplink.xlarge.icon-right a { padding-right: 66px; }
1587
+ .btn.xlarge.icon-right a:after, .skiplink.xlarge.icon-right a:after { right: 20px; }
1588
+ .btn.large, .skiplink.large { font-size: 23px; font-size: 1.64286rem; height: 51px; line-height: 49px; }
1589
+ .btn.large a, .skiplink.large a { position: relative; padding: 0 23px; }
1590
+ .btn.large.icon-left a, .skiplink.large.icon-left a { padding-left: 51px; }
1591
+ .btn.large.icon-left a:before, .skiplink.large.icon-left a:before { left: 15.33333px; }
1592
+ .btn.large.icon-right a, .skiplink.large.icon-right a { padding-right: 51px; }
1593
+ .btn.large.icon-right a:after, .skiplink.large.icon-right a:after { right: 15.33333px; }
1594
+ .btn.medium, .skiplink.medium { font-size: 14px; font-size: 1rem; height: 31px; line-height: 29px; }
1595
+ .btn.medium a, .skiplink.medium a { position: relative; padding: 0 14px; }
1596
+ .btn.medium.icon-left a, .skiplink.medium.icon-left a { padding-left: 31px; }
1597
+ .btn.medium.icon-left a:before, .skiplink.medium.icon-left a:before { left: 9.33333px; }
1598
+ .btn.medium.icon-right a, .skiplink.medium.icon-right a { padding-right: 31px; }
1599
+ .btn.medium.icon-right a:after, .skiplink.medium.icon-right a:after { right: 9.33333px; }
1600
+ .btn.medium a, .skiplink.medium a { padding: 0 18px; }
1601
+ .btn.small, .skiplink.small { font-size: 9px; font-size: 0.64286rem; height: 21px; line-height: 19px; }
1602
+ .btn.small a, .skiplink.small a { position: relative; padding: 0 9px; }
1603
+ .btn.small.icon-left a, .skiplink.small.icon-left a { padding-left: 21px; }
1604
+ .btn.small.icon-left a:before, .skiplink.small.icon-left a:before { left: 6px; }
1605
+ .btn.small.icon-right a, .skiplink.small.icon-right a { padding-right: 21px; }
1606
+ .btn.small.icon-right a:after, .skiplink.small.icon-right a:after { right: 6px; }
1607
+ .btn.small a, .skiplink.small a { padding: 0 9px; }
1608
+ .btn.oval, .skiplink.oval { -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; }
1609
+ .btn.pill-left, .skiplink.pill-left { -webkit-border-radius: 500px 0 0 500px; -moz-border-radius: 500px 0 0 500px; -ms-border-radius: 500px 0 0 500px; -o-border-radius: 500px 0 0 500px; border-radius: 500px 0 0 500px; }
1610
+ .btn.pill-right, .skiplink.pill-right { -webkit-border-radius: 0 500px 500px 0; -moz-border-radius: 0 500px 500px 0; -ms-border-radius: 0 500px 500px 0; -o-border-radius: 0 500px 500px 0; border-radius: 0 500px 500px 0; }
1611
+ .btn.primary, .skiplink.primary { background: #3085d6; border: 1px solid #3085d6; }
1612
+ .btn.primary:hover, .skiplink.primary:hover { background: #5b9ede; }
1613
+ .btn.primary:active, .skiplink.primary:active { background: #236bb0; }
1614
+ .btn.secondary, .skiplink.secondary { background: #42a35a; border: 1px solid #42a35a; }
1615
+ .btn.secondary:hover, .skiplink.secondary:hover { background: #5bbd73; }
1616
+ .btn.secondary:active, .skiplink.secondary:active { background: #337f46; }
1617
+ .btn.default, .skiplink.default { background: #f2f2f2; border: 1px solid #f2f2f2; color: #555555; border: 1px solid #f2f2f2; }
1618
+ .btn.default:hover, .skiplink.default:hover { background: white; }
1619
+ .btn.default:active, .skiplink.default:active { background: #d8d8d8; }
1620
+ .btn.default:hover, .skiplink.default:hover { border: 1px solid #e5e5e5; }
1621
+ .btn.default a, .btn.default input, .btn.default button, .skiplink.default a, .skiplink.default input, .skiplink.default button { color: #555555; }
1622
+ .btn.info, .skiplink.info { background: #4a4d50; border: 1px solid #4a4d50; }
1623
+ .btn.info:hover, .skiplink.info:hover { background: #63676a; }
1624
+ .btn.info:active, .skiplink.info:active { background: #313436; }
1625
+ .btn.danger, .skiplink.danger { background: #ca3838; border: 1px solid #ca3838; }
1626
+ .btn.danger:hover, .skiplink.danger:hover { background: #d56060; }
1627
+ .btn.danger:active, .skiplink.danger:active { background: #a32c2c; }
1628
+ .btn.warning, .skiplink.warning { background: #f6b83f; border: 1px solid #f6b83f; color: #644405; }
1629
+ .btn.warning:hover, .skiplink.warning:hover { background: #f8ca70; }
1630
+ .btn.warning:active, .skiplink.warning:active { background: #f4a60e; }
1631
+ .btn.warning a, .btn.warning input, .btn.warning button, .skiplink.warning a, .skiplink.warning input, .skiplink.warning button { color: #644405; }
1632
+ .btn.success, .skiplink.success { background: #58c026; border: 1px solid #58c026; }
1633
+ .btn.success:hover, .skiplink.success:hover { background: #72d940; }
1634
+ .btn.success:active, .skiplink.success:active { background: #44951e; }
1635
+ .btn.metro, .metro .btn, .metro .skiplink, .btn.metro:hover, .metro .btn:hover, .metro .skiplink:hover, .skiplink.metro:hover, .btn.metro:active, .metro .btn:active, .metro .skiplink:active, .skiplink.metro:active, .skiplink.metro { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; }
1636
+ .btn.metro.rounded, .metro .rounded.btn, .metro .rounded.skiplink, .metro .rounded.btn:hover, .metro .rounded.skiplink:hover, .rounded.skiplink.metro:hover, .metro .rounded.btn:active, .metro .rounded.skiplink:active, .rounded.skiplink.metro:active, .skiplink.metro.rounded { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
1637
+ .btn.pretty, .pretty .btn, .pretty .skiplink, .btn.pretty:hover, .pretty .btn:hover, .pretty .skiplink:hover, .skiplink.pretty:hover, .btn.pretty:active, .pretty .btn:active, .pretty .skiplink:active, .skiplink.pretty:active, .skiplink.pretty { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
1638
+ .btn.pretty.squared, .pretty .squared.btn, .pretty .squared.skiplink, .pretty .squared.btn:hover, .pretty .squared.skiplink:hover, .squared.skiplink.pretty:hover, .pretty .squared.btn:active, .pretty .squared.skiplink:active, .squared.skiplink.pretty:active, .skiplink.pretty.squared { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; }
1639
+ .btn.pretty.primary, .pretty .primary.btn, .pretty .primary.skiplink, .pretty .primary.btn:hover, .pretty .primary.skiplink:hover, .primary.skiplink.pretty:hover, .pretty .primary.btn:active, .pretty .primary.skiplink:active, .primary.skiplink.pretty:active, .skiplink.pretty.primary { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #85b7e7), color-stop(100%, #2a85dc)); background-image: -webkit-linear-gradient(#85b7e7, #2a85dc); background-image: -moz-linear-gradient(#85b7e7, #2a85dc); background-image: -o-linear-gradient(#85b7e7, #2a85dc); background-image: linear-gradient(#85b7e7, #2a85dc); -webkit-box-shadow: inset 0 0 3px #f0f6fc; -moz-box-shadow: inset 0 0 3px #f0f6fc; box-shadow: inset 0 0 3px #f0f6fc; border: 1px solid #1f5e9b; }
1640
+ .pretty .primary.btn:hover, .pretty .primary.skiplink:hover, .primary.btn.pretty:hover, .primary.skiplink.pretty:hover, .pretty .primary.btn:hover:active, .pretty .primary.skiplink:hover:active, .skiplink.pretty.primary:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a2d4fc), color-stop(100%, #54b2fe)); background-image: -webkit-linear-gradient(#a2d4fc, #54b2fe); background-image: -moz-linear-gradient(#a2d4fc, #54b2fe); background-image: -o-linear-gradient(#a2d4fc, #54b2fe); background-image: linear-gradient(#a2d4fc, #54b2fe); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #0e90f8; }
1641
+ .pretty .primary.btn:active, .pretty .primary.skiplink:active, .pretty .primary.btn:active:hover, .pretty .primary.skiplink:active:hover, .primary.btn.pretty:active, .primary.skiplink.pretty:active, .skiplink.pretty.primary:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a85dc), color-stop(100%, #85b7e7)); background-image: -webkit-linear-gradient(#2a85dc, #85b7e7); background-image: -moz-linear-gradient(#2a85dc, #85b7e7); background-image: -o-linear-gradient(#2a85dc, #85b7e7); background-image: linear-gradient(#2a85dc, #85b7e7); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; }
1642
+ .btn.pretty.primary a, .pretty .primary.btn a, .pretty .primary.skiplink a, .pretty .primary.btn:hover a, .pretty .primary.skiplink:hover a, .primary.skiplink.pretty:hover a, .pretty .primary.btn:active a, .pretty .primary.skiplink:active a, .primary.skiplink.pretty:active a, .btn.pretty.primary input, .pretty .primary.btn input, .pretty .primary.skiplink input, .pretty .primary.btn:hover input, .pretty .primary.skiplink:hover input, .primary.skiplink.pretty:hover input, .pretty .primary.btn:active input, .pretty .primary.skiplink:active input, .primary.skiplink.pretty:active input, .btn.pretty.primary button, .pretty .primary.btn button, .pretty .primary.skiplink button, .pretty .primary.btn:hover button, .pretty .primary.skiplink:hover button, .primary.skiplink.pretty:hover button, .pretty .primary.btn:active button, .pretty .primary.skiplink:active button, .primary.skiplink.pretty:active button, .skiplink.pretty.primary a, .skiplink.pretty.primary input, .skiplink.pretty.primary button { text-shadow: 0 1px 1px #1a5186; }
1643
+ .btn.pretty.secondary, .pretty .secondary.btn, .pretty .secondary.skiplink, .pretty .secondary.btn:hover, .pretty .secondary.skiplink:hover, .secondary.skiplink.pretty:hover, .pretty .secondary.btn:active, .pretty .secondary.skiplink:active, .secondary.skiplink.pretty:active, .skiplink.pretty.secondary { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #80cb92), color-stop(100%, #3ca957)); background-image: -webkit-linear-gradient(#80cb92, #3ca957); background-image: -moz-linear-gradient(#80cb92, #3ca957); background-image: -o-linear-gradient(#80cb92, #3ca957); background-image: linear-gradient(#80cb92, #3ca957); -webkit-box-shadow: inset 0 0 3px #daf0e0; -moz-box-shadow: inset 0 0 3px #daf0e0; box-shadow: inset 0 0 3px #daf0e0; border: 1px solid #2c6d3c; }
1644
+ .pretty .secondary.btn:hover, .pretty .secondary.skiplink:hover, .secondary.btn.pretty:hover, .secondary.skiplink.pretty:hover, .pretty .secondary.btn:hover:active, .pretty .secondary.skiplink:hover:active, .skiplink.pretty.secondary:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a1d3ad), color-stop(100%, #68c07d)); background-image: -webkit-linear-gradient(#a1d3ad, #68c07d); background-image: -moz-linear-gradient(#a1d3ad, #68c07d); background-image: -o-linear-gradient(#a1d3ad, #68c07d); background-image: linear-gradient(#a1d3ad, #68c07d); -webkit-box-shadow: inset 0 0 3px #f8fcf9; -moz-box-shadow: inset 0 0 3px #f8fcf9; box-shadow: inset 0 0 3px #f8fcf9; border: 1px solid #469659; }
1645
+ .pretty .secondary.btn:active, .pretty .secondary.skiplink:active, .pretty .secondary.btn:active:hover, .pretty .secondary.skiplink:active:hover, .secondary.btn.pretty:active, .secondary.skiplink.pretty:active, .skiplink.pretty.secondary:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3ca957), color-stop(100%, #80cb92)); background-image: -webkit-linear-gradient(#3ca957, #80cb92); background-image: -moz-linear-gradient(#3ca957, #80cb92); background-image: -o-linear-gradient(#3ca957, #80cb92); background-image: linear-gradient(#3ca957, #80cb92); -webkit-box-shadow: inset 0 0 3px #ecf8ef; -moz-box-shadow: inset 0 0 3px #ecf8ef; box-shadow: inset 0 0 3px #ecf8ef; }
1646
+ .btn.pretty.secondary a, .pretty .secondary.btn a, .pretty .secondary.skiplink a, .pretty .secondary.btn:hover a, .pretty .secondary.skiplink:hover a, .secondary.skiplink.pretty:hover a, .pretty .secondary.btn:active a, .pretty .secondary.skiplink:active a, .secondary.skiplink.pretty:active a, .btn.pretty.secondary input, .pretty .secondary.btn input, .pretty .secondary.skiplink input, .pretty .secondary.btn:hover input, .pretty .secondary.skiplink:hover input, .secondary.skiplink.pretty:hover input, .pretty .secondary.btn:active input, .pretty .secondary.skiplink:active input, .secondary.skiplink.pretty:active input, .btn.pretty.secondary button, .pretty .secondary.btn button, .pretty .secondary.skiplink button, .pretty .secondary.btn:hover button, .pretty .secondary.skiplink:hover button, .secondary.skiplink.pretty:hover button, .pretty .secondary.btn:active button, .pretty .secondary.skiplink:active button, .secondary.skiplink.pretty:active button, .skiplink.pretty.secondary a, .skiplink.pretty.secondary input, .skiplink.pretty.secondary button { text-shadow: 0 1px 1px #255a32; }
1647
+ .btn.pretty.default, .pretty .default.btn, .pretty .default.skiplink, .pretty .default.btn:hover, .pretty .default.skiplink:hover, .default.skiplink.pretty:hover, .pretty .default.btn:active, .pretty .default.skiplink:active, .default.skiplink.pretty:active, .skiplink.pretty.default { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f3f1f1)); background-image: -webkit-linear-gradient(#ffffff, #f3f1f1); background-image: -moz-linear-gradient(#ffffff, #f3f1f1); background-image: -o-linear-gradient(#ffffff, #f3f1f1); background-image: linear-gradient(#ffffff, #f3f1f1); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #cccccc; }
1648
+ .pretty .default.btn:hover, .pretty .default.skiplink:hover, .default.btn.pretty:hover, .default.skiplink.pretty:hover, .pretty .default.btn:hover:active, .pretty .default.skiplink:hover:active, .skiplink.pretty.default:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #ffffff)); background-image: -webkit-linear-gradient(#ffffff, #ffffff); background-image: -moz-linear-gradient(#ffffff, #ffffff); background-image: -o-linear-gradient(#ffffff, #ffffff); background-image: linear-gradient(#ffffff, #ffffff); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #d9d9d9; }
1649
+ .pretty .default.btn:active, .pretty .default.skiplink:active, .pretty .default.btn:active:hover, .pretty .default.skiplink:active:hover, .default.btn.pretty:active, .default.skiplink.pretty:active, .skiplink.pretty.default:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f3f1f1), color-stop(100%, #ffffff)); background-image: -webkit-linear-gradient(#f3f1f1, #ffffff); background-image: -moz-linear-gradient(#f3f1f1, #ffffff); background-image: -o-linear-gradient(#f3f1f1, #ffffff); background-image: linear-gradient(#f3f1f1, #ffffff); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; }
1650
+ .btn.pretty.default a, .pretty .default.btn a, .pretty .default.skiplink a, .pretty .default.btn:hover a, .pretty .default.skiplink:hover a, .default.skiplink.pretty:hover a, .pretty .default.btn:active a, .pretty .default.skiplink:active a, .default.skiplink.pretty:active a, .btn.pretty.default input, .pretty .default.btn input, .pretty .default.skiplink input, .pretty .default.btn:hover input, .pretty .default.skiplink:hover input, .default.skiplink.pretty:hover input, .pretty .default.btn:active input, .pretty .default.skiplink:active input, .default.skiplink.pretty:active input, .btn.pretty.default button, .pretty .default.btn button, .pretty .default.skiplink button, .pretty .default.btn:hover button, .pretty .default.skiplink:hover button, .default.skiplink.pretty:hover button, .pretty .default.btn:active button, .pretty .default.skiplink:active button, .default.skiplink.pretty:active button, .skiplink.pretty.default a, .skiplink.pretty.default input, .skiplink.pretty.default button { text-shadow: 0 1px 1px white; }
1651
+ .btn.pretty.info, .pretty .info.btn, .pretty .info.skiplink, .pretty .info.btn:hover, .pretty .info.skiplink:hover, .info.skiplink.pretty:hover, .pretty .info.btn:active, .pretty .info.skiplink:active, .info.skiplink.pretty:active, .skiplink.pretty.info { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(100%, #464d54)); background-image: -webkit-linear-gradient(#7b8085, #464d54); background-image: -moz-linear-gradient(#7b8085, #464d54); background-image: -o-linear-gradient(#7b8085, #464d54); background-image: linear-gradient(#7b8085, #464d54); -webkit-box-shadow: inset 0 0 3px #bdc0c2; -moz-box-shadow: inset 0 0 3px #bdc0c2; box-shadow: inset 0 0 3px #bdc0c2; border: 1px solid #252728; }
1652
+ .pretty .info.btn:hover, .pretty .info.skiplink:hover, .info.btn.pretty:hover, .info.skiplink.pretty:hover, .pretty .info.btn:hover:active, .pretty .info.skiplink:hover:active, .skiplink.pretty.info:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #aeb3b6), color-stop(100%, #808e98)); background-image: -webkit-linear-gradient(#aeb3b6, #808e98); background-image: -moz-linear-gradient(#aeb3b6, #808e98); background-image: -o-linear-gradient(#aeb3b6, #808e98); background-image: linear-gradient(#aeb3b6, #808e98); -webkit-box-shadow: inset 0 0 3px #f1f2f3; -moz-box-shadow: inset 0 0 3px #f1f2f3; box-shadow: inset 0 0 3px #f1f2f3; border: 1px solid #60676b; }
1653
+ .pretty .info.btn:active, .pretty .info.skiplink:active, .pretty .info.btn:active:hover, .pretty .info.skiplink:active:hover, .info.btn.pretty:active, .info.skiplink.pretty:active, .skiplink.pretty.info:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #464d54), color-stop(100%, #7b8085)); background-image: -webkit-linear-gradient(#464d54, #7b8085); background-image: -moz-linear-gradient(#464d54, #7b8085); background-image: -o-linear-gradient(#464d54, #7b8085); background-image: linear-gradient(#464d54, #7b8085); -webkit-box-shadow: inset 0 0 3px #cbcdce; -moz-box-shadow: inset 0 0 3px #cbcdce; box-shadow: inset 0 0 3px #cbcdce; }
1654
+ .btn.pretty.info a, .pretty .info.btn a, .pretty .info.skiplink a, .pretty .info.btn:hover a, .pretty .info.skiplink:hover a, .info.skiplink.pretty:hover a, .pretty .info.btn:active a, .pretty .info.skiplink:active a, .info.skiplink.pretty:active a, .btn.pretty.info input, .pretty .info.btn input, .pretty .info.skiplink input, .pretty .info.btn:hover input, .pretty .info.skiplink:hover input, .info.skiplink.pretty:hover input, .pretty .info.btn:active input, .pretty .info.skiplink:active input, .info.skiplink.pretty:active input, .btn.pretty.info button, .pretty .info.btn button, .pretty .info.skiplink button, .pretty .info.btn:hover button, .pretty .info.skiplink:hover button, .info.skiplink.pretty:hover button, .pretty .info.btn:active button, .pretty .info.skiplink:active button, .info.skiplink.pretty:active button, .skiplink.pretty.info a, .skiplink.pretty.info input, .skiplink.pretty.info button { text-shadow: 0 1px 1px #191a1b; }
1655
+ .btn.pretty.danger, .pretty .danger.btn, .pretty .danger.skiplink, .pretty .danger.btn:hover, .pretty .danger.skiplink:hover, .danger.skiplink.pretty:hover, .pretty .danger.btn:active, .pretty .danger.skiplink:active, .danger.skiplink.pretty:active, .skiplink.pretty.danger { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #df8989), color-stop(100%, #d03232)); background-image: -webkit-linear-gradient(#df8989, #d03232); background-image: -moz-linear-gradient(#df8989, #d03232); background-image: -o-linear-gradient(#df8989, #d03232); background-image: linear-gradient(#df8989, #d03232); -webkit-box-shadow: inset 0 0 3px #faeded; -moz-box-shadow: inset 0 0 3px #faeded; box-shadow: inset 0 0 3px #faeded; border: 1px solid #8f2626; }
1656
+ .pretty .danger.btn:hover, .pretty .danger.skiplink:hover, .danger.btn.pretty:hover, .danger.skiplink.pretty:hover, .pretty .danger.btn:hover:active, .pretty .danger.skiplink:hover:active, .skiplink.pretty.danger:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f79696), color-stop(100%, #f64a4a)); background-image: -webkit-linear-gradient(#f79696, #f64a4a); background-image: -moz-linear-gradient(#f79696, #f64a4a); background-image: -o-linear-gradient(#f79696, #f64a4a); background-image: linear-gradient(#f79696, #f64a4a); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #e21212; }
1657
+ .pretty .danger.btn:active, .pretty .danger.skiplink:active, .pretty .danger.btn:active:hover, .pretty .danger.skiplink:active:hover, .danger.btn.pretty:active, .danger.skiplink.pretty:active, .skiplink.pretty.danger:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d03232), color-stop(100%, #df8989)); background-image: -webkit-linear-gradient(#d03232, #df8989); background-image: -moz-linear-gradient(#d03232, #df8989); background-image: -o-linear-gradient(#d03232, #df8989); background-image: linear-gradient(#d03232, #df8989); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; }
1658
+ .btn.pretty.danger a, .pretty .danger.btn a, .pretty .danger.skiplink a, .pretty .danger.btn:hover a, .pretty .danger.skiplink:hover a, .danger.skiplink.pretty:hover a, .pretty .danger.btn:active a, .pretty .danger.skiplink:active a, .danger.skiplink.pretty:active a, .btn.pretty.danger input, .pretty .danger.btn input, .pretty .danger.skiplink input, .pretty .danger.btn:hover input, .pretty .danger.skiplink:hover input, .danger.skiplink.pretty:hover input, .pretty .danger.btn:active input, .pretty .danger.skiplink:active input, .danger.skiplink.pretty:active input, .btn.pretty.danger button, .pretty .danger.btn button, .pretty .danger.skiplink button, .pretty .danger.btn:hover button, .pretty .danger.skiplink:hover button, .danger.skiplink.pretty:hover button, .pretty .danger.btn:active button, .pretty .danger.skiplink:active button, .danger.skiplink.pretty:active button, .skiplink.pretty.danger a, .skiplink.pretty.danger input, .skiplink.pretty.danger button { text-shadow: 0 1px 1px #7b2121; }
1659
+ .btn.pretty.warning, .pretty .warning.btn, .pretty .warning.skiplink, .pretty .warning.btn:hover, .pretty .warning.skiplink:hover, .warning.skiplink.pretty:hover, .pretty .warning.btn:active, .pretty .warning.skiplink:active, .warning.skiplink.pretty:active, .skiplink.pretty.warning { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbdca0), color-stop(100%, #fbba3a)); background-image: -webkit-linear-gradient(#fbdca0, #fbba3a); background-image: -moz-linear-gradient(#fbdca0, #fbba3a); background-image: -o-linear-gradient(#fbdca0, #fbba3a); background-image: linear-gradient(#fbdca0, #fbba3a); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #de960a; color: #644405; }
1660
+ .pretty .warning.btn:hover, .pretty .warning.skiplink:hover, .warning.btn.pretty:hover, .warning.skiplink.pretty:hover, .pretty .warning.btn:hover:active, .pretty .warning.skiplink:hover:active, .skiplink.pretty.warning:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #feecca), color-stop(100%, #ffd37d)); background-image: -webkit-linear-gradient(#feecca, #ffd37d); background-image: -moz-linear-gradient(#feecca, #ffd37d); background-image: -o-linear-gradient(#feecca, #ffd37d); background-image: linear-gradient(#feecca, #ffd37d); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; border: 1px solid #fcb834; }
1661
+ .pretty .warning.btn:active, .pretty .warning.skiplink:active, .pretty .warning.btn:active:hover, .pretty .warning.skiplink:active:hover, .warning.btn.pretty:active, .warning.skiplink.pretty:active, .skiplink.pretty.warning:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbba3a), color-stop(100%, #fbdca0)); background-image: -webkit-linear-gradient(#fbba3a, #fbdca0); background-image: -moz-linear-gradient(#fbba3a, #fbdca0); background-image: -o-linear-gradient(#fbba3a, #fbdca0); background-image: linear-gradient(#fbba3a, #fbdca0); -webkit-box-shadow: inset 0 0 3px white; -moz-box-shadow: inset 0 0 3px white; box-shadow: inset 0 0 3px white; }
1662
+ .btn.pretty.warning a, .pretty .warning.btn a, .pretty .warning.skiplink a, .pretty .warning.btn:hover a, .pretty .warning.skiplink:hover a, .warning.skiplink.pretty:hover a, .pretty .warning.btn:active a, .pretty .warning.skiplink:active a, .warning.skiplink.pretty:active a, .btn.pretty.warning input, .pretty .warning.btn input, .pretty .warning.skiplink input, .pretty .warning.btn:hover input, .pretty .warning.skiplink:hover input, .warning.skiplink.pretty:hover input, .pretty .warning.btn:active input, .pretty .warning.skiplink:active input, .warning.skiplink.pretty:active input, .btn.pretty.warning button, .pretty .warning.btn button, .pretty .warning.skiplink button, .pretty .warning.btn:hover button, .pretty .warning.skiplink:hover button, .warning.skiplink.pretty:hover button, .pretty .warning.btn:active button, .pretty .warning.skiplink:active button, .warning.skiplink.pretty:active button, .skiplink.pretty.warning a, .skiplink.pretty.warning input, .skiplink.pretty.warning button { text-shadow: 0 1px 1px #fbdca0; }
1663
+ .btn.pretty.success, .pretty .success.btn, .pretty .success.skiplink, .pretty .success.btn:hover, .pretty .success.skiplink:hover, .success.skiplink.pretty:hover, .pretty .success.btn:active, .pretty .success.skiplink:active, .success.skiplink.pretty:active, .skiplink.pretty.success { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #91e26a), color-stop(100%, #56c620)); background-image: -webkit-linear-gradient(#91e26a, #56c620); background-image: -moz-linear-gradient(#91e26a, #56c620); background-image: -o-linear-gradient(#91e26a, #56c620); background-image: linear-gradient(#91e26a, #56c620); -webkit-box-shadow: inset 0 0 3px #e0f7d5; -moz-box-shadow: inset 0 0 3px #e0f7d5; box-shadow: inset 0 0 3px #e0f7d5; border: 1px solid #3b8019; }
1664
+ .pretty .success.btn:hover, .pretty .success.skiplink:hover, .success.btn.pretty:hover, .success.skiplink.pretty:hover, .pretty .success.btn:hover:active, .pretty .success.skiplink:hover:active, .skiplink.pretty.success:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #96e570), color-stop(100%, #64df29)); background-image: -webkit-linear-gradient(#96e570, #64df29); background-image: -moz-linear-gradient(#96e570, #64df29); background-image: -o-linear-gradient(#96e570, #64df29); background-image: linear-gradient(#96e570, #64df29); -webkit-box-shadow: inset 0 0 3px #e5f9db; -moz-box-shadow: inset 0 0 3px #e5f9db; box-shadow: inset 0 0 3px #e5f9db; border: 1px solid #479f1d; }
1665
+ .pretty .success.btn:active, .pretty .success.skiplink:active, .pretty .success.btn:active:hover, .pretty .success.skiplink:active:hover, .success.btn.pretty:active, .success.skiplink.pretty:active, .skiplink.pretty.success:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #56c620), color-stop(100%, #91e26a)); background-image: -webkit-linear-gradient(#56c620, #91e26a); background-image: -moz-linear-gradient(#56c620, #91e26a); background-image: -o-linear-gradient(#56c620, #91e26a); background-image: linear-gradient(#56c620, #91e26a); -webkit-box-shadow: inset 0 0 3px #f0fbea; -moz-box-shadow: inset 0 0 3px #f0fbea; box-shadow: inset 0 0 3px #f0fbea; }
1666
+ .btn.pretty.success a, .pretty .success.btn a, .pretty .success.skiplink a, .pretty .success.btn:hover a, .pretty .success.skiplink:hover a, .success.skiplink.pretty:hover a, .pretty .success.btn:active a, .pretty .success.skiplink:active a, .success.skiplink.pretty:active a, .btn.pretty.success input, .pretty .success.btn input, .pretty .success.skiplink input, .pretty .success.btn:hover input, .pretty .success.skiplink:hover input, .success.skiplink.pretty:hover input, .pretty .success.btn:active input, .pretty .success.skiplink:active input, .success.skiplink.pretty:active input, .btn.pretty.success button, .pretty .success.btn button, .pretty .success.skiplink button, .pretty .success.btn:hover button, .pretty .success.skiplink:hover button, .success.skiplink.pretty:hover button, .pretty .success.btn:active button, .pretty .success.skiplink:active button, .success.skiplink.pretty:active button, .skiplink.pretty.success a, .skiplink.pretty.success input, .skiplink.pretty.success button { text-shadow: 0 1px 1px #316b15; }
1667
+
1668
+ .image { line-height: 0; margin-bottom: 20px; }
1669
+ .image.circle { -webkit-border-radius: 50% !important; -moz-border-radius: 50% !important; -ms-border-radius: 50% !important; -o-border-radius: 50% !important; border-radius: 50% !important; overflow: hidden; width: auto; }
1670
+ .image.rounded { overflow: hidden; -webkit-border-radius: 4px 4px; -moz-border-radius: 4px 4px; -ms-border-radius: 4px 4px; -o-border-radius: 4px 4px; border-radius: 4px 4px; }
1671
+ .image.photo { border: 5px solid white; -webkit-box-shadow: 0 0 1px #555555; -moz-box-shadow: 0 0 1px #555555; box-shadow: 0 0 1px #555555; }
1672
+ .image.photo.polaroid { padding-bottom: 50px; background: #fff; }
1673
+
1674
+ /* Tabs */
1675
+ .tabs { display: block; }
1676
+ .tabs .tab-nav { margin: 0; padding: 0; border-bottom: 1px solid #e5e5e5; }
1677
+ .tabs .tab-nav > li { display: inline-block; width: auto; padding: 0; margin: 0 1.7094% 0 0; cursor: default; top: 1px; -webkit-box-shadow: 0 1px 0 white; -moz-box-shadow: 0 1px 0 white; box-shadow: 0 1px 0 white; }
1678
+ .tabs .tab-nav > li > a { display: block; width: auto; padding: 0 14px; margin: 0; color: #555555; font-family: "Open Sans"; font-weight: 600; border: 1px solid #e5e5e5; border-width: 1px 1px 0 1px; text-shadow: 0 1px 1px white; background: #f2f2f2; cursor: pointer; -webkit-border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; -ms-border-radius: 4px 4px 0 0; -o-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0; height: 42px; line-height: 40px; }
1679
+ .tabs .tab-nav > li > a:hover { text-decoration: none; background: whitesmoke; }
1680
+ .tabs .tab-nav > li > a:active { background: #ededed; }
1681
+ .tabs .tab-nav > li.active > a { height: 43px; line-height: 41px; background: white; }
1682
+ .tabs .tab-nav > li:last-child { margin-right: 0; }
1683
+ .tabs .tab-content { display: none; padding: 20px 10px; }
1684
+ .tabs .tab-content.active { display: block; }
1685
+ .tabs.pill .tab-nav { width: 100%; /* remove if you dont want the tabs to span the full container width */ display: table; overflow: hidden; border: 1px solid #e5e5e5; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
1686
+ .tabs.pill .tab-nav > li { display: table-cell; margin: 0; margin-left: -4px; text-align: center; top: 0; }
1687
+ .tabs.pill .tab-nav > li:first-child { margin-left: 0; }
1688
+ .tabs.pill .tab-nav > li > a { border: none; border-right: 1px solid #e5e5e5; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; height: 42px; line-height: 40px; }
1689
+ .tabs.pill .tab-nav > li:last-child > a { border-right: none; }
1690
+ .tabs.vertical .tab-nav { border: none; }
1691
+ .tabs.vertical .tab-nav > li { display: block; margin: 0; margin-bottom: 5px; }
1692
+ .tabs.vertical .tab-nav > li.active { position: relative; z-index: 99; }
1693
+ .tabs.vertical .tab-nav > li.active > a { border-right: 1px solid white; }
1694
+ .tabs.vertical .tab-nav > li > a { border: 1px solid #e5e5e5; -webkit-border-radius: 4px 0 0 4px; -moz-border-radius: 4px 0 0 4px; -ms-border-radius: 4px 0 0 4px; -o-border-radius: 4px 0 0 4px; border-radius: 4px 0 0 4px; }
1695
+ .tabs.vertical .tab-content { padding: 10px 0 30px 20px; margin-left: -1px; border-left: 1px solid #e5e5e5; }
1696
+
1697
+ body .video { width: 100%; position: relative; height: 0; padding-bottom: 56.25%; }
1698
+ body .video.twitch, body .video.youtube.show_controls { padding-top: 30px; }
1699
+
1700
+ .video > video, .video > iframe, .video > object, .video > embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
1752
1701
 
1753
1702
  /* Labels */
1754
1703
  .badge, .label { height: 20px; display: inline-block; font-family: Helvetica, arial, verdana, sans-serif; font-weight: bold; line-height: 20px; text-align: center; color: #fff; }
@@ -1785,11 +1734,11 @@ form fieldset legend { padding: 5px 10px; }
1785
1734
  .badge.light a, .label.light a { color: #d04526; }
1786
1735
  .badge.dark, .label.dark { background: #212121; }
1787
1736
 
1788
- .badge { padding: 0 10px; font-size: 14px; font-size: 0.875rem; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; border-radius: 10px; }
1737
+ .badge { padding: 0 10px; font-size: 14px; font-size: 1rem; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; border-radius: 10px; }
1789
1738
 
1790
- .label { padding: 0 10px; font-size: 12px; font-size: 0.75rem; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; }
1739
+ .label { padding: 0 10px; font-size: 12px; font-size: 0.85714rem; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; }
1791
1740
 
1792
- .alert { padding: 0 10px; font-family: "Open Sans"; font-weight: 600; list-style-type: none; word-wrap: break-word; margin-bottom: 8px; font-size: 14px; font-size: 0.875rem; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
1741
+ .alert { padding: 0 10px; font-family: "Open Sans"; font-weight: 600; list-style-type: none; word-wrap: break-word; margin-bottom: 7px; font-size: 14px; font-size: 1rem; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
1793
1742
  .alert.primary { background: #85b7e7; border: 1px solid #3085d6; color: #1a5186; }
1794
1743
  .alert.secondary { background: #80cb92; border: 1px solid #42a35a; color: #255a32; }
1795
1744
  .alert.default { background: white; border: 1px solid #f2f2f2; color: #bfbfbf; color: #555555; border: 1px solid #f2f2f2; }
@@ -1798,39 +1747,98 @@ form fieldset legend { padding: 5px 10px; }
1798
1747
  .alert.warning { background: #fbdca0; border: 1px solid #f6b83f; color: #c68609; color: #644405; }
1799
1748
  .alert.success { background: #91e26a; border: 1px solid #58c026; color: #316b15; }
1800
1749
 
1801
- /* Tabs */
1802
- .tabs { display: block; }
1803
- .tabs .tab-nav { margin: 0; padding: 0; border-bottom: 1px solid #e5e5e5; }
1804
- .tabs .tab-nav > li { display: inline-block; width: auto; padding: 0; margin: 0 2.12766% 0 0; cursor: default; top: 1px; -webkit-box-shadow: 0 1px 0 white; -moz-box-shadow: 0 1px 0 white; box-shadow: 0 1px 0 white; }
1805
- .tabs .tab-nav > li > a { display: block; width: auto; padding: 0 16px; margin: 0; color: #555555; font-family: "Open Sans"; font-weight: 600; border: 1px solid #e5e5e5; border-width: 1px 1px 0 1px; text-shadow: 0 1px 1px white; background: #f2f2f2; cursor: pointer; -webkit-border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; -ms-border-radius: 4px 4px 0 0; -o-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0; height: 42px; line-height: 40px; }
1806
- .tabs .tab-nav > li > a:hover { text-decoration: none; background: whitesmoke; }
1807
- .tabs .tab-nav > li > a:active { background: #ededed; }
1808
- .tabs .tab-nav > li.active > a { height: 43px; line-height: 41px; background: white; }
1809
- .tabs .tab-nav > li:last-child { margin-right: 0; }
1810
- .tabs .tab-content { display: none; padding: 20px 10px; }
1811
- .tabs .tab-content.active { display: block; }
1812
- .tabs.pill .tab-nav { width: 100%; /* remove if you dont want the tabs to span the full container width */ display: table; overflow: hidden; border: 1px solid #e5e5e5; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
1813
- .tabs.pill .tab-nav > li { display: table-cell; margin: 0; margin-left: -4px; text-align: center; top: 0; }
1814
- .tabs.pill .tab-nav > li:first-child { margin-left: 0; }
1815
- .tabs.pill .tab-nav > li > a { border: none; border-right: 1px solid #e5e5e5; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; height: 42px; line-height: 40px; }
1816
- .tabs.pill .tab-nav > li:last-child > a { border-right: none; }
1817
- .tabs.vertical .tab-nav { border: none; }
1818
- .tabs.vertical .tab-nav > li { display: block; margin: 0; margin-bottom: 5px; }
1819
- .tabs.vertical .tab-nav > li.active { position: relative; z-index: 99; }
1820
- .tabs.vertical .tab-nav > li.active > a { border-right: 1px solid white; }
1821
- .tabs.vertical .tab-nav > li > a { border: 1px solid #e5e5e5; -webkit-border-radius: 4px 0 0 4px; -moz-border-radius: 4px 0 0 4px; -ms-border-radius: 4px 0 0 4px; -o-border-radius: 4px 0 0 4px; border-radius: 4px 0 0 4px; }
1822
- .tabs.vertical .tab-content { padding: 10px 0 30px 20px; margin-left: -1px; border-left: 1px solid #e5e5e5; }
1750
+ /*=====================================================
1751
+ Navigation (with dropdowns)
1752
+ ======================================================*/
1753
+ .navbar { width: 100%; min-height: 60px; display: block; margin-bottom: 20px; background: #4a4d50; }
1754
+ @media only screen and (max-width: 767px) { .navbar { position: relative; border: none; }
1755
+ .navbar .column, .navbar .columns { min-height: 0; } }
1756
+ .navbar.fixed { top: 0; left: 0; z-index: 99999; }
1757
+ .navbar a.toggle { display: none; }
1758
+ @media only screen and (max-width: 767px) { .navbar a.toggle { top: 18%; right: 4%; width: 46px; position: absolute; text-align: center; display: inline-block; color: white; background: #4a4d50; height: 40px; line-height: 38px; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; font-size: 30px; font-size: 2.14286rem; }
1759
+ .navbar a.toggle:hover { background: #565a5d; }
1760
+ .navbar a.toggle:active, .navbar a.toggle.active { background: #3e4043; } }
1761
+ .navbar .logo { display: inline-block; margin: 0 1.7094% 0 0; padding: 0; height: 60px; line-height: 58px; }
1762
+ .navbar .logo a { display: block; padding: 0 0 0 14px; overflow: hidden; height: 60px; line-height: 58px; }
1763
+ @media only screen and (max-width: 767px) { .navbar .logo { float: left; display: inline; }
1764
+ .navbar .logo a { padding: 0; }
1765
+ .navbar .logo a img { width: auto; height: auto; max-width: 100%; } }
1766
+ .navbar ul { display: table; vertical-align: middle; margin: 0; float: none; }
1767
+ @media only screen and (max-width: 767px) { .navbar ul { position: absolute; display: block; width: 100% !important; height: 0; max-height: 0; top: 60px; left: 0; overflow: hidden; text-align: center; background: #3e4043; }
1768
+ .navbar ul.active { height: auto; max-height: 600px; z-index: 999999; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; -webkit-box-shadow: 0 2px 2px #252728; -moz-box-shadow: 0 2px 2px #252728; box-shadow: 0 2px 2px #252728; } }
1769
+ .navbar ul li { display: table-cell; text-align: center; padding-bottom: 0; margin: 0; height: 60px; line-height: 58px; }
1770
+ @media only screen and (max-width: 767px) { .navbar ul li { display: block; position: relative; min-height: 50px; max-height: 320px; height: auto; width: 100%; border-right: 0 !important; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; } }
1771
+ .navbar ul li > a { display: block; padding: 0 14px; white-space: nowrap; color: white; text-shadow: 0 1px 2px #191a1b, 0 1px 0 #191a1b; height: 60px; line-height: 58px; font-size: 14px; font-size: 1rem; }
1772
+ .navbar ul li > a i.icon-popup { position: absolute; }
1773
+ .navbar ul li .btn { border-color: #000101 !important; }
1774
+ .navbar ul li.field { margin-bottom: 0 !important; margin-right: 0; }
1775
+ @media only screen and (max-width: 767px) { .navbar ul li.field { padding: 0 20px; } }
1776
+ .navbar ul li.field input.search { background: #191a1b; border: none; color: #f2f2f2; }
1777
+ .navbar ul li .dropdown { width: auto; min-width: 0px; max-width: 320px; height: 0; position: absolute; background: #fafafa; overflow: hidden; z-index: 999; }
1778
+ @media only screen and (max-width: 767px) { .navbar ul li .dropdown { width: 100%; max-width: 100%; position: relative; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; }
1779
+ .navbar ul li.active .dropdown { border-bottom: 1px solid #313436; }
1780
+ .navbar ul li.active .dropdown ul { position: relative; top: 0; background: #36393b; min-height: 50px; max-height: 250px; height: auto; overflow: auto; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; }
1781
+ .navbar ul li.active .dropdown ul li { min-height: 50px; border-bottom: #3e4043; }
1782
+ .navbar ul li.active .dropdown ul li a { color: white; border-bottom: 1px solid #313436; }
1783
+ .navbar ul li.active .dropdown ul li a:hover { color: #d04526; } }
1784
+ @media only screen and (min-width: 768px) and (max-width: 1169px) { .navbar > ul > li > .btn a { padding: 0 9px 0 9px !important; }
1785
+ .navbar ul > li .dropdown ul li.active .dropdown { left: -320px; } }
1823
1786
 
1824
- .image { line-height: 0; margin-bottom: 20px; }
1825
- .image.circle { -webkit-border-radius: 50% !important; -moz-border-radius: 50% !important; -ms-border-radius: 50% !important; -o-border-radius: 50% !important; border-radius: 50% !important; overflow: hidden; width: auto; }
1826
- .image.rounded { overflow: hidden; -webkit-border-radius: 4px 4px; -moz-border-radius: 4px 4px; -ms-border-radius: 4px 4px; -o-border-radius: 4px 4px; border-radius: 4px 4px; }
1827
- .image.photo { border: 5px solid white; -webkit-box-shadow: 0 0 1px #555555; -moz-box-shadow: 0 0 1px #555555; box-shadow: 0 0 1px #555555; }
1828
- .image.photo.polaroid { padding-bottom: 50px; background: #fff; }
1787
+ /**** Navbar positioning for Microsoft's browser who deserves not to be mentioned ****/
1788
+ .ie7 .navbar > ul { width: auto; }
1829
1789
 
1830
- body .video { width: 100%; position: relative; height: 0; padding-bottom: 56.25%; }
1831
- body .video.twitch, body .video.youtube.show_controls { padding-top: 30px; }
1790
+ .ie7 .navbar, .ie7 .navbar > ul > li > a { display: block; }
1832
1791
 
1833
- .video > video, .video > iframe, .video > object, .video > embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
1792
+ .ie7 .navbar .logo, .ie7 .navbar ul, .ie7 .navbar ul li { float: left; display: inline-block; }
1793
+
1794
+ .ie7 .navbar .logo a { display: block; overflow: hidden; }
1795
+
1796
+ .ie7 .navbar > ul > li .field { display: block; padding: 12px 18px 0; width: 80%; }
1797
+
1798
+ .pretty.navbar { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(100%, #313436)); background-image: -webkit-linear-gradient(#7b8085, #313436); background-image: -moz-linear-gradient(#7b8085, #313436); background-image: -o-linear-gradient(#7b8085, #313436); background-image: linear-gradient(#7b8085, #313436); -webkit-box-shadow: inset 0 1px 1px #7b8085, 0 1px 2px rgba(0, 0, 0, 0.8) !important; -moz-box-shadow: inset 0 1px 1px #7b8085, 0 1px 2px rgba(0, 0, 0, 0.8) !important; box-shadow: inset 0 1px 1px #7b8085, 0 1px 2px rgba(0, 0, 0, 0.8) !important; /* Remove this line if you dont want a dropshadow on your navigation*/ }
1799
+ @media only screen and (max-width: 767px) { .pretty.navbar a.toggle { border: 1px solid #3e4043; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(100%, #4a4d50)); background-image: -webkit-linear-gradient(#7b8085, #4a4d50); background-image: -moz-linear-gradient(#7b8085, #4a4d50); background-image: -o-linear-gradient(#7b8085, #4a4d50); background-image: linear-gradient(#7b8085, #4a4d50); -webkit-box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; -moz-box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; }
1800
+ .pretty.navbar a.toggle i { text-shadow: 0 1px 1px #191a1b; }
1801
+ .pretty.navbar a.toggle:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #888d91), color-stop(100%, #565a5d)); background-image: -webkit-linear-gradient(#888d91, #565a5d); background-image: -moz-linear-gradient(#888d91, #565a5d); background-image: -o-linear-gradient(#888d91, #565a5d); background-image: linear-gradient(#888d91, #565a5d); }
1802
+ .pretty.navbar a.toggle:active, .pretty.navbar a.toggle.active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3e4043), color-stop(100%, #4a4d50)); background-image: -webkit-linear-gradient(#3e4043, #4a4d50); background-image: -moz-linear-gradient(#3e4043, #4a4d50); background-image: -o-linear-gradient(#3e4043, #4a4d50); background-image: linear-gradient(#3e4043, #4a4d50); -webkit-box-shadow: 0 1px 1px #63676a; -moz-box-shadow: 0 1px 1px #63676a; box-shadow: 0 1px 1px #63676a; } }
1803
+ .pretty.navbar.row { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
1804
+ @media only screen and (max-width: 767px) { .pretty.navbar.row { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; } }
1805
+ .pretty.navbar ul li.field input.search { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #191a1b), color-stop(100%, #4f5255)); background-image: -webkit-linear-gradient(#191a1b, #4f5255); background-image: -moz-linear-gradient(#191a1b, #4f5255); background-image: -o-linear-gradient(#191a1b, #4f5255); background-image: linear-gradient(#191a1b, #4f5255); border: none; -webkit-box-shadow: 0 1px 2px #888d91 !important; -moz-box-shadow: 0 1px 2px #888d91 !important; box-shadow: 0 1px 2px #888d91 !important; /* Remove this line if you dont want a dropshadow on your navigation*/ }
1806
+ .pretty.navbar > ul > li:first-child, .pretty.navbar .pretty.navbar > ul > li:first-child a:hover { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }
1807
+
1808
+ .navbar li .dropdown ul { margin: 0; display: block; }
1809
+ .navbar li .dropdown ul > li { position: relative; display: block; width: 100%; float: left; text-align: left; height: auto; -webkit-border-radius: none; -moz-border-radius: none; -ms-border-radius: none; -o-border-radius: none; border-radius: none; }
1810
+ @media only screen and (min-width: 768px) and (max-width: 1169px) { .navbar li .dropdown ul > li { max-width: 320px; word-wrap: break-word; } }
1811
+ .navbar li .dropdown ul > li a { display: block; padding: 0 20px; color: #d04526; border-bottom: 1px solid #cccccc; text-shadow: none; height: 45px; line-height: 43px; }
1812
+ @media only screen and (max-width: 767px) { .navbar li .dropdown ul > li a { padding: 0 20px; } }
1813
+ .navbar li .dropdown ul > li .dropdown { display: none; background: white; }
1814
+ .navbar li .dropdown ul li:first-child a { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; }
1815
+
1816
+ .gumby-no-touch .navbar ul li:hover > a, .gumby-touch .navbar ul li.active > a { position: relative; background: #868d92; z-index: 1000; }
1817
+
1818
+ .gumby-no-touch .navbar ul li:hover .dropdown, .gumby-touch .navbar ul li.active .dropdown { min-height: 50px; max-height: 561px; overflow: visible; height: auto; width: 100%; padding: 0; border-top: 1px solid #3e4043; -webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3); -moz-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3); box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3); }
1819
+
1820
+ .gumby-no-touch .navbar ul li:hover .dropdown ul { position: relative; top: 0; min-height: 50px; max-height: 250px; height: auto; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; min-height: 50px; max-height: 250px; height: auto; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; }
1821
+ .gumby-no-touch .navbar ul li:hover .dropdown ul li { min-height: 50px; }
1822
+ @media only screen and (max-width: 767px) { .gumby-no-touch .navbar ul li:hover .dropdown ul { overflow: auto; background: #36393b; }
1823
+ .gumby-no-touch .navbar ul li:hover .dropdown ul li { border-bottom: #3e4043; }
1824
+ .gumby-no-touch .navbar ul li:hover .dropdown ul li a { color: white; border-bottom: 1px solid #313436; }
1825
+ .gumby-no-touch .navbar ul li:hover .dropdown ul li a:hover { color: #d04526; } }
1826
+ .gumby-no-touch .navbar ul li:hover .dropdown ul li { min-height: 50px; }
1827
+
1828
+ .gumby-no-touch .navbar li .dropdown ul > li:hover .dropdown, .gumby-touch .navbar li .dropdown ul > li.active .dropdown { border-top: none; display: block; position: absolute; z-index: 9999; left: 100%; top: 0px; margin-top: 0; }
1829
+ @media only screen and (max-width: 767px) { .gumby-no-touch .navbar li .dropdown ul > li:hover .dropdown, .gumby-touch .navbar li .dropdown ul > li.active .dropdown { position: relative; left: 0; }
1830
+ .gumby-no-touch .navbar li .dropdown ul > li:hover .dropdown ul, .gumby-touch .navbar li .dropdown ul > li.active .dropdown ul { background: #252728 !important; } }
1831
+
1832
+ .gumby-no-touch .navbar li .dropdown ul li a:hover { background: #f2f2f2; }
1833
+
1834
+ .gumby-touch .navbar a:hover { color: white !important; }
1835
+
1836
+ .subnav { display: block; width: auto; overflow: hidden; margin: 0 0 18px 0; padding-top: 4px; }
1837
+ .subnav li, .subnav dt, .subnav dd { float: left; display: inline; margin-left: 9px; margin-bottom: 4px; }
1838
+ .subnav li:first-child, .subnav dt:first-child, .subnav dd:first-child { margin-left: 0; }
1839
+ .subnav dt { color: #999; font-weight: normal; }
1840
+ .subnav li a, .subnav dd a { color: #05390a; font-size: 15px; text-decoration: none; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
1841
+ .subnav li.active a, .subnav dd.active a { background: #5dbb73; padding: 5px 9px; text-shadow: 0 1px 1px #77d58e; }
1834
1842
 
1835
1843
  .drawer { position: relative; width: 100%; max-height: 0; background: #3e4144; -webkit-box-shadow: inset 0 -2px 5px #313436, inset 0 2px 5px #313436; -moz-box-shadow: inset 0 -2px 5px #313436, inset 0 2px 5px #313436; box-shadow: inset 0 -2px 5px #313436, inset 0 2px 5px #313436; overflow: hidden; -webkit-transition-duration: 0.3s; -moz-transition-duration: 0.3s; -o-transition-duration: 0.3s; transition-duration: 0.3s; }
1836
1844
  .drawer.active { height: auto; max-height: 800px; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; }