gumby-framework 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,187 @@
1
+ /**
2
+ * Gumby Toggles/Switches
3
+ */
4
+ !function() {
5
+
6
+ 'use strict';
7
+
8
+ // Toggle constructor
9
+ function Toggle($el) {
10
+ this.$el = $($el);
11
+ this.targets = [];
12
+ this.on = '';
13
+
14
+ if(this.$el.length) {
15
+ this.init();
16
+ }
17
+ }
18
+
19
+ // Switch constructor
20
+ function Switch($el) {
21
+ this.$el = $($el);
22
+ this.targets = [];
23
+ this.on = '';
24
+
25
+ if(this.$el.length) {
26
+ this.init();
27
+ }
28
+ }
29
+
30
+ // intialise toggles, switches will inherit method
31
+ Toggle.prototype.init = function() {
32
+ this.targets = this.parseTargets();
33
+ this.on = Gumby.selectAttr.apply(this.$el, ['on']) || Gumby.click;
34
+
35
+ var scope = this;
36
+
37
+ // bind to specified event and trigger
38
+ this.$el.on(this.on, function(e) {
39
+ // only disable default if <a>
40
+ if($(this).prop('tagName') === 'A') {
41
+ e.preventDefault();
42
+ }
43
+
44
+ // stop propagation
45
+ e.stopPropagation();
46
+
47
+ scope.trigger(scope.triggered);
48
+
49
+ // listen for gumby.trigger to dynamically trigger toggle/switch
50
+ }).on('gumby.trigger', function() {
51
+ scope.trigger(scope.triggered);
52
+ });
53
+ };
54
+
55
+ // parse data-for attribute, switches will inherit method
56
+ Toggle.prototype.parseTargets = function() {
57
+ var targetStr = Gumby.selectAttr.apply(this.$el, ['trigger']),
58
+ secondaryTargets = 0,
59
+ targets = [];
60
+
61
+ // no targets so return false
62
+ if(!targetStr) {
63
+ return false;
64
+ }
65
+
66
+ secondaryTargets = targetStr.indexOf('|');
67
+
68
+ // no secondary targets specified so return single target
69
+ if(secondaryTargets === -1) {
70
+ return [$(targetStr)];
71
+ }
72
+
73
+ // return array of both targets, split and return 0, 1
74
+ var targets = targetStr.split('|');
75
+ return targets.length > 1 ? [$(targets[0]), $(targets[1])] : [$(targets[0])];
76
+ };
77
+
78
+ // call triggered event and pass target data
79
+ Toggle.prototype.triggered = function() {
80
+ var targetLength = this.targets.length,
81
+ // if no targets then use toggle/switch itself
82
+ targetData = !targetLength ? [this.$el.hasClass('active')] : [],
83
+ i;
84
+
85
+ // loop round targets and store boolean indicating if selector is active
86
+ for(i = 0; i < targetLength; i++) {
87
+ targetData.push(this.targets[i].hasClass('active'));
88
+ }
89
+
90
+ // trigger gumby.onTrigger event and pass array of target status data
91
+ this.$el.trigger('gumby.onTrigger', targetData);
92
+ };
93
+
94
+ // Switch object inherits from Toggle
95
+ Switch.prototype = new Toggle();
96
+ Switch.constructor = Switch;
97
+
98
+ // Toggle specific trigger method
99
+ Toggle.prototype.trigger = function(cb) {
100
+ // no targets just toggle active class on toggle
101
+ if(!this.targets) {
102
+ this.$el.toggleClass('active');
103
+
104
+ // combine single target with toggle and toggle active class
105
+ } else if(this.targets.length == 1) {
106
+ this.$el.add(this.targets[0]).toggleClass('active');
107
+
108
+ // if two targets check active state of first
109
+ // always combine toggle and first target
110
+ } else if(this.targets.length > 1) {
111
+ if(this.targets[0].hasClass('active')) {
112
+ this.$el.add(this.targets[0]).removeClass('active');
113
+ this.targets[1].addClass('active');
114
+ } else {
115
+ this.targets[1].removeClass('active');
116
+ this.$el.add(this.targets[0]).addClass('active');
117
+ }
118
+ }
119
+
120
+ // call event handler here, applying scope of object Switch/Toggle
121
+ if(cb && typeof cb === 'function') {
122
+ cb.apply(this);
123
+ }
124
+ };
125
+
126
+ // Switch specific trigger method
127
+ Switch.prototype.trigger = function(cb) {
128
+ // no targets just add active class to switch
129
+ if(!this.targets) {
130
+ this.$el.addClass('active');
131
+
132
+ // combine single target with switch and add active class
133
+ } else if(this.targets.length == 1) {
134
+ this.$el.add(this.targets[0]).addClass('active');
135
+
136
+ // if two targets check active state of first
137
+ // always combine switch and first target
138
+ } else if(this.targets.length > 1) {
139
+ this.$el.add(this.targets[0]).addClass('active');
140
+ this.targets[1].removeClass('active');
141
+ }
142
+
143
+ // call event handler here, applying scope of object Switch/Toggle
144
+ if(cb && typeof cb === 'function') {
145
+ cb.apply(this);
146
+ }
147
+ };
148
+
149
+ // add toggle initialisation
150
+ Gumby.addInitalisation('toggles', function() {
151
+ $('.toggle').each(function() {
152
+ var $this = $(this);
153
+ // this element has already been initialized
154
+ if($this.data('isToggle')) {
155
+ return true;
156
+ }
157
+ // mark element as initialized
158
+ $this.data('isToggle', true);
159
+ new Toggle($this);
160
+ });
161
+ });
162
+
163
+ // add switches initialisation
164
+ Gumby.addInitalisation('switches', function() {
165
+ $('.switch').each(function() {
166
+ var $this = $(this);
167
+ // this element has already been initialized
168
+ if($this.data('isSwitch')) {
169
+ return true;
170
+ }
171
+ // mark element as initialized
172
+ $this.data('isSwitch', true);
173
+ new Switch($this);
174
+ });
175
+ });
176
+
177
+ // register UI module
178
+ Gumby.UIModule({
179
+ module: 'toggleswitch',
180
+ events: ['trigger', 'onTrigger'],
181
+ init: function() {
182
+ // Run initialize methods
183
+ Gumby.initialize('switches');
184
+ Gumby.initialize('toggles');
185
+ }
186
+ });
187
+ }();
@@ -0,0 +1,138 @@
1
+ /**
2
+ * Gumby jQuery Validation Plugin
3
+ */
4
+ !function($) {
5
+
6
+ 'use strict';
7
+
8
+ function Validation($this, req) {
9
+
10
+ // input and holder .field
11
+ this.$this = $this;
12
+ this.$field = this.$this.parents('.field');
13
+
14
+ // supplied validation function with default length check
15
+ this.req = req || function() {
16
+ return !!this.$this.val().length;
17
+ };
18
+
19
+ // reference to this class
20
+ var scope = this;
21
+
22
+ // checkboxes and radio buttons use gumby.onChange event to validate
23
+ if(this.$this.is('[type=checkbox], [type=radio]')) {
24
+ this.$field = this.$this.parent('label');
25
+ this.$field.on('gumby.onChange', function() {
26
+ scope.validate();
27
+ });
28
+
29
+ // selects validate on change
30
+ } else if(this.$this.is('select')) {
31
+ this.$field = this.$this.parents('.picker');
32
+ this.$field.on('change', function() {
33
+ scope.validate();
34
+ });
35
+
36
+ // others (text input, textarea) use blur
37
+ } else {
38
+ this.$this.on('blur', function(e) {
39
+ // ignore tab
40
+ if(e.which !== 9) {
41
+ scope.validate();
42
+ }
43
+ });
44
+ }
45
+ }
46
+
47
+ // validate field
48
+ Validation.prototype.validate = function() {
49
+
50
+ var result = this.req(this.$this);
51
+
52
+ // failed
53
+ if(!result) {
54
+ this.$field.removeClass('success').addClass('danger');
55
+
56
+ // passed
57
+ } else {
58
+ //} else if(this.$field.hasClass('danger')) {
59
+ this.$field.removeClass('danger').addClass('success');
60
+ }
61
+
62
+ return result;
63
+ };
64
+
65
+ // jQuery plugin definition
66
+ $.fn.validation = function(options) {
67
+
68
+ var // extend params with defaults
69
+ settings = $.extend({
70
+ submit : false,
71
+ fail: false,
72
+ required : []
73
+ }, options),
74
+ // store validation objects
75
+ validations = [];
76
+
77
+ // init each form plugin is called on
78
+ return this.each(function() {
79
+
80
+ // no required fields so plugin is pointless
81
+ if(!settings.required.length) {
82
+ return false;
83
+ }
84
+
85
+ var $this = $(this),
86
+ reqLength = settings.required.length,
87
+ i;
88
+
89
+ // loop round each required field and instantiate new validation object
90
+ for(i = 0; i < reqLength; i++) {
91
+ validations.push(new Validation(
92
+ $this.find('[name="'+settings.required[i].name+'"]'),
93
+ settings.required[i].validate || false
94
+ ));
95
+ }
96
+
97
+ // hijack submit event
98
+ $this.on('submit', function(e) {
99
+
100
+ // reference to whole form pass/fail
101
+ var failed = false;
102
+
103
+ // if no passed attribute found we should halt form submit
104
+ if(!$this.data('passed')) {
105
+ e.preventDefault();
106
+
107
+ // loop round validation objects and validate each
108
+ var reqLength = validations.length, i;
109
+ for(i = 0; i < reqLength; i++) {
110
+ if(!validations[i].validate()) {
111
+ failed = true;
112
+ }
113
+ }
114
+
115
+ // passed
116
+ if(!failed) {
117
+ // if submit method present call that otherwise submit form
118
+ if(settings.submit && typeof settings.submit === 'function') {
119
+ settings.submit($this.serializeArray());
120
+ return;
121
+ }
122
+
123
+ // store passed bool and re-submit
124
+ $this.data('passed', true).submit();
125
+
126
+ // failed
127
+ } else {
128
+ // call fail method if present
129
+ if(settings.fail && typeof settings.fail === 'function') {
130
+ settings.fail();
131
+ return;
132
+ }
133
+ }
134
+ }
135
+ });
136
+ });
137
+ };
138
+ }(jQuery);
@@ -0,0 +1,1820 @@
1
+ @charset "UTF-8";
2
+ @import url(//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
3
+ /**
4
+ * Gumby Framework
5
+ * ---------------
6
+ *
7
+ * Follow @gumbycss on twitter and spread the love.
8
+ * We worked super hard on making this awesome and released it to the web.
9
+ * All we ask is you leave this intact. #gumbyisawesome
10
+ *
11
+ * Gumby Framework
12
+ * http://gumbyframework.com
13
+ *
14
+ * Built with love by your friends @digitalsurgeons
15
+ * http://www.digitalsurgeons.com
16
+ *
17
+ * Free to use under the MIT license.
18
+ * http://www.opensource.org/licenses/mit-license.php
19
+ */
20
+ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font: inherit; font-size: 100%; vertical-align: baseline; }
21
+
22
+ html { line-height: 1; }
23
+
24
+ ol, ul { list-style: none; }
25
+
26
+ table { border-collapse: collapse; border-spacing: 0; }
27
+
28
+ caption, th, td { text-align: left; font-weight: normal; vertical-align: middle; }
29
+
30
+ q, blockquote { quotes: none; }
31
+ q:before, q:after, blockquote:before, blockquote:after { content: ""; content: none; }
32
+
33
+ a img { border: none; }
34
+
35
+ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; }
36
+
37
+ * html { font-size: 100%; }
38
+
39
+ html { font-size: 16px; line-height: 1.625em; }
40
+
41
+ html * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
42
+
43
+ body { background: white; font-family: "Open Sans"; font-weight: 400; color: #555555; position: relative; -webkit-font-smoothing: antialiased; }
44
+
45
+ .ie9 { font-family: "Open Sans"; }
46
+ .ie9 * { font-family: "Open Sans"; }
47
+
48
+ .hide { display: none; }
49
+
50
+ .hide.active, .show { display: block; }
51
+
52
+ .fixed { position: fixed; }
53
+ @media only screen and (max-width: 768px) { .fixed { position: relative !important; } }
54
+
55
+ /* Fonts */
56
+ @font-face { font-family: "entypo"; font-style: normal; font-weight: 400; src: url(/assets/icons/entypo.eot); src: url("/assets/icons/entypo.eot?#iefix") format("ie9-skip-eot"), url("/assets/icons/entypo.woff") format("woff"), url("/assets/icons/entypo.ttf") format("truetype"); }
57
+
58
+ h1, h2, h3, h4, h5, h6 { font-family: "Open Sans"; font-weight: 300; color: #444444; text-rendering: optimizelegibility; padding-top: 0.273em; line-height: 1.15538em; padding-bottom: 0.273em; }
59
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: #d04526; }
60
+
61
+ @media only screen and (max-width: 767px) { h1, h2, h3, h4, h5, h6 { word-wrap: break-word; } }
62
+ h1 { font-size: 68px; font-size: 4.25rem; }
63
+ h1.xlarge { font-size: 110px; font-size: 6.875rem; }
64
+ h1.xxlarge { font-size: 126px; font-size: 7.875rem; }
65
+ h1.absurd { font-size: 177px; font-size: 11.0625rem; }
66
+
67
+ h2 { font-size: 42px; font-size: 2.625rem; }
68
+
69
+ h3 { font-size: 30px; font-size: 1.875rem; }
70
+
71
+ h4 { font-size: 26px; font-size: 1.625rem; }
72
+
73
+ h5 { font-size: 18px; font-size: 1.125rem; }
74
+
75
+ h6 { font-size: 16px; font-size: 1rem; }
76
+
77
+ @media only screen and (max-width: 767px) { h1 { font-size: 42px; font-size: 2.625rem; }
78
+ h2 { font-size: 36px; font-size: 2.25rem; } }
79
+ .subhead { color: #777; font-weight: normal; margin-bottom: 20px; }
80
+
81
+ /*===================================================== Links & Paragraph styles ======================================================*/
82
+ p { font-family: "Open Sans"; font-weight: 400; font-size: 16px; font-size: 1rem; margin-bottom: 13px; line-height: 1.625em; }
83
+ p.lead { font-size: 20px; font-size: 1.25rem; margin-bottom: 18px; }
84
+ @media only screen and (max-width: 768px) { p { font-size: 17.6px; font-size: 1.1rem; line-height: 1.625em; } }
85
+
86
+ a { color: #d04526; text-decoration: none; outline: 0; line-height: inherit; }
87
+ a:hover { color: #c03d20; }
88
+
89
+ /*=====================================================
90
+ Lists ======================================================*/
91
+ ul, ol { margin-bottom: 0.273em; }
92
+
93
+ ul { list-style: none outside; }
94
+
95
+ ol { list-style: decimal; margin-left: 30px; }
96
+
97
+ ul.square, ul.circle, ul.disc { margin-left: 25px; }
98
+ ul.square { list-style: square outside; }
99
+ ul.circle { list-style: circle outside; }
100
+ ul.disc { list-style: disc outside; }
101
+ ul ul { margin: 4px 0 5px 25px; }
102
+
103
+ ol ol { margin: 4px 0 5px 30px; }
104
+
105
+ li { padding-bottom: 0.273em; }
106
+
107
+ ul.large li { line-height: 21px; }
108
+
109
+ dl dt { font-weight: bold; font-size: 16px; font-size: 1rem; }
110
+
111
+ @media only screen and (max-width: 768px) { ul, ol, dl, p { text-align: left; } }
112
+ /* Mobile */
113
+ em { font-style: italic; line-height: inherit; }
114
+
115
+ strong { font-weight: 700; line-height: inherit; }
116
+
117
+ small { font-size: 56.4%; line-height: inherit; }
118
+
119
+ h1 small, h2 small, h3 small, h4 small, h5 small { color: #777; }
120
+
121
+ /* Blockquotes */
122
+ blockquote { line-height: 20px; color: #777; margin: 0 0 18px; padding: 9px 20px 0 19px; border-left: 5px solid #cccccc; }
123
+ blockquote p { line-height: 20px; color: #777; }
124
+ blockquote cite { display: block; font-size: 12px; font-size: 1.2rem; color: #555555; }
125
+ blockquote cite:before { content: "\2014 \0020"; }
126
+ blockquote cite a { color: #555555; }
127
+ blockquote cite a:visited { color: #555555; }
128
+
129
+ hr { border: 1px solid #cccccc; clear: both; margin: 16px 0 18px; height: 0; }
130
+
131
+ abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222; border-bottom: 1px solid #cccccc; cursor: help; }
132
+
133
+ abbr { text-transform: none; }
134
+
135
+ /**
136
+ * 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) */
137
+ @media print { * { background: transparent !important; color: black !important; text-shadow: none !important; filter: none !important; -ms-filter: none !important; }
138
+ /* Black prints faster: sanbeiji.com/archives/953 */
139
+ p a { color: #555555 !important; text-decoration: underline; }
140
+ p a:visited { color: #555555 !important; text-decoration: underline; }
141
+ p a[href]:after { content: " (" attr(href) ")"; }
142
+ abbr[title]:after { content: " (" attr(title) ")"; }
143
+ .ir a:after { content: ""; }
144
+ a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
145
+ /* Don't show links for images, or javascript/internal links */
146
+ pre, blockquote { border: 1px solid #999999; page-break-inside: avoid; }
147
+ thead { display: table-header-group; }
148
+ /* css-discuss.incutio.com/wiki/Printing_Tables */
149
+ tr, img { page-break-inside: avoid; }
150
+ @page { margin: 0.5cm; }
151
+ p, h2, h3 { orphans: 3; widows: 3; }
152
+ h2, h3 { page-break-after: avoid; } }
153
+ /*=================================================
154
+
155
+ +++ LE GRID +++
156
+ A Responsive Grid -- Gumby defaults to a standard 960 grid,
157
+ but you can change it to whatever you'd like.
158
+ ==================================================*/
159
+ .container { padding: 0px 20px; }
160
+
161
+ .row { width: 100%; max-width: 940px; min-width: 320px; margin: 0 auto; }
162
+ .row .row { min-width: 0px; }
163
+
164
+ /* To fix the grid into a different size, set max-width to your desired width */
165
+ .column, .columns { margin-left: 2.12766%; float: left; min-height: 1px; position: relative; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
166
+
167
+ .column:first-child, .columns:first-child, .alpha { margin-left: 0px; }
168
+
169
+ .column.omega, .columns.omega { float: right; }
170
+
171
+ /* Column Classes */
172
+ .row .one.column, .row .one.columns, .sixteen.colgrid .row .one.columns { width: 6.38298%; }
173
+ .row .two.columns { width: 14.89362%; }
174
+ .row .three.columns { width: 23.40426%; }
175
+ .row .four.columns { width: 31.91489%; }
176
+ .row .five.columns { width: 40.42553%; }
177
+ .row .six.columns { width: 48.93617%; }
178
+ .row .seven.columns { width: 57.44681%; }
179
+ .row .eight.columns { width: 65.95745%; }
180
+ .row .nine.columns { width: 74.46809%; }
181
+ .row .ten.columns { width: 82.97872%; }
182
+ .row .eleven.columns { width: 91.48936%; }
183
+ .row .twelve.columns { width: 100%; }
184
+
185
+ /* Push Classes */
186
+ .row .push_one { margin-left: 10.6383%; }
187
+ .row .push_one:first-child { margin-left: 8.51064%; }
188
+ .row .push_two { margin-left: 19.14894%; }
189
+ .row .push_two:first-child { margin-left: 17.02128%; }
190
+ .row .push_three { margin-left: 27.65957%; }
191
+ .row .push_three:first-child { margin-left: 25.53191%; }
192
+ .row .push_four { margin-left: 36.17021%; }
193
+ .row .push_four:first-child { margin-left: 34.04255%; }
194
+ .row .push_five { margin-left: 44.68085%; }
195
+ .row .push_five:first-child { margin-left: 42.55319%; }
196
+ .row .push_six { margin-left: 53.19149%; }
197
+ .row .push_six:first-child { margin-left: 51.06383%; }
198
+ .row .push_seven { margin-left: 61.70213%; }
199
+ .row .push_seven:first-child { margin-left: 59.57447%; }
200
+ .row .push_eight { margin-left: 70.21277%; }
201
+ .row .push_eight:first-child { margin-left: 68.08511%; }
202
+ .row .push_nine { margin-left: 78.7234%; }
203
+ .row .push_nine:first-child { margin-left: 76.59574%; }
204
+ .row .push_ten { margin-left: 87.23404%; }
205
+ .row .push_ten:first-child { margin-left: 85.10638%; }
206
+ .row .push_eleven { margin-left: 95.74468%; }
207
+ .row .push_eleven:first-child { margin-left: 93.61702%; }
208
+
209
+ /* Centered Classes */
210
+ .row .one.centered { margin-left: 46.80851%; }
211
+ .row .two.centered { margin-left: 42.55319%; }
212
+ .row .three.centered { margin-left: 38.29787%; }
213
+ .row .four.centered { margin-left: 34.04255%; }
214
+ .row .five.centered { margin-left: 29.78723%; }
215
+ .row .six.centered { margin-left: 25.53191%; }
216
+ .row .seven.centered { margin-left: 21.2766%; }
217
+ .row .eight.centered { margin-left: 17.02128%; }
218
+ .row .nine.centered { margin-left: 12.76596%; }
219
+ .row .ten.centered { margin-left: 8.51064%; }
220
+ .row .eleven.centered { margin-left: 4.25532%; }
221
+
222
+ /* Hybrid Grid Columns */
223
+ .sixteen.colgrid .row .one.column, .sixteen.colgrid .row .one.columns { width: 4.25532%; }
224
+ .sixteen.colgrid .row .two.columns { width: 10.6383%; }
225
+ .sixteen.colgrid .row .three.columns { width: 17.02128%; }
226
+ .sixteen.colgrid .row .four.columns { width: 23.40426%; }
227
+ .sixteen.colgrid .row .five.columns { width: 29.78723%; }
228
+ .sixteen.colgrid .row .six.columns { width: 36.17021%; }
229
+ .sixteen.colgrid .row .seven.columns { width: 42.55319%; }
230
+ .sixteen.colgrid .row .eight.columns { width: 48.93617%; }
231
+ .sixteen.colgrid .row .nine.columns { width: 55.31915%; }
232
+ .sixteen.colgrid .row .ten.columns { width: 61.70213%; }
233
+ .sixteen.colgrid .row .eleven.columns { width: 68.08511%; }
234
+ .sixteen.colgrid .row .twelve.columns { width: 74.46809%; }
235
+ .sixteen.colgrid .row .thirteen.columns { width: 80.85106%; }
236
+ .sixteen.colgrid .row .fourteen.columns { width: 87.23404%; }
237
+ .sixteen.colgrid .row .fifteen.columns { width: 93.61702%; }
238
+ .sixteen.colgrid .row .sixteen.columns { width: 100%; }
239
+
240
+ /* Hybrid Push Classes */
241
+ .sixteen.colgrid .row .push_one { margin-left: 8.51064%; }
242
+ .sixteen.colgrid .row .push_one:first-child { margin-left: 6.38298%; }
243
+ .sixteen.colgrid .row .push_two { margin-left: 14.89362%; }
244
+ .sixteen.colgrid .row .push_two:first-child { margin-left: 12.76596%; }
245
+ .sixteen.colgrid .row .push_three { margin-left: 21.2766%; }
246
+ .sixteen.colgrid .row .push_three:first-child { margin-left: 19.14894%; }
247
+ .sixteen.colgrid .row .push_four { margin-left: 27.65957%; }
248
+ .sixteen.colgrid .row .push_four:first-child { margin-left: 25.53191%; }
249
+ .sixteen.colgrid .row .push_five { margin-left: 34.04255%; }
250
+ .sixteen.colgrid .row .push_five:first-child { margin-left: 31.91489%; }
251
+ .sixteen.colgrid .row .push_six { margin-left: 40.42553%; }
252
+ .sixteen.colgrid .row .push_six:first-child { margin-left: 38.29787%; }
253
+ .sixteen.colgrid .row .push_seven { margin-left: 46.80851%; }
254
+ .sixteen.colgrid .row .push_seven:first-child { margin-left: 44.68085%; }
255
+ .sixteen.colgrid .row .push_eight { margin-left: 53.19149%; }
256
+ .sixteen.colgrid .row .push_eight:first-child { margin-left: 51.06383%; }
257
+ .sixteen.colgrid .row .push_nine { margin-left: 59.57447%; }
258
+ .sixteen.colgrid .row .push_nine:first-child { margin-left: 57.44681%; }
259
+ .sixteen.colgrid .row .push_ten { margin-left: 65.95745%; }
260
+ .sixteen.colgrid .row .push_ten:first-child { margin-left: 63.82979%; }
261
+ .sixteen.colgrid .row .push_eleven { margin-left: 72.34043%; }
262
+ .sixteen.colgrid .row .push_eleven:first-child { margin-left: 70.21277%; }
263
+ .sixteen.colgrid .row .push_twelve { margin-left: 78.7234%; }
264
+ .sixteen.colgrid .row .push_twelve:first-child { margin-left: 76.59574%; }
265
+ .sixteen.colgrid .row .push_thirteen { margin-left: 85.10638%; }
266
+ .sixteen.colgrid .row .push_thirteen:first-child { margin-left: 82.97872%; }
267
+ .sixteen.colgrid .row .push_fourteen { margin-left: 91.48936%; }
268
+ .sixteen.colgrid .row .push_fourteen:first-child { margin-left: 89.3617%; }
269
+ .sixteen.colgrid .row .push_fifteen { margin-left: 97.87234%; }
270
+ .sixteen.colgrid .row .push_fifteen:first-child { margin-left: 95.74468%; }
271
+
272
+ /* Hybrid Centered Classes */
273
+ .sixteen.colgrid .row .one.centered { margin-left: 47.87234%; }
274
+ .sixteen.colgrid .row .two.centered { margin-left: 44.68085%; }
275
+ .sixteen.colgrid .row .three.centered { margin-left: 41.48936%; }
276
+ .sixteen.colgrid .row .four.centered { margin-left: 38.29787%; }
277
+ .sixteen.colgrid .row .five.centered { margin-left: 35.10638%; }
278
+ .sixteen.colgrid .row .six.centered { margin-left: 31.91489%; }
279
+ .sixteen.colgrid .row .seven.centered { margin-left: 28.7234%; }
280
+ .sixteen.colgrid .row .eight.centered { margin-left: 25.53191%; }
281
+ .sixteen.colgrid .row .nine.centered { margin-left: 22.34043%; }
282
+ .sixteen.colgrid .row .ten.centered { margin-left: 19.14894%; }
283
+ .sixteen.colgrid .row .eleven.centered { margin-left: 15.95745%; }
284
+ .sixteen.colgrid .row .twelve.centered { margin-left: 12.76596%; }
285
+ .sixteen.colgrid .row .thirteen.centered { margin-left: 9.57447%; }
286
+ .sixteen.colgrid .row .fourteen.centered { margin-left: 6.38298%; }
287
+ .sixteen.colgrid .row .fifteen.centered { margin-left: 3.19149%; }
288
+
289
+ .pull_right { float: right; }
290
+
291
+ .pull_left { float: left; }
292
+
293
+ img, object, embed { max-width: 100%; height: auto; }
294
+
295
+ img { -ms-interpolation-mode: bicubic; }
296
+
297
+ #map_canvas img, .map_canvas img { max-width: none !important; }
298
+
299
+ /* Tile Grid */
300
+ .tiles { display: block; overflow: hidden; }
301
+ .tiles > li { display: block; height: auto; float: left; padding-bottom: 0; }
302
+ .tiles.two_up { margin-left: -4%; }
303
+ .tiles.two_up > li { margin-left: 4%; width: 46%; }
304
+ .tiles.three_up, .tiles.four_up { margin-left: -2%; }
305
+ .tiles.three_up > li { margin-left: 2%; width: 31.3%; }
306
+ .tiles.four_up > li { margin-left: 2%; width: 23%; }
307
+ .tiles.five_up { margin-left: -1.5%; }
308
+ .tiles.five_up > li { margin-left: 1.5%; width: 18.5%; }
309
+
310
+ /* Nicolas Gallagher's micro clearfix */
311
+ .clearfix, .row { *zoom: 1; }
312
+ .clearfix:after, .row:after { content: ""; display: table; clear: both; }
313
+ .clearfix:before, .row:before { content: ""; display: table; }
314
+
315
+ .valign { display: table; width: 100%; }
316
+ .valign > div { display: table-cell; vertical-align: middle; }
317
+ .valign ​ > article { display: table-cell; vertical-align: middle; }
318
+
319
+ /* Mobile */
320
+ @media only screen and (max-width: 767px) { body { -webkit-text-size-adjust: none; -ms-text-size-adjust: none; width: 100%; min-width: 0; }
321
+ .container { min-width: 0; margin-left: 0; margin-right: 0; }
322
+ .row { width: 100%; min-width: 0; margin-left: 0; margin-right: 0; }
323
+ .row .row .column, .row .row .columns { padding: 0; }
324
+ .row .centered { margin: 0 !important; }
325
+ .column, .columns { width: auto !important; float: none; margin-left: 0; margin-right: 0; }
326
+ .column:last-child, .columns:last-child { margin-right: 0; float: none; }
327
+ [class*="column"] + [class*="column"]:last-child { float: none; }
328
+ [class*="column"]:before { display: table; }
329
+ [class*="column"]:after { display: table; clear: both; }
330
+ [class^="push_"], [class*="push_"] { margin-left: 0 !important; } }
331
+ /*=====================================================
332
+ Navigation (with dropdowns)
333
+ ======================================================*/
334
+ .navbar { width: 100%; display: block; margin-bottom: 20px; background: #4a4d50; /* Change this to suit the color theme of your site */ }
335
+ .navbar.fixed { top: 0; left: 0; z-index: 99999; }
336
+ .navbar a.toggle { display: none; }
337
+ .navbar .logo { display: inline-block; margin: 0 2.12766% 0 0; padding: 0; height: 60px; line-height: 58px; }
338
+ .navbar .logo a { display: block; padding: 0 0 0 16px; overflow: hidden; height: 60px; line-height: 58px; }
339
+ .navbar .logo a.toggle { display: none; }
340
+ .navbar ul { display: table; vertical-align: middle; margin: 0; float: none; }
341
+ .navbar ul li { display: table-cell; text-align: center; padding-bottom: 0; margin: 0; height: 60px; line-height: 58px; }
342
+ .navbar ul li > a { display: block; padding: 0 16px; white-space: nowrap; color: white; text-shadow: 0 1px 2px #191a1b, 0 1px 0 #191a1b; height: 60px; line-height: 58px; font-size: 16px; font-size: 1rem; }
343
+ .navbar ul li .btn { border-color: #000101 !important; }
344
+ .navbar ul li.field { margin-bottom: 0 !important; margin-right: 0; }
345
+ .navbar ul li.field input.search { background: #191a1b; border: none; color: #f2f2f2; }
346
+ .navbar ul li:hover > a { position: relative; background: #868d92; z-index: 1000; }
347
+ .navbar ul li .dropdown { width: auto; min-width: 0px; max-width: 320px; height: 0; position: absolute; background: #fafafa; overflow: hidden; z-index: 999; }
348
+ .navbar ul li:hover .dropdown { min-height: 60px; max-height: 561px; overflow: visible; height: auto; width: 100%; padding: 0; border-top: 1px solid #3e4043; -webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3); box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3); }
349
+ .navbar ul a.toggle { display: block; }
350
+
351
+ .navbar > ul > li > li > a { padding: 0 33px; }
352
+
353
+ .navbar > ul > li:last-child, .navbar > ul > li:last-child a:hover { border-right: none; }
354
+
355
+ /**** Navbar positioning for Microsoft's browser who deserves not to be mentioned ****/
356
+ .ie7 .navbar > ul { width: auto; }
357
+
358
+ .ie7 .navbar, .ie7 .navbar > ul > li > a { display: block; }
359
+
360
+ .ie7 .navbar .logo, .ie7 .navbar ul, .ie7 .navbar ul li { float: left; display: inline-block; }
361
+
362
+ .ie7 .navbar .logo a { display: block; overflow: hidden; }
363
+
364
+ .ie7 .navbar > ul > li .field { display: block; padding: 12px 18px 0; width: 80%; }
365
+
366
+ /******** Pretty Navbar Styles *********/
367
+ .pretty.navbar { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(100%, #313436)); background-image: -webkit-linear-gradient(#7b8085, #313436); background-image: -moz-linear-gradient(#7b8085, #313436); background-image: -o-linear-gradient(#7b8085, #313436); background-image: linear-gradient(#7b8085, #313436); -webkit-box-shadow: inset 0 1px 1px #7b8085, 0 1px 2px rgba(0, 0, 0, 0.8) !important; /* Remove this line if you dont want a dropshadow on your navigation*/ box-shadow: inset 0 1px 1px #7b8085, 0 1px 2px rgba(0, 0, 0, 0.8) !important; /* Remove this line if you dont want a dropshadow on your navigation*/ }
368
+ .pretty.navbar.row { border-radius: 4px; }
369
+ .pretty.navbar ul li.field input.search { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #191a1b), color-stop(100%, #4f5255)); background-image: -webkit-linear-gradient(#191a1b, #4f5255); background-image: -moz-linear-gradient(#191a1b, #4f5255); background-image: -o-linear-gradient(#191a1b, #4f5255); background-image: linear-gradient(#191a1b, #4f5255); border: none; box-shadow: 0 1px 2px #888d91 !important; /* Remove this line if you dont want a dropshadow on your navigation*/ }
370
+ .pretty.navbar > ul > li:first-child, .pretty.navbar .pretty.navbar > ul > li:first-child a:hover { box-shadow: none; }
371
+
372
+ .navbar li .dropdown ul { margin: 0; }
373
+ .navbar li .dropdown ul > li { position: relative; display: block; width: 100%; float: left; text-align: left; height: auto; border-radius: none; }
374
+ .navbar li .dropdown ul > li a { display: block; padding: 0 20px; color: #d04526; border-bottom: 1px solid #cccccc; text-shadow: none; height: 51px; line-height: 49px; }
375
+ .navbar li .dropdown ul > li .dropdown { display: none; background: white; }
376
+ .navbar li .dropdown ul > li:hover .dropdown { border-top: none; display: block; position: absolute; z-index: 9999; left: 320px; top: 0px; margin-top: 0; }
377
+ .navbar li .dropdown ul li:first-child a { border-radius: 0; }
378
+ .navbar li .dropdown ul li a:hover { background: #f2f2f2; }
379
+
380
+ @media only screen and (min-width: 768px) and (max-width: 939px) { .navbar .logo a { line-height: 0px; }
381
+ .navbar > ul > li > .btn a { padding: 0 10px 0 10px !important; }
382
+ .navbar ul > li .dropdown ul li:hover .dropdown { left: -320px; }
383
+ .navbar .dropdown li { max-width: 320px; word-wrap: break-word; } }
384
+ @media only screen and (max-width: 767px) { .navbar { position: relative; border: none; }
385
+ .navbar .logo { float: left; display: inline; }
386
+ .navbar .logo a { line-height: 0; padding-left: 2.12766%; }
387
+ .navbar .logo a img { width: auto; height: inherit; }
388
+ .navbar a.toggle { top: 18%; right: 4%; width: 46px; position: absolute; text-align: center; display: inline-block; color: white; background: #4a4d50; height: 40px; line-height: 38px; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; font-size: 30px; font-size: 1.875rem; }
389
+ .navbar a.toggle:hover { background: #565a5d; }
390
+ .navbar a.toggle:active, .navbar a.toggle.active { background: #3e4043; }
391
+ .navbar.pretty a.toggle { border: 1px solid #3e4043; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(100%, #4a4d50)); background-image: -webkit-linear-gradient(#7b8085, #4a4d50); background-image: -moz-linear-gradient(#7b8085, #4a4d50); background-image: -o-linear-gradient(#7b8085, #4a4d50); background-image: linear-gradient(#7b8085, #4a4d50); -webkit-box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; -moz-box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; box-shadow: inset 0 1px 2px #888d91, inset 0 -1px 1px #565a5d, inset 1px 0 1px #565a5d, inset -1px 0 1px #565a5d, 0 1px 1px #63676a; }
392
+ .navbar.pretty a.toggle i { text-shadow: 0 1px 1px #191a1b; }
393
+ .navbar.pretty a.toggle:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #888d91), color-stop(100%, #565a5d)); background-image: -webkit-linear-gradient(#888d91, #565a5d); background-image: -moz-linear-gradient(#888d91, #565a5d); background-image: -o-linear-gradient(#888d91, #565a5d); background-image: linear-gradient(#888d91, #565a5d); }
394
+ .navbar.pretty a.toggle:active, .navbar.pretty a.toggle.active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3e4043), color-stop(100%, #4a4d50)); background-image: -webkit-linear-gradient(#3e4043, #4a4d50); background-image: -moz-linear-gradient(#3e4043, #4a4d50); background-image: -o-linear-gradient(#3e4043, #4a4d50); background-image: linear-gradient(#3e4043, #4a4d50); -webkit-box-shadow: 0 1px 1px #63676a; -moz-box-shadow: 0 1px 1px #63676a; box-shadow: 0 1px 1px #63676a; }
395
+ .navbar ul { position: absolute; display: block; width: 100% !important; height: 0; max-height: 0; top: 60px; overflow: hidden; text-align: center; background: #3e4043; }
396
+ .navbar ul.active { height: auto; max-height: 600px; z-index: 999999; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; -webkit-box-shadow: 0 2px 2px #252728; -moz-box-shadow: 0 2px 2px #252728; box-shadow: 0 2px 2px #252728; }
397
+ .navbar ul li { display: block; position: relative; min-height: 60px; max-height: 320px; height: auto; width: 100%; border-right: 0 !important; -webkit-box-shadow: none; box-shadow: none; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; }
398
+ .navbar ul li .dropdown { width: 100%; max-width: 100%; position: relative; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; }
399
+ .navbar ul li:hover .dropdown { border-bottom: 1px solid #313436; }
400
+ .navbar ul li:hover .dropdown ul { position: relative; top: 0; background: #36393b; min-height: 60px; max-height: 250px; height: auto; overflow: scroll; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; -o-transition-duration: 0.5s; transition-duration: 0.5s; }
401
+ .navbar ul li:hover .dropdown ul li { min-height: 50px; border-bottom: #3e4043; }
402
+ .navbar ul li:hover .dropdown ul li a { color: white; border-bottom: 1px solid #313436; }
403
+ .navbar ul li:hover .dropdown ul li a:hover { color: #d04526; }
404
+ .pretty.navbar.row { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; } }
405
+ .subnav { display: block; width: auto; overflow: hidden; margin: 0 0 18px 0; padding-top: 4px; }
406
+ .subnav li, .subnav dt, .subnav dd { float: left; display: inline; margin-left: 9px; margin-bottom: 4px; }
407
+ .subnav li:first-child, .subnav dt:first-child, .subnav dd:first-child { margin-left: 0; }
408
+ .subnav dt { color: #999; font-weight: normal; }
409
+ .subnav li a, .subnav dd a { color: #05390a; font-size: 15px; text-decoration: none; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; }
410
+ .subnav li.active a, .subnav dd.active a { background: #5dbb73; padding: 5px 9px; text-shadow: 0 1px 1px #77d58e; }
411
+
412
+ .drawer { position: relative; width: 100%; max-height: 0; background: #222; -webkit-box-shadow: inset 0 -3px 5px black, inset 0 3px 5px black; box-shadow: inset 0 -3px 5px black, inset 0 3px 5px black; overflow: hidden; -webkit-transition-duration: .3s; /* Saf3.2+, Chrome */ -moz-transition-duration: .3s; /* FF4+ */ -ms-transition-duration: .3s; /* IE10 */ -o-transition-duration: .3s; /* Opera 10.5+ */ transition-duration: .3s; }
413
+ .drawer.active { height: auto; max-height: 800px; -webkit-transition-duration: .5s; /* Saf3.2+, Chrome */ -moz-transition-duration: .5s; /* FF4+ */ -ms-transition-duration: .5s; /* IE10 */ -o-transition-duration: .5s; /* Opera 10.5+ */ transition-duration: .5s; }
414
+
415
+ /* Buttons */
416
+ .btn, .skiplink { display: inline-block; width: auto; background: #f2f2f2; -webkit-appearance: none; font-family: "Open Sans"; font-weight: 600; padding: 0 !important; text-align: center; }
417
+ .btn a, .btn input, .btn button, .skiplink a, .skiplink input, .skiplink button { display: block; padding: 0 18px; color: white; height: 100%; }
418
+ .btn input, .btn button, .skiplink input, .skiplink button { background: none; border: none; font-size: 100%; cursor: pointer; }
419
+ .btn.xlarge, .skiplink.xlarge { font-size: 30px; font-size: 1.875rem; height: 66px; line-height: 64px; }
420
+ .btn.xlarge a, .skiplink.xlarge a { position: relative; padding: 0 30px; }
421
+ .btn.xlarge.icon-left a, .skiplink.xlarge.icon-left a { padding-left: 66px; }
422
+ .btn.xlarge.icon-left a:before, .skiplink.xlarge.icon-left a:before { left: 20px; }
423
+ .btn.xlarge.icon-right a, .skiplink.xlarge.icon-right a { padding-right: 66px; }
424
+ .btn.xlarge.icon-right a:after, .skiplink.xlarge.icon-right a:after { right: 20px; }
425
+ .btn.large, .skiplink.large { font-size: 26px; font-size: 1.625rem; height: 58px; line-height: 56px; }
426
+ .btn.large a, .skiplink.large a { position: relative; padding: 0 26px; }
427
+ .btn.large.icon-left a, .skiplink.large.icon-left a { padding-left: 58px; }
428
+ .btn.large.icon-left a:before, .skiplink.large.icon-left a:before { left: 17.33333px; }
429
+ .btn.large.icon-right a, .skiplink.large.icon-right a { padding-right: 58px; }
430
+ .btn.large.icon-right a:after, .skiplink.large.icon-right a:after { right: 17.33333px; }
431
+ .btn.medium, .skiplink.medium { font-size: 16px; font-size: 1rem; height: 36px; line-height: 34px; }
432
+ .btn.medium a, .skiplink.medium a { position: relative; padding: 0 16px; }
433
+ .btn.medium.icon-left a, .skiplink.medium.icon-left a { padding-left: 36px; }
434
+ .btn.medium.icon-left a:before, .skiplink.medium.icon-left a:before { left: 10.66667px; }
435
+ .btn.medium.icon-right a, .skiplink.medium.icon-right a { padding-right: 36px; }
436
+ .btn.medium.icon-right a:after, .skiplink.medium.icon-right a:after { right: 10.66667px; }
437
+ .btn.medium a, .skiplink.medium a { padding: 0 18px; }
438
+ .btn.small, .skiplink.small { font-size: 10px; font-size: 0.625rem; height: 23px; line-height: 21px; }
439
+ .btn.small a, .skiplink.small a { position: relative; padding: 0 10px; }
440
+ .btn.small.icon-left a, .skiplink.small.icon-left a { padding-left: 23px; }
441
+ .btn.small.icon-left a:before, .skiplink.small.icon-left a:before { left: 6.66667px; }
442
+ .btn.small.icon-right a, .skiplink.small.icon-right a { padding-right: 23px; }
443
+ .btn.small.icon-right a:after, .skiplink.small.icon-right a:after { right: 6.66667px; }
444
+ .btn.small a, .skiplink.small a { padding: 0 10px; }
445
+ .btn.oval, .skiplink.oval { -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; }
446
+ .btn.pill-left, .skiplink.pill-left { -webkit-border-radius: 500px 0 0 500px; -moz-border-radius: 500px 0 0 500px; -ms-border-radius: 500px 0 0 500px; -o-border-radius: 500px 0 0 500px; border-radius: 500px 0 0 500px; }
447
+ .btn.pill-right, .skiplink.pill-right { -webkit-border-radius: 0 500px 500px 0; -moz-border-radius: 0 500px 500px 0; -ms-border-radius: 0 500px 500px 0; -o-border-radius: 0 500px 500px 0; border-radius: 0 500px 500px 0; }
448
+ .btn.primary, .skiplink.primary { background: #3085d6; border: 1px solid #3085d6; }
449
+ .btn.primary:hover, .skiplink.primary:hover { background: #5b9ede; }
450
+ .btn.primary:active, .skiplink.primary:active { background: #236bb0; }
451
+ .btn.secondary, .skiplink.secondary { background: #42a35a; border: 1px solid #42a35a; }
452
+ .btn.secondary:hover, .skiplink.secondary:hover { background: #5bbd73; }
453
+ .btn.secondary:active, .skiplink.secondary:active { background: #337f46; }
454
+ .btn.default, .skiplink.default { background: #f2f2f2; border: 1px solid #f2f2f2; color: #555555; border: 1px solid #f2f2f2; }
455
+ .btn.default:hover, .skiplink.default:hover { background: white; }
456
+ .btn.default:active, .skiplink.default:active { background: #d8d8d8; }
457
+ .btn.default:hover, .skiplink.default:hover { border: 1px solid #e5e5e5; }
458
+ .btn.default a, .btn.default input, .btn.default button, .skiplink.default a, .skiplink.default input, .skiplink.default button { color: #555555; }
459
+ .btn.info, .skiplink.info { background: #4a4d50; border: 1px solid #4a4d50; }
460
+ .btn.info:hover, .skiplink.info:hover { background: #63676a; }
461
+ .btn.info:active, .skiplink.info:active { background: #313436; }
462
+ .btn.danger, .skiplink.danger { background: #ca3838; border: 1px solid #ca3838; }
463
+ .btn.danger:hover, .skiplink.danger:hover { background: #d56060; }
464
+ .btn.danger:active, .skiplink.danger:active { background: #a32c2c; }
465
+ .btn.warning, .skiplink.warning { background: #f6b83f; border: 1px solid #f6b83f; color: #644405; }
466
+ .btn.warning:hover, .skiplink.warning:hover { background: #f8ca70; }
467
+ .btn.warning:active, .skiplink.warning:active { background: #f4a60e; }
468
+ .btn.warning a, .btn.warning input, .btn.warning button, .skiplink.warning a, .skiplink.warning input, .skiplink.warning button { color: #644405; }
469
+ .btn.success, .skiplink.success { background: #58c026; border: 1px solid #58c026; }
470
+ .btn.success:hover, .skiplink.success:hover { background: #72d940; }
471
+ .btn.success:active, .skiplink.success:active { background: #44951e; }
472
+ .btn.metro, .metro .btn, .metro .skiplink, .btn.metro:hover, .metro .btn:hover, .metro .skiplink:hover, .skiplink.metro:hover, .btn.metro:active, .metro .btn:active, .metro .skiplink:active, .skiplink.metro:active, .skiplink.metro { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; }
473
+ .btn.metro.rounded, .metro .rounded.btn, .metro .rounded.skiplink, .metro .rounded.btn:hover, .metro .rounded.skiplink:hover, .rounded.skiplink.metro:hover, .metro .rounded.btn:active, .metro .rounded.skiplink:active, .rounded.skiplink.metro:active, .skiplink.metro.rounded { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
474
+ .btn.pretty, .pretty .btn, .pretty .skiplink, .btn.pretty:hover, .pretty .btn:hover, .pretty .skiplink:hover, .skiplink.pretty:hover, .btn.pretty:active, .pretty .btn:active, .pretty .skiplink:active, .skiplink.pretty:active, .skiplink.pretty { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
475
+ .btn.pretty.squared, .pretty .squared.btn, .pretty .squared.skiplink, .pretty .squared.btn:hover, .pretty .squared.skiplink:hover, .squared.skiplink.pretty:hover, .pretty .squared.btn:active, .pretty .squared.skiplink:active, .squared.skiplink.pretty:active, .skiplink.pretty.squared { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; }
476
+ .btn.pretty.primary, .pretty .primary.btn, .pretty .primary.skiplink, .pretty .primary.btn:hover, .pretty .primary.skiplink:hover, .primary.skiplink.pretty:hover, .pretty .primary.btn:active, .pretty .primary.skiplink:active, .primary.skiplink.pretty:active, .skiplink.pretty.primary { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #85b7e7), color-stop(100%, #2a85dc)); background-image: -webkit-linear-gradient(#85b7e7, #2a85dc); background-image: -moz-linear-gradient(#85b7e7, #2a85dc); background-image: -o-linear-gradient(#85b7e7, #2a85dc); background-image: linear-gradient(#85b7e7, #2a85dc); box-shadow: inset 0 0 3px #f0f6fc; border: 1px solid #1f5e9b; }
477
+ .pretty .primary.btn:hover, .pretty .primary.skiplink:hover, .primary.btn.pretty:hover, .primary.skiplink.pretty:hover, .pretty .primary.btn:hover:active, .pretty .primary.skiplink:hover:active, .skiplink.pretty.primary:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a2d4fc), color-stop(100%, #54b2fe)); background-image: -webkit-linear-gradient(#a2d4fc, #54b2fe); background-image: -moz-linear-gradient(#a2d4fc, #54b2fe); background-image: -o-linear-gradient(#a2d4fc, #54b2fe); background-image: linear-gradient(#a2d4fc, #54b2fe); box-shadow: inset 0 0 3px white; border: 1px solid #0e90f8; }
478
+ .pretty .primary.btn:active, .pretty .primary.skiplink:active, .pretty .primary.btn:active:hover, .pretty .primary.skiplink:active:hover, .primary.btn.pretty:active, .primary.skiplink.pretty:active, .skiplink.pretty.primary:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a85dc), color-stop(100%, #85b7e7)); background-image: -webkit-linear-gradient(#2a85dc, #85b7e7); background-image: -moz-linear-gradient(#2a85dc, #85b7e7); background-image: -o-linear-gradient(#2a85dc, #85b7e7); background-image: linear-gradient(#2a85dc, #85b7e7); box-shadow: inset 0 0 3px white; }
479
+ .btn.pretty.primary a, .pretty .primary.btn a, .pretty .primary.skiplink a, .pretty .primary.btn:hover a, .pretty .primary.skiplink:hover a, .primary.skiplink.pretty:hover a, .pretty .primary.btn:active a, .pretty .primary.skiplink:active a, .primary.skiplink.pretty:active a, .btn.pretty.primary input, .pretty .primary.btn input, .pretty .primary.skiplink input, .pretty .primary.btn:hover input, .pretty .primary.skiplink:hover input, .primary.skiplink.pretty:hover input, .pretty .primary.btn:active input, .pretty .primary.skiplink:active input, .primary.skiplink.pretty:active input, .btn.pretty.primary button, .pretty .primary.btn button, .pretty .primary.skiplink button, .pretty .primary.btn:hover button, .pretty .primary.skiplink:hover button, .primary.skiplink.pretty:hover button, .pretty .primary.btn:active button, .pretty .primary.skiplink:active button, .primary.skiplink.pretty:active button, .skiplink.pretty.primary a, .skiplink.pretty.primary input, .skiplink.pretty.primary button { text-shadow: 0 1px 1px #1a5186; }
480
+ .btn.pretty.secondary, .pretty .secondary.btn, .pretty .secondary.skiplink, .pretty .secondary.btn:hover, .pretty .secondary.skiplink:hover, .secondary.skiplink.pretty:hover, .pretty .secondary.btn:active, .pretty .secondary.skiplink:active, .secondary.skiplink.pretty:active, .skiplink.pretty.secondary { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #80cb92), color-stop(100%, #3ca957)); background-image: -webkit-linear-gradient(#80cb92, #3ca957); background-image: -moz-linear-gradient(#80cb92, #3ca957); background-image: -o-linear-gradient(#80cb92, #3ca957); background-image: linear-gradient(#80cb92, #3ca957); box-shadow: inset 0 0 3px #daf0e0; border: 1px solid #2c6d3c; }
481
+ .pretty .secondary.btn:hover, .pretty .secondary.skiplink:hover, .secondary.btn.pretty:hover, .secondary.skiplink.pretty:hover, .pretty .secondary.btn:hover:active, .pretty .secondary.skiplink:hover:active, .skiplink.pretty.secondary:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a1d3ad), color-stop(100%, #68c07d)); background-image: -webkit-linear-gradient(#a1d3ad, #68c07d); background-image: -moz-linear-gradient(#a1d3ad, #68c07d); background-image: -o-linear-gradient(#a1d3ad, #68c07d); background-image: linear-gradient(#a1d3ad, #68c07d); box-shadow: inset 0 0 3px #f8fcf9; border: 1px solid #469659; }
482
+ .pretty .secondary.btn:active, .pretty .secondary.skiplink:active, .pretty .secondary.btn:active:hover, .pretty .secondary.skiplink:active:hover, .secondary.btn.pretty:active, .secondary.skiplink.pretty:active, .skiplink.pretty.secondary:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3ca957), color-stop(100%, #80cb92)); background-image: -webkit-linear-gradient(#3ca957, #80cb92); background-image: -moz-linear-gradient(#3ca957, #80cb92); background-image: -o-linear-gradient(#3ca957, #80cb92); background-image: linear-gradient(#3ca957, #80cb92); box-shadow: inset 0 0 3px #ecf8ef; }
483
+ .btn.pretty.secondary a, .pretty .secondary.btn a, .pretty .secondary.skiplink a, .pretty .secondary.btn:hover a, .pretty .secondary.skiplink:hover a, .secondary.skiplink.pretty:hover a, .pretty .secondary.btn:active a, .pretty .secondary.skiplink:active a, .secondary.skiplink.pretty:active a, .btn.pretty.secondary input, .pretty .secondary.btn input, .pretty .secondary.skiplink input, .pretty .secondary.btn:hover input, .pretty .secondary.skiplink:hover input, .secondary.skiplink.pretty:hover input, .pretty .secondary.btn:active input, .pretty .secondary.skiplink:active input, .secondary.skiplink.pretty:active input, .btn.pretty.secondary button, .pretty .secondary.btn button, .pretty .secondary.skiplink button, .pretty .secondary.btn:hover button, .pretty .secondary.skiplink:hover button, .secondary.skiplink.pretty:hover button, .pretty .secondary.btn:active button, .pretty .secondary.skiplink:active button, .secondary.skiplink.pretty:active button, .skiplink.pretty.secondary a, .skiplink.pretty.secondary input, .skiplink.pretty.secondary button { text-shadow: 0 1px 1px #255a32; }
484
+ .btn.pretty.default, .pretty .default.btn, .pretty .default.skiplink, .pretty .default.btn:hover, .pretty .default.skiplink:hover, .default.skiplink.pretty:hover, .pretty .default.btn:active, .pretty .default.skiplink:active, .default.skiplink.pretty:active, .skiplink.pretty.default { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f3f1f1)); background-image: -webkit-linear-gradient(#ffffff, #f3f1f1); background-image: -moz-linear-gradient(#ffffff, #f3f1f1); background-image: -o-linear-gradient(#ffffff, #f3f1f1); background-image: linear-gradient(#ffffff, #f3f1f1); box-shadow: inset 0 0 3px white; border: 1px solid #cccccc; }
485
+ .pretty .default.btn:hover, .pretty .default.skiplink:hover, .default.btn.pretty:hover, .default.skiplink.pretty:hover, .pretty .default.btn:hover:active, .pretty .default.skiplink:hover:active, .skiplink.pretty.default:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #ffffff)); background-image: -webkit-linear-gradient(#ffffff, #ffffff); background-image: -moz-linear-gradient(#ffffff, #ffffff); background-image: -o-linear-gradient(#ffffff, #ffffff); background-image: linear-gradient(#ffffff, #ffffff); box-shadow: inset 0 0 3px white; border: 1px solid #d9d9d9; }
486
+ .pretty .default.btn:active, .pretty .default.skiplink:active, .pretty .default.btn:active:hover, .pretty .default.skiplink:active:hover, .default.btn.pretty:active, .default.skiplink.pretty:active, .skiplink.pretty.default:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f3f1f1), color-stop(100%, #ffffff)); background-image: -webkit-linear-gradient(#f3f1f1, #ffffff); background-image: -moz-linear-gradient(#f3f1f1, #ffffff); background-image: -o-linear-gradient(#f3f1f1, #ffffff); background-image: linear-gradient(#f3f1f1, #ffffff); box-shadow: inset 0 0 3px white; }
487
+ .btn.pretty.default a, .pretty .default.btn a, .pretty .default.skiplink a, .pretty .default.btn:hover a, .pretty .default.skiplink:hover a, .default.skiplink.pretty:hover a, .pretty .default.btn:active a, .pretty .default.skiplink:active a, .default.skiplink.pretty:active a, .btn.pretty.default input, .pretty .default.btn input, .pretty .default.skiplink input, .pretty .default.btn:hover input, .pretty .default.skiplink:hover input, .default.skiplink.pretty:hover input, .pretty .default.btn:active input, .pretty .default.skiplink:active input, .default.skiplink.pretty:active input, .btn.pretty.default button, .pretty .default.btn button, .pretty .default.skiplink button, .pretty .default.btn:hover button, .pretty .default.skiplink:hover button, .default.skiplink.pretty:hover button, .pretty .default.btn:active button, .pretty .default.skiplink:active button, .default.skiplink.pretty:active button, .skiplink.pretty.default a, .skiplink.pretty.default input, .skiplink.pretty.default button { text-shadow: 0 1px 1px white; }
488
+ .btn.pretty.info, .pretty .info.btn, .pretty .info.skiplink, .pretty .info.btn:hover, .pretty .info.skiplink:hover, .info.skiplink.pretty:hover, .pretty .info.btn:active, .pretty .info.skiplink:active, .info.skiplink.pretty:active, .skiplink.pretty.info { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b8085), color-stop(100%, #464d54)); background-image: -webkit-linear-gradient(#7b8085, #464d54); background-image: -moz-linear-gradient(#7b8085, #464d54); background-image: -o-linear-gradient(#7b8085, #464d54); background-image: linear-gradient(#7b8085, #464d54); box-shadow: inset 0 0 3px #bdc0c2; border: 1px solid #252728; }
489
+ .pretty .info.btn:hover, .pretty .info.skiplink:hover, .info.btn.pretty:hover, .info.skiplink.pretty:hover, .pretty .info.btn:hover:active, .pretty .info.skiplink:hover:active, .skiplink.pretty.info:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #aeb3b6), color-stop(100%, #808e98)); background-image: -webkit-linear-gradient(#aeb3b6, #808e98); background-image: -moz-linear-gradient(#aeb3b6, #808e98); background-image: -o-linear-gradient(#aeb3b6, #808e98); background-image: linear-gradient(#aeb3b6, #808e98); box-shadow: inset 0 0 3px #f1f2f3; border: 1px solid #60676b; }
490
+ .pretty .info.btn:active, .pretty .info.skiplink:active, .pretty .info.btn:active:hover, .pretty .info.skiplink:active:hover, .info.btn.pretty:active, .info.skiplink.pretty:active, .skiplink.pretty.info:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #464d54), color-stop(100%, #7b8085)); background-image: -webkit-linear-gradient(#464d54, #7b8085); background-image: -moz-linear-gradient(#464d54, #7b8085); background-image: -o-linear-gradient(#464d54, #7b8085); background-image: linear-gradient(#464d54, #7b8085); box-shadow: inset 0 0 3px #cbcdce; }
491
+ .btn.pretty.info a, .pretty .info.btn a, .pretty .info.skiplink a, .pretty .info.btn:hover a, .pretty .info.skiplink:hover a, .info.skiplink.pretty:hover a, .pretty .info.btn:active a, .pretty .info.skiplink:active a, .info.skiplink.pretty:active a, .btn.pretty.info input, .pretty .info.btn input, .pretty .info.skiplink input, .pretty .info.btn:hover input, .pretty .info.skiplink:hover input, .info.skiplink.pretty:hover input, .pretty .info.btn:active input, .pretty .info.skiplink:active input, .info.skiplink.pretty:active input, .btn.pretty.info button, .pretty .info.btn button, .pretty .info.skiplink button, .pretty .info.btn:hover button, .pretty .info.skiplink:hover button, .info.skiplink.pretty:hover button, .pretty .info.btn:active button, .pretty .info.skiplink:active button, .info.skiplink.pretty:active button, .skiplink.pretty.info a, .skiplink.pretty.info input, .skiplink.pretty.info button { text-shadow: 0 1px 1px #191a1b; }
492
+ .btn.pretty.danger, .pretty .danger.btn, .pretty .danger.skiplink, .pretty .danger.btn:hover, .pretty .danger.skiplink:hover, .danger.skiplink.pretty:hover, .pretty .danger.btn:active, .pretty .danger.skiplink:active, .danger.skiplink.pretty:active, .skiplink.pretty.danger { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #df8989), color-stop(100%, #d03232)); background-image: -webkit-linear-gradient(#df8989, #d03232); background-image: -moz-linear-gradient(#df8989, #d03232); background-image: -o-linear-gradient(#df8989, #d03232); background-image: linear-gradient(#df8989, #d03232); box-shadow: inset 0 0 3px #faeded; border: 1px solid #8f2626; }
493
+ .pretty .danger.btn:hover, .pretty .danger.skiplink:hover, .danger.btn.pretty:hover, .danger.skiplink.pretty:hover, .pretty .danger.btn:hover:active, .pretty .danger.skiplink:hover:active, .skiplink.pretty.danger:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f79696), color-stop(100%, #f64a4a)); background-image: -webkit-linear-gradient(#f79696, #f64a4a); background-image: -moz-linear-gradient(#f79696, #f64a4a); background-image: -o-linear-gradient(#f79696, #f64a4a); background-image: linear-gradient(#f79696, #f64a4a); box-shadow: inset 0 0 3px white; border: 1px solid #e21212; }
494
+ .pretty .danger.btn:active, .pretty .danger.skiplink:active, .pretty .danger.btn:active:hover, .pretty .danger.skiplink:active:hover, .danger.btn.pretty:active, .danger.skiplink.pretty:active, .skiplink.pretty.danger:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d03232), color-stop(100%, #df8989)); background-image: -webkit-linear-gradient(#d03232, #df8989); background-image: -moz-linear-gradient(#d03232, #df8989); background-image: -o-linear-gradient(#d03232, #df8989); background-image: linear-gradient(#d03232, #df8989); box-shadow: inset 0 0 3px white; }
495
+ .btn.pretty.danger a, .pretty .danger.btn a, .pretty .danger.skiplink a, .pretty .danger.btn:hover a, .pretty .danger.skiplink:hover a, .danger.skiplink.pretty:hover a, .pretty .danger.btn:active a, .pretty .danger.skiplink:active a, .danger.skiplink.pretty:active a, .btn.pretty.danger input, .pretty .danger.btn input, .pretty .danger.skiplink input, .pretty .danger.btn:hover input, .pretty .danger.skiplink:hover input, .danger.skiplink.pretty:hover input, .pretty .danger.btn:active input, .pretty .danger.skiplink:active input, .danger.skiplink.pretty:active input, .btn.pretty.danger button, .pretty .danger.btn button, .pretty .danger.skiplink button, .pretty .danger.btn:hover button, .pretty .danger.skiplink:hover button, .danger.skiplink.pretty:hover button, .pretty .danger.btn:active button, .pretty .danger.skiplink:active button, .danger.skiplink.pretty:active button, .skiplink.pretty.danger a, .skiplink.pretty.danger input, .skiplink.pretty.danger button { text-shadow: 0 1px 1px #7b2121; }
496
+ .btn.pretty.warning, .pretty .warning.btn, .pretty .warning.skiplink, .pretty .warning.btn:hover, .pretty .warning.skiplink:hover, .warning.skiplink.pretty:hover, .pretty .warning.btn:active, .pretty .warning.skiplink:active, .warning.skiplink.pretty:active, .skiplink.pretty.warning { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbdca0), color-stop(100%, #fbba3a)); background-image: -webkit-linear-gradient(#fbdca0, #fbba3a); background-image: -moz-linear-gradient(#fbdca0, #fbba3a); background-image: -o-linear-gradient(#fbdca0, #fbba3a); background-image: linear-gradient(#fbdca0, #fbba3a); box-shadow: inset 0 0 3px white; border: 1px solid #de960a; color: #644405; }
497
+ .pretty .warning.btn:hover, .pretty .warning.skiplink:hover, .warning.btn.pretty:hover, .warning.skiplink.pretty:hover, .pretty .warning.btn:hover:active, .pretty .warning.skiplink:hover:active, .skiplink.pretty.warning:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #feecca), color-stop(100%, #ffd37d)); background-image: -webkit-linear-gradient(#feecca, #ffd37d); background-image: -moz-linear-gradient(#feecca, #ffd37d); background-image: -o-linear-gradient(#feecca, #ffd37d); background-image: linear-gradient(#feecca, #ffd37d); box-shadow: inset 0 0 3px white; border: 1px solid #fcb834; }
498
+ .pretty .warning.btn:active, .pretty .warning.skiplink:active, .pretty .warning.btn:active:hover, .pretty .warning.skiplink:active:hover, .warning.btn.pretty:active, .warning.skiplink.pretty:active, .skiplink.pretty.warning:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbba3a), color-stop(100%, #fbdca0)); background-image: -webkit-linear-gradient(#fbba3a, #fbdca0); background-image: -moz-linear-gradient(#fbba3a, #fbdca0); background-image: -o-linear-gradient(#fbba3a, #fbdca0); background-image: linear-gradient(#fbba3a, #fbdca0); box-shadow: inset 0 0 3px white; }
499
+ .btn.pretty.warning a, .pretty .warning.btn a, .pretty .warning.skiplink a, .pretty .warning.btn:hover a, .pretty .warning.skiplink:hover a, .warning.skiplink.pretty:hover a, .pretty .warning.btn:active a, .pretty .warning.skiplink:active a, .warning.skiplink.pretty:active a, .btn.pretty.warning input, .pretty .warning.btn input, .pretty .warning.skiplink input, .pretty .warning.btn:hover input, .pretty .warning.skiplink:hover input, .warning.skiplink.pretty:hover input, .pretty .warning.btn:active input, .pretty .warning.skiplink:active input, .warning.skiplink.pretty:active input, .btn.pretty.warning button, .pretty .warning.btn button, .pretty .warning.skiplink button, .pretty .warning.btn:hover button, .pretty .warning.skiplink:hover button, .warning.skiplink.pretty:hover button, .pretty .warning.btn:active button, .pretty .warning.skiplink:active button, .warning.skiplink.pretty:active button, .skiplink.pretty.warning a, .skiplink.pretty.warning input, .skiplink.pretty.warning button { text-shadow: 0 1px 1px #fbdca0; }
500
+ .btn.pretty.success, .pretty .success.btn, .pretty .success.skiplink, .pretty .success.btn:hover, .pretty .success.skiplink:hover, .success.skiplink.pretty:hover, .pretty .success.btn:active, .pretty .success.skiplink:active, .success.skiplink.pretty:active, .skiplink.pretty.success { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #91e26a), color-stop(100%, #56c620)); background-image: -webkit-linear-gradient(#91e26a, #56c620); background-image: -moz-linear-gradient(#91e26a, #56c620); background-image: -o-linear-gradient(#91e26a, #56c620); background-image: linear-gradient(#91e26a, #56c620); box-shadow: inset 0 0 3px #e0f7d5; border: 1px solid #3b8019; }
501
+ .pretty .success.btn:hover, .pretty .success.skiplink:hover, .success.btn.pretty:hover, .success.skiplink.pretty:hover, .pretty .success.btn:hover:active, .pretty .success.skiplink:hover:active, .skiplink.pretty.success:hover { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #96e570), color-stop(100%, #64df29)); background-image: -webkit-linear-gradient(#96e570, #64df29); background-image: -moz-linear-gradient(#96e570, #64df29); background-image: -o-linear-gradient(#96e570, #64df29); background-image: linear-gradient(#96e570, #64df29); box-shadow: inset 0 0 3px #e5f9db; border: 1px solid #479f1d; }
502
+ .pretty .success.btn:active, .pretty .success.skiplink:active, .pretty .success.btn:active:hover, .pretty .success.skiplink:active:hover, .success.btn.pretty:active, .success.skiplink.pretty:active, .skiplink.pretty.success:active { background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #56c620), color-stop(100%, #91e26a)); background-image: -webkit-linear-gradient(#56c620, #91e26a); background-image: -moz-linear-gradient(#56c620, #91e26a); background-image: -o-linear-gradient(#56c620, #91e26a); background-image: linear-gradient(#56c620, #91e26a); box-shadow: inset 0 0 3px #f0fbea; }
503
+ .btn.pretty.success a, .pretty .success.btn a, .pretty .success.skiplink a, .pretty .success.btn:hover a, .pretty .success.skiplink:hover a, .success.skiplink.pretty:hover a, .pretty .success.btn:active a, .pretty .success.skiplink:active a, .success.skiplink.pretty:active a, .btn.pretty.success input, .pretty .success.btn input, .pretty .success.skiplink input, .pretty .success.btn:hover input, .pretty .success.skiplink:hover input, .success.skiplink.pretty:hover input, .pretty .success.btn:active input, .pretty .success.skiplink:active input, .success.skiplink.pretty:active input, .btn.pretty.success button, .pretty .success.btn button, .pretty .success.skiplink button, .pretty .success.btn:hover button, .pretty .success.skiplink:hover button, .success.skiplink.pretty:hover button, .pretty .success.btn:active button, .pretty .success.skiplink:active button, .success.skiplink.pretty:active button, .skiplink.pretty.success a, .skiplink.pretty.success input, .skiplink.pretty.success button { text-shadow: 0 1px 1px #316b15; }
504
+
505
+ /* Icons */
506
+ [class^="icon-"] a:before, [class*=" icon-"] a:before, [class^="icon-"] a:after, [class*=" icon-"] a:after, i[class^="icon-"], i[class*=" icon-"] { font-family: "entypo"; position: absolute; text-decoration: none; zoom: 1; }
507
+
508
+ i[class^="icon-"], i[class*=" icon-"] { display: inline-block; position: static; min-width: 20px; margin: 0 5px; text-align: center; }
509
+
510
+ .icon-note.icon-left a:before, .icon-note.icon-right a:after { content: "\266a"; height: inherit; }
511
+
512
+ i.icon-note:before { content: "\266a"; height: inherit; }
513
+
514
+ .icon-note-beamed.icon-left a:before, .icon-note-beamed.icon-right a:after { content: "\266b"; height: inherit; }
515
+
516
+ i.icon-note-beamed:before { content: "\266b"; height: inherit; }
517
+
518
+ .icon-music.icon-left a:before, .icon-music.icon-right a:after { content: "🎵"; height: inherit; }
519
+
520
+ i.icon-music:before { content: "🎵"; height: inherit; }
521
+
522
+ .icon-search.icon-left a:before, .icon-search.icon-right a:after { content: "🔍"; height: inherit; }
523
+
524
+ i.icon-search:before { content: "🔍"; height: inherit; }
525
+
526
+ .icon-flashlight.icon-left a:before, .icon-flashlight.icon-right a:after { content: "🔦"; height: inherit; }
527
+
528
+ i.icon-flashlight:before { content: "🔦"; height: inherit; }
529
+
530
+ .icon-mail.icon-left a:before, .icon-mail.icon-right a:after { content: "\2709"; height: inherit; }
531
+
532
+ i.icon-mail:before { content: "\2709"; height: inherit; }
533
+
534
+ .icon-heart.icon-left a:before, .icon-heart.icon-right a:after { content: "\2665"; height: inherit; }
535
+
536
+ i.icon-heart:before { content: "\2665"; height: inherit; }
537
+
538
+ .icon-heart-empty.icon-left a:before, .icon-heart-empty.icon-right a:after { content: "\2661"; height: inherit; }
539
+
540
+ i.icon-heart-empty:before { content: "\2661"; height: inherit; }
541
+
542
+ .icon-star.icon-left a:before, .icon-star.icon-right a:after { content: "\2605"; height: inherit; }
543
+
544
+ i.icon-star:before { content: "\2605"; height: inherit; }
545
+
546
+ .icon-star-empty.icon-left a:before, .icon-star-empty.icon-right a:after { content: "\2606"; height: inherit; }
547
+
548
+ i.icon-star-empty:before { content: "\2606"; height: inherit; }
549
+
550
+ .icon-user.icon-left a:before, .icon-user.icon-right a:after { content: "👤"; height: inherit; }
551
+
552
+ i.icon-user:before { content: "👤"; height: inherit; }
553
+
554
+ .icon-users.icon-left a:before, .icon-users.icon-right a:after { content: "👥"; height: inherit; }
555
+
556
+ i.icon-users:before { content: "👥"; height: inherit; }
557
+
558
+ .icon-user-add.icon-left a:before, .icon-user-add.icon-right a:after { content: "\e700"; height: inherit; }
559
+
560
+ i.icon-user-add:before { content: "\e700"; height: inherit; }
561
+
562
+ .icon-video.icon-left a:before, .icon-video.icon-right a:after { content: "🎬"; height: inherit; }
563
+
564
+ i.icon-video:before { content: "🎬"; height: inherit; }
565
+
566
+ .icon-picture.icon-left a:before, .icon-picture.icon-right a:after { content: "🌄"; height: inherit; }
567
+
568
+ i.icon-picture:before { content: "🌄"; height: inherit; }
569
+
570
+ .icon-camera.icon-left a:before, .icon-camera.icon-right a:after { content: "📷"; height: inherit; }
571
+
572
+ i.icon-camera:before { content: "📷"; height: inherit; }
573
+
574
+ .icon-layout.icon-left a:before, .icon-layout.icon-right a:after { content: "\268f"; height: inherit; }
575
+
576
+ i.icon-layout:before { content: "\268f"; height: inherit; }
577
+
578
+ .icon-menu.icon-left a:before, .icon-menu.icon-right a:after { content: "\2630"; height: inherit; }
579
+
580
+ i.icon-menu:before { content: "\2630"; height: inherit; }
581
+
582
+ .icon-check.icon-left a:before, .icon-check.icon-right a:after { content: "\2713"; height: inherit; }
583
+
584
+ i.icon-check:before { content: "\2713"; height: inherit; }
585
+
586
+ .icon-cancel.icon-left a:before, .icon-cancel.icon-right a:after { content: "\2715"; height: inherit; }
587
+
588
+ i.icon-cancel:before { content: "\2715"; height: inherit; }
589
+
590
+ .icon-cancel-circled.icon-left a:before, .icon-cancel-circled.icon-right a:after { content: "\2716"; height: inherit; }
591
+
592
+ i.icon-cancel-circled:before { content: "\2716"; height: inherit; }
593
+
594
+ .icon-cancel-squared.icon-left a:before, .icon-cancel-squared.icon-right a:after { content: "\274e"; height: inherit; }
595
+
596
+ i.icon-cancel-squared:before { content: "\274e"; height: inherit; }
597
+
598
+ .icon-plus.icon-left a:before, .icon-plus.icon-right a:after { content: "\2b"; height: inherit; }
599
+
600
+ i.icon-plus:before { content: "\2b"; height: inherit; }
601
+
602
+ .icon-plus-circled.icon-left a:before, .icon-plus-circled.icon-right a:after { content: "\2795"; height: inherit; }
603
+
604
+ i.icon-plus-circled:before { content: "\2795"; height: inherit; }
605
+
606
+ .icon-plus-squared.icon-left a:before, .icon-plus-squared.icon-right a:after { content: "\229e"; height: inherit; }
607
+
608
+ i.icon-plus-squared:before { content: "\229e"; height: inherit; }
609
+
610
+ .icon-minus.icon-left a:before, .icon-minus.icon-right a:after { content: "\2d"; height: inherit; }
611
+
612
+ i.icon-minus:before { content: "\2d"; height: inherit; }
613
+
614
+ .icon-minus-circled.icon-left a:before, .icon-minus-circled.icon-right a:after { content: "\2796"; height: inherit; }
615
+
616
+ i.icon-minus-circled:before { content: "\2796"; height: inherit; }
617
+
618
+ .icon-minus-squared.icon-left a:before, .icon-minus-squared.icon-right a:after { content: "\229f"; height: inherit; }
619
+
620
+ i.icon-minus-squared:before { content: "\229f"; height: inherit; }
621
+
622
+ .icon-help.icon-left a:before, .icon-help.icon-right a:after { content: "\2753"; height: inherit; }
623
+
624
+ i.icon-help:before { content: "\2753"; height: inherit; }
625
+
626
+ .icon-help-circled.icon-left a:before, .icon-help-circled.icon-right a:after { content: "\e704"; height: inherit; }
627
+
628
+ i.icon-help-circled:before { content: "\e704"; height: inherit; }
629
+
630
+ .icon-info.icon-left a:before, .icon-info.icon-right a:after { content: "\2139"; height: inherit; }
631
+
632
+ i.icon-info:before { content: "\2139"; height: inherit; }
633
+
634
+ .icon-info-circled.icon-left a:before, .icon-info-circled.icon-right a:after { content: "\e705"; height: inherit; }
635
+
636
+ i.icon-info-circled:before { content: "\e705"; height: inherit; }
637
+
638
+ .icon-back.icon-left a:before, .icon-back.icon-right a:after { content: "🔙"; height: inherit; }
639
+
640
+ i.icon-back:before { content: "🔙"; height: inherit; }
641
+
642
+ .icon-home.icon-left a:before, .icon-home.icon-right a:after { content: "\2302"; height: inherit; }
643
+
644
+ i.icon-home:before { content: "\2302"; height: inherit; }
645
+
646
+ .icon-link.icon-left a:before, .icon-link.icon-right a:after { content: "🔗"; height: inherit; }
647
+
648
+ i.icon-link:before { content: "🔗"; height: inherit; }
649
+
650
+ .icon-attach.icon-left a:before, .icon-attach.icon-right a:after { content: "📎"; height: inherit; }
651
+
652
+ i.icon-attach:before { content: "📎"; height: inherit; }
653
+
654
+ .icon-lock.icon-left a:before, .icon-lock.icon-right a:after { content: "🔒"; height: inherit; }
655
+
656
+ i.icon-lock:before { content: "🔒"; height: inherit; }
657
+
658
+ .icon-lock-open.icon-left a:before, .icon-lock-open.icon-right a:after { content: "🔓"; height: inherit; }
659
+
660
+ i.icon-lock-open:before { content: "🔓"; height: inherit; }
661
+
662
+ .icon-eye.icon-left a:before, .icon-eye.icon-right a:after { content: "\e70a"; height: inherit; }
663
+
664
+ i.icon-eye:before { content: "\e70a"; height: inherit; }
665
+
666
+ .icon-tag.icon-left a:before, .icon-tag.icon-right a:after { content: "\e70c"; height: inherit; }
667
+
668
+ i.icon-tag:before { content: "\e70c"; height: inherit; }
669
+
670
+ .icon-bookmark.icon-left a:before, .icon-bookmark.icon-right a:after { content: "🔖"; height: inherit; }
671
+
672
+ i.icon-bookmark:before { content: "🔖"; height: inherit; }
673
+
674
+ .icon-bookmarks.icon-left a:before, .icon-bookmarks.icon-right a:after { content: "📑"; height: inherit; }
675
+
676
+ i.icon-bookmarks:before { content: "📑"; height: inherit; }
677
+
678
+ .icon-flag.icon-left a:before, .icon-flag.icon-right a:after { content: "\2691"; height: inherit; }
679
+
680
+ i.icon-flag:before { content: "\2691"; height: inherit; }
681
+
682
+ .icon-thumbs-up.icon-left a:before, .icon-thumbs-up.icon-right a:after { content: "👍"; height: inherit; }
683
+
684
+ i.icon-thumbs-up:before { content: "👍"; height: inherit; }
685
+
686
+ .icon-thumbs-down.icon-left a:before, .icon-thumbs-down.icon-right a:after { content: "👎"; height: inherit; }
687
+
688
+ i.icon-thumbs-down:before { content: "👎"; height: inherit; }
689
+
690
+ .icon-download.icon-left a:before, .icon-download.icon-right a:after { content: "📥"; height: inherit; }
691
+
692
+ i.icon-download:before { content: "📥"; height: inherit; }
693
+
694
+ .icon-upload.icon-left a:before, .icon-upload.icon-right a:after { content: "📤"; height: inherit; }
695
+
696
+ i.icon-upload:before { content: "📤"; height: inherit; }
697
+
698
+ .icon-upload-cloud.icon-left a:before, .icon-upload-cloud.icon-right a:after { content: "\e711"; height: inherit; }
699
+
700
+ i.icon-upload-cloud:before { content: "\e711"; height: inherit; }
701
+
702
+ .icon-reply.icon-left a:before, .icon-reply.icon-right a:after { content: "\e712"; height: inherit; }
703
+
704
+ i.icon-reply:before { content: "\e712"; height: inherit; }
705
+
706
+ .icon-reply-all.icon-left a:before, .icon-reply-all.icon-right a:after { content: "\e713"; height: inherit; }
707
+
708
+ i.icon-reply-all:before { content: "\e713"; height: inherit; }
709
+
710
+ .icon-forward.icon-left a:before, .icon-forward.icon-right a:after { content: "\27a6"; height: inherit; }
711
+
712
+ i.icon-forward:before { content: "\27a6"; height: inherit; }
713
+
714
+ .icon-quote.icon-left a:before, .icon-quote.icon-right a:after { content: "\275e"; height: inherit; }
715
+
716
+ i.icon-quote:before { content: "\275e"; height: inherit; }
717
+
718
+ .icon-code.icon-left a:before, .icon-code.icon-right a:after { content: "\e714"; height: inherit; }
719
+
720
+ i.icon-code:before { content: "\e714"; height: inherit; }
721
+
722
+ .icon-export.icon-left a:before, .icon-export.icon-right a:after { content: "\e715"; height: inherit; }
723
+
724
+ i.icon-export:before { content: "\e715"; height: inherit; }
725
+
726
+ .icon-pencil.icon-left a:before, .icon-pencil.icon-right a:after { content: "\270e"; height: inherit; }
727
+
728
+ i.icon-pencil:before { content: "\270e"; height: inherit; }
729
+
730
+ .icon-feather.icon-left a:before, .icon-feather.icon-right a:after { content: "\2712"; height: inherit; }
731
+
732
+ i.icon-feather:before { content: "\2712"; height: inherit; }
733
+
734
+ .icon-print.icon-left a:before, .icon-print.icon-right a:after { content: "\e716"; height: inherit; }
735
+
736
+ i.icon-print:before { content: "\e716"; height: inherit; }
737
+
738
+ .icon-retweet.icon-left a:before, .icon-retweet.icon-right a:after { content: "\e717"; height: inherit; }
739
+
740
+ i.icon-retweet:before { content: "\e717"; height: inherit; }
741
+
742
+ .icon-keyboard.icon-left a:before, .icon-keyboard.icon-right a:after { content: "\2328"; height: inherit; }
743
+
744
+ i.icon-keyboard:before { content: "\2328"; height: inherit; }
745
+
746
+ .icon-comment.icon-left a:before, .icon-comment.icon-right a:after { content: "\e718"; height: inherit; }
747
+
748
+ i.icon-comment:before { content: "\e718"; height: inherit; }
749
+
750
+ .icon-chat.icon-left a:before, .icon-chat.icon-right a:after { content: "\e720"; height: inherit; }
751
+
752
+ i.icon-chat:before { content: "\e720"; height: inherit; }
753
+
754
+ .icon-bell.icon-left a:before, .icon-bell.icon-right a:after { content: "🔔"; height: inherit; }
755
+
756
+ i.icon-bell:before { content: "🔔"; height: inherit; }
757
+
758
+ .icon-attention.icon-left a:before, .icon-attention.icon-right a:after { content: "\26a0"; height: inherit; }
759
+
760
+ i.icon-attention:before { content: "\26a0"; height: inherit; }
761
+
762
+ .icon-alert.icon-left a:before, .icon-alert.icon-right a:after { content: "💥"; height: inherit; }
763
+
764
+ i.icon-alert:before { content: "💥"; height: inherit; }
765
+
766
+ .icon-vcard.icon-left a:before, .icon-vcard.icon-right a:after { content: "\e722"; height: inherit; }
767
+
768
+ i.icon-vcard:before { content: "\e722"; height: inherit; }
769
+
770
+ .icon-address.icon-left a:before, .icon-address.icon-right a:after { content: "\e723"; height: inherit; }
771
+
772
+ i.icon-address:before { content: "\e723"; height: inherit; }
773
+
774
+ .icon-location.icon-left a:before, .icon-location.icon-right a:after { content: "\e724"; height: inherit; }
775
+
776
+ i.icon-location:before { content: "\e724"; height: inherit; }
777
+
778
+ .icon-map.icon-left a:before, .icon-map.icon-right a:after { content: "\e727"; height: inherit; }
779
+
780
+ i.icon-map:before { content: "\e727"; height: inherit; }
781
+
782
+ .icon-direction.icon-left a:before, .icon-direction.icon-right a:after { content: "\27a2"; height: inherit; }
783
+
784
+ i.icon-direction:before { content: "\27a2"; height: inherit; }
785
+
786
+ .icon-compass.icon-left a:before, .icon-compass.icon-right a:after { content: "\e728"; height: inherit; }
787
+
788
+ i.icon-compass:before { content: "\e728"; height: inherit; }
789
+
790
+ .icon-cup.icon-left a:before, .icon-cup.icon-right a:after { content: "\2615"; height: inherit; }
791
+
792
+ i.icon-cup:before { content: "\2615"; height: inherit; }
793
+
794
+ .icon-trash.icon-left a:before, .icon-trash.icon-right a:after { content: "\e729"; height: inherit; }
795
+
796
+ i.icon-trash:before { content: "\e729"; height: inherit; }
797
+
798
+ .icon-doc.icon-left a:before, .icon-doc.icon-right a:after { content: "\e730"; height: inherit; }
799
+
800
+ i.icon-doc:before { content: "\e730"; height: inherit; }
801
+
802
+ .icon-docs.icon-left a:before, .icon-docs.icon-right a:after { content: "\e736"; height: inherit; }
803
+
804
+ i.icon-docs:before { content: "\e736"; height: inherit; }
805
+
806
+ .icon-doc-landscape.icon-left a:before, .icon-doc-landscape.icon-right a:after { content: "\e737"; height: inherit; }
807
+
808
+ i.icon-doc-landscape:before { content: "\e737"; height: inherit; }
809
+
810
+ .icon-doc-text.icon-left a:before, .icon-doc-text.icon-right a:after { content: "📄"; height: inherit; }
811
+
812
+ i.icon-doc-text:before { content: "📄"; height: inherit; }
813
+
814
+ .icon-doc-text-inv.icon-left a:before, .icon-doc-text-inv.icon-right a:after { content: "\e731"; height: inherit; }
815
+
816
+ i.icon-doc-text-inv:before { content: "\e731"; height: inherit; }
817
+
818
+ .icon-newspaper.icon-left a:before, .icon-newspaper.icon-right a:after { content: "📰"; height: inherit; }
819
+
820
+ i.icon-newspaper:before { content: "📰"; height: inherit; }
821
+
822
+ .icon-book-open.icon-left a:before, .icon-book-open.icon-right a:after { content: "📖"; height: inherit; }
823
+
824
+ i.icon-book-open:before { content: "📖"; height: inherit; }
825
+
826
+ .icon-book.icon-left a:before, .icon-book.icon-right a:after { content: "📕"; height: inherit; }
827
+
828
+ i.icon-book:before { content: "📕"; height: inherit; }
829
+
830
+ .icon-folder.icon-left a:before, .icon-folder.icon-right a:after { content: "📁"; height: inherit; }
831
+
832
+ i.icon-folder:before { content: "📁"; height: inherit; }
833
+
834
+ .icon-archive.icon-left a:before, .icon-archive.icon-right a:after { content: "\e738"; height: inherit; }
835
+
836
+ i.icon-archive:before { content: "\e738"; height: inherit; }
837
+
838
+ .icon-box.icon-left a:before, .icon-box.icon-right a:after { content: "📦"; height: inherit; }
839
+
840
+ i.icon-box:before { content: "📦"; height: inherit; }
841
+
842
+ .icon-rss.icon-left a:before, .icon-rss.icon-right a:after { content: "\e73a"; height: inherit; }
843
+
844
+ i.icon-rss:before { content: "\e73a"; height: inherit; }
845
+
846
+ .icon-phone.icon-left a:before, .icon-phone.icon-right a:after { content: "📞"; height: inherit; }
847
+
848
+ i.icon-phone:before { content: "📞"; height: inherit; }
849
+
850
+ .icon-cog.icon-left a:before, .icon-cog.icon-right a:after { content: "\2699"; height: inherit; }
851
+
852
+ i.icon-cog:before { content: "\2699"; height: inherit; }
853
+
854
+ .icon-tools.icon-left a:before, .icon-tools.icon-right a:after { content: "\2692"; height: inherit; }
855
+
856
+ i.icon-tools:before { content: "\2692"; height: inherit; }
857
+
858
+ .icon-share.icon-left a:before, .icon-share.icon-right a:after { content: "\e73c"; height: inherit; }
859
+
860
+ i.icon-share:before { content: "\e73c"; height: inherit; }
861
+
862
+ .icon-shareable.icon-left a:before, .icon-shareable.icon-right a:after { content: "\e73e"; height: inherit; }
863
+
864
+ i.icon-shareable:before { content: "\e73e"; height: inherit; }
865
+
866
+ .icon-basket.icon-left a:before, .icon-basket.icon-right a:after { content: "\e73d"; height: inherit; }
867
+
868
+ i.icon-basket:before { content: "\e73d"; height: inherit; }
869
+
870
+ .icon-bag.icon-left a:before, .icon-bag.icon-right a:after { content: "👜"; height: inherit; }
871
+
872
+ i.icon-bag:before { content: "👜"; height: inherit; }
873
+
874
+ .icon-calendar.icon-left a:before, .icon-calendar.icon-right a:after { content: "📅"; height: inherit; }
875
+
876
+ i.icon-calendar:before { content: "📅"; height: inherit; }
877
+
878
+ .icon-login.icon-left a:before, .icon-login.icon-right a:after { content: "\e740"; height: inherit; }
879
+
880
+ i.icon-login:before { content: "\e740"; height: inherit; }
881
+
882
+ .icon-logout.icon-left a:before, .icon-logout.icon-right a:after { content: "\e741"; height: inherit; }
883
+
884
+ i.icon-logout:before { content: "\e741"; height: inherit; }
885
+
886
+ .icon-mic.icon-left a:before, .icon-mic.icon-right a:after { content: "🎤"; height: inherit; }
887
+
888
+ i.icon-mic:before { content: "🎤"; height: inherit; }
889
+
890
+ .icon-mute.icon-left a:before, .icon-mute.icon-right a:after { content: "🔇"; height: inherit; }
891
+
892
+ i.icon-mute:before { content: "🔇"; height: inherit; }
893
+
894
+ .icon-sound.icon-left a:before, .icon-sound.icon-right a:after { content: "🔊"; height: inherit; }
895
+
896
+ i.icon-sound:before { content: "🔊"; height: inherit; }
897
+
898
+ .icon-volume.icon-left a:before, .icon-volume.icon-right a:after { content: "\e742"; height: inherit; }
899
+
900
+ i.icon-volume:before { content: "\e742"; height: inherit; }
901
+
902
+ .icon-clock.icon-left a:before, .icon-clock.icon-right a:after { content: "🕔"; height: inherit; }
903
+
904
+ i.icon-clock:before { content: "🕔"; height: inherit; }
905
+
906
+ .icon-hourglass.icon-left a:before, .icon-hourglass.icon-right a:after { content: "\23f3"; height: inherit; }
907
+
908
+ i.icon-hourglass:before { content: "\23f3"; height: inherit; }
909
+
910
+ .icon-lamp.icon-left a:before, .icon-lamp.icon-right a:after { content: "💡"; height: inherit; }
911
+
912
+ i.icon-lamp:before { content: "💡"; height: inherit; }
913
+
914
+ .icon-light-down.icon-left a:before, .icon-light-down.icon-right a:after { content: "🔅"; height: inherit; }
915
+
916
+ i.icon-light-down:before { content: "🔅"; height: inherit; }
917
+
918
+ .icon-light-up.icon-left a:before, .icon-light-up.icon-right a:after { content: "🔆"; height: inherit; }
919
+
920
+ i.icon-light-up:before { content: "🔆"; height: inherit; }
921
+
922
+ .icon-adjust.icon-left a:before, .icon-adjust.icon-right a:after { content: "\25d1"; height: inherit; }
923
+
924
+ i.icon-adjust:before { content: "\25d1"; height: inherit; }
925
+
926
+ .icon-block.icon-left a:before, .icon-block.icon-right a:after { content: "🚫"; height: inherit; }
927
+
928
+ i.icon-block:before { content: "🚫"; height: inherit; }
929
+
930
+ .icon-resize-full.icon-left a:before, .icon-resize-full.icon-right a:after { content: "\e744"; height: inherit; }
931
+
932
+ i.icon-resize-full:before { content: "\e744"; height: inherit; }
933
+
934
+ .icon-resize-small.icon-left a:before, .icon-resize-small.icon-right a:after { content: "\e746"; height: inherit; }
935
+
936
+ i.icon-resize-small:before { content: "\e746"; height: inherit; }
937
+
938
+ .icon-popup.icon-left a:before, .icon-popup.icon-right a:after { content: "\e74c"; height: inherit; }
939
+
940
+ i.icon-popup:before { content: "\e74c"; height: inherit; }
941
+
942
+ .icon-publish.icon-left a:before, .icon-publish.icon-right a:after { content: "\e74d"; height: inherit; }
943
+
944
+ i.icon-publish:before { content: "\e74d"; height: inherit; }
945
+
946
+ .icon-window.icon-left a:before, .icon-window.icon-right a:after { content: "\e74e"; height: inherit; }
947
+
948
+ i.icon-window:before { content: "\e74e"; height: inherit; }
949
+
950
+ .icon-arrow-combo.icon-left a:before, .icon-arrow-combo.icon-right a:after { content: "\e74f"; height: inherit; }
951
+
952
+ i.icon-arrow-combo:before { content: "\e74f"; height: inherit; }
953
+
954
+ .icon-down-circled.icon-left a:before, .icon-down-circled.icon-right a:after { content: "\e758"; height: inherit; }
955
+
956
+ i.icon-down-circled:before { content: "\e758"; height: inherit; }
957
+
958
+ .icon-left-circled.icon-left a:before, .icon-left-circled.icon-right a:after { content: "\e759"; height: inherit; }
959
+
960
+ i.icon-left-circled:before { content: "\e759"; height: inherit; }
961
+
962
+ .icon-right-circled.icon-left a:before, .icon-right-circled.icon-right a:after { content: "\e75a"; height: inherit; }
963
+
964
+ i.icon-right-circled:before { content: "\e75a"; height: inherit; }
965
+
966
+ .icon-up-circled.icon-left a:before, .icon-up-circled.icon-right a:after { content: "\e75b"; height: inherit; }
967
+
968
+ i.icon-up-circled:before { content: "\e75b"; height: inherit; }
969
+
970
+ .icon-down-open.icon-left a:before, .icon-down-open.icon-right a:after { content: "\e75c"; height: inherit; }
971
+
972
+ i.icon-down-open:before { content: "\e75c"; height: inherit; }
973
+
974
+ .icon-left-open.icon-left a:before, .icon-left-open.icon-right a:after { content: "\e75d"; height: inherit; }
975
+
976
+ i.icon-left-open:before { content: "\e75d"; height: inherit; }
977
+
978
+ .icon-right-open.icon-left a:before, .icon-right-open.icon-right a:after { content: "\e75e"; height: inherit; }
979
+
980
+ i.icon-right-open:before { content: "\e75e"; height: inherit; }
981
+
982
+ .icon-up-open.icon-left a:before, .icon-up-open.icon-right a:after { content: "\e75f"; height: inherit; }
983
+
984
+ i.icon-up-open:before { content: "\e75f"; height: inherit; }
985
+
986
+ .icon-down-open-mini.icon-left a:before, .icon-down-open-mini.icon-right a:after { content: "\e760"; height: inherit; }
987
+
988
+ i.icon-down-open-mini:before { content: "\e760"; height: inherit; }
989
+
990
+ .icon-left-open-mini.icon-left a:before, .icon-left-open-mini.icon-right a:after { content: "\e761"; height: inherit; }
991
+
992
+ i.icon-left-open-mini:before { content: "\e761"; height: inherit; }
993
+
994
+ .icon-right-open-mini.icon-left a:before, .icon-right-open-mini.icon-right a:after { content: "\e762"; height: inherit; }
995
+
996
+ i.icon-right-open-mini:before { content: "\e762"; height: inherit; }
997
+
998
+ .icon-up-open-mini.icon-left a:before, .icon-up-open-mini.icon-right a:after { content: "\e763"; height: inherit; }
999
+
1000
+ i.icon-up-open-mini:before { content: "\e763"; height: inherit; }
1001
+
1002
+ .icon-down-open-big.icon-left a:before, .icon-down-open-big.icon-right a:after { content: "\e764"; height: inherit; }
1003
+
1004
+ i.icon-down-open-big:before { content: "\e764"; height: inherit; }
1005
+
1006
+ .icon-left-open-big.icon-left a:before, .icon-left-open-big.icon-right a:after { content: "\e765"; height: inherit; }
1007
+
1008
+ i.icon-left-open-big:before { content: "\e765"; height: inherit; }
1009
+
1010
+ .icon-right-open-big.icon-left a:before, .icon-right-open-big.icon-right a:after { content: "\e766"; height: inherit; }
1011
+
1012
+ i.icon-right-open-big:before { content: "\e766"; height: inherit; }
1013
+
1014
+ .icon-up-open-big.icon-left a:before, .icon-up-open-big.icon-right a:after { content: "\e767"; height: inherit; }
1015
+
1016
+ i.icon-up-open-big:before { content: "\e767"; height: inherit; }
1017
+
1018
+ .icon-down.icon-left a:before, .icon-down.icon-right a:after { content: "\2b07"; height: inherit; }
1019
+
1020
+ i.icon-down:before { content: "\2b07"; height: inherit; }
1021
+
1022
+ .icon-arrow-left.icon-left a:before, .icon-arrow-left.icon-right a:after { content: "\2b05"; height: inherit; }
1023
+
1024
+ i.icon-arrow-left:before { content: "\2b05"; height: inherit; }
1025
+
1026
+ .icon-arrow-right.icon-left a:before, .icon-arrow-right.icon-right a:after { content: "\27a1"; height: inherit; }
1027
+
1028
+ i.icon-arrow-right:before { content: "\27a1"; height: inherit; }
1029
+
1030
+ .icon-up.icon-left a:before, .icon-up.icon-right a:after { content: "\2b06"; height: inherit; }
1031
+
1032
+ i.icon-up:before { content: "\2b06"; height: inherit; }
1033
+
1034
+ .icon-down-dir.icon-left a:before, .icon-down-dir.icon-right a:after { content: "\25be"; height: inherit; }
1035
+
1036
+ i.icon-down-dir:before { content: "\25be"; height: inherit; }
1037
+
1038
+ .icon-left-dir.icon-left a:before, .icon-left-dir.icon-right a:after { content: "\25c2"; height: inherit; }
1039
+
1040
+ i.icon-left-dir:before { content: "\25c2"; height: inherit; }
1041
+
1042
+ .icon-right-dir.icon-left a:before, .icon-right-dir.icon-right a:after { content: "\25b8"; height: inherit; }
1043
+
1044
+ i.icon-right-dir:before { content: "\25b8"; height: inherit; }
1045
+
1046
+ .icon-up-dir.icon-left a:before, .icon-up-dir.icon-right a:after { content: "\25b4"; height: inherit; }
1047
+
1048
+ i.icon-up-dir:before { content: "\25b4"; height: inherit; }
1049
+
1050
+ .icon-down-bold.icon-left a:before, .icon-down-bold.icon-right a:after { content: "\e4b0"; height: inherit; }
1051
+
1052
+ i.icon-down-bold:before { content: "\e4b0"; height: inherit; }
1053
+
1054
+ .icon-left-bold.icon-left a:before, .icon-left-bold.icon-right a:after { content: "\e4ad"; height: inherit; }
1055
+
1056
+ i.icon-left-bold:before { content: "\e4ad"; height: inherit; }
1057
+
1058
+ .icon-right-bold.icon-left a:before, .icon-right-bold.icon-right a:after { content: "\e4ae"; height: inherit; }
1059
+
1060
+ i.icon-right-bold:before { content: "\e4ae"; height: inherit; }
1061
+
1062
+ .icon-up-bold.icon-left a:before, .icon-up-bold.icon-right a:after { content: "\e4af"; height: inherit; }
1063
+
1064
+ i.icon-up-bold:before { content: "\e4af"; height: inherit; }
1065
+
1066
+ .icon-down-thin.icon-left a:before, .icon-down-thin.icon-right a:after { content: "\2193"; height: inherit; }
1067
+
1068
+ i.icon-down-thin:before { content: "\2193"; height: inherit; }
1069
+
1070
+ .icon-left-thin.icon-left a:before, .icon-left-thin.icon-right a:after { content: "\2190"; height: inherit; }
1071
+
1072
+ i.icon-left-thin:before { content: "\2190"; height: inherit; }
1073
+
1074
+ .icon-right-thin.icon-left a:before, .icon-right-thin.icon-right a:after { content: "\2192"; height: inherit; }
1075
+
1076
+ i.icon-right-thin:before { content: "\2192"; height: inherit; }
1077
+
1078
+ .icon-up-thin.icon-left a:before, .icon-up-thin.icon-right a:after { content: "\2191"; height: inherit; }
1079
+
1080
+ i.icon-up-thin:before { content: "\2191"; height: inherit; }
1081
+
1082
+ .icon-ccw.icon-left a:before, .icon-ccw.icon-right a:after { content: "\27f2"; height: inherit; }
1083
+
1084
+ i.icon-ccw:before { content: "\27f2"; height: inherit; }
1085
+
1086
+ .icon-cw.icon-left a:before, .icon-cw.icon-right a:after { content: "\27f3"; height: inherit; }
1087
+
1088
+ i.icon-cw:before { content: "\27f3"; height: inherit; }
1089
+
1090
+ .icon-arrows-ccw.icon-left a:before, .icon-arrows-ccw.icon-right a:after { content: "🔄"; height: inherit; }
1091
+
1092
+ i.icon-arrows-ccw:before { content: "🔄"; height: inherit; }
1093
+
1094
+ .icon-level-down.icon-left a:before, .icon-level-down.icon-right a:after { content: "\21b3"; height: inherit; }
1095
+
1096
+ i.icon-level-down:before { content: "\21b3"; height: inherit; }
1097
+
1098
+ .icon-level-up.icon-left a:before, .icon-level-up.icon-right a:after { content: "\21b0"; height: inherit; }
1099
+
1100
+ i.icon-level-up:before { content: "\21b0"; height: inherit; }
1101
+
1102
+ .icon-shuffle.icon-left a:before, .icon-shuffle.icon-right a:after { content: "🔀"; height: inherit; }
1103
+
1104
+ i.icon-shuffle:before { content: "🔀"; height: inherit; }
1105
+
1106
+ .icon-loop.icon-left a:before, .icon-loop.icon-right a:after { content: "🔁"; height: inherit; }
1107
+
1108
+ i.icon-loop:before { content: "🔁"; height: inherit; }
1109
+
1110
+ .icon-switch.icon-left a:before, .icon-switch.icon-right a:after { content: "\21c6"; height: inherit; }
1111
+
1112
+ i.icon-switch:before { content: "\21c6"; height: inherit; }
1113
+
1114
+ .icon-play.icon-left a:before, .icon-play.icon-right a:after { content: "\25b6"; height: inherit; }
1115
+
1116
+ i.icon-play:before { content: "\25b6"; height: inherit; }
1117
+
1118
+ .icon-stop.icon-left a:before, .icon-stop.icon-right a:after { content: "\25a0"; height: inherit; }
1119
+
1120
+ i.icon-stop:before { content: "\25a0"; height: inherit; }
1121
+
1122
+ .icon-pause.icon-left a:before, .icon-pause.icon-right a:after { content: "\2389"; height: inherit; }
1123
+
1124
+ i.icon-pause:before { content: "\2389"; height: inherit; }
1125
+
1126
+ .icon-record.icon-left a:before, .icon-record.icon-right a:after { content: "\26ab"; height: inherit; }
1127
+
1128
+ i.icon-record:before { content: "\26ab"; height: inherit; }
1129
+
1130
+ .icon-to-end.icon-left a:before, .icon-to-end.icon-right a:after { content: "\23ed"; height: inherit; }
1131
+
1132
+ i.icon-to-end:before { content: "\23ed"; height: inherit; }
1133
+
1134
+ .icon-to-start.icon-left a:before, .icon-to-start.icon-right a:after { content: "\23ee"; height: inherit; }
1135
+
1136
+ i.icon-to-start:before { content: "\23ee"; height: inherit; }
1137
+
1138
+ .icon-fast-forward.icon-left a:before, .icon-fast-forward.icon-right a:after { content: "\23e9"; height: inherit; }
1139
+
1140
+ i.icon-fast-forward:before { content: "\23e9"; height: inherit; }
1141
+
1142
+ .icon-fast-backward.icon-left a:before, .icon-fast-backward.icon-right a:after { content: "\23ea"; height: inherit; }
1143
+
1144
+ i.icon-fast-backward:before { content: "\23ea"; height: inherit; }
1145
+
1146
+ .icon-progress-0.icon-left a:before, .icon-progress-0.icon-right a:after { content: "\e768"; height: inherit; }
1147
+
1148
+ i.icon-progress-0:before { content: "\e768"; height: inherit; }
1149
+
1150
+ .icon-progress-1.icon-left a:before, .icon-progress-1.icon-right a:after { content: "\e769"; height: inherit; }
1151
+
1152
+ i.icon-progress-1:before { content: "\e769"; height: inherit; }
1153
+
1154
+ .icon-progress-2.icon-left a:before, .icon-progress-2.icon-right a:after { content: "\e76a"; height: inherit; }
1155
+
1156
+ i.icon-progress-2:before { content: "\e76a"; height: inherit; }
1157
+
1158
+ .icon-progress-3.icon-left a:before, .icon-progress-3.icon-right a:after { content: "\e76b"; height: inherit; }
1159
+
1160
+ i.icon-progress-3:before { content: "\e76b"; height: inherit; }
1161
+
1162
+ .icon-target.icon-left a:before, .icon-target.icon-right a:after { content: "🎯"; height: inherit; }
1163
+
1164
+ i.icon-target:before { content: "🎯"; height: inherit; }
1165
+
1166
+ .icon-palette.icon-left a:before, .icon-palette.icon-right a:after { content: "🎨"; height: inherit; }
1167
+
1168
+ i.icon-palette:before { content: "🎨"; height: inherit; }
1169
+
1170
+ .icon-list.icon-left a:before, .icon-list.icon-right a:after { content: "\e005"; height: inherit; }
1171
+
1172
+ i.icon-list:before { content: "\e005"; height: inherit; }
1173
+
1174
+ .icon-list-add.icon-left a:before, .icon-list-add.icon-right a:after { content: "\e003"; height: inherit; }
1175
+
1176
+ i.icon-list-add:before { content: "\e003"; height: inherit; }
1177
+
1178
+ .icon-signal.icon-left a:before, .icon-signal.icon-right a:after { content: "📶"; height: inherit; }
1179
+
1180
+ i.icon-signal:before { content: "📶"; height: inherit; }
1181
+
1182
+ .icon-trophy.icon-left a:before, .icon-trophy.icon-right a:after { content: "🏆"; height: inherit; }
1183
+
1184
+ i.icon-trophy:before { content: "🏆"; height: inherit; }
1185
+
1186
+ .icon-battery.icon-left a:before, .icon-battery.icon-right a:after { content: "🔋"; height: inherit; }
1187
+
1188
+ i.icon-battery:before { content: "🔋"; height: inherit; }
1189
+
1190
+ .icon-back-in-time.icon-left a:before, .icon-back-in-time.icon-right a:after { content: "\e771"; height: inherit; }
1191
+
1192
+ i.icon-back-in-time:before { content: "\e771"; height: inherit; }
1193
+
1194
+ .icon-monitor.icon-left a:before, .icon-monitor.icon-right a:after { content: "💻"; height: inherit; }
1195
+
1196
+ i.icon-monitor:before { content: "💻"; height: inherit; }
1197
+
1198
+ .icon-mobile.icon-left a:before, .icon-mobile.icon-right a:after { content: "📱"; height: inherit; }
1199
+
1200
+ i.icon-mobile:before { content: "📱"; height: inherit; }
1201
+
1202
+ .icon-network.icon-left a:before, .icon-network.icon-right a:after { content: "\e776"; height: inherit; }
1203
+
1204
+ i.icon-network:before { content: "\e776"; height: inherit; }
1205
+
1206
+ .icon-cd.icon-left a:before, .icon-cd.icon-right a:after { content: "💿"; height: inherit; }
1207
+
1208
+ i.icon-cd:before { content: "💿"; height: inherit; }
1209
+
1210
+ .icon-inbox.icon-left a:before, .icon-inbox.icon-right a:after { content: "\e777"; height: inherit; }
1211
+
1212
+ i.icon-inbox:before { content: "\e777"; height: inherit; }
1213
+
1214
+ .icon-install.icon-left a:before, .icon-install.icon-right a:after { content: "\e778"; height: inherit; }
1215
+
1216
+ i.icon-install:before { content: "\e778"; height: inherit; }
1217
+
1218
+ .icon-globe.icon-left a:before, .icon-globe.icon-right a:after { content: "🌎"; height: inherit; }
1219
+
1220
+ i.icon-globe:before { content: "🌎"; height: inherit; }
1221
+
1222
+ .icon-cloud.icon-left a:before, .icon-cloud.icon-right a:after { content: "\2601"; height: inherit; }
1223
+
1224
+ i.icon-cloud:before { content: "\2601"; height: inherit; }
1225
+
1226
+ .icon-cloud-thunder.icon-left a:before, .icon-cloud-thunder.icon-right a:after { content: "\26c8"; height: inherit; }
1227
+
1228
+ i.icon-cloud-thunder:before { content: "\26c8"; height: inherit; }
1229
+
1230
+ .icon-flash.icon-left a:before, .icon-flash.icon-right a:after { content: "\26a1"; height: inherit; }
1231
+
1232
+ i.icon-flash:before { content: "\26a1"; height: inherit; }
1233
+
1234
+ .icon-moon.icon-left a:before, .icon-moon.icon-right a:after { content: "\263d"; height: inherit; }
1235
+
1236
+ i.icon-moon:before { content: "\263d"; height: inherit; }
1237
+
1238
+ .icon-flight.icon-left a:before, .icon-flight.icon-right a:after { content: "\2708"; height: inherit; }
1239
+
1240
+ i.icon-flight:before { content: "\2708"; height: inherit; }
1241
+
1242
+ .icon-paper-plane.icon-left a:before, .icon-paper-plane.icon-right a:after { content: "\e79b"; height: inherit; }
1243
+
1244
+ i.icon-paper-plane:before { content: "\e79b"; height: inherit; }
1245
+
1246
+ .icon-leaf.icon-left a:before, .icon-leaf.icon-right a:after { content: "🍂"; height: inherit; }
1247
+
1248
+ i.icon-leaf:before { content: "🍂"; height: inherit; }
1249
+
1250
+ .icon-lifebuoy.icon-left a:before, .icon-lifebuoy.icon-right a:after { content: "\e788"; height: inherit; }
1251
+
1252
+ i.icon-lifebuoy:before { content: "\e788"; height: inherit; }
1253
+
1254
+ .icon-mouse.icon-left a:before, .icon-mouse.icon-right a:after { content: "\e789"; height: inherit; }
1255
+
1256
+ i.icon-mouse:before { content: "\e789"; height: inherit; }
1257
+
1258
+ .icon-briefcase.icon-left a:before, .icon-briefcase.icon-right a:after { content: "💼"; height: inherit; }
1259
+
1260
+ i.icon-briefcase:before { content: "💼"; height: inherit; }
1261
+
1262
+ .icon-suitcase.icon-left a:before, .icon-suitcase.icon-right a:after { content: "\e78e"; height: inherit; }
1263
+
1264
+ i.icon-suitcase:before { content: "\e78e"; height: inherit; }
1265
+
1266
+ .icon-dot.icon-left a:before, .icon-dot.icon-right a:after { content: "\e78b"; height: inherit; }
1267
+
1268
+ i.icon-dot:before { content: "\e78b"; height: inherit; }
1269
+
1270
+ .icon-dot-2.icon-left a:before, .icon-dot-2.icon-right a:after { content: "\e78c"; height: inherit; }
1271
+
1272
+ i.icon-dot-2:before { content: "\e78c"; height: inherit; }
1273
+
1274
+ .icon-dot-3.icon-left a:before, .icon-dot-3.icon-right a:after { content: "\e78d"; height: inherit; }
1275
+
1276
+ i.icon-dot-3:before { content: "\e78d"; height: inherit; }
1277
+
1278
+ .icon-brush.icon-left a:before, .icon-brush.icon-right a:after { content: "\e79a"; height: inherit; }
1279
+
1280
+ i.icon-brush:before { content: "\e79a"; height: inherit; }
1281
+
1282
+ .icon-magnet.icon-left a:before, .icon-magnet.icon-right a:after { content: "\e7a1"; height: inherit; }
1283
+
1284
+ i.icon-magnet:before { content: "\e7a1"; height: inherit; }
1285
+
1286
+ .icon-infinity.icon-left a:before, .icon-infinity.icon-right a:after { content: "\221e"; height: inherit; }
1287
+
1288
+ i.icon-infinity:before { content: "\221e"; height: inherit; }
1289
+
1290
+ .icon-erase.icon-left a:before, .icon-erase.icon-right a:after { content: "\232b"; height: inherit; }
1291
+
1292
+ i.icon-erase:before { content: "\232b"; height: inherit; }
1293
+
1294
+ .icon-chart-pie.icon-left a:before, .icon-chart-pie.icon-right a:after { content: "\e751"; height: inherit; }
1295
+
1296
+ i.icon-chart-pie:before { content: "\e751"; height: inherit; }
1297
+
1298
+ .icon-chart-line.icon-left a:before, .icon-chart-line.icon-right a:after { content: "📈"; height: inherit; }
1299
+
1300
+ i.icon-chart-line:before { content: "📈"; height: inherit; }
1301
+
1302
+ .icon-chart-bar.icon-left a:before, .icon-chart-bar.icon-right a:after { content: "📊"; height: inherit; }
1303
+
1304
+ i.icon-chart-bar:before { content: "📊"; height: inherit; }
1305
+
1306
+ .icon-chart-area.icon-left a:before, .icon-chart-area.icon-right a:after { content: "🔾"; height: inherit; }
1307
+
1308
+ i.icon-chart-area:before { content: "🔾"; height: inherit; }
1309
+
1310
+ .icon-tape.icon-left a:before, .icon-tape.icon-right a:after { content: "\2707"; height: inherit; }
1311
+
1312
+ i.icon-tape:before { content: "\2707"; height: inherit; }
1313
+
1314
+ .icon-graduation-cap.icon-left a:before, .icon-graduation-cap.icon-right a:after { content: "🎓"; height: inherit; }
1315
+
1316
+ i.icon-graduation-cap:before { content: "🎓"; height: inherit; }
1317
+
1318
+ .icon-language.icon-left a:before, .icon-language.icon-right a:after { content: "\e752"; height: inherit; }
1319
+
1320
+ i.icon-language:before { content: "\e752"; height: inherit; }
1321
+
1322
+ .icon-ticket.icon-left a:before, .icon-ticket.icon-right a:after { content: "🎫"; height: inherit; }
1323
+
1324
+ i.icon-ticket:before { content: "🎫"; height: inherit; }
1325
+
1326
+ .icon-water.icon-left a:before, .icon-water.icon-right a:after { content: "💦"; height: inherit; }
1327
+
1328
+ i.icon-water:before { content: "💦"; height: inherit; }
1329
+
1330
+ .icon-droplet.icon-left a:before, .icon-droplet.icon-right a:after { content: "💧"; height: inherit; }
1331
+
1332
+ i.icon-droplet:before { content: "💧"; height: inherit; }
1333
+
1334
+ .icon-air.icon-left a:before, .icon-air.icon-right a:after { content: "\e753"; height: inherit; }
1335
+
1336
+ i.icon-air:before { content: "\e753"; height: inherit; }
1337
+
1338
+ .icon-credit-card.icon-left a:before, .icon-credit-card.icon-right a:after { content: "💳"; height: inherit; }
1339
+
1340
+ i.icon-credit-card:before { content: "💳"; height: inherit; }
1341
+
1342
+ .icon-floppy.icon-left a:before, .icon-floppy.icon-right a:after { content: "💾"; height: inherit; }
1343
+
1344
+ i.icon-floppy:before { content: "💾"; height: inherit; }
1345
+
1346
+ .icon-clipboard.icon-left a:before, .icon-clipboard.icon-right a:after { content: "📋"; height: inherit; }
1347
+
1348
+ i.icon-clipboard:before { content: "📋"; height: inherit; }
1349
+
1350
+ .icon-megaphone.icon-left a:before, .icon-megaphone.icon-right a:after { content: "📣"; height: inherit; }
1351
+
1352
+ i.icon-megaphone:before { content: "📣"; height: inherit; }
1353
+
1354
+ .icon-database.icon-left a:before, .icon-database.icon-right a:after { content: "\e754"; height: inherit; }
1355
+
1356
+ i.icon-database:before { content: "\e754"; height: inherit; }
1357
+
1358
+ .icon-drive.icon-left a:before, .icon-drive.icon-right a:after { content: "\e755"; height: inherit; }
1359
+
1360
+ i.icon-drive:before { content: "\e755"; height: inherit; }
1361
+
1362
+ .icon-bucket.icon-left a:before, .icon-bucket.icon-right a:after { content: "\e756"; height: inherit; }
1363
+
1364
+ i.icon-bucket:before { content: "\e756"; height: inherit; }
1365
+
1366
+ .icon-thermometer.icon-left a:before, .icon-thermometer.icon-right a:after { content: "\e757"; height: inherit; }
1367
+
1368
+ i.icon-thermometer:before { content: "\e757"; height: inherit; }
1369
+
1370
+ .icon-key.icon-left a:before, .icon-key.icon-right a:after { content: "🔑"; height: inherit; }
1371
+
1372
+ i.icon-key:before { content: "🔑"; height: inherit; }
1373
+
1374
+ .icon-flow-cascade.icon-left a:before, .icon-flow-cascade.icon-right a:after { content: "\e790"; height: inherit; }
1375
+
1376
+ i.icon-flow-cascade:before { content: "\e790"; height: inherit; }
1377
+
1378
+ .icon-flow-branch.icon-left a:before, .icon-flow-branch.icon-right a:after { content: "\e791"; height: inherit; }
1379
+
1380
+ i.icon-flow-branch:before { content: "\e791"; height: inherit; }
1381
+
1382
+ .icon-flow-tree.icon-left a:before, .icon-flow-tree.icon-right a:after { content: "\e792"; height: inherit; }
1383
+
1384
+ i.icon-flow-tree:before { content: "\e792"; height: inherit; }
1385
+
1386
+ .icon-flow-line.icon-left a:before, .icon-flow-line.icon-right a:after { content: "\e793"; height: inherit; }
1387
+
1388
+ i.icon-flow-line:before { content: "\e793"; height: inherit; }
1389
+
1390
+ .icon-flow-parallel.icon-left a:before, .icon-flow-parallel.icon-right a:after { content: "\e794"; height: inherit; }
1391
+
1392
+ i.icon-flow-parallel:before { content: "\e794"; height: inherit; }
1393
+
1394
+ .icon-rocket.icon-left a:before, .icon-rocket.icon-right a:after { content: "🚀"; height: inherit; }
1395
+
1396
+ i.icon-rocket:before { content: "🚀"; height: inherit; }
1397
+
1398
+ .icon-gauge.icon-left a:before, .icon-gauge.icon-right a:after { content: "\e7a2"; height: inherit; }
1399
+
1400
+ i.icon-gauge:before { content: "\e7a2"; height: inherit; }
1401
+
1402
+ .icon-traffic-cone.icon-left a:before, .icon-traffic-cone.icon-right a:after { content: "\e7a3"; height: inherit; }
1403
+
1404
+ i.icon-traffic-cone:before { content: "\e7a3"; height: inherit; }
1405
+
1406
+ .icon-cc.icon-left a:before, .icon-cc.icon-right a:after { content: "\e7a5"; height: inherit; }
1407
+
1408
+ i.icon-cc:before { content: "\e7a5"; height: inherit; }
1409
+
1410
+ .icon-cc-by.icon-left a:before, .icon-cc-by.icon-right a:after { content: "\e7a6"; height: inherit; }
1411
+
1412
+ i.icon-cc-by:before { content: "\e7a6"; height: inherit; }
1413
+
1414
+ .icon-cc-nc.icon-left a:before, .icon-cc-nc.icon-right a:after { content: "\e7a7"; height: inherit; }
1415
+
1416
+ i.icon-cc-nc:before { content: "\e7a7"; height: inherit; }
1417
+
1418
+ .icon-cc-nc-eu.icon-left a:before, .icon-cc-nc-eu.icon-right a:after { content: "\e7a8"; height: inherit; }
1419
+
1420
+ i.icon-cc-nc-eu:before { content: "\e7a8"; height: inherit; }
1421
+
1422
+ .icon-cc-nc-jp.icon-left a:before, .icon-cc-nc-jp.icon-right a:after { content: "\e7a9"; height: inherit; }
1423
+
1424
+ i.icon-cc-nc-jp:before { content: "\e7a9"; height: inherit; }
1425
+
1426
+ .icon-cc-sa.icon-left a:before, .icon-cc-sa.icon-right a:after { content: "\e7aa"; height: inherit; }
1427
+
1428
+ i.icon-cc-sa:before { content: "\e7aa"; height: inherit; }
1429
+
1430
+ .icon-cc-nd.icon-left a:before, .icon-cc-nd.icon-right a:after { content: "\e7ab"; height: inherit; }
1431
+
1432
+ i.icon-cc-nd:before { content: "\e7ab"; height: inherit; }
1433
+
1434
+ .icon-cc-pd.icon-left a:before, .icon-cc-pd.icon-right a:after { content: "\e7ac"; height: inherit; }
1435
+
1436
+ i.icon-cc-pd:before { content: "\e7ac"; height: inherit; }
1437
+
1438
+ .icon-cc-zero.icon-left a:before, .icon-cc-zero.icon-right a:after { content: "\e7ad"; height: inherit; }
1439
+
1440
+ i.icon-cc-zero:before { content: "\e7ad"; height: inherit; }
1441
+
1442
+ .icon-cc-share.icon-left a:before, .icon-cc-share.icon-right a:after { content: "\e7ae"; height: inherit; }
1443
+
1444
+ i.icon-cc-share:before { content: "\e7ae"; height: inherit; }
1445
+
1446
+ .icon-cc-remix.icon-left a:before, .icon-cc-remix.icon-right a:after { content: "\e7af"; height: inherit; }
1447
+
1448
+ i.icon-cc-remix:before { content: "\e7af"; height: inherit; }
1449
+
1450
+ .icon-github.icon-left a:before, .icon-github.icon-right a:after { content: "\f300"; height: inherit; }
1451
+
1452
+ i.icon-github:before { content: "\f300"; height: inherit; }
1453
+
1454
+ .icon-github-circled.icon-left a:before, .icon-github-circled.icon-right a:after { content: "\f301"; height: inherit; }
1455
+
1456
+ i.icon-github-circled:before { content: "\f301"; height: inherit; }
1457
+
1458
+ .icon-flickr.icon-left a:before, .icon-flickr.icon-right a:after { content: "\f303"; height: inherit; }
1459
+
1460
+ i.icon-flickr:before { content: "\f303"; height: inherit; }
1461
+
1462
+ .icon-flickr-circled.icon-left a:before, .icon-flickr-circled.icon-right a:after { content: "\f304"; height: inherit; }
1463
+
1464
+ i.icon-flickr-circled:before { content: "\f304"; height: inherit; }
1465
+
1466
+ .icon-vimeo.icon-left a:before, .icon-vimeo.icon-right a:after { content: "\f306"; height: inherit; }
1467
+
1468
+ i.icon-vimeo:before { content: "\f306"; height: inherit; }
1469
+
1470
+ .icon-vimeo-circled.icon-left a:before, .icon-vimeo-circled.icon-right a:after { content: "\f307"; height: inherit; }
1471
+
1472
+ i.icon-vimeo-circled:before { content: "\f307"; height: inherit; }
1473
+
1474
+ .icon-twitter.icon-left a:before, .icon-twitter.icon-right a:after { content: "\f309"; height: inherit; }
1475
+
1476
+ i.icon-twitter:before { content: "\f309"; height: inherit; }
1477
+
1478
+ .icon-twitter-circled.icon-left a:before, .icon-twitter-circled.icon-right a:after { content: "\f30a"; height: inherit; }
1479
+
1480
+ i.icon-twitter-circled:before { content: "\f30a"; height: inherit; }
1481
+
1482
+ .icon-facebook.icon-left a:before, .icon-facebook.icon-right a:after { content: "\f30c"; height: inherit; }
1483
+
1484
+ i.icon-facebook:before { content: "\f30c"; height: inherit; }
1485
+
1486
+ .icon-facebook-circled.icon-left a:before, .icon-facebook-circled.icon-right a:after { content: "\f30d"; height: inherit; }
1487
+
1488
+ i.icon-facebook-circled:before { content: "\f30d"; height: inherit; }
1489
+
1490
+ .icon-facebook-squared.icon-left a:before, .icon-facebook-squared.icon-right a:after { content: "\f30e"; height: inherit; }
1491
+
1492
+ i.icon-facebook-squared:before { content: "\f30e"; height: inherit; }
1493
+
1494
+ .icon-gplus.icon-left a:before, .icon-gplus.icon-right a:after { content: "\f30f"; height: inherit; }
1495
+
1496
+ i.icon-gplus:before { content: "\f30f"; height: inherit; }
1497
+
1498
+ .icon-gplus-circled.icon-left a:before, .icon-gplus-circled.icon-right a:after { content: "\f310"; height: inherit; }
1499
+
1500
+ i.icon-gplus-circled:before { content: "\f310"; height: inherit; }
1501
+
1502
+ .icon-pinterest.icon-left a:before, .icon-pinterest.icon-right a:after { content: "\f312"; height: inherit; }
1503
+
1504
+ i.icon-pinterest:before { content: "\f312"; height: inherit; }
1505
+
1506
+ .icon-pinterest-circled.icon-left a:before, .icon-pinterest-circled.icon-right a:after { content: "\f313"; height: inherit; }
1507
+
1508
+ i.icon-pinterest-circled:before { content: "\f313"; height: inherit; }
1509
+
1510
+ .icon-tumblr.icon-left a:before, .icon-tumblr.icon-right a:after { content: "\f315"; height: inherit; }
1511
+
1512
+ i.icon-tumblr:before { content: "\f315"; height: inherit; }
1513
+
1514
+ .icon-tumblr-circled.icon-left a:before, .icon-tumblr-circled.icon-right a:after { content: "\f316"; height: inherit; }
1515
+
1516
+ i.icon-tumblr-circled:before { content: "\f316"; height: inherit; }
1517
+
1518
+ .icon-linkedin.icon-left a:before, .icon-linkedin.icon-right a:after { content: "\f318"; height: inherit; }
1519
+
1520
+ i.icon-linkedin:before { content: "\f318"; height: inherit; }
1521
+
1522
+ .icon-linkedin-circled.icon-left a:before, .icon-linkedin-circled.icon-right a:after { content: "\f319"; height: inherit; }
1523
+
1524
+ i.icon-linkedin-circled:before { content: "\f319"; height: inherit; }
1525
+
1526
+ .icon-dribbble.icon-left a:before, .icon-dribbble.icon-right a:after { content: "\f31b"; height: inherit; }
1527
+
1528
+ i.icon-dribbble:before { content: "\f31b"; height: inherit; }
1529
+
1530
+ .icon-dribbble-circled.icon-left a:before, .icon-dribbble-circled.icon-right a:after { content: "\f31c"; height: inherit; }
1531
+
1532
+ i.icon-dribbble-circled:before { content: "\f31c"; height: inherit; }
1533
+
1534
+ .icon-stumbleupon.icon-left a:before, .icon-stumbleupon.icon-right a:after { content: "\f31e"; height: inherit; }
1535
+
1536
+ i.icon-stumbleupon:before { content: "\f31e"; height: inherit; }
1537
+
1538
+ .icon-stumbleupon-circled.icon-left a:before, .icon-stumbleupon-circled.icon-right a:after { content: "\f31f"; height: inherit; }
1539
+
1540
+ i.icon-stumbleupon-circled:before { content: "\f31f"; height: inherit; }
1541
+
1542
+ .icon-lastfm.icon-left a:before, .icon-lastfm.icon-right a:after { content: "\f321"; height: inherit; }
1543
+
1544
+ i.icon-lastfm:before { content: "\f321"; height: inherit; }
1545
+
1546
+ .icon-lastfm-circled.icon-left a:before, .icon-lastfm-circled.icon-right a:after { content: "\f322"; height: inherit; }
1547
+
1548
+ i.icon-lastfm-circled:before { content: "\f322"; height: inherit; }
1549
+
1550
+ .icon-rdio.icon-left a:before, .icon-rdio.icon-right a:after { content: "\f324"; height: inherit; }
1551
+
1552
+ i.icon-rdio:before { content: "\f324"; height: inherit; }
1553
+
1554
+ .icon-rdio-circled.icon-left a:before, .icon-rdio-circled.icon-right a:after { content: "\f325"; height: inherit; }
1555
+
1556
+ i.icon-rdio-circled:before { content: "\f325"; height: inherit; }
1557
+
1558
+ .icon-spotify.icon-left a:before, .icon-spotify.icon-right a:after { content: "\f327"; height: inherit; }
1559
+
1560
+ i.icon-spotify:before { content: "\f327"; height: inherit; }
1561
+
1562
+ .icon-spotify-circled.icon-left a:before, .icon-spotify-circled.icon-right a:after { content: "\f328"; height: inherit; }
1563
+
1564
+ i.icon-spotify-circled:before { content: "\f328"; height: inherit; }
1565
+
1566
+ .icon-qq.icon-left a:before, .icon-qq.icon-right a:after { content: "\f32a"; height: inherit; }
1567
+
1568
+ i.icon-qq:before { content: "\f32a"; height: inherit; }
1569
+
1570
+ .icon-instagram.icon-left a:before, .icon-instagram.icon-right a:after { content: "\f32d"; height: inherit; }
1571
+
1572
+ i.icon-instagram:before { content: "\f32d"; height: inherit; }
1573
+
1574
+ .icon-dropbox.icon-left a:before, .icon-dropbox.icon-right a:after { content: "\f330"; height: inherit; }
1575
+
1576
+ i.icon-dropbox:before { content: "\f330"; height: inherit; }
1577
+
1578
+ .icon-evernote.icon-left a:before, .icon-evernote.icon-right a:after { content: "\f333"; height: inherit; }
1579
+
1580
+ i.icon-evernote:before { content: "\f333"; height: inherit; }
1581
+
1582
+ .icon-flattr.icon-left a:before, .icon-flattr.icon-right a:after { content: "\f336"; height: inherit; }
1583
+
1584
+ i.icon-flattr:before { content: "\f336"; height: inherit; }
1585
+
1586
+ .icon-skype.icon-left a:before, .icon-skype.icon-right a:after { content: "\f339"; height: inherit; }
1587
+
1588
+ i.icon-skype:before { content: "\f339"; height: inherit; }
1589
+
1590
+ .icon-skype-circled.icon-left a:before, .icon-skype-circled.icon-right a:after { content: "\f33a"; height: inherit; }
1591
+
1592
+ i.icon-skype-circled:before { content: "\f33a"; height: inherit; }
1593
+
1594
+ .icon-renren.icon-left a:before, .icon-renren.icon-right a:after { content: "\f33c"; height: inherit; }
1595
+
1596
+ i.icon-renren:before { content: "\f33c"; height: inherit; }
1597
+
1598
+ .icon-sina-weibo.icon-left a:before, .icon-sina-weibo.icon-right a:after { content: "\f33f"; height: inherit; }
1599
+
1600
+ i.icon-sina-weibo:before { content: "\f33f"; height: inherit; }
1601
+
1602
+ .icon-paypal.icon-left a:before, .icon-paypal.icon-right a:after { content: "\f342"; height: inherit; }
1603
+
1604
+ i.icon-paypal:before { content: "\f342"; height: inherit; }
1605
+
1606
+ .icon-picasa.icon-left a:before, .icon-picasa.icon-right a:after { content: "\f345"; height: inherit; }
1607
+
1608
+ i.icon-picasa:before { content: "\f345"; height: inherit; }
1609
+
1610
+ .icon-soundcloud.icon-left a:before, .icon-soundcloud.icon-right a:after { content: "\f348"; height: inherit; }
1611
+
1612
+ i.icon-soundcloud:before { content: "\f348"; height: inherit; }
1613
+
1614
+ .icon-mixi.icon-left a:before, .icon-mixi.icon-right a:after { content: "\f34b"; height: inherit; }
1615
+
1616
+ i.icon-mixi:before { content: "\f34b"; height: inherit; }
1617
+
1618
+ .icon-behance.icon-left a:before, .icon-behance.icon-right a:after { content: "\f34e"; height: inherit; }
1619
+
1620
+ i.icon-behance:before { content: "\f34e"; height: inherit; }
1621
+
1622
+ .icon-google-circles.icon-left a:before, .icon-google-circles.icon-right a:after { content: "\f351"; height: inherit; }
1623
+
1624
+ i.icon-google-circles:before { content: "\f351"; height: inherit; }
1625
+
1626
+ .icon-vkontakte.icon-left a:before, .icon-vkontakte.icon-right a:after { content: "\f354"; height: inherit; }
1627
+
1628
+ i.icon-vkontakte:before { content: "\f354"; height: inherit; }
1629
+
1630
+ .icon-smashing.icon-left a:before, .icon-smashing.icon-right a:after { content: "\f357"; height: inherit; }
1631
+
1632
+ i.icon-smashing:before { content: "\f357"; height: inherit; }
1633
+
1634
+ .icon-sweden.icon-left a:before, .icon-sweden.icon-right a:after { content: "\f601"; height: inherit; }
1635
+
1636
+ i.icon-sweden:before { content: "\f601"; height: inherit; }
1637
+
1638
+ .icon-db-shape.icon-left a:before, .icon-db-shape.icon-right a:after { content: "\f600"; height: inherit; }
1639
+
1640
+ i.icon-db-shape:before { content: "\f600"; height: inherit; }
1641
+
1642
+ .icon-logo-db.icon-left a:before, .icon-logo-db.icon-right a:after { content: "\f603"; height: inherit; }
1643
+
1644
+ i.icon-logo-db:before { content: "\f603"; height: inherit; }
1645
+
1646
+ /* Form Styles */
1647
+ form { margin: 0 0 18px; }
1648
+ form label { display: block; font-size: 16px; font-size: 1rem; line-height: 1.625em; cursor: pointer; margin-bottom: 9px; }
1649
+ form label.inline { display: inline-block; padding-right: 20px; }
1650
+ form dt { margin: 0; }
1651
+ form textarea { height: 150px; }
1652
+ form ul, form ul li { margin-left: 0; list-style-type: none; }
1653
+ form fieldset { border-style: solid; border-width: 0.0625em; padding: 1.5625em; border-color: #d8d8d8; margin: 18px 0; }
1654
+ form fieldset legend { padding: 5px 10px; }
1655
+
1656
+ .field { position: relative; max-width: 100%; overflow: hidden; margin-bottom: 10px; vertical-align: middle; /* remove inline-block white-space — A 0px font-size = 0px of white space */ }
1657
+ .field.metro, .field .metro { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; }
1658
+ .field input, .field input[type="*"], .field textarea { max-width: 100%; width: 100%; padding: 0; margin: 0; border: none; outline: none; resize: none; -webkit-appearance: none; font-family: "Open Sans"; font-weight: 300; font-size: 16px; font-size: 1rem; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; }
1659
+ .field .radio, .field .checkbox { position: relative; }
1660
+ .field .radio input[type="radio"], .field .checkbox input[type="checkbox"] { display: none; }
1661
+ .field .input { position: relative; padding: 0 10px; background: #fff; border: 1px solid #d8d8d8; height: 36px; line-height: 34px; font-size: 16px; font-size: 1rem; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
1662
+ .field .input.search { height: 36px; line-height: 34px; -webkit-border-radius: 1000px; -moz-border-radius: 1000px; -ms-border-radius: 1000px; -o-border-radius: 1000px; border-radius: 1000px; }
1663
+ .field .input.textarea { height: auto; }
1664
+ .field .xnarrow { width: 16%; }
1665
+ .field .narrow { width: 21%; }
1666
+ .field .normal { width: 31%; }
1667
+ .field .wide { width: 46%; }
1668
+ .field .xwide { width: 71%; }
1669
+ .field .xxwide { width: 100%; }
1670
+ .field .xnarrow, .field .narrow, .field .normal, .field .wide, .field .xwide, .field .xxwide { margin: 0; }
1671
+ .field .xnarrow:last-child, .field .narrow:last-child, .field .normal:last-child, .field .wide:last-child, .field .xwide:last-child, .field .xxwide:last-child { margin-left: -4px; }
1672
+ .field .xnarrow:first-child, .field .narrow:first-child, .field .normal:first-child, .field .wide:first-child, .field .xwide:first-child, .field .xxwide:first-child { margin-right: 4%; margin-left: 0; }
1673
+ .field label + .xnarrow:last-child, .field label + .narrow:last-child, .field label + .normal:last-child, .field label + .wide:last-child, .field label + .xwide:last-child, .field label + .xxwide:last-child { margin-left: 0; }
1674
+ @media only screen and (max-width: 768px) { .field .xnarrow:first-child, .field .narrow:first-child, .field .normal:first-child, .field .wide:first-child, .field .xwide:first-child, .field .xxwide:first-child { margin-right: 3%; }
1675
+ .field .xxwide:first-child, .field .xxwide:last-child { margin-right: 0%; } }
1676
+ .field.prepend, .field.append { font-size: 0; white-space: nowrap; padding-bottom: 3.5px; }
1677
+ .field.prepend input, .field.prepend .input, .field.append input, .field.append .input { display: inline-block; max-width: 100%; }
1678
+ .field.prepend input, .field.prepend .input { -webkit-border-radius: 0px 4px 4px 0; -moz-border-radius: 0px 4px 4px 0; -ms-border-radius: 0px 4px 4px 0; -o-border-radius: 0px 4px 4px 0; border-radius: 0px 4px 4px 0; }
1679
+ .field.append input, .field.append .input { -webkit-border-radius: 4px 0 0 4px; -moz-border-radius: 4px 0 0 4px; -ms-border-radius: 4px 0 0 4px; -o-border-radius: 4px 0 0 4px; border-radius: 4px 0 0 4px; }
1680
+ .field.prepend.append input { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; }
1681
+ .field.prepend.append input:first-child { -webkit-border-radius: 4px 0 0 4px; -moz-border-radius: 4px 0 0 4px; -ms-border-radius: 4px 0 0 4px; -o-border-radius: 4px 0 0 4px; border-radius: 4px 0 0 4px; }
1682
+ .field.prepend.append input:last-child { margin-left: -1px; -webkit-border-radius: 0px 4px 4px 0; -moz-border-radius: 0px 4px 4px 0; -ms-border-radius: 0px 4px 4px 0; -o-border-radius: 0px 4px 4px 0; border-radius: 0px 4px 4px 0; }
1683
+ .field.prepend .adjoined, .field.append .adjoined, .field.prepend .btn, .field.append .btn { position: relative; display: inline-block; margin-bottom: 0; z-index: 99; }
1684
+ .field.prepend .btn a, .field.append .btn a { padding: 0 12px; }
1685
+ .field.prepend .adjoined, .field.append .adjoined { padding: 0 10px 0 10px; background: #f2f2f2; border: 1px solid #d8d8d8; font-family: "Open Sans"; font-weight: 600; color: #555555; font-size: 16px; font-size: 1rem; height: 36px; line-height: 34px; }
1686
+ .field.prepend *:first-child { -webkit-border-radius: 4px 0 0 4px; -moz-border-radius: 4px 0 0 4px; -ms-border-radius: 4px 0 0 4px; -o-border-radius: 4px 0 0 4px; border-radius: 4px 0 0 4px; }
1687
+ .field.prepend input:first-child { margin-right: 0; }
1688
+ .field.prepend .adjoined, .field.prepend .btn { margin-right: -1px; }
1689
+ .field .adjoined:first-child { margin-left: 0 !important; }
1690
+ .field.append .adjoined, .field.append .btn { margin-left: -1px; }
1691
+ .field.append *:last-child { -webkit-border-radius: 0px 4px 4px 0; -moz-border-radius: 0px 4px 4px 0; -ms-border-radius: 0px 4px 4px 0; -o-border-radius: 0px 4px 4px 0; border-radius: 0px 4px 4px 0; }
1692
+ .field.append input:first-child { margin-right: 0; }
1693
+ .field.double input, .field.double .input { width: 50% !important; }
1694
+ .field.double input:last-child, .field.double .input:last-child { margin-left: -1px; }
1695
+ .field.danger:after { font-family: "entypo"; content: "\2716"; font-size: 16px; position: absolute; top: 5px; right: 15px; z-index: 999; color: #ca3838; }
1696
+ .field.danger.append:after, .field.danger.prepend:after { content: ""; }
1697
+ .field.danger input, .field.danger .input, .field.danger textarea, .field.danger .textarea, .field.danger .radio span, .field.danger .checkbox span, .field.danger .picker { border-color: #ca3838; color: #ca3838; background: #f0c5c5; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; }
1698
+ .field.danger textarea { color: #ca3838; }
1699
+ .field.danger input::-webkit-input-placeholder, .field.danger textarea::-webkit-input-placeholder { color: #ca3838; }
1700
+ .field.danger input:-moz-placeholder, .field.danger textarea:-moz-placeholder { color: #ca3838; }
1701
+ .field.warning:after { font-family: "entypo"; content: "\26a0"; font-size: 16px; position: absolute; top: 5px; right: 15px; z-index: 999; color: #f6b83f; }
1702
+ .field.warning.append:after, .field.warning.prepend:after { content: ""; }
1703
+ .field.warning input, .field.warning .input, .field.warning textarea, .field.warning .textarea, .field.warning .radio span, .field.warning .checkbox span, .field.warning .picker { border-color: #f6b83f; color: #f6b83f; background: #fef7ea; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; }
1704
+ .field.warning textarea { color: #f6b83f; }
1705
+ .field.warning input::-webkit-input-placeholder, .field.warning textarea::-webkit-input-placeholder { color: #f6b83f; }
1706
+ .field.warning input:-moz-placeholder, .field.warning textarea:-moz-placeholder { color: #f6b83f; }
1707
+ .field.success:after { font-family: "entypo"; content: "\2713"; font-size: 16px; position: absolute; top: 5px; right: 15px; z-index: 999; color: #58c026; }
1708
+ .field.success.append:after, .field.success.prepend:after { content: ""; }
1709
+ .field.success input, .field.success .input, .field.success textarea, .field.success .textarea, .field.success .radio span, .field.success .checkbox span, .field.success .picker { border-color: #58c026; color: #58c026; background: #c0eeaa; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; }
1710
+ .field.success textarea { color: #58c026; }
1711
+ .field.success input::-webkit-input-placeholder, .field.success textarea::-webkit-input-placeholder { color: #58c026; }
1712
+ .field.success input:-moz-placeholder, .field.success textarea:-moz-placeholder { color: #58c026; }
1713
+ .field .picker.danger { border-color: #ca3838; color: #ca3838; background: #f0c5c5; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; }
1714
+ .field .picker.danger select, .field .picker.danger:after { color: #ca3838; }
1715
+ .field .picker.warning { border-color: #f6b83f; color: #f6b83f; background: #fef7ea; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; }
1716
+ .field .picker.warning select, .field .picker.warning:after { color: #f6b83f; }
1717
+ .field .picker.success { border-color: #58c026; color: #58c026; background: #c0eeaa; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; }
1718
+ .field .picker.success select, .field .picker.success:after { color: #58c026; }
1719
+ .field .radio.danger, .field .checkbox.danger { color: #ca3838; }
1720
+ .field .radio.danger span, .field .checkbox.danger span { border-color: #ca3838; color: #ca3838; background: #f0c5c5; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; }
1721
+ .field .radio.warning, .field .checkbox.warning { color: #f6b83f; }
1722
+ .field .radio.warning span, .field .checkbox.warning span { border-color: #f6b83f; color: #f6b83f; background: #fef7ea; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; }
1723
+ .field .radio.success, .field .checkbox.success { color: #58c026; color: #555555; }
1724
+ .field .radio.success i, .field .checkbox.success i { color: #58c026; }
1725
+ .field .radio.success span, .field .checkbox.success span { border-color: #58c026; color: #58c026; background: #c0eeaa; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; }
1726
+ .field .radio span, .field .checkbox span { display: inline-block; width: 16px; height: 16px; position: relative; top: 2px; border: solid 1px #cccccc; background: #fefefe; }
1727
+ .field .radio span { border-radius: 8px; -webkit-border-radius: 8px; -moz-border-radius: 8px; }
1728
+ .field .checkbox span { border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; }
1729
+ .field .radio.checked i, .field .checkbox.checked i { position: absolute; top: 0; left: -7px; }
1730
+
1731
+ .field .text input[type="search"] { -webkit-appearance: textfield; }
1732
+
1733
+ /* Form Picker Element (<select>) */
1734
+ .picker { position: relative; width: auto; display: inline-block; margin: 0 0 2px 1.2%; overflow: hidden; border: 1px solid #e5e5e5; border-radius: 4px; font-family: "Open Sans"; font-weight: 600; height: 36px; line-height: 34px; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f2f2f2)); background-image: -webkit-linear-gradient(#ffffff, #f2f2f2); background-image: -moz-linear-gradient(#ffffff, #f2f2f2); background-image: -o-linear-gradient(#ffffff, #f2f2f2); background-image: linear-gradient(#ffffff, #f2f2f2); }
1735
+ .picker:after { content: "\25BE"; z-index: 0; position: absolute; right: 8%; top: 0%; color: #555555; }
1736
+ .picker:first-child { margin-left: 0; }
1737
+ .picker select { position: relative; display: block; min-width: 100%; width: 135%; height: 34px; padding: 6px 45px 6px 15px; color: #555555; border: none; background: transparent; outline: none; -webkit-appearance: none; z-index: 99; font-size: 16px; font-size: 1rem; }
1738
+
1739
+ /* Labels */
1740
+ .badge, .label { height: 20px; display: inline-block; font-family: Helvetica, arial, verdana, sans-serif; font-weight: bold; line-height: 20px; text-align: center; color: #fff; }
1741
+ .badge a, .label a { color: #fff; }
1742
+ .badge.primary, .label.primary { background: #3085d6; }
1743
+ .badge.light, .label.light { background: #fff; color: #555555; border: 1px solid #f2f2f2; }
1744
+ .badge.light a, .label.light a { color: #d04526; }
1745
+ .badge.dark, .label.dark { background: #212121; }
1746
+ .badge.secondary, .label.secondary { background: #42a35a; }
1747
+ .badge.light, .label.light { background: #fff; color: #555555; border: 1px solid #f2f2f2; }
1748
+ .badge.light a, .label.light a { color: #d04526; }
1749
+ .badge.dark, .label.dark { background: #212121; }
1750
+ .badge.default, .label.default { background: #f2f2f2; color: #555555; border: 1px solid #f2f2f2; }
1751
+ .badge.default:hover, .label.default:hover { border: 1px solid #e5e5e5; }
1752
+ .badge.default a, .label.default a { color: #555555; }
1753
+ .badge.light, .label.light { background: #fff; color: #555555; border: 1px solid #f2f2f2; }
1754
+ .badge.light a, .label.light a { color: #d04526; }
1755
+ .badge.dark, .label.dark { background: #212121; }
1756
+ .badge.info, .label.info { background: #4a4d50; }
1757
+ .badge.light, .label.light { background: #fff; color: #555555; border: 1px solid #f2f2f2; }
1758
+ .badge.light a, .label.light a { color: #d04526; }
1759
+ .badge.dark, .label.dark { background: #212121; }
1760
+ .badge.danger, .label.danger { background: #ca3838; }
1761
+ .badge.light, .label.light { background: #fff; color: #555555; border: 1px solid #f2f2f2; }
1762
+ .badge.light a, .label.light a { color: #d04526; }
1763
+ .badge.dark, .label.dark { background: #212121; }
1764
+ .badge.warning, .label.warning { background: #f6b83f; color: #644405; }
1765
+ .badge.warning a, .label.warning a { color: #644405; }
1766
+ .badge.light, .label.light { background: #fff; color: #555555; border: 1px solid #f2f2f2; }
1767
+ .badge.light a, .label.light a { color: #d04526; }
1768
+ .badge.dark, .label.dark { background: #212121; }
1769
+ .badge.success, .label.success { background: #58c026; }
1770
+ .badge.light, .label.light { background: #fff; color: #555555; border: 1px solid #f2f2f2; }
1771
+ .badge.light a, .label.light a { color: #d04526; }
1772
+ .badge.dark, .label.dark { background: #212121; }
1773
+
1774
+ .badge { padding: 0 10px; font-size: 14px; font-size: 0.875rem; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; border-radius: 10px; }
1775
+
1776
+ .label { padding: 0 10px; font-size: 12px; font-size: 0.75rem; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; }
1777
+
1778
+ .alert { padding: 0 10px; font-family: "Open Sans"; font-weight: 600; list-style-type: none; word-wrap: break-word; margin-bottom: 8px; font-size: 14px; font-size: 0.875rem; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
1779
+ .alert.primary { background: #85b7e7; border: 1px solid #3085d6; color: #1a5186; }
1780
+ .alert.secondary { background: #80cb92; border: 1px solid #42a35a; color: #255a32; }
1781
+ .alert.default { background: white; border: 1px solid #f2f2f2; color: #bfbfbf; color: #555555; border: 1px solid #f2f2f2; }
1782
+ .alert.info { background: #7b8085; border: 1px solid #4a4d50; color: #191a1b; color: #f2f2f2; }
1783
+ .alert.danger { background: #df8989; border: 1px solid #ca3838; color: #7b2121; }
1784
+ .alert.warning { background: #fbdca0; border: 1px solid #f6b83f; color: #c68609; color: #644405; }
1785
+ .alert.success { background: #91e26a; border: 1px solid #58c026; color: #316b15; }
1786
+
1787
+ /* Tabs */
1788
+ .tabs { display: block; }
1789
+ .tabs .tab-nav { margin: 0; padding: 0; border-bottom: 1px solid #e5e5e5; }
1790
+ .tabs .tab-nav > li { position: relative; display: inline-block; width: auto; padding: 0; margin: 0 2.12766% 0 0; cursor: default; top: 1px; }
1791
+ .tabs .tab-nav > li > a { display: block; width: auto; padding: 0 16px; margin: 0; color: #555555; font-family: "Open Sans"; font-weight: 600; border: 1px solid #e5e5e5; border-width: 1px 1px 0 1px; text-shadow: 0 1px 1px white; background: #f2f2f2; cursor: pointer; -webkit-border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; -ms-border-radius: 4px 4px 0 0; -o-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0; height: 42px; line-height: 40px; }
1792
+ .tabs .tab-nav > li > a:hover { text-decoration: none; background: whitesmoke; }
1793
+ .tabs .tab-nav > li > a:active { background: #ededed; }
1794
+ .tabs .tab-nav > li.active > a { height: 43px; line-height: 41px; background: #fff; }
1795
+ .tabs .tab-nav > li:last-child { margin-right: 0; }
1796
+ .tabs .tab-content { display: none; padding: 20px 10px; }
1797
+ .tabs .tab-content.active { display: block; }
1798
+ .tabs.pill .tab-nav { width: 100%; /* remove if you dont want the tabs to span the full container width */ display: table; overflow: hidden; border: 1px solid #e5e5e5; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; }
1799
+ .tabs.pill .tab-nav > li { display: table-cell; margin: 0; margin-left: -4px; text-align: center; top: 0; }
1800
+ .tabs.pill .tab-nav > li:first-child { margin-left: 0; }
1801
+ .tabs.pill .tab-nav > li > a { border: none; border-right: 1px solid #e5e5e5; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; height: 42px; line-height: 40px; }
1802
+ .tabs.pill .tab-nav > li:last-child > a { border-right: none; }
1803
+ .tabs.vertical .tab-nav { border: none; }
1804
+ .tabs.vertical .tab-nav > li { display: block; margin: 0; margin-bottom: 5px; }
1805
+ .tabs.vertical .tab-nav > li.active { position: relative; z-index: 99; }
1806
+ .tabs.vertical .tab-nav > li.active > a { border-right: 1px solid white; }
1807
+ .tabs.vertical .tab-nav > li > a { border: 1px solid #e5e5e5; -webkit-border-radius: 4px 0 0 4px; -moz-border-radius: 4px 0 0 4px; -ms-border-radius: 4px 0 0 4px; -o-border-radius: 4px 0 0 4px; border-radius: 4px 0 0 4px; }
1808
+ .tabs.vertical .tab-content { padding: 10px 0 30px 20px; margin-left: -1px; border-left: 1px solid #e5e5e5; }
1809
+
1810
+ .image { line-height: 0; margin-bottom: 20px; }
1811
+ .image.circle { border-radius: 50% !important; overflow: hidden; width: auto; }
1812
+ .image.rounded { overflow: hidden; -webkit-border-radius: 4px 4px; -moz-border-radius: 4px 4px; -ms-border-radius: 4px 4px; -o-border-radius: 4px 4px; border-radius: 4px 4px; }
1813
+ .image.photo { border: 5px solid white; box-shadow: 0 0 1px #555555; }
1814
+ .image.photo.polaroid { padding-bottom: 50px; background: #fff; }
1815
+
1816
+ body .video { width: 100%; position: relative; height: 0; padding-bottom: 56.25%; }
1817
+
1818
+ .youtube.video, .vimeo.video, .twitch.video { padding-top: 30px; }
1819
+
1820
+ .video > video, .video > iframe, .video > object, .video > embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }