auto_error 0.0.16 → 0.0.18

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4f4d75103880e5d7b1f51ef5ed9aa459f2fe669e
4
- data.tar.gz: 88d61e260a902d36b9f1ac34802f0a38a6f7dd12
3
+ metadata.gz: 3334418b7d62d7c64f0d6c0a63892e38c955d44b
4
+ data.tar.gz: 9713f90cc4b61969e8c8e6688d56e8380094412a
5
5
  SHA512:
6
- metadata.gz: 8e17961ac85dd7b77e922364bdefc647a78b9c422998d8c7d5b474c507a5cddec8ee32013093c96eabeadaed7fd8e31509ab08bd293c320d7d055daa431031d3
7
- data.tar.gz: be324c8dc2af69c216be65069516898cb98978b9d4ba4f364bdb23cfcf450110d50767c8ccc9c49c80757a11ed88a9b3ee858930e8d255d42d09114f4843817c
6
+ metadata.gz: 8ea73cd089bb6161ece32b0274d419c817e252b2741ced86e28eb2d6dd47f7d0c6186d6abee3d75ffd8c2784c2db43deb53f07617b7be908e89567858467916e
7
+ data.tar.gz: 5e77d879979fddff774d931353b6b6b9e67c2ad7fc225b414b3a8b40bd1993d9deb2c141ba78327651a069e881bf05dfbc95eef747613d2a26d3f9f9c8ba8fc5
@@ -5,5 +5,5 @@
5
5
  //= require auto_error/backbone-0.9.10
6
6
  //= require auto_error/foundation-reveal
7
7
  //= require handlebars.runtime
8
- //= require_tree ./templates
9
- //= require ./app_errors
8
+ //= require_tree ./auto_error/templates
9
+ //= require ./auto_error/app_errors
@@ -15,6 +15,6 @@ namespacedTemplates = ->
15
15
  h
16
16
 
17
17
  _.extend( window.AutoErrorApp, {
18
- Templates: namespacedTemplates().auto_error.templates
18
+ Templates: namespacedTemplates()
19
19
  Views: {}
20
20
  } )
@@ -1,5 +1,6 @@
1
1
  /*
2
2
  *= require_self
3
+ *= require auto_error/normalize
3
4
  *= require auto_error/foundation
4
5
  *= require_tree .
5
6
  */
@@ -56,16 +56,16 @@ table.polling tfoot .poller .spinner {
56
56
  }
57
57
 
58
58
 
59
- .reveal-modal {
59
+ #auto_error .reveal-modal {
60
60
  top: 0px;
61
61
  width: 960px;
62
62
  margin-left: -480px;
63
- display: block; /* wat? */
63
+ display: none;
64
64
  }
65
- .reveal-modal h4 {
65
+ #auto_error .reveal-modal h4 {
66
66
  margin-top: 0;
67
67
  }
68
- .close-reveal-modal {
68
+ #auto_error .close-reveal-modal {
69
69
  top: 0;
70
70
  left: 5px;
71
71
  }
@@ -1,32 +1,33 @@
1
1
  - content_for :auto_error_assets do
2
- = stylesheet_link_tag 'auto_error/application', media: 'all'
2
+ = stylesheet_link_tag 'auto_error', media: 'all'
3
3
  = auto_error_js_namespace
4
- = javascript_include_tag 'auto_error/application'
4
+ = javascript_include_tag 'auto_error'
5
5
 
6
- .row#app_errors{ data: { url: app_errors_path } }
7
- .small-12.columns.centered
8
- %h2 App Errors
6
+ #auto_error
7
+ .row#app_errors{ data: { url: app_errors_path } }
8
+ .small-12.columns.centered
9
+ %h2 App Errors
9
10
 
10
- %table.polling{ width: '100%' }
11
- %thead
12
- %tr
13
- %th{ width: '550px' } Message
14
- %th Data
15
- %th Time
16
- %th  
17
- %tbody
18
- %tr
19
- %td{ colspan: 4 }
20
- %p.loading_message Loading...
21
- %tfoot
22
- %tr
23
- %td{ colspan: 4 }
24
- .row
25
- .small-6.columns
26
- .poller
27
- %a.tiny.button.radius.primary{ href: 'javascript:void(0);' } start polling
28
- .spinner
29
- .small-6.columns
30
- %p.total
31
- Total App Errors:
32
- %strong …
11
+ %table.polling{ width: '100%' }
12
+ %thead
13
+ %tr
14
+ %th{ width: '550px' } Message
15
+ %th Data
16
+ %th Time
17
+ %th  
18
+ %tbody
19
+ %tr
20
+ %td{ colspan: 4 }
21
+ %p.loading_message Loading...
22
+ %tfoot
23
+ %tr
24
+ %td{ colspan: 4 }
25
+ .row
26
+ .small-6.columns
27
+ .poller
28
+ %a.tiny.button.radius.primary{ href: 'javascript:void(0);' } start polling
29
+ .spinner
30
+ .small-6.columns
31
+ %p.total
32
+ Total App Errors:
33
+ %strong …
@@ -9,5 +9,9 @@ module AutoError
9
9
  g.test_framework :rspec, fixture: true
10
10
  g.fixture_replacement :fabrication
11
11
  end
12
+
13
+ initializer 'auto_error.assets.precompile' do |app|
14
+ app.config.assets.precompile += %w( auto_error.js auto_error.css )
15
+ end
12
16
  end
13
17
  end
@@ -1,3 +1,3 @@
1
1
  module AutoError
2
- VERSION = "0.0.16"
2
+ VERSION = "0.0.18"
3
3
  end
@@ -1,161 +1,178 @@
1
1
  /*
2
- * jQuery Reveal Plugin 1.0
2
+ * jQuery Reveal Plugin 1.1
3
3
  * www.ZURB.com
4
4
  * Copyright 2010, ZURB
5
5
  * Free to use under the MIT license.
6
6
  * http://www.opensource.org/licenses/mit-license.php
7
7
  */
8
+ /*globals jQuery */
9
+
10
+ (function ($) {
11
+ 'use strict';
12
+ var modalQueued = false;
13
+
14
+ $('body').on( 'click', 'a[data-reveal-id]', function (event) {
15
+ event.preventDefault();
16
+ var modalLocation = $(this).attr('data-reveal-id');
17
+ $('#' + modalLocation).reveal($(this).data());
18
+ });
19
+
20
+ $.fn.reveal = function (options) {
21
+ var defaults = {
22
+ animation: 'fadeAndPop', // fade, fadeAndPop, none
23
+ animationSpeed: 300, // how fast animtions are
24
+ closeOnBackgroundClick: true, // if you click background will modal close?
25
+ dismissModalClass: 'close-reveal-modal', // the class of a button or element that will close an open modal
26
+ open: $.noop,
27
+ opened: $.noop,
28
+ close: $.noop,
29
+ closed: $.noop
30
+ };
31
+ options = $.extend({}, defaults, options);
32
+
33
+ return this.each(function () {
34
+ var modal = $(this),
35
+ topMeasure = parseInt(modal.css('top'), 10),
36
+ topOffset = modal.height() + topMeasure,
37
+ locked = false,
38
+ modalBg = $('.reveal-modal-bg'),
39
+ closeButton;
40
+
41
+ if (modalBg.length === 0) {
42
+ modalBg = $('<div class="reveal-modal-bg" />').insertAfter(modal);
43
+ modalBg.fadeTo('fast', 0.8);
44
+ }
8
45
 
46
+ function unlockModal() {
47
+ locked = false;
48
+ }
9
49
 
10
- (function($) {
11
-
12
- /*---------------------------
13
- Defaults for Reveal
14
- ----------------------------*/
15
-
16
- /*---------------------------
17
- Listener for data-reveal-id attributes
18
- ----------------------------*/
19
-
20
- // How about no, scott?
21
- // $('a[data-reveal-id]').live('click', function(e) {
22
- // e.preventDefault();
23
- // var modalLocation = $(this).attr('data-reveal-id');
24
- // $('#'+modalLocation).reveal($(this).data());
25
- // });
26
-
27
- /*---------------------------
28
- Extend and Execute
29
- ----------------------------*/
30
-
31
- $.fn.reveal = function(options) {
32
-
33
-
34
- var defaults = {
35
- animation: 'fadeAndPop', //fade, fadeAndPop, none
36
- animationspeed: 300, //how fast animtions are
37
- closeonbackgroundclick: true, //if you click background will modal close?
38
- dismissmodalclass: 'close-reveal-modal' //the class of a button or element that will close an open modal
39
- };
40
-
41
- //Extend dem' options
42
- var options = $.extend({}, defaults, options);
43
-
44
- return this.each(function() {
50
+ function lockModal() {
51
+ locked = true;
52
+ }
45
53
 
46
- /*---------------------------
47
- Global Variables
48
- ----------------------------*/
49
- var modal = $(this),
50
- topMeasure = parseInt(modal.css('top')),
51
- topOffset = modal.height() + topMeasure,
52
- locked = false,
53
- modalBG = $('.reveal-modal-bg');
54
+ function closeOpenModals(modal) {
54
55
 
55
- /*---------------------------
56
- Create Modal BG
57
- ----------------------------*/
58
- if(modalBG.length == 0) {
59
- modalBG = $('<div class="reveal-modal-bg" />').insertAfter(modal);
56
+ var openModals = $(".reveal-modal.open");
57
+ if (openModals.length === 1) {
58
+ modalQueued = true;
59
+ $(".reveal-modal.open").trigger("reveal:close");
60
+ }
60
61
  }
61
62
 
62
- /*---------------------------
63
- Open & Close Animations
64
- ----------------------------*/
65
- //Entrance Animations
66
- modal.bind('reveal:open', function () {
67
- modalBG.unbind('click.modalEvent');
68
- $('.' + options.dismissmodalclass).unbind('click.modalEvent');
69
- if(!locked) {
63
+ function openAnimation() {
64
+ if (!locked) {
70
65
  lockModal();
71
- if(options.animation == "fadeAndPop") {
72
- modal.css({'top': $(document).scrollTop()-topOffset, 'opacity' : 0, 'visibility' : 'visible'});
73
- modalBG.fadeIn(options.animationspeed/2);
74
- modal.delay(options.animationspeed/2).animate({
75
- "top": $(document).scrollTop()+topMeasure + 'px',
76
- "opacity" : 1
77
- }, options.animationspeed,unlockModal());
66
+ closeOpenModals(modal);
67
+ modal.addClass("open");
68
+ if (options.animation === "fadeAndPop") {
69
+ modal.css({'top': $(document).scrollTop() - topOffset, 'opacity': 0, 'visibility': 'visible', 'display' : 'block'});
70
+ modalBg.fadeIn(options.animationSpeed / 2);
71
+ modal.delay(options.animationSpeed / 2).animate({
72
+ "top": $(document).scrollTop() + topMeasure + 'px',
73
+ "opacity": 1
74
+ }, options.animationSpeed, function () {
75
+ modal.trigger('reveal:opened');
76
+ });
77
+
78
78
  }
79
- if(options.animation == "fade") {
80
- modal.css({'opacity' : 0, 'visibility' : 'visible', 'top': $(document).scrollTop()+topMeasure});
81
- modalBG.fadeIn(options.animationspeed/2);
82
- modal.delay(options.animationspeed/2).animate({
83
- "opacity" : 1
84
- }, options.animationspeed,unlockModal());
79
+ if (options.animation === "fade") {
80
+ modal.css({'opacity': 0, 'visibility': 'visible', 'display' : 'block', 'top': $(document).scrollTop() + topMeasure});
81
+ modalBg.fadeIn(options.animationSpeed / 2);
82
+ modal.delay(options.animationSpeed / 2).animate({
83
+ "opacity": 1
84
+ }, options.animationSpeed, function () {
85
+ modal.trigger('reveal:opened');
86
+ });
87
+
85
88
  }
86
- if(options.animation == "none") {
87
- modal.css({'visibility' : 'visible', 'top':$(document).scrollTop()+topMeasure});
88
- modalBG.css({"display":"block"});
89
- unlockModal()
89
+ if (options.animation === "none") {
90
+ modal.css({'visibility': 'visible', 'display' : 'block', 'top': $(document).scrollTop() + topMeasure});
91
+ modalBg.css({"display": "block"});
92
+ modal.trigger('reveal:opened');
90
93
  }
91
94
  }
92
- modal.unbind('reveal:open');
93
- });
95
+ }
96
+ modal.bind('reveal:open.reveal', openAnimation);
94
97
 
95
- //Closing Animation
96
- modal.bind('reveal:close', function () {
97
- if(!locked) {
98
+ function closeAnimation() {
99
+ if (!locked) {
98
100
  lockModal();
99
- if(options.animation == "fadeAndPop") {
100
- modalBG.delay(options.animationspeed).fadeOut(options.animationspeed);
101
+ modal.removeClass("open");
102
+ if (options.animation === "fadeAndPop") {
101
103
  modal.animate({
102
- "top": $(document).scrollTop()-topOffset + 'px',
103
- "opacity" : 0
104
- }, options.animationspeed/2, function() {
105
- modal.css({'top':topMeasure, 'opacity' : 1, 'visibility' : 'hidden'});
106
- unlockModal();
104
+ "top": $(document).scrollTop() - topOffset + 'px',
105
+ "opacity": 0
106
+ }, options.animationSpeed / 2, function () {
107
+ modal.css({'top': topMeasure, 'opacity': 1, 'visibility': 'hidden', 'display': 'none'});
107
108
  });
109
+ if (!modalQueued) {
110
+ modalBg.delay(options.animationSpeed).fadeOut(options.animationSpeed, function () {
111
+ modal.trigger('reveal:closed');
112
+ });
113
+ } else {
114
+ modal.trigger('reveal:closed');
115
+ }
116
+ modalQueued = false;
108
117
  }
109
- if(options.animation == "fade") {
110
- modalBG.delay(options.animationspeed).fadeOut(options.animationspeed);
118
+ if (options.animation === "fade") {
111
119
  modal.animate({
112
120
  "opacity" : 0
113
- }, options.animationspeed, function() {
114
- modal.css({'opacity' : 1, 'visibility' : 'hidden', 'top' : topMeasure});
115
- unlockModal();
121
+ }, options.animationSpeed, function () {
122
+ modal.css({'opacity': 1, 'visibility': 'hidden', 'display' : 'none', 'top': topMeasure});
116
123
  });
124
+ if (!modalQueued) {
125
+ modalBg.delay(options.animationSpeed).fadeOut(options.animationSpeed, function () {
126
+ modal.trigger('reveal:closed');
127
+ });
128
+ } else {
129
+ modal.trigger('reveal:closed');
130
+ }
117
131
  }
118
- if(options.animation == "none") {
119
- modal.css({'visibility' : 'hidden', 'top' : topMeasure});
120
- modalBG.css({'display' : 'none'});
132
+ if (options.animation === "none") {
133
+ modal.css({'visibility': 'hidden', 'display' : 'block', 'top': topMeasure});
134
+ if (!modalQueued) {
135
+ modalBg.css({'display': 'none'});
136
+ }
137
+ modal.trigger('reveal:closed');
121
138
  }
122
139
  }
123
- modal.unbind('reveal:close');
124
- });
140
+ }
125
141
 
126
- /*---------------------------
127
- Open and add Closing Listeners
128
- ----------------------------*/
129
- //Open Modal Immediately
130
- modal.trigger('reveal:open')
142
+ function destroy() {
143
+ modal.unbind('.reveal');
144
+ modalBg.unbind('.reveal');
145
+ $('.' + options.dismissModalClass).unbind('.reveal');
146
+ $('body').unbind('.reveal');
147
+ }
131
148
 
132
- //Close Modal Listeners
133
- var closeButton = $('.' + options.dismissmodalclass).bind('click.modalEvent', function () {
134
- modal.trigger('reveal:close')
135
- });
149
+ modal.bind('reveal:close.reveal', closeAnimation);
150
+ modal.bind('reveal:opened.reveal reveal:closed.reveal', unlockModal);
151
+ modal.bind('reveal:closed.reveal', destroy);
136
152
 
137
- if(options.closeonbackgroundclick) {
138
- modalBG.css({"cursor":"pointer"})
139
- modalBG.bind('click.modalEvent', function () {
140
- modal.trigger('reveal:close')
141
- });
142
- }
143
- $('body').keyup(function(e) {
144
- if(e.which===27){ modal.trigger('reveal:close'); } // 27 is the keycode for the Escape key
145
- });
153
+ modal.bind('reveal:open.reveal', options.open);
154
+ modal.bind('reveal:opened.reveal', options.opened);
155
+ modal.bind('reveal:close.reveal', options.close);
156
+ modal.bind('reveal:closed.reveal', options.closed);
146
157
 
158
+ modal.trigger('reveal:open');
147
159
 
148
- /*---------------------------
149
- Animations Locks
150
- ----------------------------*/
151
- function unlockModal() {
152
- locked = false;
153
- }
154
- function lockModal() {
155
- locked = true;
156
- }
160
+ closeButton = $('.' + options.dismissModalClass).bind('click.reveal', function () {
161
+ modal.trigger('reveal:close');
162
+ });
157
163
 
158
- });//each call
159
- }//orbit plugin call
160
- })(jQuery);
164
+ if (options.closeOnBackgroundClick) {
165
+ modalBg.css({"cursor": "pointer"});
166
+ modalBg.bind('click.reveal', function () {
167
+ modal.trigger('reveal:close');
168
+ });
169
+ }
161
170
 
171
+ $('body').bind('keyup.reveal', function (event) {
172
+ if (event.which === 27) { // 27 is the keycode for the Escape key
173
+ modal.trigger('reveal:close');
174
+ }
175
+ });
176
+ });
177
+ };
178
+ } (jQuery));
@@ -1,685 +1,1582 @@
1
- meta.foundation-mq-small {
2
- font-family: "only screen and (min-width: 768px)";
3
- width: 768px; }
4
-
5
- meta.foundation-mq-medium {
6
- font-family: "only screen and (min-width:1280px)";
7
- width: 1280px; }
8
-
9
- meta.foundation-mq-large {
10
- font-family: "only screen and (min-width:1440px)";
11
- width: 1440px; }
12
-
13
- *,
14
- *:before,
15
- *:after {
16
- -moz-box-sizing: border-box;
17
- -webkit-box-sizing: border-box;
18
- box-sizing: border-box; }
19
-
20
- html,
21
- body {
22
- font-size: 100%; }
23
-
24
- body {
25
- background: white;
26
- color: #222222;
27
- padding: 0;
28
- margin: 0;
29
- font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
30
- font-weight: normal;
31
- font-style: normal;
32
- line-height: 1;
33
- position: relative;
34
- cursor: default; }
35
-
36
- a:hover {
37
- cursor: pointer; }
38
-
39
- img,
40
- object,
41
- embed {
42
- max-width: 100%;
43
- height: auto; }
44
-
45
- object,
46
- embed {
47
- height: 100%; }
48
-
49
- img {
50
- -ms-interpolation-mode: bicubic; }
51
-
52
- #map_canvas img,
53
- #map_canvas embed,
54
- #map_canvas object,
55
- .map_canvas img,
56
- .map_canvas embed,
57
- .map_canvas object {
58
- max-width: none !important; }
59
-
60
- .left {
61
- float: left !important; }
62
-
63
- .right {
64
- float: right !important; }
65
-
66
- .text-left {
67
- text-align: left !important; }
68
-
69
- .text-right {
70
- text-align: right !important; }
71
-
72
- .text-center {
73
- text-align: center !important; }
74
-
75
- .text-justify {
76
- text-align: justify !important; }
77
-
78
- .hide {
79
- display: none; }
80
-
81
- .antialiased {
82
- -webkit-font-smoothing: antialiased; }
83
-
84
- img {
85
- display: inline-block;
86
- vertical-align: middle; }
87
-
88
- textarea {
89
- height: auto;
90
- min-height: 50px; }
91
-
92
- select {
93
- width: 100%; }
94
-
95
- /* Grid HTML Classes */
96
- .row {
97
- width: 100%;
98
- margin-left: auto;
99
- margin-right: auto;
100
- margin-top: 0;
101
- margin-bottom: 0;
102
- max-width: 62.5em;
103
- *zoom: 1; }
104
- .row:before, .row:after {
105
- content: " ";
106
- display: table; }
107
- .row:after {
108
- clear: both; }
109
- .row.collapse > .column,
110
- .row.collapse > .columns {
111
- position: relative;
112
- padding-left: 0;
113
- padding-right: 0;
114
- float: left; }
115
- .row.collapse .row {
116
- margin-left: 0;
117
- margin-right: 0; }
118
- .row .row {
119
- width: auto;
120
- margin-left: -0.9375em;
121
- margin-right: -0.9375em;
122
- margin-top: 0;
123
- margin-bottom: 0;
124
- max-width: none;
125
- *zoom: 1; }
126
- .row .row:before, .row .row:after {
127
- content: " ";
128
- display: table; }
129
- .row .row:after {
130
- clear: both; }
131
- .row .row.collapse {
132
- width: auto;
133
- margin: 0;
134
- max-width: none;
135
- *zoom: 1; }
136
- .row .row.collapse:before, .row .row.collapse:after {
137
- content: " ";
138
- display: table; }
139
- .row .row.collapse:after {
140
- clear: both; }
141
-
142
- .column,
143
- .columns {
144
- position: relative;
145
- padding-left: 0.9375em;
146
- padding-right: 0.9375em;
147
- width: 100%;
148
- float: left; }
149
-
150
- @media only screen {
151
- .column,
152
- .columns {
153
- position: relative;
154
- padding-left: 0.9375em;
155
- padding-right: 0.9375em;
156
- float: left; }
157
-
158
- .small-1 {
159
- position: relative;
160
- width: 8.33333%; }
161
-
162
- .small-2 {
163
- position: relative;
164
- width: 16.66667%; }
165
-
166
- .small-3 {
167
- position: relative;
168
- width: 25%; }
169
-
170
- .small-4 {
171
- position: relative;
172
- width: 33.33333%; }
173
-
174
- .small-5 {
175
- position: relative;
176
- width: 41.66667%; }
177
-
178
- .small-6 {
179
- position: relative;
180
- width: 50%; }
181
-
182
- .small-7 {
183
- position: relative;
184
- width: 58.33333%; }
185
-
186
- .small-8 {
187
- position: relative;
188
- width: 66.66667%; }
189
-
190
- .small-9 {
191
- position: relative;
192
- width: 75%; }
193
-
194
- .small-10 {
195
- position: relative;
196
- width: 83.33333%; }
197
-
198
- .small-11 {
199
- position: relative;
200
- width: 91.66667%; }
201
-
202
- .small-12 {
203
- position: relative;
204
- width: 100%; }
205
-
206
- .small-offset-0 {
207
- position: relative;
208
- margin-left: 0%; }
209
-
210
- .small-offset-1 {
211
- position: relative;
212
- margin-left: 8.33333%; }
213
-
214
- .small-offset-2 {
215
- position: relative;
216
- margin-left: 16.66667%; }
217
-
218
- .small-offset-3 {
219
- position: relative;
220
- margin-left: 25%; }
221
-
222
- .small-offset-4 {
223
- position: relative;
224
- margin-left: 33.33333%; }
225
-
226
- .small-offset-5 {
227
- position: relative;
228
- margin-left: 41.66667%; }
229
-
230
- .small-offset-6 {
231
- position: relative;
232
- margin-left: 50%; }
233
-
234
- .small-offset-7 {
235
- position: relative;
236
- margin-left: 58.33333%; }
237
-
238
- .small-offset-8 {
239
- position: relative;
240
- margin-left: 66.66667%; }
241
-
242
- .small-offset-9 {
243
- position: relative;
244
- margin-left: 75%; }
245
-
246
- .small-offset-10 {
247
- position: relative;
248
- margin-left: 83.33333%; }
249
-
250
- [class*="column"] + [class*="column"]:last-child {
251
- float: right; }
252
-
253
- [class*="column"] + [class*="column"].end {
254
- float: left; }
255
-
256
- .column.small-centered,
257
- .columns.small-centered {
258
- position: relative;
259
- margin-left: auto;
260
- margin-right: auto;
261
- float: none !important; } }
262
- /* Styles for screens that are atleast 768px; */
263
- @media only screen and (min-width: 768px) {
264
- .large-1 {
265
- position: relative;
266
- width: 8.33333%; }
267
-
268
- .large-2 {
269
- position: relative;
270
- width: 16.66667%; }
271
-
272
- .large-3 {
273
- position: relative;
274
- width: 25%; }
275
-
276
- .large-4 {
277
- position: relative;
278
- width: 33.33333%; }
279
-
280
- .large-5 {
281
- position: relative;
282
- width: 41.66667%; }
283
-
284
- .large-6 {
285
- position: relative;
286
- width: 50%; }
287
-
288
- .large-7 {
289
- position: relative;
290
- width: 58.33333%; }
291
-
292
- .large-8 {
293
- position: relative;
294
- width: 66.66667%; }
295
-
296
- .large-9 {
297
- position: relative;
298
- width: 75%; }
299
-
300
- .large-10 {
301
- position: relative;
302
- width: 83.33333%; }
303
-
304
- .large-11 {
305
- position: relative;
306
- width: 91.66667%; }
307
-
308
- .large-12 {
309
- position: relative;
310
- width: 100%; }
311
-
312
- .row .large-offset-0 {
313
- position: relative;
314
- margin-left: 0%; }
315
-
316
- .row .large-offset-1 {
317
- position: relative;
318
- margin-left: 8.33333%; }
319
-
320
- .row .large-offset-2 {
321
- position: relative;
322
- margin-left: 16.66667%; }
323
-
324
- .row .large-offset-3 {
325
- position: relative;
326
- margin-left: 25%; }
327
-
328
- .row .large-offset-4 {
329
- position: relative;
330
- margin-left: 33.33333%; }
331
-
332
- .row .large-offset-5 {
333
- position: relative;
334
- margin-left: 41.66667%; }
335
-
336
- .row .large-offset-6 {
337
- position: relative;
338
- margin-left: 50%; }
339
-
340
- .row .large-offset-7 {
341
- position: relative;
342
- margin-left: 58.33333%; }
343
-
344
- .row .large-offset-8 {
345
- position: relative;
346
- margin-left: 66.66667%; }
347
-
348
- .row .large-offset-9 {
349
- position: relative;
350
- margin-left: 75%; }
351
-
352
- .row .large-offset-10 {
353
- position: relative;
354
- margin-left: 83.33333%; }
355
-
356
- .row .large-offset-11 {
357
- position: relative;
358
- margin-left: 91.66667%; }
359
-
360
- .push-1 {
361
- position: relative;
362
- left: 8.33333%;
363
- right: auto; }
364
-
365
- .pull-1 {
366
- position: relative;
367
- right: 8.33333%;
368
- left: auto; }
369
-
370
- .push-2 {
371
- position: relative;
372
- left: 16.66667%;
373
- right: auto; }
374
-
375
- .pull-2 {
376
- position: relative;
377
- right: 16.66667%;
378
- left: auto; }
379
-
380
- .push-3 {
381
- position: relative;
382
- left: 25%;
383
- right: auto; }
384
-
385
- .pull-3 {
386
- position: relative;
387
- right: 25%;
388
- left: auto; }
389
-
390
- .push-4 {
391
- position: relative;
392
- left: 33.33333%;
393
- right: auto; }
394
-
395
- .pull-4 {
396
- position: relative;
397
- right: 33.33333%;
398
- left: auto; }
399
-
400
- .push-5 {
401
- position: relative;
402
- left: 41.66667%;
403
- right: auto; }
404
-
405
- .pull-5 {
406
- position: relative;
407
- right: 41.66667%;
408
- left: auto; }
409
-
410
- .push-6 {
411
- position: relative;
412
- left: 50%;
413
- right: auto; }
414
-
415
- .pull-6 {
416
- position: relative;
417
- right: 50%;
418
- left: auto; }
419
-
420
- .push-7 {
421
- position: relative;
422
- left: 58.33333%;
423
- right: auto; }
424
-
425
- .pull-7 {
426
- position: relative;
427
- right: 58.33333%;
428
- left: auto; }
429
-
430
- .push-8 {
431
- position: relative;
432
- left: 66.66667%;
433
- right: auto; }
434
-
435
- .pull-8 {
436
- position: relative;
437
- right: 66.66667%;
438
- left: auto; }
439
-
440
- .push-9 {
441
- position: relative;
442
- left: 75%;
443
- right: auto; }
444
-
445
- .pull-9 {
446
- position: relative;
447
- right: 75%;
448
- left: auto; }
449
-
450
- .push-10 {
451
- position: relative;
452
- left: 83.33333%;
453
- right: auto; }
454
-
455
- .pull-10 {
456
- position: relative;
457
- right: 83.33333%;
458
- left: auto; }
459
-
460
- .push-11 {
461
- position: relative;
462
- left: 91.66667%;
463
- right: auto; }
464
-
465
- .pull-11 {
466
- position: relative;
467
- right: 91.66667%;
468
- left: auto; }
469
-
470
- .column.large-centered,
471
- .columns.large-centered {
472
- position: relative;
473
- margin-left: auto;
474
- margin-right: auto;
475
- float: none !important; }
476
-
477
- .column.large-uncentered,
478
- .columns.large-uncentered {
479
- margin-left: 0;
480
- margin-right: 0;
481
- float: left !important; }
482
-
483
- .column.large-uncentered.opposite,
484
- .columns.large-uncentered.opposite {
485
- float: right !important; } }
486
- button, .button {
487
- border-style: solid;
488
- border-width: 1px;
489
- cursor: pointer;
490
- font-family: inherit;
491
- font-weight: bold;
492
- line-height: normal;
493
- margin: 0 0 1.25em;
494
- position: relative;
495
- text-decoration: none;
496
- text-align: center;
497
- display: inline-block;
498
- padding-top: 0.75em;
499
- padding-right: 1.5em;
500
- padding-bottom: 0.8125em;
501
- padding-left: 1.5em;
502
- font-size: 1em;
503
- background-color: #2ba6cb;
504
- border-color: #2284a1;
505
- color: white; }
506
- button:hover, button:focus, .button:hover, .button:focus {
507
- background-color: #2284a1; }
508
- button:hover, button:focus, .button:hover, .button:focus {
509
- color: white; }
510
- button.secondary, .button.secondary {
511
- background-color: #e9e9e9;
512
- border-color: #d0d0d0;
513
- color: #333333; }
514
- button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
515
- background-color: #d0d0d0; }
516
- button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
517
- color: #333333; }
518
- button.success, .button.success {
519
- background-color: #5da423;
520
- border-color: #457a1a;
521
- color: white; }
522
- button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
523
- background-color: #457a1a; }
524
- button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
525
- color: white; }
526
- button.alert, .button.alert {
527
- background-color: #c60f13;
528
- border-color: #970b0e;
529
- color: white; }
530
- button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
531
- background-color: #970b0e; }
532
- button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
533
- color: white; }
534
- button.large, .button.large {
535
- padding-top: 1em;
536
- padding-right: 2em;
537
- padding-bottom: 1.0625em;
538
- padding-left: 2em;
539
- font-size: 1.25em; }
540
- button.small, .button.small {
541
- padding-top: 0.5625em;
542
- padding-right: 1.125em;
543
- padding-bottom: 0.625em;
544
- padding-left: 1.125em;
545
- font-size: 0.8125em; }
546
- button.tiny, .button.tiny {
547
- padding-top: 0.4375em;
548
- padding-right: 0.875em;
549
- padding-bottom: 0.5em;
550
- padding-left: 0.875em;
551
- font-size: 0.6875em; }
552
- button.expand, .button.expand {
553
- padding-right: 0;
554
- padding-left: 0;
555
- width: 100%; }
556
- button.left-align, .button.left-align {
557
- text-align: left;
558
- text-indent: 0.75em; }
559
- button.right-align, .button.right-align {
560
- text-align: right;
561
- padding-right: 0.75em; }
562
- button.disabled, button[disabled], .button.disabled, .button[disabled] {
563
- background-color: #2ba6cb;
564
- border-color: #2284a1;
565
- color: white;
566
- cursor: default;
567
- opacity: 0.6;
568
- -webkit-box-shadow: none;
569
- box-shadow: none; }
570
- button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
571
- background-color: #2284a1; }
572
- button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
573
- color: white; }
574
- button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
575
- background-color: #2ba6cb; }
576
- button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
577
- background-color: #e9e9e9;
578
- border-color: #d0d0d0;
579
- color: #333333;
580
- cursor: default;
581
- opacity: 0.6;
582
- -webkit-box-shadow: none;
583
- box-shadow: none; }
584
- button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
585
- background-color: #d0d0d0; }
586
- button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
587
- color: #333333; }
588
- button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
589
- background-color: #e9e9e9; }
590
- button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
591
- background-color: #5da423;
592
- border-color: #457a1a;
593
- color: white;
594
- cursor: default;
595
- opacity: 0.6;
596
- -webkit-box-shadow: none;
597
- box-shadow: none; }
598
- button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
599
- background-color: #457a1a; }
600
- button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
601
- color: white; }
602
- button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
603
- background-color: #5da423; }
604
- button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
605
- background-color: #c60f13;
606
- border-color: #970b0e;
607
- color: white;
608
- cursor: default;
609
- opacity: 0.6;
610
- -webkit-box-shadow: none;
611
- box-shadow: none; }
612
- button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
613
- background-color: #970b0e; }
614
- button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
615
- color: white; }
616
- button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
617
- background-color: #c60f13; }
618
-
619
- button, .button {
620
- padding-top: 0.8125em;
621
- padding-bottom: 0.75em;
622
- -webkit-appearance: none; }
623
- button.tiny, .button.tiny {
624
- padding-top: 0.5em;
625
- padding-bottom: 0.4375em;
626
- -webkit-appearance: none; }
627
- button.small, .button.small {
628
- padding-top: 0.625em;
629
- padding-bottom: 0.5625em;
630
- -webkit-appearance: none; }
631
- button.large, .button.large {
632
- padding-top: 1.03125em;
633
- padding-bottom: 1.03125em;
634
- -webkit-appearance: none; }
635
-
636
- @media only screen {
637
- button, .button {
638
- -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
639
- box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
640
- -webkit-transition: background-color 300ms ease-out;
641
- -moz-transition: background-color 300ms ease-out;
642
- transition: background-color 300ms ease-out; }
643
- button:active, .button:active {
644
- -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;
645
- box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; }
646
- button.radius, .button.radius {
647
- -webkit-border-radius: 3px;
648
- border-radius: 3px; }
649
- button.round, .button.round {
650
- -webkit-border-radius: 1000px;
651
- border-radius: 1000px; } }
652
- @media only screen and (min-width: 768px) {
653
- button, .button {
654
- display: inline-block; } }
655
- /* Tables */
656
- table {
657
- background: white;
658
- margin-bottom: 1.25em;
659
- border: solid 1px #dddddd; }
660
- table thead,
661
- table tfoot {
662
- background: whitesmoke;
663
- font-weight: bold; }
664
- table thead tr th,
665
- table thead tr td,
666
- table tfoot tr th,
667
- table tfoot tr td {
668
- padding: 0.5em 0.625em 0.625em;
669
- font-size: 0.875em;
670
- color: #222222;
671
- text-align: left; }
672
- table tr th,
673
- table tr td {
674
- padding: 0.5625em 0.625em;
675
- font-size: 0.875em;
676
- color: #222222; }
677
- table tr.even, table tr.alt, table tr:nth-of-type(even) {
678
- background: #f9f9f9; }
679
- table thead tr th,
680
- table tfoot tr th,
681
- table tbody tr td,
682
- table tr td,
683
- table tfoot tr td {
684
- display: table-cell;
685
- line-height: 1.125em; }
1
+ /* Requires: normalize.css */
2
+
3
+ /* Global Reset & Standards ---------------------- */
4
+
5
+ *, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
6
+
7
+
8
+ html { font-size: 62.5%; }
9
+
10
+
11
+ body { background: white; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; font-size: 14px; line-height: 1; color: #222222; position: relative; -webkit-font-smoothing: antialiased; }
12
+
13
+
14
+ /* Links ---------------------- */
15
+
16
+ a img { border: none; }
17
+
18
+
19
+ a { color: #2ba6cb; text-decoration: none; line-height: inherit; }
20
+
21
+
22
+ a:hover { color: #2795b6; }
23
+
24
+
25
+ a:focus { color: #2795b6; }
26
+
27
+
28
+ p a, p a:visited { line-height: inherit; }
29
+
30
+
31
+ /* Misc ---------------------- */
32
+ #auto_error .left { float: left;}
33
+ #auto_error .right { float: right;}
34
+ #auto_error .text-left { text-align: left;}
35
+ #auto_error .text-right { text-align: right;}
36
+ #auto_error .text-center { text-align: center;}
37
+ #auto_error .hide { display: none;}
38
+ #auto_error .hide-override { display: none !important;}
39
+ #auto_error .highlight { background: #ffff99;}
40
+ #auto_error #googlemap img, object, embed { max-width: none; }
41
+ #auto_error #map_canvas embed { max-width: none;}
42
+ #auto_error #map_canvas img { max-width: none;}
43
+ #auto_error #map_canvas object { max-width: none;}
44
+
45
+
46
+ /* Reset for strange margins by default on <figure> elements */
47
+
48
+ figure { margin: 0; }
49
+
50
+
51
+ /* Base Type Styles Using Modular Scale ---------------------- */
52
+
53
+ body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; font-size: 14px; direction: ltr; }
54
+
55
+
56
+ p { font-family: inherit; font-weight: normal; font-size: 14px; line-height: 1.6; margin-bottom: 17px; }
57
+
58
+ p.lead { font-size: 17.5px; line-height: 1.6; margin-bottom: 17px; }
59
+
60
+
61
+ aside p { font-size: 13px; line-height: 1.35; font-style: italic; }
62
+
63
+
64
+ h1, h2, h3, h4, h5, h6 { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: bold; font-style: normal; color: #222222; text-rendering: optimizeLegibility; line-height: 1.1; margin-bottom: 14px; margin-top: 14px; }
65
+
66
+ h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; }
67
+
68
+
69
+ h1 { font-size: 44px; }
70
+
71
+
72
+ h2 { font-size: 37px; }
73
+
74
+
75
+ h3 { font-size: 27px; }
76
+
77
+
78
+ h4 { font-size: 23px; }
79
+
80
+
81
+ h5 { font-size: 17px; }
82
+
83
+
84
+ h6 { font-size: 14px; }
85
+
86
+
87
+ hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 22px 0 21px; height: 0; }
88
+ #auto_error .subheader { line-height: 1.3; color: #6f6f6f; font-weight: 300; margin-bottom: 17px;}
89
+
90
+
91
+ em, i { font-style: italic; line-height: inherit; }
92
+
93
+
94
+ strong, b { font-weight: bold; line-height: inherit; }
95
+
96
+
97
+ small { font-size: 60%; line-height: inherit; }
98
+
99
+
100
+ code { font-weight: bold; background: #ffff99; }
101
+
102
+
103
+ /* Lists ---------------------- */
104
+
105
+ ul, ol, dl { font-size: 14px; line-height: 1.6; margin-bottom: 17px; list-style-position: outside; }
106
+
107
+
108
+ ul li ul, ul li ol { margin-left: 20px; margin-bottom: 0; }
109
+
110
+ ul.square, ul.circle, ul.disc { margin-left: 17px; }
111
+
112
+ ul.square { list-style-type: square; }
113
+
114
+ ul.square li ul { list-style: inherit; }
115
+
116
+ ul.circle { list-style-type: circle; }
117
+
118
+ ul.circle li ul { list-style: inherit; }
119
+
120
+ ul.disc { list-style-type: disc; }
121
+
122
+ ul.disc li ul { list-style: inherit; }
123
+
124
+ ul.no-bullet { list-style: none; }
125
+
126
+ ul.large li { line-height: 21px; }
127
+
128
+
129
+ ol { margin-left: 20px; }
130
+
131
+ ol li ul, ol li ol { margin-left: 20px; margin-bottom: 0; }
132
+
133
+
134
+ /* Blockquotes ---------------------- */
135
+
136
+ blockquote, blockquote p { line-height: 1.5; color: #6f6f6f; }
137
+
138
+
139
+ blockquote { margin: 0 0 17px; padding: 9px 20px 0 19px; border-left: 1px solid #ddd; }
140
+
141
+ blockquote cite { display: block; font-size: 13px; color: #555555; }
142
+
143
+ blockquote cite:before { content: "\2014 \0020"; }
144
+
145
+ blockquote cite a, blockquote cite a:visited { color: #555555; }
146
+
147
+
148
+ abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222222; border-bottom: 1px solid #ddd; cursor: help; }
149
+
150
+
151
+ abbr { text-transform: none; }
152
+
153
+
154
+ /* Print styles. Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/ Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
155
+ */
156
+ #auto_error .print-only { display: none !important;}
157
+
158
+
159
+ @media print { * { background: transparent !important; color: black !important; box-shadow: none !important; text-shadow: none !important; filter: none !important; -ms-filter: none !important; }
160
+
161
+ /* Black prints faster: h5bp.com/s */
162
+
163
+ a, a:visited { text-decoration: underline; }
164
+
165
+ a[href]:after { content: " (" attr(href) ")"; }
166
+
167
+ abbr[title]:after { content: " (" attr(title) ")"; }
168
+ #auto_error .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
169
+
170
+ /* Don't show links for images, or javascript/internal links */
171
+
172
+ pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
173
+
174
+ thead { display: table-header-group; }
175
+
176
+ /* h5bp.com/t */
177
+
178
+ tr, img { page-break-inside: avoid; }
179
+
180
+ img { max-width: 100% !important; }
181
+
182
+ @page { margin: 0.5cm; }
183
+
184
+ p, h2, h3 { orphans: 3; widows: 3; }
185
+
186
+ h2, h3 { page-break-after: avoid; }
187
+ #auto_error .hide-on-print { display: none !important;}
188
+ #auto_error .print-only { display: block !important;}
189
+ #auto_error .hide-for-print { display: none !important;}
190
+ #auto_error .show-for-print { display: inherit !important;}
191
+ }
192
+
193
+ /* Requires globals.css */
194
+
195
+ /* Standard Forms ---------------------- */
196
+
197
+ form { margin: 0 0 19.41641px; }
198
+ #auto_error .row form .row { margin: 0 -6px;}
199
+ #auto_error .row form .row .column, #auto_error .row form .row .columns { padding: 0 6px;}
200
+ #auto_error .row form .row.collapse { margin: 0;}
201
+ #auto_error .row form .row.collapse .column, #auto_error .row form .row.collapse .columns { padding: 0;}
202
+
203
+
204
+ label { font-size: 14px; color: #4d4d4d; cursor: pointer; display: block; font-weight: 500; margin-bottom: 3px; }
205
+
206
+ label.right { float: none; text-align: right; }
207
+
208
+ label.inline { line-height: 32px; margin: 0 0 12px 0; }
209
+ #auto_error .prefix, #auto_error .postfix { display: block; position: relative; z-index: 2; text-align: center; width: 100%; padding-top: 0; padding-bottom: 0; height: 32px; line-height: 31px;}
210
+
211
+
212
+ a.button.prefix, a.button.postfix { padding-left: 0; padding-right: 0; text-align: center; }
213
+
214
+
215
+ span.prefix, span.postfix { background: #f2f2f2; border: 1px solid #cccccc; }
216
+ #auto_error .prefix { left: 2px; -moz-border-radius-topleft: 2px; -webkit-border-top-left-radius: 2px; border-top-left-radius: 2px; -moz-border-radius-bottomleft: 2px; -webkit-border-bottom-left-radius: 2px; border-bottom-left-radius: 2px; overflow: hidden;}
217
+ #auto_error .postfix { right: 2px; -moz-border-radius-topright: 2px; -webkit-border-top-right-radius: 2px; border-top-right-radius: 2px; -moz-border-radius-bottomright: 2px; -webkit-border-bottom-right-radius: 2px; border-bottom-right-radius: 2px;}
218
+
219
+
220
+ input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea { background-color: white; font-family: inherit; border: 1px solid #cccccc; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); color: rgba(0, 0, 0, 0.75); display: block; font-size: 14px; margin: 0 0 12px 0; padding: 6px; height: 32px; width: 100%; -webkit-transition: all 0.15s linear; -moz-transition: all 0.15s linear; -o-transition: all 0.15s linear; transition: all 0.15s linear; }
221
+
222
+ input[type="text"].oversize, input[type="password"].oversize, input[type="date"].oversize, input[type="datetime"].oversize, input[type="email"].oversize, input[type="number"].oversize, input[type="search"].oversize, input[type="tel"].oversize, input[type="time"].oversize, input[type="url"].oversize, textarea.oversize { font-size: 17px; padding: 4px 6px; }
223
+
224
+ input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, textarea:focus { background: #fafafa; border-color: #b3b3b3; }
225
+
226
+ input[type="text"][disabled], input[type="password"][disabled], input[type="date"][disabled], input[type="datetime"][disabled], input[type="email"][disabled], input[type="number"][disabled], input[type="search"][disabled], input[type="tel"][disabled], input[type="time"][disabled], input[type="url"][disabled], textarea[disabled] { background-color: #ddd; }
227
+
228
+
229
+ textarea { height: auto; }
230
+
231
+
232
+ select { width: 100%; }
233
+
234
+
235
+ /* Fieldsets */
236
+
237
+ fieldset { border: solid 1px #ddd; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 12px; margin: 18px 0; }
238
+
239
+ fieldset legend { font-weight: bold; background: white; padding: 0 3px; margin: 0; margin-left: -3px; }
240
+
241
+
242
+ /* Errors */
243
+ #auto_error .error input, input.error, #auto_error .error textarea, textarea.error, #auto_error .error input:focus, input.error:focus, #auto_error .error textarea:focus, textarea.error:focus { border-color: #c60f13; background-color: rgba(198, 15, 19, 0.1); }
244
+ #auto_error .error input:focus, input.error:focus, #auto_error .error textarea:focus, textarea.error:focus { outline-color: #f5797c; }
245
+ #auto_error .error label, label.error { color: #c60f13; }
246
+ #auto_error .error small, small.error { display: block; padding: 6px 4px; margin-top: -13px; margin-bottom: 12px; background: #c60f13; color: #fff; font-size: 12px; font-weight: bold; -moz-border-radius-bottomleft: 2px; -webkit-border-bottom-left-radius: 2px; border-bottom-left-radius: 2px; -moz-border-radius-bottomright: 2px; -webkit-border-bottom-right-radius: 2px; border-bottom-right-radius: 2px; }
247
+
248
+
249
+ /* Custom Forms ---------------------- */
250
+
251
+ form.custom { /* Custom input, disabled */
252
+ }
253
+
254
+ form.custom span.custom { display: inline-block; width: 16px; height: 16px; position: relative; top: 2px; border: solid 1px #cccccc; background: white; }
255
+
256
+ form.custom span.custom.radio { -webkit-border-radius: 100px; -moz-border-radius: 100px; -ms-border-radius: 100px; -o-border-radius: 100px; border-radius: 100px; }
257
+
258
+ form.custom span.custom.checkbox:before { content: ""; display: block; line-height: 0.8; height: 14px; width: 14px; text-align: center; position: absolute; top: 0; left: 0; font-size: 14px; color: #fff; }
259
+
260
+ form.custom span.custom.radio.checked:before { content: ""; display: block; width: 8px; height: 8px; -webkit-border-radius: 100px; -moz-border-radius: 100px; -ms-border-radius: 100px; -o-border-radius: 100px; border-radius: 100px; background: #222222; position: relative; top: 3px; left: 3px; }
261
+
262
+ form.custom span.custom.checkbox.checked:before { content: "\00d7"; color: #222222; }
263
+
264
+ form.custom div.custom.dropdown { display: block; position: relative; width: auto; height: 28px; margin-bottom: 9px; margin-top: 2px; }
265
+
266
+ form.custom div.custom.dropdown ul { overflow-y: auto; max-height: 200px; }
267
+
268
+ form.custom div.custom.dropdown a.current { display: block; width: auto; line-height: 26px; min-height: 28px; padding: 0; padding-left: 6px; padding-right: 38px; border: solid 1px #dddddd; color: #141414; background-color: white; white-space: nowrap; }
269
+
270
+ form.custom div.custom.dropdown a.selector { position: absolute; width: 27px; height: 28px; display: block; right: 0; top: 0; border: solid 1px #dddddd; }
271
+
272
+ form.custom div.custom.dropdown a.selector:after { content: ""; display: block; content: ""; display: block; width: 0; height: 0; border: solid 5px; border-color: #aaaaaa transparent transparent transparent; position: absolute; left: 50%; top: 50%; margin-top: -2px; margin-left: -5px; }
273
+
274
+ form.custom div.custom.dropdown:hover a.selector:after, form.custom div.custom.dropdown.open a.selector:after { content: ""; display: block; width: 0; height: 0; border: solid 5px; border-color: #222222 transparent transparent transparent; }
275
+
276
+ form.custom div.custom.dropdown.open ul { display: block; z-index: 10; }
277
+
278
+ form.custom div.custom.dropdown.small { width: 134px !important; }
279
+
280
+ form.custom div.custom.dropdown.medium { width: 254px !important; }
281
+
282
+ form.custom div.custom.dropdown.large { width: 434px !important; }
283
+
284
+ form.custom div.custom.dropdown.expand { width: 100% !important; }
285
+
286
+ form.custom div.custom.dropdown.open.small ul { width: 134px !important; }
287
+
288
+ form.custom div.custom.dropdown.open.medium ul { width: 254px !important; }
289
+
290
+ form.custom div.custom.dropdown.open.large ul { width: 434px !important; }
291
+
292
+ form.custom div.custom.dropdown.open.expand ul { width: 100% !important; }
293
+
294
+ form.custom div.custom.dropdown ul { position: absolute; width: auto; display: none; margin: 0; left: 0; top: 27px; margin: 0; padding: 0; background: white; background: rgba(255, 255, 255, 0.95); border: solid 1px #cccccc; }
295
+
296
+ form.custom div.custom.dropdown ul li { color: #555555; font-size: 13px; cursor: pointer; padding: 3px; padding-left: 6px; padding-right: 38px; min-height: 18px; line-height: 18px; margin: 0; white-space: nowrap; list-style: none; }
297
+
298
+ form.custom div.custom.dropdown ul li.selected { background: #cdebf5; color: black; }
299
+
300
+ form.custom div.custom.dropdown ul li.selected:after { content: "\2013"; position: absolute; right: 10px; }
301
+
302
+ form.custom div.custom.dropdown ul li:hover { background-color: #cdebf5; color: black; }
303
+
304
+ form.custom div.custom.dropdown ul li:hover:after { content: "\2013"; position: absolute; right: 10px; color: #a3dbec; }
305
+
306
+ form.custom div.custom.dropdown ul li.selected:hover { background: #cdebf5; cursor: default; color: black; }
307
+
308
+ form.custom div.custom.dropdown ul li.selected:hover:after { color: black; }
309
+
310
+ form.custom div.custom.dropdown ul.show { display: block; }
311
+
312
+ form.custom .custom.disabled { background-color: #dddddd; }
313
+
314
+
315
+ /* Correct FF custom dropdown height */
316
+
317
+ @-moz-document url-prefix() { form.custom div.custom.dropdown a.selector { height: 28px; }
318
+ }
319
+ #auto_error .lt-ie9 form.custom div.custom.dropdown a.selector { height: 28px;}
320
+
321
+
322
+ /* The Grid ---------------------- */
323
+ #auto_error .row { width: 940px; max-width: 100%; min-width: 768px; margin: 0 auto;}
324
+ #auto_error .row .row { width: auto; max-width: none; min-width: 0; margin: 0 -15px;}
325
+ #auto_error .row.collapse .column, #auto_error .row.collapse .columns { padding: 0;}
326
+ #auto_error .row .row { width: auto; max-width: none; min-width: 0; margin: 0 -15px;}
327
+ #auto_error .row .row.collapse { margin: 0;}
328
+ #auto_error .column, #auto_error .columns { float: left; min-height: 1px; padding: 0 15px; position: relative;}
329
+ #auto_error .column.centered, #auto_error .columns.centered { float: none; margin: 0 auto;}
330
+
331
+
332
+ [class*="column"] + [class*="column"]:last-child { float: right; }
333
+
334
+
335
+ [class*="column"] + [class*="column"].end { float: left; }
336
+ #auto_error .one, #auto_error .row .one { width: 8.33333%;}
337
+ #auto_error .two, #auto_error .row .two { width: 16.66667%;}
338
+ #auto_error .three, #auto_error .row .three { width: 25%;}
339
+ #auto_error .four, #auto_error .row .four { width: 33.33333%;}
340
+ #auto_error .five, #auto_error .row .five { width: 41.66667%;}
341
+ #auto_error .six, #auto_error .row .six { width: 50%;}
342
+ #auto_error .seven, #auto_error .row .seven { width: 58.33333%;}
343
+ #auto_error .eight, #auto_error .row .eight { width: 66.66667%;}
344
+ #auto_error .nine, #auto_error .row .nine { width: 75%;}
345
+ #auto_error .ten, #auto_error .row .ten { width: 83.33333%;}
346
+ #auto_error .eleven, #auto_error .row .eleven { width: 91.66667%;}
347
+ #auto_error .twelve, #auto_error .row .twelve { width: 100%;}
348
+ #auto_error .row .offset-by-one { margin-left: 8.33333%;}
349
+ #auto_error .row .offset-by-two { margin-left: 16.66667%;}
350
+ #auto_error .row .offset-by-three { margin-left: 25%;}
351
+ #auto_error .row .offset-by-four { margin-left: 33.33333%;}
352
+ #auto_error .row .offset-by-five { margin-left: 41.66667%;}
353
+ #auto_error .row .offset-by-six { margin-left: 50%;}
354
+ #auto_error .row .offset-by-seven { margin-left: 58.33333%;}
355
+ #auto_error .row .offset-by-eight { margin-left: 66.66667%;}
356
+ #auto_error .row .offset-by-nine { margin-left: 75%;}
357
+ #auto_error .row .offset-by-ten { margin-left: 83.33333%;}
358
+ #auto_error .push-two { left: 16.66667%;}
359
+ #auto_error .pull-two { right: 16.66667%;}
360
+ #auto_error .push-three { left: 25%;}
361
+ #auto_error .pull-three { right: 25%;}
362
+ #auto_error .push-four { left: 33.33333%;}
363
+ #auto_error .pull-four { right: 33.33333%;}
364
+ #auto_error .push-five { left: 41.66667%;}
365
+ #auto_error .pull-five { right: 41.66667%;}
366
+ #auto_error .push-six { left: 50%;}
367
+ #auto_error .pull-six { right: 50%;}
368
+ #auto_error .push-seven { left: 58.33333%;}
369
+ #auto_error .pull-seven { right: 58.33333%;}
370
+ #auto_error .push-eight { left: 66.66667%;}
371
+ #auto_error .pull-eight { right: 66.66667%;}
372
+ #auto_error .push-nine { left: 75%;}
373
+ #auto_error .pull-nine { right: 75%;}
374
+ #auto_error .push-ten { left: 83.33333%;}
375
+ #auto_error .pull-ten { right: 83.33333%;}
376
+
377
+
378
+ img { height: auto; }
379
+
380
+
381
+ img, object, embed { max-width: 100%; }
382
+
383
+
384
+ img { -ms-interpolation-mode: bicubic; }
385
+ #auto_error #map_canvas img, #auto_error .map_canvas img { max-width: none!important;}
386
+
387
+
388
+ /* Nicolas Gallagher's micro clearfix */
389
+ #auto_error .row { *zoom: 1;}
390
+ #auto_error .row:before, #auto_error .row:after { content: " "; display: table;}
391
+ #auto_error .row:after { clear: both;}
392
+
393
+
394
+ /* Block Grids ---------------------- */
395
+
396
+ /* These are 2-up, 3-up, 4-up and 5-up ULs, suited
397
+ for repeating blocks of content. Add 'mobile' to
398
+ them to switch them just like the layout grid
399
+ (one item per line) on phones
400
+
401
+ For IE7/8 compatibility block-grid items need to be
402
+ the same height. You can optionally uncomment the
403
+ lines below to support arbitrary height, but know
404
+ that IE7/8 do not support :nth-child.
405
+ -------------------------------------------------- */
406
+ #auto_error .block-grid { display: block; overflow: hidden; padding: 0;}
407
+ #auto_error .block-grid > li { display: block; height: auto; float: left;}
408
+ #auto_error .block-grid.one-up { margin: 0;}
409
+ #auto_error .block-grid.one-up > li { width: 100%; padding: 0 0 15px;}
410
+ #auto_error .block-grid.two-up { margin: 0 -15px;}
411
+ #auto_error .block-grid.two-up > li { width: 50%; padding: 0 15px 15px;}
412
+ #auto_error .block-grid.two-up > li:nth-child(2n+1) { clear: both;}
413
+ #auto_error .block-grid.three-up { margin: 0 -12px;}
414
+ #auto_error .block-grid.three-up > li { width: 33.33333%; padding: 0 12px 12px;}
415
+ #auto_error .block-grid.three-up > li:nth-child(3n+1) { clear: both;}
416
+ #auto_error .block-grid.four-up { margin: 0 -10px;}
417
+ #auto_error .block-grid.four-up > li { width: 25%; padding: 0 10px 10px;}
418
+ #auto_error .block-grid.four-up > li:nth-child(4n+1) { clear: both;}
419
+ #auto_error .block-grid.five-up { margin: 0 -8px;}
420
+ #auto_error .block-grid.five-up > li { width: 20%; padding: 0 8px 8px;}
421
+ #auto_error .block-grid.five-up > li:nth-child(5n+1) { clear: both;}
422
+ #auto_error .block-grid.six-up { margin: 0 -8px;}
423
+ #auto_error .block-grid.six-up > li { width: 16.66667%; padding: 0 8px 8px;}
424
+ #auto_error .block-grid.six-up > li:nth-child(6n+1) { clear: both;}
425
+ #auto_error .block-grid.seven-up { margin: 0 -8px;}
426
+ #auto_error .block-grid.seven-up > li { width: 14.28571%; padding: 0 8px 8px;}
427
+ #auto_error .block-grid.seven-up > li:nth-child(7n+1) { clear: both;}
428
+ #auto_error .block-grid.eight-up { margin: 0 -8px;}
429
+ #auto_error .block-grid.eight-up > li { width: 12.5%; padding: 0 8px 8px;}
430
+ #auto_error .block-grid.eight-up > li:nth-child(8n+1) { clear: both;}
431
+ #auto_error .block-grid.nine-up { margin: 0 -8px;}
432
+ #auto_error .block-grid.nine-up > li { width: 11.11111%; padding: 0 8px 8px;}
433
+ #auto_error .block-grid.nine-up > li:nth-child(9n+1) { clear: both;}
434
+ #auto_error .block-grid.ten-up { margin: 0 -8px;}
435
+ #auto_error .block-grid.ten-up > li { width: 10%; padding: 0 8px 8px;}
436
+ #auto_error .block-grid.ten-up > li:nth-child(10n+1) { clear: both;}
437
+ #auto_error .block-grid.eleven-up { margin: 0 -8px;}
438
+ #auto_error .block-grid.eleven-up > li { width: 9.09091%; padding: 0 8px 8px;}
439
+ #auto_error .block-grid.eleven-up > li:nth-child(11n+1) { clear: both;}
440
+ #auto_error .block-grid.twelve-up { margin: 0 -8px;}
441
+ #auto_error .block-grid.twelve-up > li { width: 8.33333%; padding: 0 8px 8px;}
442
+ #auto_error .block-grid.twelve-up > li:nth-child(12n+1) { clear: both;}
443
+
444
+
445
+ /* Normal Buttons ---------------------- */
446
+ #auto_error .button { width: auto; background: #2ba6cb; border: 1px solid #1e728c; -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; color: white; cursor: pointer; display: inline-block; font-family: inherit; font-size: 14px; font-weight: bold; line-height: 1; margin: 0; padding: 10px 20px 11px; position: relative; text-align: center; text-decoration: none; -webkit-transition: background-color 0.15s ease-in-out; -moz-transition: background-color 0.15s ease-in-out; -o-transition: background-color 0.15s ease-in-out; transition: background-color 0.15s ease-in-out; /* Hovers */
447
+ /* Sizes */
448
+ /* Colors */
449
+ /* Radii */
450
+ /* Layout */
451
+ /* Disabled ---------- */
452
+ }
453
+ #auto_error .button:hover, #auto_error .button:focus { color: white; background-color: #2284a1;}
454
+ #auto_error .button:active { -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; }
455
+ #auto_error .button.large { font-size: 17px; padding: 15px 30px 16px;}
456
+ #auto_error .button.medium { font-size: 14px;}
457
+ #auto_error .button.small { font-size: 11px; padding: 7px 14px 8px;}
458
+ #auto_error .button.tiny { font-size: 10px; padding: 5px 10px 6px;}
459
+ #auto_error .button.expand { width: 100%; text-align: center;}
460
+ #auto_error .button.primary { background-color: #2ba6cb; border: 1px solid #1e728c;}
461
+ #auto_error .button.primary:hover, #auto_error .button.primary:focus { background-color: #2284a1;}
462
+ #auto_error .button.success { background-color: #5da423; border: 1px solid #396516;}
463
+ #auto_error .button.success:hover, #auto_error .button.success:focus { background-color: #457a1a;}
464
+ #auto_error .button.alert { background-color: #c60f13; border: 1px solid #7f0a0c;}
465
+ #auto_error .button.alert:hover, #auto_error .button.alert:focus { background-color: #970b0e;}
466
+ #auto_error .button.secondary { background-color: #e9e9e9; color: #1d1d1d; border: 1px solid #c3c3c3;}
467
+ #auto_error .button.secondary:hover, #auto_error .button.secondary:focus { background-color: #d0d0d0;}
468
+ #auto_error .button.radius { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px;}
469
+ #auto_error .button.round { -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px;}
470
+ #auto_error .button.full-width { width: 100%; text-align: center; padding-left: 0px !important; padding-right: 0px !important;}
471
+ #auto_error .button.left-align { text-align: left; text-indent: 12px;}
472
+ #auto_error .button.disabled, #auto_error .button[disabled] { opacity: 0.6; cursor: default; background: #2ba6cb; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none;}
473
+ #auto_error .button.disabled:hover, #auto_error .button[disabled]:hover { background: #2ba6cb;}
474
+ #auto_error .button.disabled.success, #auto_error .button[disabled].success { background-color: #5da423;}
475
+ #auto_error .button.disabled.success:hover, #auto_error .button.disabled.success:focus, #auto_error .button[disabled].success:hover, #auto_error .button[disabled].success:focus { background-color: #5da423; outline: none;}
476
+ #auto_error .button.disabled.alert, #auto_error .button[disabled].alert { background-color: #c60f13;}
477
+ #auto_error .button.disabled.alert:hover, #auto_error .button.disabled.alert:focus, #auto_error .button[disabled].alert:hover, #auto_error .button[disabled].alert:focus { background-color: #c60f13; outline: none;}
478
+ #auto_error .button.disabled.secondary, #auto_error .button[disabled].secondary { background-color: #e9e9e9;}
479
+ #auto_error .button.disabled.secondary:hover, #auto_error .button.disabled.secondary:focus, #auto_error .button[disabled].secondary:hover, #auto_error .button[disabled].secondary:focus { background-color: #e9e9e9; outline: none;}
480
+
481
+
482
+ /* Don't use native buttons on iOS */
483
+
484
+ input[type=submit].button, button.button { -webkit-appearance: none; }
485
+
486
+
487
+ /* Correct FF button padding */
488
+
489
+ @-moz-document url-prefix() { button::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner { border: none; padding: 0; }
490
+
491
+ input[type="submit"].tiny.button { padding: 3px 10px 4px; }
492
+
493
+ input[type="submit"].small.button { padding: 5px 14px 6px; }
494
+
495
+ input[type="submit"].button, input[type=submit].medium.button { padding: 8px 20px 9px; }
496
+
497
+ input[type="submit"].large.button { padding: 13px 30px 14px; }
498
+ }
499
+
500
+
501
+ /* Buttons with Dropdowns ---------------------- */
502
+ #auto_error .button.dropdown { position: relative; padding-right: 44px; /* Sizes*/
503
+ /* Triangles */
504
+ /* Flyout List */
505
+ /* Split Dropdown Buttons */
506
+ }
507
+ #auto_error .button.dropdown.large { padding-right: 60px;}
508
+ #auto_error .button.dropdown.small { padding-right: 28px;}
509
+ #auto_error .button.dropdown.tiny { padding-right: 20px;}
510
+ #auto_error .button.dropdown:after { content: ""; display: block; width: 0; height: 0; border: solid 6px; border-color: white transparent transparent transparent; position: absolute; top: 50%; right: 20px; margin-top: -2px;}
511
+ #auto_error .button.dropdown.large:after { content: ""; display: block; width: 0; height: 0; border: solid 7px; border-color: white transparent transparent transparent; margin-top: -3px; right: 30px;}
512
+ #auto_error .button.dropdown.small:after { content: ""; display: block; width: 0; height: 0; border: solid 5px; border-color: white transparent transparent transparent; margin-top: -2px; right: 14px;}
513
+ #auto_error .button.dropdown.tiny:after { content: ""; display: block; width: 0; height: 0; border: solid 4px; border-color: white transparent transparent transparent; margin-top: -1px; right: 10px;}
514
+ #auto_error .button.dropdown > ul { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; display: none; position: absolute; left: -1px; background: #fff; background: rgba(255, 255, 255, 0.95); list-style: none; margin: 0; padding: 0; border: 1px solid #cccccc; border-top: none; min-width: 100%; z-index: 40; }
515
+ #auto_error .button.dropdown > ul li { width: 100%; cursor: pointer; padding: 0; min-height: 18px; line-height: 18px; margin: 0; white-space: nowrap; list-style: none;}
516
+ #auto_error .button.dropdown > ul li a, #auto_error .button.dropdown > ul li button { display: block; color: #555; font-size: 13px; font-weight: normal; padding: 6px 14px; text-align: left;}
517
+ #auto_error .button.dropdown > ul li button { width: 100%; border: inherit; background: inherit; font-family: inherit; margin: inherit; -webkit-font-smoothing: antialiased;}
518
+ #auto_error .button.dropdown > ul li:hover, #auto_error .button.dropdown > ul li:focus { background-color: #e3f4f9; color: #222;}
519
+ #auto_error .button.dropdown > ul li.divider { min-height: 0; padding: 0; height: 1px; margin: 4px 0; background: #ededed;}
520
+ #auto_error .button.dropdown.up > ul { border-top: 1px solid #cccccc; border-bottom: none;}
521
+ #auto_error .button.dropdown ul.no-hover.show-dropdown { display: block !important;}
522
+ #auto_error .button.dropdown:hover > ul.no-hover { display: none;}
523
+ #auto_error .button.dropdown.split { padding: 0; position: relative; /* Sizes*/
524
+ /* Triangle Spans */
525
+ /* Colors */
526
+ }
527
+ #auto_error .button.dropdown.split:after { display: none;}
528
+ #auto_error .button.dropdown.split:hover, #auto_error .button.dropdown.split:focus { background-color: #2ba6cb;}
529
+ #auto_error .button.dropdown.split.alert:hover, #auto_error .button.dropdown.split.alert:focus { background-color: #c60f13;}
530
+ #auto_error .button.dropdown.split.success:hover, #auto_error .button.dropdown.split.success:focus { background-color: #5da423;}
531
+ #auto_error .button.dropdown.split.secondary:hover, #auto_error .button.dropdown.split.secondary:focus { background-color: #e9e9e9;}
532
+ #auto_error .button.dropdown.split > a { color: white; display: block; padding: 10px 50px 11px 20px; padding-left: 20px; padding-right: 50px; -webkit-transition: background-color 0.15s ease-in-out; -moz-transition: background-color 0.15s ease-in-out; -o-transition: background-color 0.15s ease-in-out; transition: background-color 0.15s ease-in-out;}
533
+ #auto_error .button.dropdown.split > a:hover, #auto_error .button.dropdown.split > a:focus { background-color: #2284a1; -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; }
534
+ #auto_error .button.dropdown.split.large > a { padding: 15px 75px 16px 30px; padding-left: 30px; padding-right: 75px;}
535
+ #auto_error .button.dropdown.split.small > a { padding: 7px 35px 8px 14px; padding-left: 14px; padding-right: 35px;}
536
+ #auto_error .button.dropdown.split.tiny > a { padding: 5px 25px 6px 10px; padding-left: 10px; padding-right: 25px;}
537
+ #auto_error .button.dropdown.split > span { background-color: #2ba6cb; position: absolute; right: 0; top: 0; height: 100%; width: 30px; border-left: 1px solid #1e728c; -webkit-box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5) inset; -moz-box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5) inset; -webkit-transition: background-color 0.15s ease-in-out; -moz-transition: background-color 0.15s ease-in-out; -o-transition: background-color 0.15s ease-in-out; transition: background-color 0.15s ease-in-out; }
538
+ #auto_error .button.dropdown.split > span:hover, #auto_error .button.dropdown.split > span:focus { background-color: #2284a1;}
539
+ #auto_error .button.dropdown.split > span:after { content: ""; display: block; width: 0; height: 0; border: solid 6px; border-color: white transparent transparent transparent; position: absolute; top: 50%; left: 50%; margin-left: -6px; margin-top: -2px;}
540
+ #auto_error .button.dropdown.split.secondary > span:after { content: ""; display: block; width: 0; height: 0; border: solid 6px; border-color: #1d1d1d transparent transparent transparent;}
541
+ #auto_error .button.dropdown.split.large span { width: 45px;}
542
+ #auto_error .button.dropdown.split.small span { width: 21px;}
543
+ #auto_error .button.dropdown.split.tiny span { width: 15px;}
544
+ #auto_error .button.dropdown.split.large span:after { content: ""; display: block; width: 0; height: 0; border: solid 7px; border-color: white transparent transparent transparent; margin-top: -3px; margin-left: -7px;}
545
+ #auto_error .button.dropdown.split.small span:after { content: ""; display: block; width: 0; height: 0; border: solid 4px; border-color: white transparent transparent transparent; margin-top: -1px; margin-left: -4px;}
546
+ #auto_error .button.dropdown.split.tiny span:after { content: ""; display: block; width: 0; height: 0; border: solid 3px; border-color: white transparent transparent transparent; margin-top: -1px; margin-left: -3px;}
547
+ #auto_error .button.dropdown.split.alert > span { background-color: #c60f13; border-left-color: #7f0a0c;}
548
+ #auto_error .button.dropdown.split.success > span { background-color: #5da423; border-left-color: #396516;}
549
+ #auto_error .button.dropdown.split.secondary > span { background-color: #e9e9e9; border-left-color: #c3c3c3;}
550
+ #auto_error .button.dropdown.split.secondary > a { color: #1d1d1d;}
551
+ #auto_error .button.dropdown.split.alert > a:hover, #auto_error .button.dropdown.split.alert > span:hover, #auto_error .button.dropdown.split.alert > a:focus, #auto_error .button.dropdown.split.alert > span:focus { background-color: #970b0e;}
552
+ #auto_error .button.dropdown.split.success > a:hover, #auto_error .button.dropdown.split.success > span:hover, #auto_error .button.dropdown.split.success > a:focus, #auto_error .button.dropdown.split.success > span:focus { background-color: #457a1a;}
553
+ #auto_error .button.dropdown.split.secondary > a:hover, #auto_error .button.dropdown.split.secondary > span:hover, #auto_error .button.dropdown.split.secondary > a:focus, #auto_error .button.dropdown.split.secondary > span:focus { background-color: #d0d0d0;}
554
+
555
+
556
+ /* Button Groups ---------------------- */
557
+
558
+ ul.button-group { list-style: none; padding: 0; margin: 0 0 12px; *zoom: 1; }
559
+
560
+ ul.button-group:before, ul.button-group:after { content: " "; display: table; }
561
+
562
+ ul.button-group:after { clear: both; }
563
+
564
+ ul.button-group li { padding: 0; margin: 0 0 0 -1px; float: left; }
565
+
566
+ ul.button-group li:first-child { margin-left: 0; }
567
+
568
+ ul.button-group.radius li .button, ul.button-group.radius li .button.radius, ul.button-group.radius li .button-rounded { -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; }
569
+
570
+ ul.button-group.radius li:first-child .button, ul.button-group.radius li:first-child .button.radius { -moz-border-radius-topleft: 3px; -webkit-border-top-left-radius: 3px; border-top-left-radius: 3px; -moz-border-radius-bottomleft: 3px; -webkit-border-bottom-left-radius: 3px; border-bottom-left-radius: 3px; }
571
+
572
+ ul.button-group.radius li:first-child .button.rounded { -moz-border-radius-topleft: 1000px; -webkit-border-top-left-radius: 1000px; border-top-left-radius: 1000px; -moz-border-radius-bottomleft: 1000px; -webkit-border-bottom-left-radius: 1000px; border-bottom-left-radius: 1000px; }
573
+
574
+ ul.button-group.radius li:last-child .button, ul.button-group.radius li:last-child .button.radius { -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 3px; border-top-right-radius: 3px; -moz-border-radius-bottomright: 3px; -webkit-border-bottom-right-radius: 3px; border-bottom-right-radius: 3px; }
575
+
576
+ ul.button-group.radius li:last-child .button.rounded { -moz-border-radius-topright: 1000px; -webkit-border-top-right-radius: 1000px; border-top-right-radius: 1000px; -moz-border-radius-bottomright: 1000px; -webkit-border-bottom-right-radius: 1000px; border-bottom-right-radius: 1000px; }
577
+
578
+ ul.button-group.even .button { width: 100%; }
579
+
580
+ ul.button-group.even.two-up li { width: 50%; }
581
+
582
+ ul.button-group.even.three-up li { width: 33.3%; }
583
+
584
+ ul.button-group.even.three-up li:first-child { width: 33.4%; }
585
+
586
+ ul.button-group.even.four-up li { width: 25%; }
587
+
588
+ ul.button-group.even.five-up li { width: 20%; }
589
+
590
+
591
+ div.button-bar { overflow: hidden; }
592
+
593
+ div.button-bar ul.button-group { float: left; margin-right: 8px; }
594
+
595
+ div.button-bar ul.button-group:last-child { margin-left: 0; }
596
+ #auto_error .nav-bar { height: 40px; background: #4d4d4d; margin-left: 0; margin-top: 20px; padding: 0;}
597
+ #auto_error .nav-bar > li { float: left; display: block; position: relative; padding: 0; margin: 0; border: 1px solid #333333; border-right: none; line-height: 38px; -webkit-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2) inset; -moz-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2) inset; box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2) inset; }
598
+ #auto_error .nav-bar > li:first-child { -webkit-box-shadow: 0 0 0; -moz-box-shadow: 0 0 0; box-shadow: 0 0 0;}
599
+ #auto_error .nav-bar > li:last-child { border-right: solid 1px #333333; -webkit-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2) inset, 1px 0 0 rgba(255, 255, 255, 0.2); -moz-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2) inset, 1px 0 0 rgba(255, 255, 255, 0.2); box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2) inset, 1px 0 0 rgba(255, 255, 255, 0.2); }
600
+ #auto_error .nav-bar > li.active { background: #2ba6cb; border-color: #2284a1;}
601
+ #auto_error .nav-bar > li.active > a { color: white; cursor: default;}
602
+ #auto_error .nav-bar > li.active:hover { background: #2ba6cb; cursor: default;}
603
+ #auto_error .nav-bar > li:hover { background: #333333;}
604
+ #auto_error .nav-bar > li > a { color: #e6e6e6;}
605
+ #auto_error .nav-bar > li ul { margin-bottom: 0;}
606
+ #auto_error .nav-bar > li .flyout { display: none;}
607
+ #auto_error .nav-bar > li.has-flyout > a:first-child { padding-right: 40px; position: relative;}
608
+ #auto_error .nav-bar > li.has-flyout > a:first-child:after { content: ""; display: block; width: 0; height: 0; border: solid 4px; border-color: #e6e6e6 transparent transparent transparent; position: absolute; right: 20px; top: 17px;}
609
+ #auto_error .nav-bar > li.has-flyout > a.flyout-toggle { border-left: 0 !important; position: absolute; right: 0; top: 0; padding: 20px; z-index: 2; display: block;}
610
+ #auto_error .nav-bar > li.has-flyout.is-touch > a:first-child { padding-right: 55px;}
611
+ #auto_error .nav-bar > li.has-flyout.is-touch > a.flyout-toggle { border-left: 1px dashed #666;}
612
+ #auto_error .nav-bar > li > a:first-child { position: relative; padding: 0 20px; display: block; text-decoration: none; font-size: 14px;}
613
+ #auto_error .nav-bar > li > input { margin: 0 10px;}
614
+ #auto_error .nav-bar.vertical { height: auto; margin-top: 0;}
615
+ #auto_error .nav-bar.vertical > li { float: none; border-bottom: none; border-right: solid 1px #333333; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none;}
616
+ #auto_error .nav-bar.vertical > li.has-flyout > a:first-child:after { content: ""; display: block; width: 0; height: 0; border: solid 4px; border-color: transparent transparent transparent #e6e6e6;}
617
+ #auto_error .nav-bar.vertical > li .flyout { left: 100%; top: -1px;}
618
+ #auto_error .nav-bar.vertical > li .flyout.right { left: auto; right: 100%;}
619
+ #auto_error .nav-bar.vertical > li.active { border-right: solid 1px #2284a1;}
620
+ #auto_error .nav-bar.vertical > li:last-child { border-bottom: solid 1px #333333;}
621
+ #auto_error .flyout { background: #f2f2f2; padding: 20px; margin: 0; border: 1px solid #d9d9d9; position: absolute; top: 39px; left: -1px; width: 250px; z-index: 40; -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); /* remove margin on any first-child element */
622
+ /* remove margin on last element */
623
+ }
624
+ #auto_error .flyout p { line-height: 1.2; font-size: 13px;}
625
+ #auto_error .flyout *:first-child { margin-top: 0;}
626
+ #auto_error .flyout *:last-child { margin-bottom: 0;}
627
+ #auto_error .flyout.small { width: 166.66667px;}
628
+ #auto_error .flyout.large { width: 437.5px;}
629
+ #auto_error .flyout.right { left: auto; right: -2px;}
630
+ #auto_error .flyout.left { right: auto; left: -2px;}
631
+ #auto_error .flyout.up { top: auto; bottom: 39px;}
632
+
633
+
634
+ ul.flyout, #auto_error .nav-bar li ul { padding: 0; list-style: none;}
635
+
636
+ ul.flyout li, #auto_error .nav-bar li ul li { border-left: solid 3px #CCC;}
637
+
638
+ ul.flyout li a, #auto_error .nav-bar li ul li a { background: #f2f2f2; border: 1px solid #e6e6e6; border-width: 1px 1px 0 0; color: #555; display: block; font-size: 14px; height: auto; line-height: 1; padding: 15px 20px; -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; }
639
+
640
+ ul.flyout li a:hover, ul.flyout li a:focus, #auto_error .nav-bar li ul li a:hover, #auto_error .nav-bar li ul li a:focus { background: #ebebeb; color: #333;}
641
+
642
+ ul.flyout li.active, #auto_error .nav-bar li ul li.active { margin-top: 0; border-top: 1px solid #4d4d4d; border-left: 4px solid #1a1a1a;}
643
+
644
+ ul.flyout li.active a, #auto_error .nav-bar li ul li.active a { background: #4d4d4d; border: none; color: #fff; height: auto; margin: 0; position: static; top: 0; -webkit-box-shadow: 0 0 0; -moz-box-shadow: 0 0 0; box-shadow: 0 0 0;}
645
+
646
+
647
+ /* CSS for jQuery Orbit Plugin 1.4.0 Maintained for Foundation. foundation.zurb.com Free to use under the MIT license. http://www.opensource.org/licenses/mit-license.php
648
+ */
649
+
650
+ /* Container ---------------------- */
651
+ #auto_error .orbit-wrapper { width: 1px; height: 1px; position: relative;}
652
+ #auto_error .orbit { width: 1px; height: 1px; position: relative; overflow: hidden; margin-bottom: 17px;}
653
+ #auto_error .orbit.with-bullets { margin-bottom: 40px;}
654
+ #auto_error .orbit .orbit-slide { max-width: 100%; position: absolute; top: 0; left: 0;}
655
+ #auto_error .orbit a.orbit-slide { border: none; line-height: 0; display: none;}
656
+ #auto_error .orbit div.orbit-slide { width: 100%; height: 100%; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0;}
657
+
658
+
659
+ /* Note: If your slider only uses content or anchors, you're going to want to put the width and height declarations on the ".orbit>div" and "div.orbit>a" tags in addition to just the .orbit-wrapper */
660
+
661
+ /* Timer ---------------------- */
662
+ #auto_error .orbit-wrapper .timer { width: 40px; height: 40px; overflow: hidden; position: absolute; top: 10px; right: 10px; opacity: .6; cursor: pointer; z-index: 31;}
663
+ #auto_error .orbit-wrapper span.rotator { display: block; width: 40px; height: 40px; position: absolute; top: 0; left: -20px; background: url('../images/foundation/orbit/rotator-black.png') no-repeat; z-index: 3;}
664
+ #auto_error .orbit-wrapper span.rotator.move { left: 0;}
665
+ #auto_error .orbit-wrapper span.mask { display: block; width: 20px; height: 40px; position: absolute; top: 0; right: 0; z-index: 2; overflow: hidden;}
666
+ #auto_error .orbit-wrapper span.mask.move { width: 40px; left: 0; background: url('../images/foundation/orbit/timer-black.png') repeat 0 0;}
667
+ #auto_error .orbit-wrapper span.pause { display: block; width: 40px; height: 40px; position: absolute; top: 0; left: 0; background: url('../images/foundation/orbit/pause-black.png') no-repeat; z-index: 4; opacity: 0;}
668
+ #auto_error .orbit-wrapper span.pause.active { background: url('../images/foundation/orbit/pause-black.png') no-repeat 0 -40px;}
669
+ #auto_error .orbit-wrapper .timer:hover span.pause, #auto_error .orbit-wrapper .timer:focus span.pause, #auto_error .orbit-wrapper span.pause.active { opacity: 1;}
670
+
671
+
672
+ /* Captions ---------------------- */
673
+ #auto_error .orbit-caption { display: none; font-family: inherit;}
674
+ #auto_error .orbit-wrapper .orbit-caption { background: black; background: rgba(0, 0, 0, 0.6); z-index: 30; color: white; text-align: center; padding: 7px 0; font-size: 13px; position: absolute; right: 0; bottom: 0; width: 100%; }
675
+
676
+
677
+ /* Directional Nav ---------------------- */
678
+ #auto_error .orbit-wrapper .slider-nav { display: block;}
679
+ #auto_error .orbit-wrapper .slider-nav span { width: 39px; height: 50px; text-indent: -9999px; position: absolute; z-index: 30; top: 50%; margin-top: -25px; cursor: pointer;}
680
+ #auto_error .orbit-wrapper .slider-nav span.right { background: url('../images/foundation/orbit/right-arrow.png'); background-size: 100%; right: 0;}
681
+ #auto_error .orbit-wrapper .slider-nav span.left { background: url('../images/foundation/orbit/left-arrow.png'); background-size: 100%; left: 0;}
682
+ #auto_error .lt-ie9 .orbit-wrapper .slider-nav span.right { background: url('../images/foundation/orbit/right-arrow-small.png');}
683
+ #auto_error .lt-ie9 .orbit-wrapper .slider-nav span.left { background: url('../images/foundation/orbit/left-arrow-small.png');}
684
+
685
+
686
+ /* Bullet Nav ---------------------- */
687
+
688
+ ul.orbit-bullets { position: absolute; z-index: 30; list-style: none; bottom: -40px; left: 50%; margin-left: -50px; padding: 0; }
689
+
690
+ ul.orbit-bullets li { float: left; margin-left: 5px; cursor: pointer; color: #999999; text-indent: -9999px; background: url('../images/foundation/orbit/bullets.jpg') no-repeat 4px 0; width: 13px; height: 12px; overflow: hidden; }
691
+
692
+ ul.orbit-bullets li.active { color: #222222; background-position: -8px 0; }
693
+
694
+ ul.orbit-bullets li.has-thumb { background: none; width: 100px; height: 75px; }
695
+
696
+ ul.orbit-bullets li.active.has-thumb { background-position: 0 0; border-top: 2px solid black; }
697
+
698
+
699
+ /* Orbit Slide Counter */
700
+ #auto_error .orbit-slide-counter { position: absolute; bottom: 0; z-index: 99; background: rgba(0, 0, 0, 0.7); color: white; padding: 5px; }
701
+
702
+
703
+ /* Fluid Layout ---------------------- */
704
+ #auto_error .orbit img.fluid-placeholder { visibility: hidden; position: static; display: block; width: 100%;}
705
+ #auto_error .orbit, #auto_error .orbit-wrapper { width: 100% !important;}
706
+
707
+
708
+ /* Correct timer in IE */
709
+ #auto_error .lt-ie9 .timer { display: none !important;}
710
+ #auto_error .lt-ie9 .orbit-caption { background: black; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000); zoom: 1; }
711
+
712
+
713
+ @media only screen and (max-width: 767px) { .orbit.orbit-stack-on-small img.fluid-placeholder { visibility: visible; }
714
+ #auto_error .orbit.orbit-stack-on-small .orbit-slide { position: static; margin-bottom: 10px;}
715
+ }
716
+
717
+ /* CSS for jQuery Reveal Plugin Maintained for Foundation. foundation.zurb.com Free to use under the MIT license. http://www.opensource.org/licenses/mit-license.php */
718
+
719
+ /* Reveal Modals ---------------------- */
720
+ #auto_error .reveal-modal-bg { position: fixed; height: 100%; width: 100%; background: #000; background: rgba(0, 0, 0, 0.45); z-index: 40; display: none; top: 0; left: 0; }
721
+ #auto_error .reveal-modal { background: #fff; visibility: hidden; display: none; top: 100px; left: 50%; margin-left: -260px; width: 520px; position: absolute; z-index: 41; padding: 30px; -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); }
722
+ #auto_error .reveal-modal .close-reveal-modal:not(.button) { font-size: 22px; font-size: 2.2rem; line-height: .5; position: absolute; top: 8px; right: 11px; color: #aaa; text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.6); font-weight: bold; cursor: pointer; }
723
+ #auto_error .reveal-modal.small { width: 30%; margin-left: -15%;}
724
+ #auto_error .reveal-modal.medium { width: 40%; margin-left: -20%;}
725
+ #auto_error .reveal-modal.large { width: 60%; margin-left: -30%;}
726
+ #auto_error .reveal-modal.xlarge { width: 70%; margin-left: -35%;}
727
+ #auto_error .reveal-modal.expand { width: 90%; margin-left: -45%;}
728
+ #auto_error .reveal-modal .row { min-width: 0; margin-bottom: 10px;}
729
+ #auto_error .reveal-modal > :first-child { margin-top: 0;}
730
+ #auto_error .reveal-modal > :last-child { margin-bottom: 0;}
731
+
732
+
733
+ @media print { .reveal-modal { border: solid 1px #000; background: #fff; }
734
+ }
735
+
736
+ /* Tabs ---------------------- */
737
+ #auto_error .tabs { list-style: none; border-bottom: solid 1px #e6e6e6; display: block; height: 40px; padding: 0; margin-bottom: 20px;}
738
+ #auto_error .tabs.contained { margin-bottom: 0; margin-left: 0;}
739
+ #auto_error .tabs dt, #auto_error .tabs li.section-title { color: #b3b3b3; cursor: default; display: block; float: left; font-size: 12px; height: 40px; line-height: 40px; padding: 0; padding-right: 9px; padding-left: 20px; font-weight: normal; width: auto; text-transform: uppercase;}
740
+ #auto_error .tabs dt:first-child, #auto_error .tabs li.section-title:first-child { padding: 0; padding-right: 9px;}
741
+ #auto_error .tabs dd, #auto_error .tabs li { display: block; float: left; padding: 0; margin: 0;}
742
+ #auto_error .tabs dd a, #auto_error .tabs li a { color: #6f6f6f; display: block; font-size: 14px; height: 40px; line-height: 40px; padding: 0px 23.8px;}
743
+ #auto_error .tabs dd a:focus, #auto_error .tabs li a:focus { font-weight: bold; color: #2ba6cb;}
744
+ #auto_error .tabs dd.active, #auto_error .tabs li.active { border-top: 3px solid #2ba6cb; margin-top: -3px;}
745
+ #auto_error .tabs dd.active a, #auto_error .tabs li.active a { cursor: default; color: #3c3c3c; background: #fff; border-left: 1px solid #e6e6e6; border-right: 1px solid #e6e6e6; font-weight: bold;}
746
+ #auto_error .tabs dd:first-child, #auto_error .tabs li:first-child { margin-left: 0;}
747
+ #auto_error .tabs.vertical { height: auto; border-bottom: 1px solid #e6e6e6;}
748
+ #auto_error .tabs.vertical dt, #auto_error .tabs.vertical dd, #auto_error .tabs.vertical li { float: none; height: auto;}
749
+ #auto_error .tabs.vertical dd, #auto_error .tabs.vertical li { border-left: 3px solid #cccccc;}
750
+ #auto_error .tabs.vertical dd a, #auto_error .tabs.vertical li a { background: #f2f2f2; border: none; border: 1px solid #e6e6e6; border-width: 1px 1px 0 0; color: #555; display: block; font-size: 14px; height: auto; line-height: 1; padding: 15px 20px; -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; }
751
+ #auto_error .tabs.vertical dd.active, #auto_error .tabs.vertical li.active { margin-top: 0; border-top: 1px solid #4d4d4d; border-left: 4px solid #1a1a1a;}
752
+ #auto_error .tabs.vertical dd.active a, #auto_error .tabs.vertical li.active a { background: #4d4d4d; border: none; color: #fff; height: auto; margin: 0; position: static; top: 0; -webkit-box-shadow: 0 0 0; -moz-box-shadow: 0 0 0; box-shadow: 0 0 0;}
753
+ #auto_error .tabs.vertical dd:first-child a.active, #auto_error .tabs.vertical li:first-child a.active { margin: 0;}
754
+ #auto_error .tabs.pill { border-bottom: none; margin-bottom: 10px;}
755
+ #auto_error .tabs.pill dd, #auto_error .tabs.pill li { margin-right: 10px;}
756
+ #auto_error .tabs.pill dd:last-child, #auto_error .tabs.pill li:last-child { margin-right: 0;}
757
+ #auto_error .tabs.pill dd a, #auto_error .tabs.pill li a { -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; background: #e6e6e6; height: 26px; line-height: 26px; color: #666;}
758
+ #auto_error .tabs.pill dd.active, #auto_error .tabs.pill li.active { border: none; margin-top: 0;}
759
+ #auto_error .tabs.pill dd.active a, #auto_error .tabs.pill li.active a { background-color: #2ba6cb; border: none; color: #fff;}
760
+ #auto_error .tabs.pill.contained { border-bottom: solid 1px #eee; margin-bottom: 0;}
761
+ #auto_error .tabs.pill.two-up dd, #auto_error .tabs.pill.two-up li, #auto_error .tabs.pill.three-up dd, #auto_error .tabs.pill.three-up li, #auto_error .tabs.pill.four-up dd, #auto_error .tabs.pill.four-up li, #auto_error .tabs.pill.five-up dd, #auto_error .tabs.pill.five-up li { margin-right: 0;}
762
+ #auto_error .tabs.two-up dt a, #auto_error .tabs.two-up dd a, #auto_error .tabs.two-up li a, #auto_error .tabs.three-up dt a, #auto_error .tabs.three-up dd a, #auto_error .tabs.three-up li a, #auto_error .tabs.four-up dt a, #auto_error .tabs.four-up dd a, #auto_error .tabs.four-up li a, #auto_error .tabs.five-up dt a, #auto_error .tabs.five-up dd a, #auto_error .tabs.five-up li a { padding: 0 17px; text-align: center; overflow: hidden;}
763
+ #auto_error .tabs.two-up dt, #auto_error .tabs.two-up dd, #auto_error .tabs.two-up li { width: 50%;}
764
+ #auto_error .tabs.three-up dt, #auto_error .tabs.three-up dd, #auto_error .tabs.three-up li { width: 33.33%;}
765
+ #auto_error .tabs.four-up dt, #auto_error .tabs.four-up dd, #auto_error .tabs.four-up li { width: 25%;}
766
+ #auto_error .tabs.five-up dt, #auto_error .tabs.five-up dd, #auto_error .tabs.five-up li { width: 20%;}
767
+
768
+
769
+ ul.tabs-content { display: block; margin: 0 0 20px; padding: 0; }
770
+
771
+ ul.tabs-content > li { display: none; }
772
+
773
+ ul.tabs-content > li.active { display: block; }
774
+
775
+ ul.tabs-content.contained { padding: 0; }
776
+
777
+ ul.tabs-content.contained > li { border: solid 0 #e6e6e6; border-width: 0 1px 1px 1px; padding: 20px; }
778
+
779
+ ul.tabs-content.contained.vertical > li { border-width: 1px 1px 1px 1px; }
780
+ #auto_error .no-js ul.tabs-content > li { display: block;}
781
+
782
+
783
+ /* Table of Contents
784
+
785
+ :: Visibility
786
+ :: Alerts
787
+ :: Labels
788
+ :: Tooltips
789
+ :: Panels
790
+ :: Accordion
791
+ :: Side Nav
792
+ :: Sub Nav
793
+ :: Pagination
794
+ :: Breadcrumbs
795
+ :: Lists
796
+ :: Inline/Link Lists
797
+ :: Keystroke Chars
798
+ :: Image Thumbnails
799
+ :: Video
800
+ :: Tables
801
+ :: Microformats
802
+ :: Progress Bars
803
+ :: Pricing Tables
804
+
805
+ */
806
+
807
+ /* Alerts ---------------------- */
808
+
809
+ div.alert-box { display: block; padding: 6px 7px 7px; font-weight: bold; font-size: 14px; color: white; background-color: #2ba6cb; border: 1px solid rgba(0, 0, 0, 0.1); margin-bottom: 12px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; text-shadow: 0 -1px rgba(0, 0, 0, 0.3); position: relative; }
810
+
811
+ div.alert-box.success { background-color: #5da423; color: #fff; text-shadow: 0 -1px rgba(0, 0, 0, 0.3); }
812
+
813
+ div.alert-box.alert { background-color: #c60f13; color: #fff; text-shadow: 0 -1px rgba(0, 0, 0, 0.3); }
814
+
815
+ div.alert-box.secondary { background-color: #e9e9e9; color: #505050; text-shadow: 0 1px rgba(255, 255, 255, 0.3); }
816
+
817
+ div.alert-box a.close { color: #333; position: absolute; right: 4px; top: -1px; font-size: 17px; opacity: 0.2; padding: 4px; }
818
+
819
+ div.alert-box a.close:hover, div.alert-box a.close:focus { opacity: 0.4; }
820
+
821
+
822
+ /* Labels ---------------------- */
823
+ #auto_error .label { padding: 1px 4px 2px; font-size: 12px; font-weight: bold; text-align: center; text-decoration: none; line-height: 1; white-space: nowrap; display: inline; position: relative; bottom: 1px; color: #fff; background: #2ba6cb;}
824
+ #auto_error .label.radius { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px;}
825
+ #auto_error .label.round { padding: 1px 7px 2px; -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px;}
826
+ #auto_error .label.alert { background-color: #c60f13;}
827
+ #auto_error .label.success { background-color: #5da423;}
828
+ #auto_error .label.secondary { background-color: #e9e9e9; color: #505050;}
829
+
830
+
831
+ /* Tooltips ---------------------- */
832
+ #auto_error .has-tip { border-bottom: dotted 1px #cccccc; cursor: help; font-weight: bold; color: #333333;}
833
+ #auto_error .has-tip:hover, #auto_error .has-tip:focus { border-bottom: dotted 1px #196177; color: #2ba6cb;}
834
+ #auto_error .has-tip.tip-left, #auto_error .has-tip.tip-right { float: none !important;}
835
+ #auto_error .tooltip { display: none; background: black; background: rgba(0, 0, 0, 0.85); position: absolute; color: white; font-weight: bold; font-size: 12px; padding: 5px; z-index: 999; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; line-height: normal; }
836
+ #auto_error .tooltip > .nub { display: block; width: 0; height: 0; border: solid 5px; border-color: transparent transparent black transparent; border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent; position: absolute; top: -10px; left: 10px; }
837
+ #auto_error .tooltip.tip-override > .nub { border-color: transparent transparent black transparent !important; border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent !important; top: -10px !important; }
838
+ #auto_error .tooltip.tip-top > .nub, #auto_error .tooltip.tip-centered-top > .nub { border-color: black transparent transparent transparent; border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent; top: auto; bottom: -10px; }
839
+ #auto_error .tooltip.tip-left, #auto_error .tooltip.tip-right { float: none !important;}
840
+ #auto_error .tooltip.tip-left > .nub { border-color: transparent transparent transparent black; border-color: transparent transparent transparent rgba(0, 0, 0, 0.85); right: -10px; left: auto; }
841
+ #auto_error .tooltip.tip-right > .nub { border-color: transparent black transparent transparent; border-color: transparent rgba(0, 0, 0, 0.85) transparent transparent; right: auto; left: -10px; }
842
+ #auto_error .tooltip.noradius { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0;}
843
+ #auto_error .tooltip.opened { color: #2ba6cb !important; border-bottom: dotted 1px #196177 !important;}
844
+ #auto_error .tap-to-close { display: block; font-size: 10px; font-size: 1rem; color: #888888; font-weight: normal;}
845
+
846
+
847
+ /* Panels ---------------------- */
848
+ #auto_error .panel { background: #f2f2f2; border: solid 1px #e6e6e6; margin: 0 0 22px 0; padding: 20px;}
849
+ #auto_error .panel > :first-child { margin-top: 0;}
850
+ #auto_error .panel > :last-child { margin-bottom: 0;}
851
+ #auto_error .panel.callout { background: #2ba6cb; color: #fff; border-color: #2284a1; -webkit-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5); -moz-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5); box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5); }
852
+ #auto_error .panel.callout a { color: #fff;}
853
+ #auto_error .panel.callout .button { background: white; border: none; color: #2ba6cb; text-shadow: none;}
854
+ #auto_error .panel.callout .button:hover, #auto_error .panel.callout .button:focus { background: rgba(255, 255, 255, 0.8); }
855
+ #auto_error .panel.radius { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px;}
856
+
857
+
858
+ /* Accordion ---------------------- */
859
+
860
+ ul.accordion { margin: 0 0 22px 0; border-bottom: 1px solid #e9e9e9; }
861
+
862
+ ul.accordion > li { list-style: none; margin: 0; padding: 0; border-top: 1px solid #e9e9e9; }
863
+
864
+ ul.accordion > li > div.title { cursor: pointer; background: #f6f6f6; padding: 15px; margin: 0; position: relative; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; -webkit-transition: 0.15s background linear; -moz-transition: 0.15s background linear; -o-transition: 0.15s background linear; transition: 0.15s background linear; }
865
+
866
+ ul.accordion > li > div.title h1, ul.accordion > li > div.title h2, ul.accordion > li > div.title h3, ul.accordion > li > div.title h4, ul.accordion > li > div.title h5 { margin: 0; }
867
+
868
+ ul.accordion > li > div.title:after { content: ""; display: block; width: 0; height: 0; border: solid 6px; border-color: transparent #9d9d9d transparent transparent; position: absolute; right: 15px; top: 21px; }
869
+
870
+ ul.accordion > li .content { display: none; padding: 15px; }
871
+
872
+ ul.accordion > li.active { border-top: 3px solid #2ba6cb; }
873
+
874
+ ul.accordion > li.active .title { background: white; padding-top: 13px; }
875
+
876
+ ul.accordion > li.active .title:after { content: ""; display: block; width: 0; height: 0; border: solid 6px; border-color: #9d9d9d transparent transparent transparent; }
877
+
878
+ ul.accordion > li.active .content { background: white; display: block; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; }
879
+
880
+
881
+ /* Side Nav ---------------------- */
882
+
883
+ ul.side-nav { display: block; list-style: none; margin: 0; padding: 17px 0; }
884
+
885
+ ul.side-nav li { display: block; list-style: none; margin: 0 0 7px 0; }
886
+
887
+ ul.side-nav li a { display: block; }
888
+
889
+ ul.side-nav li.active a { color: #4d4d4d; font-weight: bold; }
890
+
891
+ ul.side-nav li.divider { border-top: 1px solid #e6e6e6; height: 0; padding: 0; }
892
+
893
+
894
+ /* Sub Navs http://www.zurb.com/article/292/how-to-create-simple-and-effective-sub-na ---------------------- */
895
+
896
+ dl.sub-nav { display: block; width: auto; overflow: hidden; margin: -4px 0 18px; margin-right: 0; margin-left: -9px; padding-top: 4px; }
897
+
898
+ dl.sub-nav dt, dl.sub-nav dd { float: left; display: inline; margin-left: 9px; margin-bottom: 10px; }
899
+
900
+ dl.sub-nav dt { color: #999; font-weight: normal; }
901
+
902
+ dl.sub-nav dd a { text-decoration: none; -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; }
903
+
904
+ dl.sub-nav dd.active a { font-weight: bold; background: #2ba6cb; color: #fff; padding: 3px 9px; cursor: default; }
905
+
906
+
907
+ /* Pagination ---------------------- */
908
+
909
+ ul.pagination { display: block; height: 24px; margin-left: -5px; }
910
+
911
+ ul.pagination li { float: left; display: block; height: 24px; color: #999; font-size: 14px; margin-left: 5px; }
912
+
913
+ ul.pagination li a { display: block; padding: 1px 7px 1px; color: #555; }
914
+
915
+ ul.pagination li:hover a, ul.pagination li a:focus { background: #e6e6e6; }
916
+
917
+ ul.pagination li.unavailable a { cursor: default; color: #999; }
918
+
919
+ ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus { background: transparent; }
920
+
921
+ ul.pagination li.current a { background: #2ba6cb; color: white; font-weight: bold; cursor: default; }
922
+
923
+ ul.pagination li.current a:hover, ul.pagination li.current a:focus { background: #2ba6cb; }
924
+
925
+
926
+ div.pagination-centered { text-align: center; }
927
+
928
+ div.pagination-centered ul > li { float: none; display: inline-block; }
929
+
930
+
931
+ /* Breadcrums ---------------------- */
932
+
933
+ ul.breadcrumbs { display: block; background: #f6f6f6; padding: 6px 10px 7px; border: 1px solid #e9e9e9; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; overflow: hidden; margin-left: 0; }
934
+
935
+ ul.breadcrumbs li { margin: 0; padding: 0 12px 0 0; float: left; list-style: none; }
936
+
937
+ ul.breadcrumbs li a, ul.breadcrumbs li span { text-transform: uppercase; font-size: 11px; font-size: 1.1rem; padding-left: 12px; }
938
+
939
+ ul.breadcrumbs li:first-child a, ul.breadcrumbs li:first-child span { padding-left: 0; }
940
+
941
+ ul.breadcrumbs li:before { content: "/"; color: #aaa; }
942
+
943
+ ul.breadcrumbs li:first-child:before { content: " "; }
944
+
945
+ ul.breadcrumbs li.current a { cursor: default; color: #333; }
946
+
947
+ ul.breadcrumbs li:hover a, ul.breadcrumbs li a:focus { text-decoration: underline; }
948
+
949
+ ul.breadcrumbs li.current:hover a, ul.breadcrumbs li.current a:focus { text-decoration: none; }
950
+
951
+ ul.breadcrumbs li.unavailable a { color: #999; }
952
+
953
+ ul.breadcrumbs li.unavailable:hover a, ul.breadcrumbs li.unavailable a:focus { text-decoration: none; color: #999; cursor: default; }
954
+
955
+
956
+ /* Inline Link List */
957
+
958
+ ul.inline-list, ul.link-list { margin: 0 0 17px -22px; padding: 0; list-style: none; overflow: hidden; }
959
+
960
+ ul.inline-list > li, ul.link-list > li { list-style: none; float: left; margin-left: 22px; display: block; }
961
+
962
+ ul.inline-list > li > *, ul.link-list > li > * { display: block; }
963
+
964
+
965
+ /* Keytroke Characters ---------------------- */
966
+ #auto_error .keystroke, kbd { font-family: "Consolas", "Menlo", "Courier", monospace; font-size: 13px; padding: 2px 4px 0px; margin: 0; background: #ededed; border: solid 1px #dbdbdb; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; }
967
+
968
+
969
+ /* Image Thumbnails ---------------------- */
970
+ #auto_error .th { display: block;}
971
+ #auto_error .th img { display: block; border: solid 4px #fff; -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; -webkit-transition-property: box-shadow; -moz-transition-property: box-shadow; -o-transition-property: box-shadow; transition-property: box-shadow; -webkit-transition-duration: 300ms; -moz-transition-duration: 300ms; -o-transition-duration: 300ms; transition-duration: 300ms; }
972
+ #auto_error .th:hover img, #auto_error .th:focus img { -webkit-box-shadow: 0 0 6px 1px rgba(43, 166, 203, 0.5); -moz-box-shadow: 0 0 6px 1px rgba(43, 166, 203, 0.5); box-shadow: 0 0 6px 1px rgba(43, 166, 203, 0.5); }
973
+
974
+
975
+ /* Video - Mad props to http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/ ---------------------- */
976
+ #auto_error .flex-video { position: relative; padding-top: 25px; padding-bottom: 67.5%; height: 0; margin-bottom: 16px; overflow: hidden;}
977
+ #auto_error .flex-video.widescreen { padding-bottom: 57.25%;}
978
+ #auto_error .flex-video.vimeo { padding-top: 0;}
979
+ #auto_error .flex-video iframe, #auto_error .flex-video object, #auto_error .flex-video embed, #auto_error .flex-video video { position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
980
+
981
+
982
+ /* Tables ---------------------- */
983
+
984
+ table { background: #fff; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; margin: 0 0 18px; border: 1px solid #ddd; }
985
+
986
+
987
+ table thead, table tfoot { background: #f5f5f5; }
988
+
989
+
990
+ table thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td { display: table-cell; font-size: 14px; line-height: 18px; text-align: left; }
991
+
992
+
993
+ table thead tr th, table tfoot tr td { padding: 8px 10px 9px; font-size: 14px; font-weight: bold; color: #222; }
994
+
995
+
996
+ table thead tr th:first-child, table tfoot tr td:first-child { border-left: none; }
997
+
998
+
999
+ table thead tr th:last-child, table tfoot tr td:last-child { border-right: none; }
1000
+
1001
+
1002
+ table tbody tr.even, table tbody tr.alt { background: #f9f9f9; }
1003
+
1004
+
1005
+ table tbody tr:nth-child(even) { background: #f9f9f9; }
1006
+
1007
+
1008
+ table tbody tr td { color: #333; padding: 9px 10px; vertical-align: top; border: none; }
1009
+
1010
+
1011
+ /* Microformats ---------------------- */
1012
+
1013
+ ul.vcard { display: inline-block; margin: 0 0 12px 0; border: 1px solid #ddd; padding: 10px; }
1014
+
1015
+ ul.vcard li { margin: 0; display: block; }
1016
+
1017
+ ul.vcard li.fn { font-weight: bold; font-size: 15px; }
1018
+
1019
+
1020
+ p.vevent span.summary { font-weight: bold; }
1021
+
1022
+ p.vevent abbr { cursor: default; text-decoration: none; font-weight: bold; border: none; padding: 0 1px; }
1023
+
1024
+
1025
+ /* Progress Bar ---------------------- */
1026
+
1027
+ div.progress { padding: 2px; margin-bottom: 10px; border: 1px solid #cccccc; height: 25px; /* meter */
1028
+ /* border radii */
1029
+ }
1030
+
1031
+ div.progress .meter { background: #2ba6cb; height: 100%; display: block; width: 50%; }
1032
+
1033
+ div.progress.secondary .meter { background: #e9e9e9; }
1034
+
1035
+ div.progress.success .meter { background: #5da423; }
1036
+
1037
+ div.progress.alert .meter { background: #c60f13; }
1038
+
1039
+ div.progress.radius { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; }
1040
+
1041
+ div.progress.radius .meter { -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; }
1042
+
1043
+ div.progress.round { -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; }
1044
+
1045
+ div.progress.round .meter { -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; }
1046
+
1047
+
1048
+ /* Pricing Tables ---------------------- */
1049
+ #auto_error .pricing-table { border: solid 1px #dddddd; margin-left: 0; margin-bottom: 20px;}
1050
+ #auto_error .pricing-table * { list-style: none; line-height: 1;}
1051
+ #auto_error .pricing-table .title { background-color: #dddddd; padding: 15px 20px; text-align: center; color: #333333; font-weight: bold; font-size: 16px;}
1052
+ #auto_error .pricing-table .price { background-color: #eeeeee; padding: 15px 20px; text-align: center; color: #333333; font-weight: normal; font-size: 20px;}
1053
+ #auto_error .pricing-table .description { background-color: white; padding: 15px; text-align: center; color: #777777; font-size: 12px; font-weight: normal; line-height: 1.4; border-bottom: dotted 1px #dddddd;}
1054
+ #auto_error .pricing-table .bullet-item { background-color: white; padding: 15px; text-align: center; color: #333333; font-size: 14px; font-weight: normal; border-bottom: dotted 1px #dddddd;}
1055
+ #auto_error .pricing-table .cta-button { background-color: whitesmoke; text-align: center; padding: 20px;}
1056
+
1057
+
1058
+ /* Foundation Top Bar
1059
+ Requires: -jquery.foundation.topbar.js
1060
+ Notes: - <nav class="top-bar"> can have .fixed added to make it stick to the top of viewport. Can add .contain-to-grid to top-bar to make it full width but content on grid. - <li class="name"> creates a branding area that can be linked to homepage - Can include text, image or both inside this <li>. - <li class="divider"> creates a divider between nav items, add margins for space - <li class="search"> Needs to hold a <form> which can use .row.collapse and pre/postfix buttons or default type="search"
1061
+ */
1062
+
1063
+ /* Element that controls breakpoint, no need to change this ever */
1064
+ #auto_error .top-bar-js-breakpoint { width: 940px !important; visibility: hidden;}
1065
+
1066
+
1067
+ /* Wrapped around .top-bar to contain to grid width */
1068
+ #auto_error .contain-to-grid { width: 100%; background: #222222;}
1069
+
1070
+
1071
+ /* Wrapped around .top-bar to make it fixed at the top */
1072
+ #auto_error .fixed { width: 100%; left: 0; position: fixed; top: 0; z-index: 99;}
1073
+
1074
+
1075
+ /* Add .sticky class for using top bar as a sticky navigation when scrolling passed it. Add the class .sticky to a top bar using .contain-to-grid but leave off .fixed, javascript will take care of that */
1076
+ #auto_error .sticky { float: left; overflow: hidden;}
1077
+ #auto_error .sticky.fixed { float: none;}
1078
+
1079
+
1080
+ /* <nav> */
1081
+ #auto_error .top-bar { background: #222222; min-height: 45px; line-height: 45px; margin: 0 0 30px 0; padding: 0; width: 100%; position: relative; /* Contain width to .row width*/
1082
+ /* First <ul> for branding, title, name, etc */
1083
+ /* topbar global <ul> styles */
1084
+ }
1085
+ #auto_error .contain-to-grid .top-bar { max-width: 940px; margin: 0 auto;}
1086
+ #auto_error .top-bar > ul .name h1 { line-height: 45px; margin: 0;}
1087
+ #auto_error .top-bar > ul .name h1 a { font-weight: bold; padding: 0 22.5px; font-size: 17px !important;}
1088
+ #auto_error .top-bar > ul .name img { margin-top: -5px; vertical-align: middle;}
1089
+ #auto_error .top-bar.expanded { height: inherit;}
1090
+ #auto_error .top-bar ul { margin-left: 0; display: inline; height: 45px; line-height: 45px; list-style: none; /* Main Navigation links style*/
1091
+ /* Left Side <ul> */
1092
+ /* Right Side <ul> */
1093
+ }
1094
+ #auto_error .top-bar ul > li { float: left; /* Dividers between navigation*/
1095
+ /* Put a button in an <li> but give is a class */
1096
+ /* Put a search bar or text input in the bar */
1097
+ /* Put login bar in the top bar */
1098
+ /* Hide the triangle for breakpoint menu */
1099
+ /* li.has-dropdown */
1100
+ }
1101
+ #auto_error .top-bar ul > li a:not(.button) { color: white; display: block; font-size: 13px; font-weight: bold; height: 45px; line-height: 45px; padding: 0 15px;}
1102
+ #auto_error .top-bar ul > li:not(.name):hover, #auto_error .top-bar ul > li:not(.name).active, #auto_error .top-bar ul > li:not(.name):focus { background: black;}
1103
+ #auto_error .top-bar ul > li:not(.name):hover a, #auto_error .top-bar ul > li:not(.name).active a, #auto_error .top-bar ul > li:not(.name):focus a { color: #d9d9d9;}
1104
+ #auto_error .top-bar ul > li.divider { background: black; -webkit-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.1); -moz-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.1); box-shadow: 1px 0 0 rgba(255, 255, 255, 0.1); height: 100%; margin-right: 1px; width: 1px; }
1105
+ #auto_error .top-bar ul > li.has-button a.button { margin: 0 11.25px;}
1106
+ #auto_error .top-bar ul > li.has-button:hover, #auto_error .top-bar ul > li.has-button:focus { background: #222222;}
1107
+ #auto_error .top-bar ul > li.has-button:hover a, #auto_error .top-bar ul > li.has-button:focus a { color: #fff;}
1108
+ #auto_error .top-bar ul > li.search { padding: 0 15px;}
1109
+ #auto_error .top-bar ul > li.search form { display: inline-block; margin-bottom: 0; vertical-align: middle; width: 200px;}
1110
+ #auto_error .top-bar ul > li.search form input[type=text] { -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0; -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0; border-bottom-right-radius: 0; float: left; font-size: 13px; margin-top: -1px; height: 22.5px; margin-bottom: 0; width: 130px;}
1111
+ #auto_error .top-bar ul > li.search form input[type=text] + .button { border-left: none; -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; border-top-left-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0; float: left; font-size: 12px; margin-top: -1px; padding: 5px 12px 4px;}
1112
+ #auto_error .top-bar ul > li.search form input[type=search] { font-size: 16px; margin-bottom: 0;}
1113
+ #auto_error .top-bar ul > li.search:hover, #auto_error .top-bar ul > li.search:focus { background: #222222;}
1114
+ #auto_error .top-bar ul > li.login { padding: 0 15px;}
1115
+ #auto_error .top-bar ul > li.login form { display: inline-block; margin-bottom: 0; vertical-align: middle; width: 300px;}
1116
+ #auto_error .top-bar ul > li.login form input { float: left; width: auto; font-size: 13px; margin-top: -1px; height: 22.5px; margin-bottom: 0;}
1117
+ #auto_error .top-bar ul > li.login form input[type=text] { -moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0; border-top-right-radius: 0; -moz-border-radius-bottomright: 0; -webkit-border-bottom-right-radius: 0; border-bottom-right-radius: 0; width: 120px;}
1118
+ #auto_error .top-bar ul > li.login form input[type=password] { margin-bottom: 0; -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; border-top-left-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0; width: 120px;}
1119
+ #auto_error .top-bar ul > li.login form input[type=password] + .button { border-left: none; -moz-border-radius-topleft: 0; -webkit-border-top-left-radius: 0; border-top-left-radius: 0; -moz-border-radius-bottomleft: 0; -webkit-border-bottom-left-radius: 0; border-bottom-left-radius: 0; -moz-border-radius-topright: 2px; -webkit-border-top-right-radius: 2px; border-top-right-radius: 2px; -moz-border-radius-bottomright: 2px; -webkit-border-bottom-right-radius: 2px; border-bottom-right-radius: 2px; float: left; font-size: 12px; margin-top: -1px; padding: 5px 12px 4px; width: 60px;}
1120
+ #auto_error .top-bar ul > li.login:hover, #auto_error .top-bar ul > li.login:focus { background: #222222;}
1121
+ #auto_error .top-bar ul > li.toggle-topbar { display: none;}
1122
+ #auto_error .top-bar ul > li.has-dropdown { position: relative; /* Dropdown Level 2+*/
1123
+ }
1124
+ #auto_error .top-bar ul > li.has-dropdown:hover > .dropdown, #auto_error .top-bar ul > li.has-dropdown:focus > .dropdown { display: block; visibility: visible;}
1125
+ #auto_error .top-bar ul > li.has-dropdown a { padding-right: 33.75px;}
1126
+ #auto_error .top-bar ul > li.has-dropdown a:after { content: ""; display: block; width: 0; height: 0; border: solid 5px; border-color: white transparent transparent transparent; margin-right: 15px; margin-top: -2.5px; position: absolute; right: 0; top: 50%;}
1127
+ #auto_error .top-bar ul > li.has-dropdown .dropdown { background: #222222; left: 0; margin: 0; padding: 9px 0 0 0; position: absolute; visibility: hidden; z-index: 99;}
1128
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li { background: #222222; line-height: 1; min-width: 100%; padding-bottom: 5px;}
1129
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li a { color: white; font-weight: normal; height: 100%; line-height: 1; padding: 5px 17px 5px 15px; white-space: nowrap;}
1130
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li a:after { border: none;}
1131
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li a:hover, #auto_error .top-bar ul > li.has-dropdown .dropdown li a:focus { background: #3c3c3c;}
1132
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li label { color: #6f6f6f; font-size: 10px; font-weight: bold; margin: 0; padding-left: 15px; text-transform: uppercase;}
1133
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li.divider { border-top: solid 1px black; -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset; -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset; height: 10px; padding: 0; width: 100%; }
1134
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li:last-child { padding-bottom: 10px;}
1135
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li.active a { background: black;}
1136
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li.has-dropdown > a { padding-right: 30px;}
1137
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li.has-dropdown > a:after { border: none; content: "\00bb"; right: 5px; top: 6px;}
1138
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li.has-dropdown .dropdown { position: absolute; left: 100%; top: 0;}
1139
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li.has-dropdown:hover > .dropdown, #auto_error .top-bar ul > li.has-dropdown .dropdown li.has-dropdown:focus > .dropdown { display: block;}
1140
+ #auto_error .top-bar ul.left { float: left; width: auto; margin-bottom: 0;}
1141
+ #auto_error .top-bar ul.right { float: right; width: auto; margin-bottom: 0; /* Dropdown Right Side Alignment*/
1142
+ }
1143
+ #auto_error .top-bar ul.right .has-dropdown .dropdown { left: auto; right: 0px;}
1144
+ #auto_error .top-bar ul.right .has-dropdown .dropdown li.has-dropdown > .dropdown { right: 100%; left: auto; width: 100%;}
1145
+ #auto_error .top-bar .js-generated { display: none;}
1146
+
1147
+
1148
+ /* Firefox Fixes */
1149
+
1150
+ @-moz-document url-prefix() { .top-bar ul li .button.small { padding-bottom: 6px; }
1151
+ #auto_error .top-bar ul li.search form input[type=search] { font-size: 14px; height: 22px; padding: 3px;}
1152
+ }
1153
+
1154
+
1155
+ /* IE8 Fixes */
1156
+ #auto_error .lt-ie9 .top-bar ul li a { color: white; display: block; font-weight: bold; font-size: 13px; height: 45px; line-height: 45px; padding: 0 15px;}
1157
+ #auto_error .lt-ie9 .top-bar ul li a.button { height: auto; line-height: 30px; margin-top: 7px;}
1158
+ #auto_error .lt-ie9 .top-bar ul li a img { margin-top: -5px; vertical-align: middle;}
1159
+ #auto_error .lt-ie9 .top-bar section > ul > li a:hover, #auto_error .lt-ie9 .top-bar section > ul > li a:focus { color: #cccccc;}
1160
+ #auto_error .lt-ie9 .top-bar section > ul > li:hover, #auto_error .lt-ie9 .top-bar section > ul > li:focus { background: black;}
1161
+ #auto_error .lt-ie9 .top-bar section > ul > li.search:hover, #auto_error .lt-ie9 .top-bar section > ul > li.search:focus, #auto_error .lt-ie9 .top-bar section > ul > li.has-button:hover, #auto_error .lt-ie9 .top-bar section > ul > li.has-button:focus { background: none;}
1162
+ #auto_error .lt-ie9 .top-bar section > ul > li.active { background: black; color: #d9d9d9;}
1163
+ #auto_error .lt-ie9 .top-bar ul li.has-dropdown { padding-right: 33.75px;}
1164
+ #auto_error .lt-ie9 .top-bar ul li.has-dropdown > ul li { padding-right: 0;}
1165
+ #auto_error #joyRideTipContent { display: none;}
1166
+
1167
+
1168
+ /* Default styles for the container */
1169
+ #auto_error .joyride-tip-guide { display: none; position: absolute; background: black; background: rgba(0, 0, 0, 0.8); color: white; width: 300px; z-index: 101; top: 0; left: 0; font-family: inherit; font-weight: normal; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
1170
+ #auto_error .joyride-content-wrapper { padding: 18px 20px 24px;}
1171
+
1172
+
1173
+ /* Add a little css triangle pip, older browser just miss out on the fanciness of it */
1174
+ #auto_error .joyride-tip-guide span.joyride-nub { display: block; position: absolute; left: 22px; width: 0; height: 0; border: solid 14px;}
1175
+ #auto_error .joyride-tip-guide span.joyride-nub.top { border-color: black; border-color: rgba(0, 0, 0, 0.8); border-top-color: transparent !important; border-left-color: transparent !important; border-right-color: transparent !important; top: -28px; bottom: none; }
1176
+ #auto_error .joyride-tip-guide span.joyride-nub.bottom { border-color: black; border-color: rgba(0, 0, 0, 0.8) !important; border-bottom-color: transparent !important; border-left-color: transparent !important; border-right-color: transparent !important; bottom: -28px; bottom: none; }
1177
+ #auto_error .joyride-tip-guide span.joyride-nub.right { border-color: black; border-color: rgba(0, 0, 0, 0.8) !important; border-top-color: transparent !important; border-right-color: transparent !important; border-bottom-color: transparent !important; top: 22px; bottom: none; left: auto; right: -28px; }
1178
+ #auto_error .joyride-tip-guide span.joyride-nub.left { border-color: black; border-color: rgba(0, 0, 0, 0.8) !important; border-top-color: transparent !important; border-left-color: transparent !important; border-bottom-color: transparent !important; top: 22px; left: -28px; right: auto; bottom: none; }
1179
+
1180
+
1181
+ /* Typography */
1182
+ #auto_error .joyride-tip-guide h1, #auto_error .joyride-tip-guide h2, #auto_error .joyride-tip-guide h3, #auto_error .joyride-tip-guide h4, #auto_error .joyride-tip-guide h5, #auto_error .joyride-tip-guide h6 { line-height: 1.25; margin: 0; font-weight: bold; color: white;}
1183
+ #auto_error .joyride-tip-guide p { margin: 0 0 18px 0; font-size: 14px; line-height: 1.3;}
1184
+ #auto_error .joyride-timer-indicator-wrap { width: 50px; height: 3px; border: solid 1px #555555; position: absolute; right: 17px; bottom: 16px;}
1185
+ #auto_error .joyride-timer-indicator { display: block; width: 0; height: inherit; background: #666666;}
1186
+ #auto_error .joyride-close-tip { position: absolute; right: 10px; top: 10px; color: #777777 !important; text-decoration: none; font-size: 20px; font-weight: normal; line-height: .5 !important;}
1187
+ #auto_error .joyride-close-tip:hover, #auto_error .joyride-close-tip:focus { color: #eee !important;}
1188
+ #auto_error .joyride-modal-bg { position: fixed; height: 100%; width: 100%; background: transparent; background: rgba(0, 0, 0, 0.5); z-index: 100; display: none; top: 0; left: 0; cursor: pointer; }
1189
+ #auto_error .clearing-blackout { background: black; background: rgba(0, 0, 0, 0.8); position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: 999; }
1190
+ #auto_error .clearing-blackout .clearing-close { display: block;}
1191
+ #auto_error .clearing-container { position: relative; z-index: 999; height: 100%; overflow: hidden;}
1192
+ #auto_error .visible-img { height: 75%; position: relative;}
1193
+ #auto_error .visible-img img { position: absolute; left: 50%; top: 50%; margin-left: -50%; max-height: 100%; max-width: 100%;}
1194
+ #auto_error .visible-img .clearing-caption { color: white; margin-bottom: 0; text-align: center; position: absolute; bottom: 0; background: black; background: rgba(0, 0, 0, 0.7); width: 100%; padding: 10px 100px; }
1195
+ #auto_error .clearing-close { z-index: 999; position: absolute; top: 10px; right: 20px; font-size: 30px; line-height: 1; color: white; display: none;}
1196
+ #auto_error .clearing-close:hover, #auto_error .clearing-close:focus { color: #ccc;}
1197
+ #auto_error .clearing-main-left, #auto_error .clearing-main-right { position: absolute; top: 50%; margin-top: -16px;}
1198
+ #auto_error .clearing-main-left.disabled, #auto_error .clearing-main-right.disabled { opacity: 0.5;}
1199
+ #auto_error .clearing-main-left:active, #auto_error .clearing-main-right:active { margin-top: -15px;}
1200
+ #auto_error .clearing-main-left { left: 10px; content: ""; display: block; width: 0; height: 0; border: solid 16px; border-color: transparent white transparent transparent;}
1201
+ #auto_error .clearing-main-right { right: 10px; content: ""; display: block; width: 0; height: 0; border: solid 16px; border-color: transparent transparent transparent white;}
1202
+
1203
+
1204
+ ul[data-clearing].block-grid.three-up > li:nth-child(3n+1) { clear: none; }
1205
+
1206
+
1207
+ ul[data-clearing] li { cursor: pointer; display: block; }
1208
+
1209
+ ul[data-clearing] li.clearing-feature ~ li { display: none; }
1210
+ #auto_error .clearing-assembled .clearing-container .carousel { background: black; background: rgba(0, 0, 0, 0.75); height: 150px; margin-top: 5px; }
1211
+ #auto_error .clearing-assembled .clearing-container .visible-img { background: black; background: rgba(0, 0, 0, 0.75); overflow: hidden; }
1212
+ #auto_error .clearing-assembled .clearing-container ul[data-clearing] { z-index: 999; width: 200%; height: 100%; margin-left: 0; position: relative; left: 0;}
1213
+ #auto_error .clearing-assembled .clearing-container ul[data-clearing] li { display: block; width: 175px; height: inherit; padding: 0; float: left; overflow: hidden; background: #222; margin-right: 1px; position: relative;}
1214
+ #auto_error .clearing-assembled .clearing-container ul[data-clearing] li.fix-height img { min-height: 100%; height: 100%; max-width: none;}
1215
+ #auto_error .clearing-assembled .clearing-container ul[data-clearing] li img { cursor: pointer !important; min-width: 100% !important;}
1216
+ #auto_error .clearing-assembled .clearing-container ul[data-clearing] li.visible { border-top: 4px solid white;}
1217
+
1218
+
1219
+ /* Overrides clear:both; when using block-grid with Clearing. Also overrided .th styling when Clearing is open */
1220
+
1221
+ ul.block-grid[data-clearing] { overflow: visible; }
1222
+ #auto_error .clearing-blackout ul.block-grid[data-clearing].two-up > li:nth-child(2n+1) { clear: none;}
1223
+ #auto_error .clearing-blackout ul.block-grid[data-clearing].three-up > li:nth-child(3n+1) { clear: none;}
1224
+ #auto_error .clearing-blackout ul.block-grid[data-clearing].four-up > li:nth-child(4n+1) { clear: none;}
1225
+ #auto_error .clearing-blackout ul.block-grid[data-clearing].five-up > li:nth-child(5n+1) { clear: none;}
1226
+ #auto_error .clearing-blackout ul.block-grid[data-clearing].six-up > li:nth-child(6n+1) { clear: none;}
1227
+ #auto_error .clearing-blackout ul.block-grid[data-clearing].seven-up > li:nth-child(7n+1) { clear: none;}
1228
+ #auto_error .clearing-blackout ul.block-grid[data-clearing].eight-up > li:nth-child(8n+1) { clear: none;}
1229
+ #auto_error .clearing-blackout ul.block-grid[data-clearing].nine-up > li:nth-child(9n+1) { clear: none;}
1230
+ #auto_error .clearing-blackout ul.block-grid[data-clearing].ten-up > li:nth-child(10n+1) { clear: none;}
1231
+ #auto_error .clearing-blackout ul.block-grid[data-clearing].eleven-up > li:nth-child(11n+1) { clear: none;}
1232
+ #auto_error .clearing-blackout ul.block-grid[data-clearing].twelve-up > li:nth-child(12n+1) { clear: none;}
1233
+ #auto_error .clearing-blackout .th img { border: none; -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; }
1234
+ #auto_error .clearing-blackout:hover img, #auto_error .clearing-blackout:focus img { -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
1235
+
1236
+
1237
+ /* Visibility Classes ---------------------- */
1238
+
1239
+ /* */
1240
+
1241
+ /* Standard (large) display targeting */
1242
+ #auto_error .show-for-small, #auto_error .show-for-medium, #auto_error .show-for-medium-down, #auto_error .hide-for-large, #auto_error .hide-for-large-up, #auto_error .show-for-xlarge, #auto_error .show-for-print { display: none !important;}
1243
+ #auto_error .hide-for-small, #auto_error .hide-for-medium, #auto_error .hide-for-medium-down, #auto_error .show-for-large, #auto_error .show-for-large-up, #auto_error .hide-for-xlarge, #auto_error .hide-for-print { display: inherit !important;}
1244
+
1245
+
1246
+ /* Very large display targeting */
1247
+
1248
+ @media only screen and (min-width: 1441px) { .hide-for-small, #auto_error .hide-for-medium, #auto_error .hide-for-medium-down, #auto_error .hide-for-large, #auto_error .show-for-large-up, #auto_error .show-for-xlarge { display: inherit !important;}
1249
+ #auto_error .show-for-small, #auto_error .show-for-medium, #auto_error .show-for-medium-down, #auto_error .show-for-large, #auto_error .hide-for-large-up, #auto_error .hide-for-xlarge { display: none !important;}
1250
+ }
1251
+
1252
+ /* Medium display targeting */
1253
+
1254
+ @media only screen and (max-width: 1279px) and (min-width: 768px) { .hide-for-small, #auto_error .show-for-medium, #auto_error .show-for-medium-down, #auto_error .hide-for-large, #auto_error .hide-for-large-up, #auto_error .hide-for-xlarge { display: inherit !important;}
1255
+ #auto_error .show-for-small, #auto_error .hide-for-medium, #auto_error .hide-for-medium-down, #auto_error .show-for-large, #auto_error .show-for-large-up, #auto_error .show-for-xlarge { display: none !important;}
1256
+ }
1257
+
1258
+ /* Small display targeting */
1259
+
1260
+ @media only screen and (max-width: 767px) { .show-for-small, #auto_error .hide-for-medium, #auto_error .show-for-medium-down, #auto_error .hide-for-large, #auto_error .hide-for-large-up, #auto_error .hide-for-xlarge { display: inherit !important;}
1261
+ #auto_error .hide-for-small, #auto_error .show-for-medium, #auto_error .hide-for-medium-down, #auto_error .show-for-large, #auto_error .show-for-large-up, #auto_error .show-for-xlarge { display: none !important;}
1262
+ }
1263
+
1264
+ /* Orientation targeting */
1265
+ #auto_error .show-for-landscape, #auto_error .hide-for-portrait { display: inherit !important;}
1266
+ #auto_error .hide-for-landscape, #auto_error .show-for-portrait { display: none !important;}
1267
+
1268
+
1269
+ @media screen and (orientation: landscape) { .show-for-landscape, #auto_error .hide-for-portrait { display: inherit !important;}
1270
+ #auto_error .hide-for-landscape, #auto_error .show-for-portrait { display: none !important;}
1271
+ }
1272
+
1273
+ @media screen and (orientation: portrait) { .show-for-portrait, #auto_error .hide-for-landscape { display: inherit !important;}
1274
+ #auto_error .hide-for-portrait, #auto_error .show-for-landscape { display: none !important;}
1275
+ }
1276
+
1277
+ /* Touch-enabled device targeting */
1278
+ #auto_error .show-for-touch { display: none !important;}
1279
+ #auto_error .hide-for-touch { display: inherit !important;}
1280
+ #auto_error .touch .show-for-touch { display: inherit !important;}
1281
+ #auto_error .touch .hide-for-touch { display: none !important;}
1282
+
1283
+
1284
+ /* Specific overrides for elements that require something other than display: block */
1285
+
1286
+ table.show-for-xlarge, table.show-for-large, table.hide-for-small, table.hide-for-medium { display: table !important; }
1287
+
1288
+
1289
+ @media only screen and (max-width: 1279px) and (min-width: 768px) { .touch table.hide-for-xlarge, #auto_error .touch table.hide-for-large, #auto_error .touch table.hide-for-small, #auto_error .touch table.show-for-medium { display: table !important;}
1290
+ }
1291
+
1292
+ @media only screen and (max-width: 767px) { table.hide-for-xlarge, table.hide-for-large, table.hide-for-medium, table.show-for-small { display: table !important; }
1293
+ }
1294
+
1295
+ /* 1280 tablet ------------ */
1296
+
1297
+ @media only screen and (max-device-width: 1280px) { /* NavBar --- */
1298
+
1299
+ /* */
1300
+ #auto_error .touch .nav-bar li.has-flyout > a { padding-right: 36px !important;}
1301
+ }
1302
+
1303
+ /* Covering almost all ----- */
1304
+
1305
+ @media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) { .flex-video { padding-top: 0; }
1306
+ }
1307
+
1308
+ /* Between Medium and Small */
1309
+
1310
+ @media only screen and (max-width: 1279px) and (min-width: 768px) { /* NavBar --- */
1311
+
1312
+ /* */
1313
+ #auto_error .touch .nav-bar li a { font-size: 13px;}
1314
+ #auto_error .touch .nav-bar li.has-flyout > a.flyout-toggle { padding: 20px !important;}
1315
+ #auto_error .touch .nav-bar li.has-flyout > a { padding-right: 36px !important;}
1316
+
1317
+ /* Clearing --- */
1318
+
1319
+ /* */
1320
+ #auto_error .clearing-main-right, #auto_error .clearing-main-left { height: 100%; width: 40px; top: 0; border: none;}
1321
+ #auto_error .clearing-main-right:before, #auto_error .clearing-main-left:before { position: absolute; top: 50%;}
1322
+ #auto_error .clearing-main-left { left: 0;}
1323
+ #auto_error .clearing-main-left:before { left: 5px; content: ""; display: block; width: 0; height: 0; border: solid 16px; border-color: transparent white transparent transparent;}
1324
+ #auto_error .clearing-main-right { height: 100%; right: 0;}
1325
+ #auto_error .clearing-main-right:before { content: ""; display: block; width: 0; height: 0; border: solid 16px; border-color: transparent transparent transparent white;}
1326
+ }
1327
+
1328
+ /* Small Devices ------------ */
1329
+
1330
+ @media only screen and (max-width: 767px) { /* Global Misc --- */
1331
+
1332
+ /* */
1333
+ #auto_error .left, #auto_error .right { float: none;}
1334
+
1335
+ body { -webkit-text-size-adjust: none; -ms-text-size-adjust: none; width: 100%; min-width: 0; margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
1336
+
1337
+ /* The Grid --- */
1338
+
1339
+ /* */
1340
+ #auto_error .row { width: auto; min-width: 0; margin-left: 0; margin-right: 0;}
1341
+ #auto_error .column, #auto_error .columns { width: auto !important; float: none;}
1342
+ #auto_error .column:last-child, #auto_error .columns:last-child { float: none;}
1343
+
1344
+ [class*="column"] + [class*="column"]:last-child { float: none; }
1345
+ #auto_error .column:before, #auto_error .columns:before, #auto_error .column:after, #auto_error .columns:after { content: ""; display: table;}
1346
+ #auto_error .column:after, #auto_error .columns:after { clear: both;}
1347
+ #auto_error .offset-by-one, #auto_error .offset-by-two, #auto_error .offset-by-three, #auto_error .offset-by-four, #auto_error .offset-by-five, #auto_error .offset-by-six, #auto_error .offset-by-seven, #auto_error .offset-by-eight, #auto_error .offset-by-nine, #auto_error .offset-by-ten { margin-left: 0 !important;}
1348
+ #auto_error .push-two, #auto_error .push-three, #auto_error .push-four, #auto_error .push-five, #auto_error .push-six, #auto_error .push-seven, #auto_error .push-eight, #auto_error .push-nine, #auto_error .push-ten { left: auto;}
1349
+ #auto_error .pull-two, #auto_error .pull-three, #auto_error .pull-four, #auto_error .pull-five, #auto_error .pull-six, #auto_error .pull-seven, #auto_error .pull-eight, #auto_error .pull-nine, #auto_error .pull-ten { right: auto;}
1350
+
1351
+ /* Mobile 4-column Grid */
1352
+ #auto_error .row .mobile-one { width: 25% !important; float: left; padding: 0 15px;}
1353
+ #auto_error .row .mobile-one:last-child { float: right;}
1354
+ #auto_error .row .mobile-one.end { float: left;}
1355
+ #auto_error .row.collapse .mobile-one { padding: 0;}
1356
+ #auto_error .row .mobile-two { width: 50% !important; float: left; padding: 0 15px;}
1357
+ #auto_error .row .mobile-two:last-child { float: right;}
1358
+ #auto_error .row .mobile-two.end { float: left;}
1359
+ #auto_error .row.collapse .mobile-two { padding: 0;}
1360
+ #auto_error .row .mobile-three { width: 75% !important; float: left; padding: 0 15px;}
1361
+ #auto_error .row .mobile-three:last-child { float: right;}
1362
+ #auto_error .row .mobile-three.end { float: left;}
1363
+ #auto_error .row.collapse .mobile-three { padding: 0;}
1364
+ #auto_error .row .mobile-four { width: 100% !important; float: left; padding: 0 15px;}
1365
+ #auto_error .row .mobile-four:last-child { float: right;}
1366
+ #auto_error .row .mobile-four.end { float: left;}
1367
+ #auto_error .row.collapse .mobile-four { padding: 0;}
1368
+ #auto_error .push-one-mobile { left: 25%;}
1369
+ #auto_error .pull-one-mobile { right: 25%;}
1370
+ #auto_error .push-two-mobile { left: 50%;}
1371
+ #auto_error .pull-two-mobile { right: 50%;}
1372
+ #auto_error .push-three-mobile { left: 75%;}
1373
+ #auto_error .pull-three-mobile { right: 75%;}
1374
+
1375
+ /* Block Grids --- */
1376
+
1377
+ /* */
1378
+ #auto_error .block-grid.mobile > li { float: none; width: 100%; margin-left: 0;}
1379
+ #auto_error .block-grid > li { clear: none;}
1380
+ #auto_error .block-grid.mobile-one-up > li { width: 100%;}
1381
+ #auto_error .block-grid.mobile-two-up > li { width: 50%;}
1382
+ #auto_error .block-grid.mobile-two-up > li:nth-child(2n+1) { clear: both;}
1383
+ #auto_error .block-grid.mobile-three-up > li { width: 33.33333%;}
1384
+ #auto_error .block-grid.mobile-three-up > li:nth-child(3n+1) { clear: both;}
1385
+ #auto_error .block-grid.mobile-four-up > li { width: 25%;}
1386
+ #auto_error .block-grid.mobile-four-up > li:nth-child(4n+1) { clear: both;}
1387
+ #auto_error .block-grid.mobile-five-up > li { width: 20%;}
1388
+ #auto_error .block-grid.mobile-five-up > li:nth-child(5n+1) { clear: both;}
1389
+ #auto_error .block-grid.mobile-six-up > li { width: 16.66667%;}
1390
+ #auto_error .block-grid.mobile-six-up > li:nth-child(6n+1) { clear: both;}
1391
+ #auto_error .block-grid.mobile-seven-up > li { width: 14.28571%;}
1392
+ #auto_error .block-grid.mobile-seven-up > li:nth-child(7n+1) { clear: both;}
1393
+ #auto_error .block-grid.mobile-eight-up > li { width: 12.5%;}
1394
+ #auto_error .block-grid.mobile-eight-up > li:nth-child(8n+1) { clear: both;}
1395
+ #auto_error .block-grid.mobile-nine-up > li { width: 11.11111%;}
1396
+ #auto_error .block-grid.mobile-nine-up > li:nth-child(9n+1) { clear: both;}
1397
+ #auto_error .block-grid.mobile-ten-up > li { width: 10%;}
1398
+ #auto_error .block-grid.mobile-ten-up > li:nth-child(10n+1) { clear: both;}
1399
+ #auto_error .block-grid.mobile-eleven-up > li { width: 9.09091%;}
1400
+ #auto_error .block-grid.mobile-eleven-up > li:nth-child(11n+1) { clear: both;}
1401
+ #auto_error .block-grid.mobile-twelve-up > li { width: 8.33333%;}
1402
+ #auto_error .block-grid.mobile-twelve-up > li:nth-child(12n+1) { clear: both;}
1403
+
1404
+ /* Forms --- */
1405
+
1406
+ /* */
1407
+
1408
+ /* Label alignment */
1409
+
1410
+ label.right { text-align: left; }
1411
+
1412
+ /* Extend width of all inputs */
1413
+
1414
+ input[type="text"].one, #auto_error .row input[type="text"].one, input[type="password"].one, #auto_error .row input[type="password"].one, input[type="date"].one, #auto_error .row input[type="date"].one, input[type="datetime"].one, #auto_error .row input[type="datetime"].one, input[type="email"].one, #auto_error .row input[type="email"].one, input[type="number"].one, #auto_error .row input[type="number"].one, input[type="search"].one, #auto_error .row input[type="search"].one, input[type="tel"].one, #auto_error .row input[type="tel"].one, input[type="time"].one, #auto_error .row input[type="time"].one, input[type="url"].one, #auto_error .row input[type="url"].one, textarea.one, #auto_error .row textarea.one { width: 100% !important;}
1415
+
1416
+ input[type="text"].two, #auto_error .row input[type="text"].two, input[type="password"].two, #auto_error .row input[type="password"].two, input[type="date"].two, #auto_error .row input[type="date"].two, input[type="datetime"].two, #auto_error .row input[type="datetime"].two, input[type="email"].two, #auto_error .row input[type="email"].two, input[type="number"].two, #auto_error .row input[type="number"].two, input[type="search"].two, #auto_error .row input[type="search"].two, input[type="tel"].two, #auto_error .row input[type="tel"].two, input[type="time"].two, #auto_error .row input[type="time"].two, input[type="url"].two, #auto_error .row input[type="url"].two, textarea.two, #auto_error .row textarea.two { width: 100% !important;}
1417
+
1418
+ input[type="text"].three, #auto_error .row input[type="text"].three, input[type="password"].three, #auto_error .row input[type="password"].three, input[type="date"].three, #auto_error .row input[type="date"].three, input[type="datetime"].three, #auto_error .row input[type="datetime"].three, input[type="email"].three, #auto_error .row input[type="email"].three, input[type="number"].three, #auto_error .row input[type="number"].three, input[type="search"].three, #auto_error .row input[type="search"].three, input[type="tel"].three, #auto_error .row input[type="tel"].three, input[type="time"].three, #auto_error .row input[type="time"].three, input[type="url"].three, #auto_error .row input[type="url"].three, textarea.three, #auto_error .row textarea.three { width: 100% !important;}
1419
+
1420
+ input[type="text"].four, #auto_error .row input[type="text"].four, input[type="password"].four, #auto_error .row input[type="password"].four, input[type="date"].four, #auto_error .row input[type="date"].four, input[type="datetime"].four, #auto_error .row input[type="datetime"].four, input[type="email"].four, #auto_error .row input[type="email"].four, input[type="number"].four, #auto_error .row input[type="number"].four, input[type="search"].four, #auto_error .row input[type="search"].four, input[type="tel"].four, #auto_error .row input[type="tel"].four, input[type="time"].four, #auto_error .row input[type="time"].four, input[type="url"].four, #auto_error .row input[type="url"].four, textarea.four, #auto_error .row textarea.four { width: 100% !important;}
1421
+
1422
+ input[type="text"].five, #auto_error .row input[type="text"].five, input[type="password"].five, #auto_error .row input[type="password"].five, input[type="date"].five, #auto_error .row input[type="date"].five, input[type="datetime"].five, #auto_error .row input[type="datetime"].five, input[type="email"].five, #auto_error .row input[type="email"].five, input[type="number"].five, #auto_error .row input[type="number"].five, input[type="search"].five, #auto_error .row input[type="search"].five, input[type="tel"].five, #auto_error .row input[type="tel"].five, input[type="time"].five, #auto_error .row input[type="time"].five, input[type="url"].five, #auto_error .row input[type="url"].five, textarea.five, #auto_error .row textarea.five { width: 100% !important;}
1423
+
1424
+ input[type="text"].six, #auto_error .row input[type="text"].six, input[type="password"].six, #auto_error .row input[type="password"].six, input[type="date"].six, #auto_error .row input[type="date"].six, input[type="datetime"].six, #auto_error .row input[type="datetime"].six, input[type="email"].six, #auto_error .row input[type="email"].six, input[type="number"].six, #auto_error .row input[type="number"].six, input[type="search"].six, #auto_error .row input[type="search"].six, input[type="tel"].six, #auto_error .row input[type="tel"].six, input[type="time"].six, #auto_error .row input[type="time"].six, input[type="url"].six, #auto_error .row input[type="url"].six, textarea.six, #auto_error .row textarea.six { width: 100% !important;}
1425
+
1426
+ input[type="text"].seven, #auto_error .row input[type="text"].seven, input[type="password"].seven, #auto_error .row input[type="password"].seven, input[type="date"].seven, #auto_error .row input[type="date"].seven, input[type="datetime"].seven, #auto_error .row input[type="datetime"].seven, input[type="email"].seven, #auto_error .row input[type="email"].seven, input[type="number"].seven, #auto_error .row input[type="number"].seven, input[type="search"].seven, #auto_error .row input[type="search"].seven, input[type="tel"].seven, #auto_error .row input[type="tel"].seven, input[type="time"].seven, #auto_error .row input[type="time"].seven, input[type="url"].seven, #auto_error .row input[type="url"].seven, textarea.seven, #auto_error .row textarea.seven { width: 100% !important;}
1427
+
1428
+ input[type="text"].eight, #auto_error .row input[type="text"].eight, input[type="password"].eight, #auto_error .row input[type="password"].eight, input[type="date"].eight, #auto_error .row input[type="date"].eight, input[type="datetime"].eight, #auto_error .row input[type="datetime"].eight, input[type="email"].eight, #auto_error .row input[type="email"].eight, input[type="number"].eight, #auto_error .row input[type="number"].eight, input[type="search"].eight, #auto_error .row input[type="search"].eight, input[type="tel"].eight, #auto_error .row input[type="tel"].eight, input[type="time"].eight, #auto_error .row input[type="time"].eight, input[type="url"].eight, #auto_error .row input[type="url"].eight, textarea.eight, #auto_error .row textarea.eight { width: 100% !important;}
1429
+
1430
+ input[type="text"].nine, #auto_error .row input[type="text"].nine, input[type="password"].nine, #auto_error .row input[type="password"].nine, input[type="date"].nine, #auto_error .row input[type="date"].nine, input[type="datetime"].nine, #auto_error .row input[type="datetime"].nine, input[type="email"].nine, #auto_error .row input[type="email"].nine, input[type="number"].nine, #auto_error .row input[type="number"].nine, input[type="search"].nine, #auto_error .row input[type="search"].nine, input[type="tel"].nine, #auto_error .row input[type="tel"].nine, input[type="time"].nine, #auto_error .row input[type="time"].nine, input[type="url"].nine, #auto_error .row input[type="url"].nine, textarea.nine, #auto_error .row textarea.nine { width: 100% !important;}
1431
+
1432
+ input[type="text"].ten, #auto_error .row input[type="text"].ten, input[type="password"].ten, #auto_error .row input[type="password"].ten, input[type="date"].ten, #auto_error .row input[type="date"].ten, input[type="datetime"].ten, #auto_error .row input[type="datetime"].ten, input[type="email"].ten, #auto_error .row input[type="email"].ten, input[type="number"].ten, #auto_error .row input[type="number"].ten, input[type="search"].ten, #auto_error .row input[type="search"].ten, input[type="tel"].ten, #auto_error .row input[type="tel"].ten, input[type="time"].ten, #auto_error .row input[type="time"].ten, input[type="url"].ten, #auto_error .row input[type="url"].ten, textarea.ten, #auto_error .row textarea.ten { width: 100% !important;}
1433
+
1434
+ input[type="text"].eleven, #auto_error .row input[type="text"].eleven, input[type="password"].eleven, #auto_error .row input[type="password"].eleven, input[type="date"].eleven, #auto_error .row input[type="date"].eleven, input[type="datetime"].eleven, #auto_error .row input[type="datetime"].eleven, input[type="email"].eleven, #auto_error .row input[type="email"].eleven, input[type="number"].eleven, #auto_error .row input[type="number"].eleven, input[type="search"].eleven, #auto_error .row input[type="search"].eleven, input[type="tel"].eleven, #auto_error .row input[type="tel"].eleven, input[type="time"].eleven, #auto_error .row input[type="time"].eleven, input[type="url"].eleven, #auto_error .row input[type="url"].eleven, textarea.eleven, #auto_error .row textarea.eleven { width: 100% !important;}
1435
+
1436
+ input[type="text"].twelve, #auto_error .row input[type="text"].twelve, input[type="password"].twelve, #auto_error .row input[type="password"].twelve, input[type="date"].twelve, #auto_error .row input[type="date"].twelve, input[type="datetime"].twelve, #auto_error .row input[type="datetime"].twelve, input[type="email"].twelve, #auto_error .row input[type="email"].twelve, input[type="number"].twelve, #auto_error .row input[type="number"].twelve, input[type="search"].twelve, #auto_error .row input[type="search"].twelve, input[type="tel"].twelve, #auto_error .row input[type="tel"].twelve, input[type="time"].twelve, #auto_error .row input[type="time"].twelve, input[type="url"].twelve, #auto_error .row input[type="url"].twelve, textarea.twelve, #auto_error .row textarea.twelve { width: 100% !important;}
1437
+
1438
+ /* Buttons --- */
1439
+
1440
+ /* */
1441
+
1442
+ /* Basic overrides */
1443
+ #auto_error .button { display: block;}
1444
+
1445
+ button.button, input[type="submit"].button, input[type="reset"].button { width: 100%; padding-left: 0; padding-right: 0; }
1446
+
1447
+ /* Button Groups */
1448
+ #auto_error .button-group button.button, #auto_error .button-group input[type="submit"].button { width: auto; padding: 10px 20px 11px;}
1449
+ #auto_error .button-group button.button.large, #auto_error .button-group input[type="submit"].button.large { padding: 15px 30px 16px;}
1450
+ #auto_error .button-group button.button.medium, #auto_error .button-group input[type="submit"].button.medium { padding: 10px 20px 11px;}
1451
+ #auto_error .button-group button.button.small, #auto_error .button-group input[type="submit"].button.small { padding: 7px 14px 8px;}
1452
+ #auto_error .button-group button.button.tiny, #auto_error .button-group input[type="submit"].button.tiny { padding: 5px 10px 6px;}
1453
+ #auto_error .button-group.even button.button, #auto_error .button-group.even input[type="submit"].button { width: 100%; padding-left: 0; padding-right: 0;}
1454
+
1455
+ /* Navbar --- */
1456
+
1457
+ /* */
1458
+ #auto_error .nav-bar { height: auto;}
1459
+ #auto_error .nav-bar > li { float: none; display: block; border-right: none;}
1460
+ #auto_error .nav-bar > li > a.main { text-align: left; border-top: 1px solid #ddd; border-right: none;}
1461
+ #auto_error .nav-bar > li:first-child > a.main { border-top: none;}
1462
+ #auto_error .nav-bar > li.has-flyout > a.flyout-toggle { position: absolute; right: 0; top: 0; padding: 22px; z-index: 2; display: block;}
1463
+ #auto_error .nav-bar > li.has-flyout.is-touch > a.flyout-toggle span { content: ""; width: 0; height: 0; display: block;}
1464
+ #auto_error .nav-bar > li.has-flyout > a.flyout-toggle:hover span { border-top-color: #141414;}
1465
+ #auto_error .nav-bar.vertical > li.has-flyout > .flyout { left: 0;}
1466
+ #auto_error .flyout { position: relative; width: 100% !important; top: auto; margin-right: -2px; border-width: 1px 1px 0 1px;}
1467
+ #auto_error .flyout.right { float: none; right: auto; left: -1px;}
1468
+ #auto_error .flyout.small, #auto_error .flyout.large { width: 100% !important;}
1469
+ #auto_error .flyout p:last-child { margin-bottom: 18px;}
1470
+
1471
+ /* Reveal --- */
1472
+
1473
+ /* */
1474
+ #auto_error .reveal-modal-bg { position: absolute;}
1475
+ #auto_error .reveal-modal, #auto_error .reveal-modal.small, #auto_error .reveal-modal.medium, #auto_error .reveal-modal.large, #auto_error .reveal-modal.xlarge { width: 80%; top: 15px; left: 50%; margin-left: -40%; padding: 20px; height: auto;}
1476
+
1477
+ /* Clearing --- */
1478
+
1479
+ /* */
1480
+ #auto_error .clearing-container { margin: 0;}
1481
+ #auto_error .clearing-close { z-index: 99; font-size: 37px; top: 0px; right: 5px;}
1482
+ #auto_error .clearing-caption { position: fixed; bottom: 0; left: 0; padding: 10px !important; line-height: 1.3;}
1483
+ #auto_error .clearing-main-right, #auto_error .clearing-main-left { display: none;}
1484
+ #auto_error .clearing-blackout.clearing-assembled .visible-img, #auto_error .clearing-blackout.clearing-assembled .clearing-container { height: 100%;}
1485
+ #auto_error .clearing-blackout.clearing-assembled ul[data-clearing] { display: none;}
1486
+
1487
+ /* Joyride --- */
1488
+
1489
+ /* */
1490
+ #auto_error .joyride-tip-guide { width: 95% !important; left: 2.5% !important; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px;}
1491
+ #auto_error .joyride-tip-guide-wrapper { width: 100%;}
1492
+
1493
+ /* Tabs --- */
1494
+
1495
+ /* */
1496
+ #auto_error .tabs.mobile { width: auto; margin: 20px -20px 40px; border-bottom: solid 1px #ccc; height: auto; margin: 20px -15px 0px -15px;}
1497
+ #auto_error .tabs.mobile dt, #auto_error .tabs.mobile li, #auto_error .tabs.mobile dd { float: none; height: auto;}
1498
+ #auto_error .tabs.mobile dd a, #auto_error .tabs.mobile li a { font-size: 15px; display: block; width: auto; height: auto; padding: 18px 20px; margin: 0; color: #555; line-height: 1; border: none; border-left: none; border-right: none; border-top: 1px solid #ccc; background: #fff;}
1499
+ #auto_error .tabs.mobile dd a.active, #auto_error .tabs.mobile li a.active { border: none; background: #2ba6cb; color: #fff; margin: 0; position: static; top: 0; height: auto;}
1500
+ #auto_error .tabs.mobile dd:first-child a.active, #auto_error .tabs.mobile li:first-child a.active { margin: 0;}
1501
+ #auto_error .tabs.mobile + .tabs-content.contained { margin-left: -15px; margin-right: -15px;}
1502
+ #auto_error .tabs.mobile .section-title { padding-left: 20px !important;}
1503
+ #auto_error .contained.mobile { margin-bottom: 0;}
1504
+ #auto_error .contained.tabs.mobile dd a, #auto_error .contained.tabs.mobile li a { padding: 18px 20px;}
1505
+ #auto_error .tabs.mobile + ul.contained { margin-left: -20px; margin-right: -20px; border-width: 0 0 1px 0;}
1506
+
1507
+ /* UI Elements --- */
1508
+
1509
+ /* */
1510
+
1511
+ /* Tooltips */
1512
+ #auto_error .tooltip { font-size: 14px; line-height: 1.4; padding: 7px 10px 9px 10px; left: 50% !important; max-width: 80% !important; margin-left: -40%; font-size: 110%;}
1513
+ #auto_error .tooltip > .nub, #auto_error .tooltip.top > .nub, #auto_error .tooltip.left > .nub, #auto_error .tooltip.right > .nub { border-color: transparent transparent black transparent; border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent; top: -12px; left: 10px; }
1514
+ }
1515
+
1516
+ /* Topbar Specific Breakpoint that you can customize */
1517
+
1518
+ @media only screen and (max-width: 940px) { .top-bar { margin-bottom: 0; overflow: hidden; height: 45px; background: #222222; /* Override contain to grid stuff for breakpoint */
1519
+ /* Setting up the sliding area */
1520
+ /* When the Small Nav is Showing */
1521
+ }
1522
+ #auto_error .top-bar .js-generated { display: block;}
1523
+ #auto_error .contain-to-grid .top-bar { width: auto;}
1524
+ #auto_error .top-bar section { left: 0; position: relative; width: auto; -webkit-transition: left 300ms 0; -moz-transition: left 300ms 0; -o-transition: left 300ms 0; transition: left 300ms 0;}
1525
+ #auto_error .top-bar ul { width: 100%; height: 100%; margin-bottom: 0; display: block;}
1526
+ #auto_error .top-bar ul > li { float: none; /* Branding and name*/
1527
+ /* Dropdown Toggle */
1528
+ /* Divider for breakpoint */
1529
+ /* Search Overrides for breakpoint size */
1530
+ /* Dropdown Level 1 */
1531
+ /* Dropdown Level 2 */
1532
+ }
1533
+ #auto_error .top-bar ul > li.active, #auto_error .top-bar ul > li:hover { background: #151515;}
1534
+ #auto_error .top-bar ul > li.name { height: 45px;}
1535
+ #auto_error .top-bar ul > li.name h1 { line-height: 1;}
1536
+ #auto_error .top-bar ul > li.name h1 a { color: white; display: block; line-height: 45px !important; padding-left: 15px; height: 45px;}
1537
+ #auto_error .top-bar ul > li:hover a, #auto_error .top-bar ul > li.active a { color: white;}
1538
+ #auto_error .top-bar ul > li a:not(.button) { color: white;}
1539
+ #auto_error .top-bar ul > li.toggle-topbar { cursor: pointer; display: block; height: 45px; position: absolute; right: 0; top: 0; width: 50%;}
1540
+ #auto_error .top-bar ul > li.toggle-topbar a { content: ""; display: block; width: 0; height: 0; border: solid 8px; border-color: white transparent transparent transparent; padding: 0; position: absolute; top: 50%; right: 22.5px; margin-top: -4px;}
1541
+ #auto_error .top-bar ul > li.toggle-topbar:hover { background: inherit;}
1542
+ #auto_error .top-bar ul > li.toggle-topbar a { padding: 0 !important;}
1543
+ #auto_error .top-bar ul > li.divider { border-bottom: solid 1px #3c3c3c; border-top: solid 1px black; clear: both; height: 1px !important; margin: 8px 0 !important; width: 100%;}
1544
+ #auto_error .top-bar ul > li.search { padding: 0 22.5px;}
1545
+ #auto_error .top-bar ul > li.search form { width: 100%;}
1546
+ #auto_error .top-bar ul > li.search form input[type=text] { width: 75%;}
1547
+ #auto_error .top-bar ul > li.search form .button { top: -1px; width: 25%;}
1548
+ #auto_error .top-bar ul > li.has-dropdown a { padding-right: 33.75px;}
1549
+ #auto_error .top-bar ul > li.has-dropdown a:after { content: ""; display: block; width: 0; height: 0; border: solid 5px; border-color: transparent transparent transparent rgba(255, 255, 255, 0.5); margin-right: 15px; margin-top: -4.5px; position: absolute; top: 50%; }
1550
+ #auto_error .top-bar ul > li.has-dropdown:hover > .dropdown { display: block; visibility: hidden;}
1551
+ #auto_error .top-bar ul > li.has-dropdown .dropdown { visibility: hidden; z-index: 0 !important;}
1552
+ #auto_error .top-bar ul > li.has-dropdown.moved { position: static;}
1553
+ #auto_error .top-bar ul > li.has-dropdown.moved > .dropdown { top: 0; visibility: visible;}
1554
+ #auto_error .top-bar ul > li.has-dropdown.moved > .dropdown li label { margin-bottom: 6px; padding-top: 6px !important; font-size: 11px;}
1555
+ #auto_error .top-bar ul > li.has-dropdown.moved > .dropdown li:not(.title) { padding-bottom: 0;}
1556
+ #auto_error .top-bar ul > li.has-dropdown.moved > .dropdown li:not(.title) a { padding: 8px 22.5px; font-size: 14px;}
1557
+ #auto_error .top-bar ul > li.has-dropdown.moved > .dropdown li a, #auto_error .top-bar ul > li.has-dropdown.moved > .dropdown li label { padding: 0 22.5px;}
1558
+ #auto_error .top-bar ul > li.has-dropdown.moved > .dropdown li a:hover { background: #3c3c3c; display: block;}
1559
+ #auto_error .top-bar ul > li.has-dropdown.moved > .dropdown li.divider { border-bottom: solid 1px rgba(255, 255, 255, 0.1); margin-top: 8px !important; margin-bottom: 8px !important; }
1560
+ #auto_error .top-bar ul > li.has-dropdown.moved .back.title { padding-bottom: 0;}
1561
+ #auto_error .top-bar ul > li.has-dropdown.moved .back.title a:before { position: absolute; top: 50%; left: 17.5px; margin-top: -5px; width: 0; height: 0; content: ""; display: block; width: 0; height: 0; border: solid 5px; border-color: transparent white transparent transparent;}
1562
+ #auto_error .top-bar ul > li.has-dropdown.moved .back.title h5 { margin: 0; padding-left: 15px; position: relative;}
1563
+ #auto_error .top-bar ul > li.has-dropdown.moved .back.title h5 a { background: transparent; padding-top: 8px; padding-bottom: 8px; font-size: 23px; font-weight: bold;}
1564
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li { background: transparent;}
1565
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li.has-dropdown .dropdown { left: 100% !important; top: 0; right: auto !important;}
1566
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li.has-dropdown > a { padding-right: 33.75px;}
1567
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li.has-dropdown > a:after { content: ""; margin-right: 15px; content: ""; display: block; width: 0; height: 0; border: solid 5px; border-color: transparent transparent transparent rgba(255, 255, 255, 0.5); position: absolute; top: 50%; margin-top: -4.5px; }
1568
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li.has-dropdown > a li a:hover { background: #3c3c3c;}
1569
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li.has-dropdown.moved { position: static;}
1570
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li.has-dropdown.moved .dropdown { top: 0; visibility: visible;}
1571
+ #auto_error .top-bar ul > li.has-dropdown .dropdown li.has-dropdown:hover { display: block;}
1572
+ #auto_error .top-bar ul.left, #auto_error .top-bar ul.right { float: none; width: 100%;}
1573
+ #auto_error .top-bar ul.left > li, #auto_error .top-bar ul.right > li { display: block; float: none; margin: 0 !important;}
1574
+ #auto_error .top-bar ul.left > li.has-dropdown .dropdown, #auto_error .top-bar ul.right > li.has-dropdown .dropdown { left: 100% !important; top: 0; right: auto !important;}
1575
+ #auto_error .top-bar section > ul li a:not(.button) { padding-left: 22.5px !important;}
1576
+ #auto_error .top-bar.expanded { height: 100%;}
1577
+ #auto_error .top-bar.expanded ul li.toggle-topbar a { content: ""; display: block; width: 0; height: 0; border: solid 8px; border-color: transparent transparent #cccccc transparent; top: auto; bottom: 50%; margin-bottom: -4px;}
1578
+ #auto_error .top-bar ul li.has-button { padding: 5px 15px;}
1579
+ #auto_error .top-bar ul li .button.small { margin: 0 !important; display: inline-block; width: 100%;}
1580
+ #auto_error .top-bar ul > li.has-button a.button { margin: 0;}
1581
+ }
1582
+